Date: Thu, 17 Mar 2022 11:57:04 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-main@FreeBSD.org Subject: git: 396a8479b0ac - main - x86/xen: fix CPUID signature Message-ID: <202203171157.22HBv4S9042729@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203171157.22HBv4S9042729>