From: Richard Kennedy Date: Fri, 1 Aug 2008 12:18:04 +0000 (+0100) Subject: sched: reorder signal_struct to remove 8 bytes on 64 bit builds X-Git-Tag: v2.6.28-rc1~725^2~2^2~31 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=07dd20e0324f4d3e33bde1944d4f7771a09c498c;p=linux-2.6-omap-h63xx.git sched: reorder signal_struct to remove 8 bytes on 64 bit builds reorder structure to remove 8 bytes of padding on 64 bit builds Signed-off-by: Richard Kennedy Signed-off-by: Ingo Molnar --- diff --git a/include/linux/sched.h b/include/linux/sched.h index cfb0d87b99f..5a8058e44f5 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -451,8 +451,8 @@ struct signal_struct { * - everyone except group_exit_task is stopped during signal delivery * of fatal signals, group_exit_task processes the signal. */ - struct task_struct *group_exit_task; int notify_count; + struct task_struct *group_exit_task; /* thread group stop support, overloads group_exit_code too */ int group_stop_count;