aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2010-07-21 13:03:55 -0400
committerH. Peter Anvin <hpa@linux.intel.com>2010-07-21 17:06:05 -0400
commit45c2d7f46211a0b1f6b425c59575c53145afc4b4 (patch)
tree530fbd6b0d76cf8345de964af07cbc5f266b850a /arch
parentee813d53a8e980a3a28318efb8935d45723f5211 (diff)
x86, xsave: Make init_xstate_buf static
The pointer is only used in xsave.c. Making it static. Signed-off-by: Robert Richter <robert.richter@amd.com> LKML-Reference: <1279731838-1522-5-git-send-email-robert.richter@amd.com> Acked-by: Suresh Siddha <suresh.b.siddha@intel.com> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/xsave.h1
-rw-r--r--arch/x86/kernel/xsave.c10
2 files changed, 5 insertions, 6 deletions
diff --git a/arch/x86/include/asm/xsave.h b/arch/x86/include/asm/xsave.h
index d1b5f3a2fa20..0ae6b9961985 100644
--- a/arch/x86/include/asm/xsave.h
+++ b/arch/x86/include/asm/xsave.h
@@ -27,7 +27,6 @@
27 27
28extern unsigned int xstate_size; 28extern unsigned int xstate_size;
29extern u64 pcntxt_mask; 29extern u64 pcntxt_mask;
30extern struct xsave_struct *init_xstate_buf;
31extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS]; 30extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS];
32 31
33extern void xsave_init(void); 32extern void xsave_init(void);
diff --git a/arch/x86/kernel/xsave.c b/arch/x86/kernel/xsave.c
index 5adb7fb408f0..3b44a9b1eca4 100644
--- a/arch/x86/kernel/xsave.c
+++ b/arch/x86/kernel/xsave.c
@@ -16,6 +16,11 @@
16 */ 16 */
17u64 pcntxt_mask; 17u64 pcntxt_mask;
18 18
19/*
20 * Represents init state for the supported extended state.
21 */
22static struct xsave_struct *init_xstate_buf;
23
19struct _fpx_sw_bytes fx_sw_reserved; 24struct _fpx_sw_bytes fx_sw_reserved;
20#ifdef CONFIG_IA32_EMULATION 25#ifdef CONFIG_IA32_EMULATION
21struct _fpx_sw_bytes fx_sw_reserved_ia32; 26struct _fpx_sw_bytes fx_sw_reserved_ia32;
@@ -348,11 +353,6 @@ static void prepare_fx_sw_frame(void)
348#endif 353#endif
349} 354}
350 355
351/*
352 * Represents init state for the supported extended state.
353 */
354struct xsave_struct *init_xstate_buf;
355
356#ifdef CONFIG_X86_64 356#ifdef CONFIG_X86_64
357unsigned int sig_xstate_size = sizeof(struct _fpstate); 357unsigned int sig_xstate_size = sizeof(struct _fpstate);
358#endif 358#endif