qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] tap: delete tap(net client) if net_init_tap_one


From: Jason Wang
Subject: Re: [Qemu-devel] [PATCH] tap: delete tap(net client) if net_init_tap_one failed
Date: Tue, 6 Mar 2018 16:15:50 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0



On 2018年03月06日 13:11, linzhecheng wrote:
If net_init_tap_one failed but net_tap_fd_init succeeded, we should
delete the TAPState *s without vhostforce and has_vhostforce flag.

Signed-off-by: linzhecheng <address@hidden>

Applied and queued for stable.

Thanks


diff --git a/net/tap.c b/net/tap.c
index 2b3a36f9b5..1cb8eaf31f 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -651,7 +651,7 @@ static void net_init_tap_one(const NetdevTapOptions *tap, 
NetClientState *peer,
      tap_set_sndbuf(s->fd, tap, &err);
      if (err) {
          error_propagate(errp, err);
-        return;
+        goto fail;
      }
if (tap->has_fd || tap->has_fds) {
@@ -688,6 +688,7 @@ static void net_init_tap_one(const NetdevTapOptions *tap, 
NetClientState *peer,
              if (vhostfd == -1) {
                  if (tap->has_vhostforce && tap->vhostforce) {
                      error_propagate(errp, err);
+                    goto fail;
                  } else {
                      warn_report_err(err);
                  }
@@ -699,6 +700,7 @@ static void net_init_tap_one(const NetdevTapOptions *tap, 
NetClientState *peer,
                  if (tap->has_vhostforce && tap->vhostforce) {
                      error_setg_errno(errp, errno,
                                       "tap: open vhost char device failed");
+                    goto fail;
                  } else {
                      warn_report("tap: open vhost char device failed: %s",
                                  strerror(errno));
@@ -713,6 +715,7 @@ static void net_init_tap_one(const NetdevTapOptions *tap, 
NetClientState *peer,
          if (!s->vhost_net) {
              if (tap->has_vhostforce && tap->vhostforce) {
                  error_setg(errp, VHOST_NET_INIT_FAILED);
+                goto fail;
              } else {
                  warn_report(VHOST_NET_INIT_FAILED);
              }
@@ -720,7 +723,11 @@ static void net_init_tap_one(const NetdevTapOptions *tap, 
NetClientState *peer,
          }
      } else if (vhostfdname) {
          error_setg(errp, "vhostfd(s)= is not valid without vhost");
+        goto fail;
      }
+    return;
+fail:
+    qemu_del_net_client(&s->nc);
  }
static int get_fds(char *str, char *fds[], int max)




reply via email to

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