]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
x86/fpu: Don't allocate fpu->state for swapper/0
authorOleg Nesterov <oleg@redhat.com>
Fri, 13 Mar 2015 18:27:16 +0000 (19:27 +0100)
committerIngo Molnar <mingo@kernel.org>
Mon, 23 Mar 2015 09:13:59 +0000 (10:13 +0100)
Now that kthreads do not use FPU until they get executed, swapper/0
doesn't need to allocate fpu->state.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Pekka Riikonen <priikone@iki.fi>
Cc: Quentin Casasnovas <quentin.casasnovas@oracle.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Suresh Siddha <sbsiddha@gmail.com>
Link: http://lkml.kernel.org/r/20150313182716.GB8249@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/xsave.c

index 65c29b070e09b0d4eda87f042834728021d2d2d2..ada8df7b89c0846c805588f0b45297f3dcdd3b44 100644 (file)
@@ -680,8 +680,6 @@ void xsave_init(void)
 
 static inline void __init eager_fpu_init_bp(void)
 {
-       current->thread.fpu.state =
-           alloc_bootmem_align(xstate_size, __alignof__(struct xsave_struct));
        if (!init_xstate_buf)
                setup_init_fpu_buf();
 }