diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-10-13 17:55:39 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-10-21 00:54:26 +0300 |
commit | c20942ce5128ef92e2c451f943ba33462ad2fbc4 (patch) | |
tree | cae46b52de8e28c8f3edd38f97f17c936c5a4fd8 /arch/x86/kernel/fpu/xstate.c | |
parent | 7e049e8b74591038c831e765585ae9038b7880a1 (diff) | |
download | linux-c20942ce5128ef92e2c451f943ba33462ad2fbc4.tar.xz |
x86/fpu/core: Convert to fpstate
Convert the rest of the core code to the new register storage mechanism in
preparation for dynamically sized buffers.
No functional change.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211013145322.659456185@linutronix.de
Diffstat (limited to 'arch/x86/kernel/fpu/xstate.c')
-rw-r--r-- | arch/x86/kernel/fpu/xstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/fpu/xstate.c b/arch/x86/kernel/fpu/xstate.c index b1409a769ba5..ca72a3e9080c 100644 --- a/arch/x86/kernel/fpu/xstate.c +++ b/arch/x86/kernel/fpu/xstate.c @@ -1094,7 +1094,7 @@ out: void copy_xstate_to_uabi_buf(struct membuf to, struct task_struct *tsk, enum xstate_copy_mode copy_mode) { - __copy_xstate_to_uabi_buf(to, &tsk->thread.fpu.state.xsave, + __copy_xstate_to_uabi_buf(to, &tsk->thread.fpu.fpstate->regs.xsave, tsk->thread.pkru, copy_mode); } |