]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
x86/fpu: Inline fpu__xstate_clear_all_cpu_caps()
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Thu, 4 Jul 2019 06:07:43 +0000 (08:07 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 7 Jul 2019 10:01:47 +0000 (12:01 +0200)
All fpu__xstate_clear_all_cpu_caps() does is to invoke one simple
function since commit

  73e3a7d2a7c3b ("x86/fpu: Remove the explicit clearing of XSAVE dependent features")

so invoke that function directly and remove the wrapper.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190704060743.rvew4yrjd6n33uzx@linutronix.de
arch/x86/include/asm/fpu/xstate.h
arch/x86/kernel/fpu/init.c
arch/x86/kernel/fpu/xstate.c

index 7e42b285c8562009510abd84d0e071e7ff084030..c6136d79f8c07f90148a22ed3d8bae7a1e0d0b46 100644 (file)
@@ -47,7 +47,6 @@ extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS];
 extern void __init update_regset_xstate_info(unsigned int size,
                                             u64 xstate_mask);
 
-void fpu__xstate_clear_all_cpu_caps(void);
 void *get_xsave_addr(struct xregs_state *xsave, int xfeature_nr);
 const void *get_xsave_field_ptr(int xfeature_nr);
 int using_compacted_format(void);
index 5baae74af4f9173e8d2736a2eefd210835d31bd4..6ce7e0a23268fdb20f5b5e43e16b40eb7d0e7561 100644 (file)
@@ -259,7 +259,7 @@ static void __init fpu__init_parse_early_param(void)
 #endif
 
        if (cmdline_find_option_bool(boot_command_line, "noxsave"))
-               fpu__xstate_clear_all_cpu_caps();
+               setup_clear_cpu_cap(X86_FEATURE_XSAVE);
 
        if (cmdline_find_option_bool(boot_command_line, "noxsaveopt"))
                setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
index 3c36dd1784db6c1662f036ca587fbbe3add5bd1b..7b4c52aa929fb47d097df85eb2900a6435bf9aa6 100644 (file)
@@ -67,15 +67,6 @@ static unsigned int xstate_comp_offsets[sizeof(xfeatures_mask)*8];
  */
 unsigned int fpu_user_xstate_size;
 
-/*
- * Clear all of the X86_FEATURE_* bits that are unavailable
- * when the CPU has no XSAVE support.
- */
-void fpu__xstate_clear_all_cpu_caps(void)
-{
-       setup_clear_cpu_cap(X86_FEATURE_XSAVE);
-}
-
 /*
  * Return whether the system supports a given xfeature.
  *
@@ -709,7 +700,7 @@ static void fpu__init_disable_system_xstate(void)
 {
        xfeatures_mask = 0;
        cr4_clear_bits(X86_CR4_OSXSAVE);
-       fpu__xstate_clear_all_cpu_caps();
+       setup_clear_cpu_cap(X86_FEATURE_XSAVE);
 }
 
 /*