diff options
author | Vineet Gupta <Vineet.Gupta1@synopsys.com> | 2013-11-12 18:08:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:13 -0500 |
commit | c375f15a434db1867cb004bafba92aba739e4e39 (patch) | |
tree | 419ff5ddf823f9b43d95d1fc6345611989364cde /arch/x86/include/asm/processor.h | |
parent | 616c05d110bb4ef8203f49c9d2476874077c2f6a (diff) |
x86: move fpu_counter into ARCH specific thread_struct
Only a couple of arches (sh/x86) use fpu_counter in task_struct so it can
be moved out into ARCH specific thread_struct, reducing the size of
task_struct for other arches.
Compile tested i386_defconfig + gcc 4.7.3
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Acked-by: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mundt <paul.mundt@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/include/asm/processor.h')
-rw-r--r-- | arch/x86/include/asm/processor.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 987c75ecc334..7b034a4057f9 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
@@ -488,6 +488,15 @@ struct thread_struct { | |||
488 | unsigned long iopl; | 488 | unsigned long iopl; |
489 | /* Max allowed port in the bitmap, in bytes: */ | 489 | /* Max allowed port in the bitmap, in bytes: */ |
490 | unsigned io_bitmap_max; | 490 | unsigned io_bitmap_max; |
491 | /* | ||
492 | * fpu_counter contains the number of consecutive context switches | ||
493 | * that the FPU is used. If this is over a threshold, the lazy fpu | ||
494 | * saving becomes unlazy to save the trap. This is an unsigned char | ||
495 | * so that after 256 times the counter wraps and the behavior turns | ||
496 | * lazy again; this to deal with bursty apps that only use FPU for | ||
497 | * a short time | ||
498 | */ | ||
499 | unsigned char fpu_counter; | ||
491 | }; | 500 | }; |
492 | 501 | ||
493 | /* | 502 | /* |