diff options
Diffstat (limited to 'include/asm-x86/processor.h')
-rw-r--r-- | include/asm-x86/processor.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-x86/processor.h b/include/asm-x86/processor.h index 77b7af6b573b..eb4bd8c07730 100644 --- a/include/asm-x86/processor.h +++ b/include/asm-x86/processor.h | |||
@@ -322,7 +322,12 @@ struct i387_fxsave_struct { | |||
322 | /* 16*16 bytes for each XMM-reg = 256 bytes: */ | 322 | /* 16*16 bytes for each XMM-reg = 256 bytes: */ |
323 | u32 xmm_space[64]; | 323 | u32 xmm_space[64]; |
324 | 324 | ||
325 | u32 padding[24]; | 325 | u32 padding[12]; |
326 | |||
327 | union { | ||
328 | u32 padding1[12]; | ||
329 | u32 sw_reserved[12]; | ||
330 | }; | ||
326 | 331 | ||
327 | } __attribute__((aligned(16))); | 332 | } __attribute__((aligned(16))); |
328 | 333 | ||