diff options
author | Richard Kennedy <richard@rsk.demon.co.uk> | 2009-06-17 19:27:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-18 16:03:53 -0400 |
commit | e1eb1ebcca871673c76caf63335c4237680040f1 (patch) | |
tree | d5a1b0e667222a43ec2780787ac21011072d45f1 /kernel | |
parent | f95d39d10fe7d47336e65172f52bf64e0096f983 (diff) |
mm: exit.c reorder wait_opts to remove padding on 64 bit builds
Reorder struct wait_opts to remove 8 bytes of alignment padding on 64 bit
builds.
Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 7ef355dd3dca..13ae64001fec 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -1082,8 +1082,8 @@ SYSCALL_DEFINE1(exit_group, int, error_code) | |||
1082 | 1082 | ||
1083 | struct wait_opts { | 1083 | struct wait_opts { |
1084 | enum pid_type wo_type; | 1084 | enum pid_type wo_type; |
1085 | struct pid *wo_pid; | ||
1086 | int wo_flags; | 1085 | int wo_flags; |
1086 | struct pid *wo_pid; | ||
1087 | 1087 | ||
1088 | struct siginfo __user *wo_info; | 1088 | struct siginfo __user *wo_info; |
1089 | int __user *wo_stat; | 1089 | int __user *wo_stat; |