diff options
| author | Lendacky, Thomas <[email protected]> | 2018-12-04 22:27:20 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2018-12-05 08:49:56 +0100 |
| commit | 438cbf8871246606f2fc1964d301fa02af39e4e4 (patch) | |
| tree | 79c8691c6dba04bf514e792658ce73438cf74415 | |
| parent | 0abbbc63d0251a25d3df6c8a56ab3d3c20af082c (diff) | |
x86/umip: Make the UMIP activated message generic
The User Mode Instruction Prevention (UMIP) feature is part of the x86_64
instruction set architecture and not specific to Intel. Make the message
generic.
Signed-off-by: Tom Lendacky <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | arch/x86/kernel/cpu/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 2c56b8066280..cb28e98a0659 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -353,7 +353,7 @@ static __always_inline void setup_umip(struct cpuinfo_x86 *c) cr4_set_bits(X86_CR4_UMIP); - pr_info_once("x86/cpu: Intel User Mode Instruction Prevention (UMIP) activated\n"); + pr_info_once("x86/cpu: User Mode Instruction Prevention (UMIP) activated\n"); return; |