dect
/
linux-2.6
Archived
13
0
Fork 0

reorder struct prop_local_single to remove padding on 64 bit builds

reorder structure to 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>
Cc: peterz@infradead.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Richard Kennedy 2008-08-01 13:36:28 +01:00 committed by Ingo Molnar
parent bee367ed06
commit 3fb669dd6e
1 changed files with 1 additions and 1 deletions

View File

@ -104,8 +104,8 @@ struct prop_local_single {
* snapshot of the last seen global state
* and a lock protecting this state
*/
int shift;
unsigned long period;
int shift;
spinlock_t lock; /* protect the snapshot state */
};