git: 396a8479b0ac - main - x86/xen: fix CPUID signature
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 17 Mar 2022 11:57:04 UTC
The branch main has been updated by royger: URL: https://cgit.FreeBSD.org/src/commit/?id=396a8479b0ac310801e998bb1c3dcc6ba4839454 commit 396a8479b0ac310801e998bb1c3dcc6ba4839454 Author: Roger Pau Monné <royger@FreeBSD.org> AuthorDate: 2022-03-16 09:20:51 +0000 Commit: Roger Pau Monné <royger@FreeBSD.org> CommitDate: 2022-03-17 11:56:36 +0000 x86/xen: fix CPUID signature MFC: 3 days Reviewed by: cem Sponsored by: Citrix Systems R&D Differential revision: https://reviews.freebsd.org/D34580 --- sys/x86/x86/identcpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/x86/x86/identcpu.c b/sys/x86/x86/identcpu.c index 849f532dbf8b..cf75d00683f1 100644 --- a/sys/x86/x86/identcpu.c +++ b/sys/x86/x86/identcpu.c @@ -1374,7 +1374,7 @@ static struct { const char *vm_cpuid; int vm_guest; } vm_cpuids[] = { - { "XENXENXEN", VM_GUEST_XEN }, /* XEN */ + { "XenVMMXenVMM", VM_GUEST_XEN }, /* XEN */ { "Microsoft Hv", VM_GUEST_HV }, /* Microsoft Hyper-V */ { "VMwareVMware", VM_GUEST_VMWARE }, /* VMware VM */ { "KVMKVMKVM", VM_GUEST_KVM }, /* KVM */