From: Avi Kivity Date: Wed, 2 May 2007 17:27:12 +0000 (+0200) Subject: [PATCH] x86-64: fix arithmetic in comment X-Git-Tag: upstream/snapshot3+hdmi~34849^2~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbf30a1650be396b5467f769f4fbee715f16ec36;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [PATCH] x86-64: fix arithmetic in comment The xmm space on x86_64 is 256 bytes. Signed-off-by: Avi Kivity Signed-off-by: Andi Kleen --- diff --git a/include/asm-x86_64/processor.h b/include/asm-x86_64/processor.h index 2c1497d..6a11734 100644 --- a/include/asm-x86_64/processor.h +++ b/include/asm-x86_64/processor.h @@ -181,7 +181,7 @@ struct i387_fxsave_struct { u32 mxcsr; u32 mxcsr_mask; u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */ - u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 128 bytes */ + u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */ u32 padding[24]; } __attribute__ ((aligned (16)));