Date: Wed, 23 Mar 2022 13:46:56 GMT From: =?utf-8?Q?Roger Pau Monn=C3=A9?= <royger@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 88aff320c805 - stable/13 - x86/xen: fix CPUID signature Message-ID: <202203231346.22NDku0M020049@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203231346.22NDku0M020049>