summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/fpu
Commit message (Expand)AuthorAgeFilesLines
* x86/fpu: Don't export __kernel_fpu_{begin,end}()Sebastian Andrzej Siewior2019-05-021-4/+2
* x86/fpu: Disable bottom halves while loading FPU registersSebastian Andrzej Siewior2018-12-051-2/+2
* x86/fpu: Remove second definition of fpu in __fpu__restore_sig()Sebastian Andrzej Siewior2018-10-171-1/+0
* x86: Don't include linux/irq.h from asm/hardirq.hNicolai Stange2018-08-051-0/+1
* Merge branch 'linus' into x86/asm, to pick up fixes and resolve conflictsIngo Molnar2017-11-073-0/+3
|\
| * License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman2017-11-023-0/+3
* | x86/fpu: Remove the explicit clearing of XSAVE dependent featuresAndi Kleen2017-10-171-20/+0
* | x86/fpu: Make XSAVE check the base CPUID features before enablingAndi Kleen2017-10-171-0/+23
* | x86/fpu: Parse clearcpuid= as early XSAVE argumentAndi Kleen2017-10-171-0/+11
|/
* x86/fpu: Use using_compacted_format() instead of open coded X86_FEATURE_XSAVESEric Biggers2017-09-261-1/+1
* x86/fpu: Use validate_xstate_header() to validate the xstate_header in copy_u...Eric Biggers2017-09-261-11/+5
* x86/fpu: Eliminate the 'xfeatures' local variable in copy_user_to_xstate()Eric Biggers2017-09-261-7/+4
* x86/fpu: Copy the full header in copy_user_to_xstate()Eric Biggers2017-09-261-2/+5
* x86/fpu: Use validate_xstate_header() to validate the xstate_header in copy_k...Eric Biggers2017-09-261-10/+2
* x86/fpu: Eliminate the 'xfeatures' local variable in copy_kernel_to_xstate()Eric Biggers2017-09-261-6/+4
* x86/fpu: Copy the full state_header in copy_kernel_to_xstate()Eric Biggers2017-09-261-2/+4
* x86/fpu: Use validate_xstate_header() to validate the xstate_header in __fpu_...Eric Biggers2017-09-261-7/+9
* x86/fpu: Use validate_xstate_header() to validate the xstate_header in xstate...Eric Biggers2017-09-261-13/+6
* x86/fpu: Introduce validate_xstate_header()Eric Biggers2017-09-261-0/+24
* x86/fpu: Rename fpu__activate_fpstate_read/write() to fpu__prepare_[read|writ...Ingo Molnar2017-09-262-8/+8
* x86/fpu: Rename fpu__activate_curr() to fpu__initialize()Ingo Molnar2017-09-262-5/+5
* x86/fpu: Simplify and speed up fpu__copy()Ingo Molnar2017-09-261-12/+3
* x86/fpu: Fix stale comments about lazy FPU logicIngo Molnar2017-09-261-6/+3
* x86/fpu: Rename fpu::fpstate_active to fpu::initializedIngo Molnar2017-09-265-21/+21
* x86/fpu: Remove fpu__current_fpstate_write_begin/end()Ingo Molnar2017-09-261-63/+0
* x86/fpu: Fix fpu__activate_fpstate_read() and update commentsIngo Molnar2017-09-261-7/+10
* x86/fpu: Don't let userspace set bogus xcomp_bvEric Biggers2017-09-252-2/+11
* x86/fpu: Fix boolreturn.cocci warningskbuild test robot2017-09-241-3/+3
* x86/fpu: Add FPU state copying quirk to handle XRSTOR failure on Intel Skylak...Rik van Riel2017-09-241-0/+42
* x86/fpu: Remove struct fpu::fpregs_activeIngo Molnar2017-09-242-11/+0
* x86/fpu: Decouple fpregs_activate()/fpregs_deactivate() from fpu->fpregs_activeIngo Molnar2017-09-241-2/+1
* x86/fpu: Change fpu->fpregs_active users to fpu->fpstate_activeIngo Molnar2017-09-242-7/+13
* x86/fpu: Split the state handling in fpu__drop()Ingo Molnar2017-09-241-6/+13
* x86/fpu: Make the fpu state change in fpu__clear() scheduler-atomicIngo Molnar2017-09-241-0/+2
* x86/fpu: Simplify fpu->fpregs_active useIngo Molnar2017-09-242-5/+6
* x86/fpu: Flip the parameter order in copy_*_to_xstate()Ingo Molnar2017-09-243-5/+5
* x86/fpu: Remove 'kbuf' parameter from the copy_user_to_xstate() APIIngo Molnar2017-09-243-22/+10
* x86/fpu: Remove 'ubuf' parameter from the copy_kernel_to_xstate() APIIngo Molnar2017-09-242-15/+4
* x86/fpu: Split copy_user_to_xstate() into copy_kernel_to_xstate() & copy_user...Ingo Molnar2017-09-242-4/+72
* x86/fpu: Simplify __copy_xstate_to_kernel() return valuesIngo Molnar2017-09-241-12/+5
* x86/fpu: Change 'size_total' parameter to unsigned and standardize the size c...Ingo Molnar2017-09-241-17/+15
* x86/fpu: Clarify parameter names in the copy_xstate_to_*() methodsIngo Molnar2017-09-241-22/+22
* x86/fpu: Remove the 'start_pos' parameter from the __copy_xstate_to_*() funct...Ingo Molnar2017-09-241-10/+10
* x86/fpu: Clean up the parameter definitions of copy_xstate_to_*()Ingo Molnar2017-09-241-5/+5
* x86/fpu: Clean up parameter order in the copy_xstate_to_*() APIsIngo Molnar2017-09-242-15/+14
* x86/fpu: Remove 'kbuf' parameter from the copy_xstate_to_user() APIsIngo Molnar2017-09-242-19/+8
* x86/fpu: Remove 'ubuf' parameter from the copy_xstate_to_kernel() APIsIngo Molnar2017-09-242-16/+7
* x86/fpu: Split copy_xstate_to_user() into copy_xstate_to_kernel() & copy_xsta...Ingo Molnar2017-09-242-8/+107
* x86/fpu: Rename copyin_to_xsaves()/copyout_from_xsaves() to copy_user_to_xsta...Ingo Molnar2017-09-243-5/+5
* KVM: x86: Fix load damaged SSEx MXCSR registerWanpeng Li2017-05-151-0/+1