diff options
author | Richard Kennedy <richard@rsk.demon.co.uk> | 2008-08-01 16:24:08 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-15 19:15:23 +0400 |
commit | bee367ed066e26c14263d808136fba8eec3bd70a (patch) | |
tree | 425640a0eb89b2408e1c014a2d6dc29d8ec17000 | |
parent | 07dd20e0324f4d3e33bde1944d4f7771a09c498c (diff) | |
download | linux-bee367ed066e26c14263d808136fba8eec3bd70a.tar.xz |
sched: reorder struct sched_rt_entity to remove padding on 64 bit builds
remove 8 bytes of padding on 64 bit builds
(also removes 8 bytes from task_struct)
Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 5a8058e44f58..08a87b5f29e1 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1010,8 +1010,8 @@ struct sched_entity { struct sched_rt_entity { struct list_head run_list; - unsigned int time_slice; unsigned long timeout; + unsigned int time_slice; int nr_cpus_allowed; struct sched_rt_entity *back; |