Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'x86-urgent-2025-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fix from Ingo Molnar:
"Fix the bootup of SEV-SNP enabled guests under VMware hypervisors"

* tag 'x86-urgent-2025-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/vmware: Parse MP tables for SEV-SNP enabled guests under VMware hypervisors

+4
+4
arch/x86/kernel/cpu/vmware.c
··· 26 26 #include <linux/export.h> 27 27 #include <linux/clocksource.h> 28 28 #include <linux/cpu.h> 29 + #include <linux/efi.h> 29 30 #include <linux/reboot.h> 30 31 #include <linux/static_call.h> 31 32 #include <asm/div64.h> ··· 429 428 } else { 430 429 pr_warn("Failed to get TSC freq from the hypervisor\n"); 431 430 } 431 + 432 + if (cc_platform_has(CC_ATTR_GUEST_SEV_SNP) && !efi_enabled(EFI_BOOT)) 433 + x86_init.mpparse.find_mptable = mpparse_find_mptable; 432 434 433 435 vmware_paravirt_ops_setup(); 434 436