git: 88aff320c805 - stable/13 - x86/xen: fix CPUID signature
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 23 Mar 2022 13:46:56 UTC
The branch stable/13 has been updated by royger:
URL: https://cgit.FreeBSD.org/src/commit/?id=88aff320c8058eec9b5c4f73bdbdb861e29da47a
commit 88aff320c8058eec9b5c4f73bdbdb861e29da47a
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-23 13:44:07 +0000
x86/xen: fix CPUID signature
Reviewed by: cem
Sponsored by: Citrix Systems R&D
(cherry picked from commit 396a8479b0ac310801e998bb1c3dcc6ba4839454)
---
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 */