[libvirt] [PATCH 3/5] qemuAgentGetInterfaces: Don't error out on missing HW address

Michal Privoznik mprivozn at redhat.com
Tue Mar 17 16:52:55 UTC 2015


Now that we allow HW address to be not present on our RPC layer,
don't error out if qemu-ga hasn't provided any.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---
 src/qemu/qemu_agent.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/qemu/qemu_agent.c b/src/qemu/qemu_agent.c
index 5f90b15..a7b3279 100644
--- a/src/qemu/qemu_agent.c
+++ b/src/qemu/qemu_agent.c
@@ -2054,13 +2054,6 @@ qemuAgentGetInterfaces(qemuAgentPtr mon,
                 goto error;
 
             hwaddr = virJSONValueObjectGetString(tmp_iface, "hardware-address");
-            if (!hwaddr) {
-                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                               _("qemu agent didn't provide"
-                                 " 'hardware-address' field"));
-                goto error;
-            }
-
             if (VIR_STRDUP(iface->hwaddr, hwaddr) < 0)
                 goto error;
         }
-- 
2.0.5




More information about the libvir-list mailing list