mirror of https://github.com/xemu-project/xemu.git
virtio-net: introduce flush_or_purge_queued_packets()
Introduce the fucntion flush_or_purge_queued_packets(), it will be used in device reset and virtqueue reset. Therefore, we extract the common logic as a new function. Signed-off-by: Kangjie Xu <kangjie.xu@linux.alibaba.com> Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com> Acked-by: Jason Wang <jasowang@redhat.com> Message-Id: <20221017092558.111082-12-xuanzhuo@linux.alibaba.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
10f8a115a8
commit
4fdf69ab69
|
@ -124,6 +124,16 @@ static int vq2q(int queue_index)
|
||||||
return queue_index / 2;
|
return queue_index / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void flush_or_purge_queued_packets(NetClientState *nc)
|
||||||
|
{
|
||||||
|
if (!nc->peer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
qemu_flush_or_purge_queued_packets(nc->peer, true);
|
||||||
|
assert(!virtio_net_get_subqueue(nc)->async_tx.elem);
|
||||||
|
}
|
||||||
|
|
||||||
/* TODO
|
/* TODO
|
||||||
* - we could suppress RX interrupt if we were so inclined.
|
* - we could suppress RX interrupt if we were so inclined.
|
||||||
*/
|
*/
|
||||||
|
@ -566,12 +576,7 @@ static void virtio_net_reset(VirtIODevice *vdev)
|
||||||
|
|
||||||
/* Flush any async TX */
|
/* Flush any async TX */
|
||||||
for (i = 0; i < n->max_queue_pairs; i++) {
|
for (i = 0; i < n->max_queue_pairs; i++) {
|
||||||
NetClientState *nc = qemu_get_subqueue(n->nic, i);
|
flush_or_purge_queued_packets(qemu_get_subqueue(n->nic, i));
|
||||||
|
|
||||||
if (nc->peer) {
|
|
||||||
qemu_flush_or_purge_queued_packets(nc->peer, true);
|
|
||||||
assert(!virtio_net_get_subqueue(nc)->async_tx.elem);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue