From: Gonglei <arei.gonglei@huawei.com>
To: Jason Wang <jasowang@redhat.com>
Cc: "pbonzini@redhat.com" <pbonzini@redhat.com>,
"mst@redhat.com" <mst@redhat.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"Huangpeng (Peter)" <peter.huangpeng@huawei.com>
Subject: Re: [Qemu-devel] [PATCH] vhost: Fix vhostfd leak in error branch
Date: Mon, 1 Dec 2014 14:27:10 +0800 [thread overview]
Message-ID: <547C0A3E.9070106@huawei.com> (raw)
In-Reply-To: <1417410209.4969.0@smtp.corp.redhat.com>
On 2014/12/1 13:03, Jason Wang wrote:
>
>
> On Fri, Nov 28, 2014 at 5:26 PM, arei.gonglei@huawei.com wrote:
>> From: Gonglei <arei.gonglei@huawei.com>
>>
>> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
>> ---
>> hw/scsi/vhost-scsi.c | 1 +
>> hw/virtio/vhost.c | 2 ++
>> 2 files changed, 3 insertions(+)
>>
>> diff --git a/hw/scsi/vhost-scsi.c b/hw/scsi/vhost-scsi.c
>> index 308b393..dcb2bc5 100644
>> --- a/hw/scsi/vhost-scsi.c
>> +++ b/hw/scsi/vhost-scsi.c
>> @@ -233,6 +233,7 @@ static void vhost_scsi_realize(DeviceState *dev,
>> Error **errp)
>> vhost_dummy_handle_output);
>> if (err != NULL) {
>> error_propagate(errp, err);
>> + close(vhostfd);
>> return;
>> }
>>
>> diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
>> index 5d7c40a..5a12861 100644
>> --- a/hw/virtio/vhost.c
>> +++ b/hw/virtio/vhost.c
>> @@ -817,10 +817,12 @@ int vhost_dev_init(struct vhost_dev *hdev, void
>> *opaque,
>> int i, r;
>>
>> if (vhost_set_backend_type(hdev, backend_type) < 0) {
>> + close((uintptr_t)opaque);
>> return -1;
>> }
>>
>> if (hdev->vhost_ops->vhost_backend_init(hdev, opaque) < 0) {
>> + close((uintptr_t)opaque);
>> return -errno;
>> }
>>
>
> Patch looks fine.
>
> I wonder whether setting errno and goto fail would be better here?
> This will let vhost_backend_cleanup() to do the cleanup, e.g closeing
> fd or purging queue (for vhost uesr).
>
Hi, Jason
Actually, vhost_backend_init() can not fail for both vhost-usr
and vhost-backend-type-kernel at present. Besides, vhost-usr'
s vhost_backend_cleanup() just set dev->opaque to 0,
don't purge queues.
Regards,
-Gonglei
next prev parent reply other threads:[~2014-12-01 6:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-28 9:26 [Qemu-devel] [PATCH] vhost: Fix vhostfd leak in error branch arei.gonglei
2014-12-01 5:03 ` Jason Wang
2014-12-01 6:27 ` Gonglei [this message]
2014-12-01 7:52 ` Jason Wang
2014-12-01 9:37 ` [Qemu-devel] [for-2.2] " Michael S. Tsirkin
2014-12-01 13:23 ` Peter Maydell
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=547C0A3E.9070106@huawei.com \
--to=arei.gonglei@huawei.com \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.