qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: use peer when purging queue in qemu_flush_or_purge_queue_packets()
@ 2020-05-11  4:04 Jason Wang
  2020-05-11  4:21 ` Alexander Bulekov
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Wang @ 2020-05-11  4:04 UTC (permalink / raw)
  To: jasowang; +Cc: alxndr, qemu-stable, qemu-devel, stefanha, mst

The sender of packet will be checked in the qemu_net_queue_purge() but
we use NetClientState not its peer when trying to purge the incoming
queue in qemu_flush_or_purge_packets(). This will trigger the assert
in virtio_net_reset since we can't pass the sender check.

Fix by using the peer.

Reported-by: "Alexander Bulekov" <alxndr@bu.edu>
Fixes: ca77d85e1dbf9 ("net: complete all queued packets on VM stop")
Cc: qemu-stable@nongnu.org
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
 net/net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/net.c b/net/net.c
index 38778e831d..9e47cf727d 100644
--- a/net/net.c
+++ b/net/net.c
@@ -610,7 +610,7 @@ void qemu_flush_or_purge_queued_packets(NetClientState *nc, bool purge)
         qemu_notify_event();
     } else if (purge) {
         /* Unable to empty the queue, purge remaining packets */
-        qemu_net_queue_purge(nc->incoming_queue, nc);
+        qemu_net_queue_purge(nc->incoming_queue, nc->peer);
     }
 }
 
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-05-18  8:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-11  4:04 [PATCH] net: use peer when purging queue in qemu_flush_or_purge_queue_packets() Jason Wang
2020-05-11  4:21 ` Alexander Bulekov
2020-05-18  3:34   ` Jason Wang
2020-05-18  8:00     ` Philippe Mathieu-Daudé
2020-05-18  8:38       ` Jason Wang

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).