diff options
Diffstat (limited to 'arch/x86/include/asm/processor.h')
-rw-r--r-- | arch/x86/include/asm/processor.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 43e6519df0d5..944f1785ed0d 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
@@ -390,9 +390,6 @@ struct thread_struct { | |||
390 | #endif | 390 | #endif |
391 | unsigned long gs; | 391 | unsigned long gs; |
392 | 392 | ||
393 | /* Floating point and extended processor state */ | ||
394 | struct fpu fpu; | ||
395 | |||
396 | /* Save middle states of ptrace breakpoints */ | 393 | /* Save middle states of ptrace breakpoints */ |
397 | struct perf_event *ptrace_bps[HBP_NUM]; | 394 | struct perf_event *ptrace_bps[HBP_NUM]; |
398 | /* Debug status used for traps, single steps, etc... */ | 395 | /* Debug status used for traps, single steps, etc... */ |
@@ -418,6 +415,13 @@ struct thread_struct { | |||
418 | unsigned long iopl; | 415 | unsigned long iopl; |
419 | /* Max allowed port in the bitmap, in bytes: */ | 416 | /* Max allowed port in the bitmap, in bytes: */ |
420 | unsigned io_bitmap_max; | 417 | unsigned io_bitmap_max; |
418 | |||
419 | /* Floating point and extended processor state */ | ||
420 | struct fpu fpu; | ||
421 | /* | ||
422 | * WARNING: 'fpu' is dynamically-sized. It *MUST* be at | ||
423 | * the end. | ||
424 | */ | ||
421 | }; | 425 | }; |
422 | 426 | ||
423 | /* | 427 | /* |