From: Sun Feng <loyou85@gmail.com>
To: lvivier@redhat.com, amit@kernel.org, mst@redhat.com,
marcandre.lureau@redhat.com, pbonzini@redhat.com
Cc: qemu-devel@nongnu.org, Sun Feng <loyou85@gmail.com>
Subject: [PATCH] virtio-serial-bus: Discard throttled VirtQueueElement when virtio-serial closed
Date: Tue, 10 Oct 2023 14:22:16 +0800 [thread overview]
Message-ID: <20231010062216.16144-1-loyou85@gmail.com> (raw)
With commit d4c19cde("virtio-serial: add missing virtio_detach_element() call"),
when virtio serial is throttled and closed by host, port->elem should be discard with virtqueue_push,
otherwise virtqueue will not rewind, guest will blocked finally and cannot write anymore data.
It can be reproduced with following steps:
Create a vm with virtio-serial device through libvirt:
<channel type='unix'>
<source mode='bind' path='/tmp/test'/>
<target type='virtio' name='com.test.channel.0'/>
<address type='virtio-serial' controller='0' bus='0' port='1'/>
</channel>
Host run:
watch -n0.5 'timeout 0.5 nc -U /tmp/test'
Guest run:
hexdump -C -v /dev/zero > /dev/vport1p1
After sometime, guest can not write any data to serial.
We can see vq->last_avail_idx - vq->used_idx = 128 with gdb.
(gdb) p *(struct VirtQueue *) 0x565161c5c788
$4 = {vring = {num = 128, num_default = 128, align = 4096, desc = 4316049408, avail = 4316051456, used = 4316051776,
caches = 0x7fc530067e60}, used_elems = 0x565161c88dc0, last_avail_idx = 7929, last_avail_wrap_counter = true,
shadow_avail_idx = 7929, shadow_avail_wrap_counter = true, used_idx = 7801, used_wrap_counter = true, signalled_used = 7801,
signalled_used_valid = true, notification = true, queue_index = 5, inuse = 0, vector = 1,
handle_output = 0x56515da8aea0 <handle_output>, handle_aio_output = 0x0, vdev = 0x565161c54e30, guest_notifier = {rfd = 0,
wfd = 0}, host_notifier = {rfd = 74, wfd = 74}, host_notifier_enabled = true, node = {le_next = 0x565161c5c6f0,
le_prev = 0x565161c5c8a8}}
Fixes: d4c19cde("virtio-serial: add missing virtio_detach_element() call")
Signed-off-by: Sun Feng <loyou85@gmail.com>
---
hw/char/virtio-serial-bus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/char/virtio-serial-bus.c b/hw/char/virtio-serial-bus.c
index dd619f0..30b00a4 100644
--- a/hw/char/virtio-serial-bus.c
+++ b/hw/char/virtio-serial-bus.c
@@ -151,7 +151,7 @@ static void discard_vq_data(VirtQueue *vq, VirtIODevice *vdev)
static void discard_throttle_data(VirtIOSerialPort *port)
{
if (port->elem) {
- virtqueue_detach_element(port->ovq, port->elem, 0);
+ virtqueue_push(port->ovq, port->elem, 0);
g_free(port->elem);
port->elem = NULL;
}
--
2.7.4
next reply other threads:[~2023-10-10 6:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-10 6:22 Sun Feng [this message]
2025-02-18 15:34 ` [Ping][PATCH] virtio-serial-bus: Discard throttled VirtQueueElement when virtio-serial closed Feng Sun
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=20231010062216.16144-1-loyou85@gmail.com \
--to=loyou85@gmail.com \
--cc=amit@kernel.org \
--cc=lvivier@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.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 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).