From: "Michael S. Tsirkin" <mst@redhat.com>
To: Laurent Vivier <lvivier@redhat.com>
Cc: "Eugenio Pérez" <eperezma@redhat.com>,
qemu-devel@nongnu.org, "Peter Maydell" <peter.maydell@linaro.org>,
qemu-trivial@nongnu.org, "Jason Wang" <jasowang@redhat.com>
Subject: Re: [PATCH 1/2] vdpa: Fix file descriptor leak on get features error
Date: Tue, 2 Aug 2022 08:56:10 -0400 [thread overview]
Message-ID: <20220802085542-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <aa7f3a8c-0f1d-8652-b574-48f824d2bd37@redhat.com>
On Tue, Aug 02, 2022 at 02:07:04PM +0200, Laurent Vivier wrote:
> On 02/08/2022 13:24, Eugenio Pérez wrote:
> > File descriptor vdpa_device_fd is not free in the case of returning
> > error from vhost_vdpa_get_features. Fixing it by making all errors go to
> > the same error path.
> >
> > Resolves: Coverity CID 1490785
> > Fixes: 8170ab3f43 ("vdpa: Extract get features part from vhost_vdpa_get_max_queue_pairs")
> >
> > Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
> > ---
> > net/vhost-vdpa.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
> > index 6abad276a6..303447a68e 100644
> > --- a/net/vhost-vdpa.c
> > +++ b/net/vhost-vdpa.c
> > @@ -566,7 +566,7 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
> > g_autofree NetClientState **ncs = NULL;
> > g_autoptr(VhostIOVATree) iova_tree = NULL;
> > NetClientState *nc;
> > - int queue_pairs, r, i, has_cvq = 0;
> > + int queue_pairs, r, i = 0, has_cvq = 0;
> > assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA);
> > opts = &netdev->u.vhost_vdpa;
> > @@ -582,7 +582,7 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
> > r = vhost_vdpa_get_features(vdpa_device_fd, &features, errp);
> > if (unlikely(r < 0)) {
> > - return r;
> > + goto err;
> > }
> > queue_pairs = vhost_vdpa_get_max_queue_pairs(vdpa_device_fd, features,
>
> Reviewed-by: Laurent Vivier <lvivier@redhat.com>
>
> I can take this one via the trivial branch.
>
> Thanks,
> Laurent
Not sure why it's appropriate for trivial but sure if you like
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
next prev parent reply other threads:[~2022-08-02 12:59 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-02 11:24 [PATCH 0/2] vdpa: Merge all net_init_vhost_vdpa error goto Eugenio Pérez
2022-08-02 11:24 ` [PATCH 1/2] vdpa: Fix file descriptor leak on get features error Eugenio Pérez
2022-08-02 12:07 ` Laurent Vivier
2022-08-02 12:56 ` Michael S. Tsirkin [this message]
2022-08-02 11:24 ` [PATCH 2/2] vdpa: Merge all net_init_vhost_vdpa error goto Eugenio Pérez
2022-08-02 12:10 ` Laurent Vivier
2022-08-02 12:57 ` Michael S. Tsirkin
2022-08-02 12:58 ` Laurent Vivier
2022-08-02 13:09 ` Michael S. Tsirkin
2022-08-02 13:16 ` Eugenio Perez Martin
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=20220802085542-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=eperezma@redhat.com \
--cc=jasowang@redhat.com \
--cc=lvivier@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/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).