diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2019-11-01 13:38:50 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-11-04 22:04:19 +0100 |
commit | 58db103784994e9be5322237df7ef0cf4c0afc39 (patch) | |
tree | ea196c1fad3377b8ea5c0acc63dcb77be80f5c29 /arch/x86/kernel/fpu | |
parent | Linux 5.4-rc6 (diff) | |
download | linux-58db103784994e9be5322237df7ef0cf4c0afc39.tar.xz linux-58db103784994e9be5322237df7ef0cf4c0afc39.zip |
x86/fpu: Update stale variable name in comment
When the fpu code was reworked pcntxt_mask was renamed to
xfeatures_mask. Reflect it in the comment as well.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20191101123850.GE1615@uranus.lan
Diffstat (limited to 'arch/x86/kernel/fpu')
-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 e5cb67d67c03..18ffc6f4c447 100644 --- a/arch/x86/kernel/fpu/xstate.c +++ b/arch/x86/kernel/fpu/xstate.c @@ -840,7 +840,7 @@ void *get_xsave_addr(struct xregs_state *xsave, int xfeature_nr) /* * We should not ever be requesting features that we - * have not enabled. Remember that pcntxt_mask is + * have not enabled. Remember that xfeatures_mask is * what we write to the XCR0 register. */ WARN_ONCE(!(xfeatures_mask & BIT_ULL(xfeature_nr)), |