提交 e19eb224 编写于 作者: M Mark McLoughlin

net: make use of async packet sending API in tap client

If a packet is queued by qemu_send_packet(), remove I/O
handler for the tap fd until we get notification that the
packet has been sent.

A not insignificant side effect of this is we can now
drain the tap send queue in one go without fear of packets
being dropped.
Signed-off-by: NMark McLoughlin <markmc@redhat.com>
上级 f3b6c7fc
......@@ -1079,15 +1079,31 @@ static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
}
#endif
static void tap_send(void *opaque);
static void tap_send_completed(VLANClientState *vc)
{
TAPState *s = vc->opaque;
qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
}
static void tap_send(void *opaque)
{
TAPState *s = opaque;
int size;
do {
size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
if (size > 0) {
qemu_send_packet(s->vc, s->buf, size);
if (size <= 0) {
break;
}
size = qemu_send_packet_async(s->vc, s->buf, size, tap_send_completed);
if (size == 0) {
qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
}
} while (size > 0);
}
static void tap_cleanup(VLANClientState *vc)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册