From: Boqun Feng Date: Wed, 13 Oct 2021 03:32:09 +0000 (+0800) Subject: virt: Support detection for ARM64 Hyper-V guests X-Git-Tag: archive/raspbian/247.3-7+rpi1+deb11u1^2~28 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2ba621ae01233b0379212c6e0f53e349a6ebaa12;p=systemd.git virt: Support detection for ARM64 Hyper-V guests The detection of Microsoft Hyper-V VMs is done by cpuid currently, however there is no cpuid on ARM64. And since ARM64 is now a supported architecture for Microsoft Hyper-V guests[1], then use DMI tables to detect a Hyper-V guest, which is more generic and works for ARM64. [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7aff79e297ee1aa0126924921fd87a4ae59d2467 (cherry picked from commit 506bbc8569014253ea8614b680ccbc4fc2513a87) Gbp-Pq: Name virt-Support-detection-for-ARM64-Hyper-V-guests.patch --- diff --git a/src/basic/virt.c b/src/basic/virt.c index 7d78a402..0d45ee67 100644 --- a/src/basic/virt.c +++ b/src/basic/virt.c @@ -158,6 +158,7 @@ static int detect_vm_dmi(void) { { "Parallels", VIRTUALIZATION_PARALLELS }, /* https://wiki.freebsd.org/bhyve */ { "BHYVE", VIRTUALIZATION_BHYVE }, + { "Microsoft", VIRTUALIZATION_MICROSOFT }, }; unsigned i; int r;