qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/2] tap: unbreak -netdev tap,fd=X


From: Anthony Liguori
Subject: [Qemu-devel] [PATCH 1/2] tap: unbreak -netdev tap,fd=X
Date: Fri, 1 Feb 2013 18:08:29 -0600

The multiqueue patch series broke -netdev tap,fd=X which manifests
as libvirt not being able to start a guest.  This was because it
passed NULL for the netdev name which results in an anonymous netdev
device regardless of what the user specified.

Cc: Jason Wang <address@hidden>
Cc: Bruce Rogers <address@hidden>
Reported-by: Bruce Rogers <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>
---
 net/tap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/tap.c b/net/tap.c
index 1bf7609..48c254e 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -711,7 +711,7 @@ int net_init_tap(const NetClientOptions *opts, const char 
*name,
 
         vnet_hdr = tap_probe_vnet_hdr(fd);
 
-        if (net_init_tap_one(tap, peer, "tap", NULL, NULL,
+        if (net_init_tap_one(tap, peer, "tap", name, NULL,
                              script, downscript,
                              vhostfdname, vnet_hdr, fd)) {
             return -1;
-- 
1.8.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]