x86/fpu: Kill eager_fpu_init_bp()
authorOleg Nesterov <oleg@redhat.com>
Sat, 14 Mar 2015 15:13:34 +0000 (16:13 +0100)
committerIngo Molnar <mingo@kernel.org>
Mon, 23 Mar 2015 09:14:00 +0000 (10:14 +0100)
commit7fc253e277ecf1ea57c2d670bdbcda3dffd19453
tree8dbbac77caef39b26171ca09d2132e33db1ad43d
parent4bd5bf8c85e6bca5be9e7c4b3d7ad1942ae323f3
x86/fpu: Kill eager_fpu_init_bp()

Now that eager_fpu_init_bp() does setup_init_fpu_buf() only and
nothing else, we can remove it and move this code into its "caller",
eager_fpu_init().

This avoids the confusing games with "static __refdata void (*boot_func)":

init_xstate_buf can be NULL only during boot, so it is safe to call the
__init-annotated setup_init_fpu_buf() function in eager_fpu_init(), we
just need to mark it as __init_refok.

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/20150314151334.GC13029@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/xsave.c