diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-10-13 16:55:45 +0200 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-10-21 09:33:41 +0200 |
commit | 2dd8eedc80b184bb16aad697ae60367c5bf07299 (patch) | |
tree | 751dd0796faddfc6a1abc42d5d558c549c07f7c4 /arch/x86/include/asm/processor.h | |
parent | x86/fpu: Do not leak fpstate pointer on fork (diff) | |
download | linux-2dd8eedc80b184bb16aad697ae60367c5bf07299.tar.xz linux-2dd8eedc80b184bb16aad697ae60367c5bf07299.zip |
x86/process: Move arch_thread_struct_whitelist() out of line
In preparation for dynamically enabled FPU features move the function
out of line as the goal is to expose less and not more information.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211013145322.869001791@linutronix.de
Diffstat (limited to 'arch/x86/include/asm/processor.h')
-rw-r--r-- | arch/x86/include/asm/processor.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 4519d334bbdb..1bd3e8d05604 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h @@ -461,9 +461,6 @@ DECLARE_PER_CPU(struct irq_stack *, hardirq_stack_ptr); DECLARE_PER_CPU(struct irq_stack *, softirq_stack_ptr); #endif /* !X86_64 */ -extern unsigned int fpu_kernel_xstate_size; -extern unsigned int fpu_user_xstate_size; - struct perf_event; struct thread_struct { @@ -537,12 +534,12 @@ struct thread_struct { */ }; -/* Whitelist the FPU register state from the task_struct for hardened usercopy. */ +extern void fpu_thread_struct_whitelist(unsigned long *offset, unsigned long *size); + static inline void arch_thread_struct_whitelist(unsigned long *offset, unsigned long *size) { - *offset = offsetof(struct thread_struct, fpu.__fpstate.regs); - *size = fpu_kernel_xstate_size; + fpu_thread_struct_whitelist(offset, size); } static inline void |