x86/cpu: Don't write CSTAR MSR on Intel CPUs
authorAndi Kleen <ak@linux.intel.com>
Fri, 19 Nov 2021 03:58:03 +0000 (19:58 -0800)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 24 Nov 2021 23:40:34 +0000 (00:40 +0100)
commit9c7e2634f647630db4e0719391dd80cd81132a66
tree638f7286c835a790601d829818d3a15b8e5e45c0
parent136057256686de39cc3a07c2e39ef6bc43003ff6
x86/cpu: Don't write CSTAR MSR on Intel CPUs

Intel CPUs do not support SYSCALL in 32-bit mode, but the kernel
initializes MSR_CSTAR unconditionally. That MSR write is normally
ignored by the CPU, but in a TDX guest it raises a #VE trap.

Exclude Intel CPUs from the MSR_CSTAR initialization.

[ tglx: Fixed the subject line and removed the redundant comment. ]

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Link: https://lore.kernel.org/r/20211119035803.4012145-1-sathyanarayanan.kuppuswamy@linux.intel.com
arch/x86/kernel/cpu/common.c