[libvirt] [PATCH v3 3/4] qemu_command: Drop IDE validation code in qemuBuildControllerDevStr

Lin Ma lma at suse.com
Fri Dec 1 11:31:31 UTC 2017


The corresponding code will be moved to qemuDomainControllerDefValidate
by next patch.

Signed-off-by: Lin Ma <lma at suse.com>
---
 src/qemu/qemu_command.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index 6a8da1d..2074ff6 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -3127,17 +3127,9 @@ qemuBuildControllerDevStr(const virDomainDef *domainDef,
         /* Since we currently only support the integrated IDE
          * controller on various boards, if we ever get to here, it's
          * because some other machinetype had an IDE controller
-         * specified, or one with a single IDE contraller had multiple
+         * specified, or one with a single IDE controller had multiple
          * ide controllers specified.
          */
-        if (qemuDomainHasBuiltinIDE(domainDef))
-            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
-                           _("Only a single IDE controller is supported "
-                             "for this machine type"));
-        else
-            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
-                           _("IDE controllers are unsupported for "
-                             "this QEMU binary or machine type"));
         goto error;
 
     default:
-- 
2.9.2




More information about the libvir-list mailing list