lkml.org 
[lkml]   [2020]   [Nov]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 05/22] x86/fpu/xstate: Introduce a new variable for dynamic user states
    Date
    The kernel recently supported the dynamic supervisor states. The approach
    does not save the register states at every context switch (even used), but
    only when needed. It is not suitable for user states.

    Introduce xfeatures_mask_user_dynamic to identify dynamic user states, and
    rename these as related to the dynamic supervisor states:
    xfeatures_mask_supervisor_dynamic()
    XFEATURE_MASK_SUPERVISOR_DYNAMIC

    No functional change.

    Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com>
    Reviewed-by: Len Brown <len.brown@intel.com>
    Cc: x86@kernel.org
    Cc: linux-kernel@vger.kernel.org
    ---
    arch/x86/include/asm/fpu/xstate.h | 12 +++++++-----
    arch/x86/kernel/fpu/xstate.c | 29 +++++++++++++++++++----------
    2 files changed, 26 insertions(+), 15 deletions(-)

    diff --git a/arch/x86/include/asm/fpu/xstate.h b/arch/x86/include/asm/fpu/xstate.h
    index 24bf8d3f559a..6ce8350672c2 100644
    --- a/arch/x86/include/asm/fpu/xstate.h
    +++ b/arch/x86/include/asm/fpu/xstate.h
    @@ -56,7 +56,7 @@
    * - Don't set the bit corresponding to the dynamic supervisor feature in
    * IA32_XSS at run time, since it has been set at boot time.
    */
    -#define XFEATURE_MASK_DYNAMIC (XFEATURE_MASK_LBR)
    +#define XFEATURE_MASK_SUPERVISOR_DYNAMIC (XFEATURE_MASK_LBR)

    /*
    * Unsupported supervisor features. When a supervisor feature in this mask is
    @@ -66,7 +66,7 @@

    /* All supervisor states including supported and unsupported states. */
    #define XFEATURE_MASK_SUPERVISOR_ALL (XFEATURE_MASK_SUPERVISOR_SUPPORTED | \
    - XFEATURE_MASK_DYNAMIC | \
    + XFEATURE_MASK_SUPERVISOR_DYNAMIC | \
    XFEATURE_MASK_SUPERVISOR_UNSUPPORTED)

    #ifdef CONFIG_X86_64
    @@ -87,14 +87,16 @@ static inline u64 xfeatures_mask_user(void)
    return xfeatures_mask_all & XFEATURE_MASK_USER_SUPPORTED;
    }

    -static inline u64 xfeatures_mask_dynamic(void)
    +static inline u64 xfeatures_mask_supervisor_dynamic(void)
    {
    if (!boot_cpu_has(X86_FEATURE_ARCH_LBR))
    - return XFEATURE_MASK_DYNAMIC & ~XFEATURE_MASK_LBR;
    + return XFEATURE_MASK_SUPERVISOR_DYNAMIC & ~XFEATURE_MASK_LBR;

    - return XFEATURE_MASK_DYNAMIC;
    + return XFEATURE_MASK_SUPERVISOR_DYNAMIC;
    }

    +extern u64 xfeatures_mask_user_dynamic;
    +
    extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS];

    extern void __init update_regset_xstate_info(unsigned int size,
    diff --git a/arch/x86/kernel/fpu/xstate.c b/arch/x86/kernel/fpu/xstate.c
    index 1bf9e9078a82..cf378cadd8d2 100644
    --- a/arch/x86/kernel/fpu/xstate.c
    +++ b/arch/x86/kernel/fpu/xstate.c
    @@ -61,6 +61,12 @@ static short xsave_cpuid_features[] __initdata = {
    */
    u64 xfeatures_mask_all __read_mostly;

    +/*
    + * This represents user xstates, a subset of xfeatures_mask_all, saved in a
    + * dynamic kernel XSAVE buffer.
    + */
    +u64 xfeatures_mask_user_dynamic __read_mostly;
    +
    static unsigned int xstate_offsets[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1};
    static unsigned int xstate_sizes[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1};
    static unsigned int xstate_comp_offsets[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1};
    @@ -237,7 +243,7 @@ void fpu__init_cpu_xstate(void)
    */
    if (boot_cpu_has(X86_FEATURE_XSAVES)) {
    wrmsrl(MSR_IA32_XSS, xfeatures_mask_supervisor() |
    - xfeatures_mask_dynamic());
    + xfeatures_mask_supervisor_dynamic());
    }
    }

    @@ -686,7 +692,7 @@ static unsigned int __init get_xsaves_size(void)
    */
    static unsigned int __init get_xsaves_size_no_dynamic(void)
    {
    - u64 mask = xfeatures_mask_dynamic();
    + u64 mask = xfeatures_mask_supervisor_dynamic();
    unsigned int size;

    if (!mask)
    @@ -773,6 +779,7 @@ static int __init init_xstate_size(void)
    static void fpu__init_disable_system_xstate(void)
    {
    xfeatures_mask_all = 0;
    + xfeatures_mask_user_dynamic = 0;
    cr4_clear_bits(X86_CR4_OSXSAVE);
    setup_clear_cpu_cap(X86_FEATURE_XSAVE);
    }
    @@ -839,6 +846,8 @@ void __init fpu__init_system_xstate(void)
    }

    xfeatures_mask_all &= fpu__get_supported_xfeatures_mask();
    + /* Do not support the dynamically allocated area yet. */
    + xfeatures_mask_user_dynamic = 0;

    /* Enable xstate instructions to be able to continue with initialization: */
    fpu__init_cpu_xstate();
    @@ -886,7 +895,7 @@ void fpu__resume_cpu(void)
    */
    if (boot_cpu_has(X86_FEATURE_XSAVES)) {
    wrmsrl(MSR_IA32_XSS, xfeatures_mask_supervisor() |
    - xfeatures_mask_dynamic());
    + xfeatures_mask_supervisor_dynamic());
    }
    }

    @@ -1320,8 +1329,8 @@ void copy_supervisor_to_kernel(struct fpu *fpu)
    * @mask: Represent the dynamic supervisor features saved into the xsave area
    *
    * Only the dynamic supervisor states sets in the mask are saved into the xsave
    - * area (See the comment in XFEATURE_MASK_DYNAMIC for the details of dynamic
    - * supervisor feature). Besides the dynamic supervisor states, the legacy
    + * area (See the comment in XFEATURE_MASK_SUPERVISOR_DYNAMIC for the details of
    + * dynamic supervisor feature). Besides the dynamic supervisor states, the legacy
    * region and XSAVE header are also saved into the xsave area. The supervisor
    * features in the XFEATURE_MASK_SUPERVISOR_SUPPORTED and
    * XFEATURE_MASK_SUPERVISOR_UNSUPPORTED are not saved.
    @@ -1330,7 +1339,7 @@ void copy_supervisor_to_kernel(struct fpu *fpu)
    */
    void copy_dynamic_supervisor_to_kernel(struct xregs_state *xstate, u64 mask)
    {
    - u64 dynamic_mask = xfeatures_mask_dynamic() & mask;
    + u64 dynamic_mask = xfeatures_mask_supervisor_dynamic() & mask;
    u32 lmask, hmask;
    int err;

    @@ -1356,9 +1365,9 @@ void copy_dynamic_supervisor_to_kernel(struct xregs_state *xstate, u64 mask)
    * @mask: Represent the dynamic supervisor features restored from the xsave area
    *
    * Only the dynamic supervisor states sets in the mask are restored from the
    - * xsave area (See the comment in XFEATURE_MASK_DYNAMIC for the details of
    - * dynamic supervisor feature). Besides the dynamic supervisor states, the
    - * legacy region and XSAVE header are also restored from the xsave area. The
    + * xsave area (See the comment in XFEATURE_MASK_SUPERVISOR_DYNAMIC for the
    + * details of dynamic supervisor feature). Besides the dynamic supervisor states,
    + * the legacy region and XSAVE header are also restored from the xsave area. The
    * supervisor features in the XFEATURE_MASK_SUPERVISOR_SUPPORTED and
    * XFEATURE_MASK_SUPERVISOR_UNSUPPORTED are not restored.
    *
    @@ -1366,7 +1375,7 @@ void copy_dynamic_supervisor_to_kernel(struct xregs_state *xstate, u64 mask)
    */
    void copy_kernel_to_dynamic_supervisor(struct xregs_state *xstate, u64 mask)
    {
    - u64 dynamic_mask = xfeatures_mask_dynamic() & mask;
    + u64 dynamic_mask = xfeatures_mask_supervisor_dynamic() & mask;
    u32 lmask, hmask;
    int err;

    --
    2.17.1
    \
     
     \ /
      Last update: 2020-11-20 00:40    [W:4.578 / U:0.940 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site