- sync some bugfix patches from upstream - support vhostuser disk - libvirt: support dirtyrate (calc-dirty-rate, dirtyrate-param.mode) Signed-off-by: yezengruan <yezengruan@huawei.com>
49 lines
1.7 KiB
Diff
49 lines
1.7 KiB
Diff
From d048a83b990b08cc3709d6c4a505877533a4d189 Mon Sep 17 00:00:00 2001
|
|
From: Michal Privoznik <mprivozn@redhat.com>
|
|
Date: Fri, 5 Nov 2021 09:33:45 +0100
|
|
Subject: [PATCH 1/2] qemu_command: Don't validate accelerator when building
|
|
cmd line
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The domain accelerator was validated in qemuValidateDomainDef()
|
|
which calls virQEMUCapsIsVirtTypeSupported() which reports proper
|
|
error if QEMU is not capable of KVM/TCG. There is no point in
|
|
doing the validation again when building command line.
|
|
|
|
cherry-pick from 69f2f632994c8f8b51f0d0e4be0f674054619654
|
|
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
|
Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
|
|
Tested-by: Kashyap Chamarthy <kchamart@redhat.com>
|
|
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
|
|
---
|
|
src/qemu/qemu_command.c | 9 +--------
|
|
1 file changed, 1 insertion(+), 8 deletions(-)
|
|
|
|
diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
|
|
index 42f6e10b33..b009890e35 100644
|
|
--- a/src/qemu/qemu_command.c
|
|
+++ b/src/qemu/qemu_command.c
|
|
@@ -7084,15 +7084,8 @@ qemuBuildMachineCommandLine(virCommandPtr cmd,
|
|
case VIR_DOMAIN_VIRT_BHYVE:
|
|
case VIR_DOMAIN_VIRT_VZ:
|
|
case VIR_DOMAIN_VIRT_NONE:
|
|
- virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
- _("the QEMU binary does not support %s"),
|
|
- virDomainVirtTypeToString(def->virtType));
|
|
- return -1;
|
|
-
|
|
case VIR_DOMAIN_VIRT_LAST:
|
|
- default:
|
|
- virReportEnumRangeError(virDomainVirtType, def->virtType);
|
|
- return -1;
|
|
+ break;
|
|
}
|
|
|
|
/* To avoid the collision of creating USB controllers when calling
|
|
--
|
|
2.27.0
|
|
|