diff options
author | Robert Richter <robert.richter@amd.com> | 2010-07-20 20:50:51 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-07-20 16:21:44 -0700 |
commit | 82d4150cec83b9775f84810b39a1c0b91585d429 (patch) | |
tree | f4e92af289f3d09c0a9fbc62e91e103f3625073e /arch/x86/kernel/i387.c | |
parent | db10db48b2c530def21bfd76d576702c7df7f620 (diff) | |
download | linux-stable-82d4150cec83b9775f84810b39a1c0b91585d429.tar.gz linux-stable-82d4150cec83b9775f84810b39a1c0b91585d429.tar.bz2 linux-stable-82d4150cec83b9775f84810b39a1c0b91585d429.zip |
x86, xsave: Move boot cpu initialization to xsave_init()
This patch moves boot cpu initialization to xsave_init(). Now all cpus
are initialized in one single function.
Signed-off-by: Robert Richter <robert.richter@amd.com>
LKML-Reference: <1279651857-24639-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/x86/kernel/i387.c')
-rw-r--r-- | arch/x86/kernel/i387.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/kernel/i387.c b/arch/x86/kernel/i387.c index 6106af9fd129..2f32ef05f10e 100644 --- a/arch/x86/kernel/i387.c +++ b/arch/x86/kernel/i387.c @@ -93,11 +93,6 @@ void __cpuinit fpu_init(void) write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */ - /* - * Boot processor to setup the FP and extended state context info. - */ - if (!smp_processor_id()) - init_thread_xstate(); xsave_init(); mxcsr_feature_mask_init(); |