From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
Li Feng <fengli@smartx.com>,
qemu-block@nongnu.org, Max Reitz <mreitz@redhat.com>
Subject: [PULL 08/10] fix vhost_user_blk_watch crash
Date: Tue, 31 Mar 2020 10:57:19 -0400 [thread overview]
Message-ID: <20200331145631.135630-9-mst@redhat.com> (raw)
In-Reply-To: <20200331145631.135630-1-mst@redhat.com>
From: Li Feng <fengli@smartx.com>
the G_IO_HUP is watched in tcp_chr_connect, and the callback
vhost_user_blk_watch is not needed, because tcp_chr_hup is registered as
callback. And it will close the tcp link.
Signed-off-by: Li Feng <fengli@smartx.com>
Message-Id: <20200323052924.29286-1-fengli@smartx.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
include/hw/virtio/vhost-user-blk.h | 1 -
hw/block/vhost-user-blk.c | 19 -------------------
2 files changed, 20 deletions(-)
diff --git a/include/hw/virtio/vhost-user-blk.h b/include/hw/virtio/vhost-user-blk.h
index 05ea0ad183..34ad6f0c0e 100644
--- a/include/hw/virtio/vhost-user-blk.h
+++ b/include/hw/virtio/vhost-user-blk.h
@@ -38,7 +38,6 @@ typedef struct VHostUserBlk {
VhostUserState vhost_user;
struct vhost_virtqueue *vhost_vqs;
VirtQueue **virtqs;
- guint watch;
bool connected;
} VHostUserBlk;
diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c
index 12925a47ec..17df5338e7 100644
--- a/hw/block/vhost-user-blk.c
+++ b/hw/block/vhost-user-blk.c
@@ -349,18 +349,6 @@ static void vhost_user_blk_disconnect(DeviceState *dev)
vhost_dev_cleanup(&s->dev);
}
-static gboolean vhost_user_blk_watch(GIOChannel *chan, GIOCondition cond,
- void *opaque)
-{
- DeviceState *dev = opaque;
- VirtIODevice *vdev = VIRTIO_DEVICE(dev);
- VHostUserBlk *s = VHOST_USER_BLK(vdev);
-
- qemu_chr_fe_disconnect(&s->chardev);
-
- return true;
-}
-
static void vhost_user_blk_event(void *opaque, QEMUChrEvent event)
{
DeviceState *dev = opaque;
@@ -373,15 +361,9 @@ static void vhost_user_blk_event(void *opaque, QEMUChrEvent event)
qemu_chr_fe_disconnect(&s->chardev);
return;
}
- s->watch = qemu_chr_fe_add_watch(&s->chardev, G_IO_HUP,
- vhost_user_blk_watch, dev);
break;
case CHR_EVENT_CLOSED:
vhost_user_blk_disconnect(dev);
- if (s->watch) {
- g_source_remove(s->watch);
- s->watch = 0;
- }
break;
case CHR_EVENT_BREAK:
case CHR_EVENT_MUX_IN:
@@ -428,7 +410,6 @@ static void vhost_user_blk_device_realize(DeviceState *dev, Error **errp)
s->inflight = g_new0(struct vhost_inflight, 1);
s->vhost_vqs = g_new0(struct vhost_virtqueue, s->num_queues);
- s->watch = 0;
s->connected = false;
qemu_chr_fe_set_handlers(&s->chardev, NULL, NULL, vhost_user_blk_event,
--
MST
next prev parent reply other threads:[~2020-03-31 15:05 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-31 14:56 [PULL 00/10] virtio, pci, pc: bugfixes, checkpatch, maintainers Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 01/10] checkpatch: enforce process for expected files Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 02/10] MAINTAINERS: Add myself as virtio-balloon co-maintainer Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 03/10] virtio-serial-bus: Plug memory leak on realize() error paths Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 04/10] acpi: pcihp: fix left shift undefined behavior in acpi_pcihp_eject_slot() Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 05/10] virtio-blk: delete vqs on the error path in realize() Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 06/10] virtio-iommu: avoid memleak in the unrealize Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 07/10] hw/i386/amd_iommu.c: Fix corruption of log events passed to guest Michael S. Tsirkin
2020-03-31 14:57 ` Michael S. Tsirkin [this message]
2020-03-31 14:57 ` [PULL 09/10] acpi: add acpi=OnOffAuto machine property to x86 and arm virt Michael S. Tsirkin
2020-03-31 14:57 ` [PULL 10/10] vhost-vsock: fix double close() in the realize() error path Michael S. Tsirkin
2020-03-31 16:56 ` [PULL 00/10] virtio, pci, pc: bugfixes, checkpatch, maintainers 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=20200331145631.135630-9-mst@redhat.com \
--to=mst@redhat.com \
--cc=fengli@smartx.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-block@nongnu.org \
--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 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).