From: Jason Wang <jasowang@redhat.com>
To: linzhecheng <linzhecheng@huawei.com>, qemu-devel@nongnu.org
Cc: wangxinxin.wang@huawei.com, jianjay.zhou@huawei.com
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	[thread overview]
Message-ID: <b0e44031-9d2f-6558-d839-1e2e7073fe9c@redhat.com> (raw)
In-Reply-To: <20180306051125.32812-1-linzhecheng@huawei.com>
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 <linzhecheng@huawei.com>
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)
     prev parent reply	other threads:[~2018-03-06  8:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-06  5:11 [Qemu-devel] [PATCH] tap: delete tap(net client) if net_init_tap_one failed linzhecheng
2018-03-06  8:15 ` Jason Wang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox
  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):
  git send-email \
    --in-reply-to=b0e44031-9d2f-6558-d839-1e2e7073fe9c@redhat.com \
    --to=jasowang@redhat.com \
    --cc=jianjay.zhou@huawei.com \
    --cc=linzhecheng@huawei.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wangxinxin.wang@huawei.com \
    /path/to/YOUR_REPLY
  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
  Be sure your reply has a Subject: header at the top and a blank line
  before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).