summaryrefslogtreecommitdiff
path: root/net.c
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2009-04-29 09:50:32 +0100
committerMark McLoughlin <markmc@redhat.com>2009-06-09 11:38:49 +0100
commit7376a85485e97af61698ff2f8914e2aa5fd9381a (patch)
treec2987a4b38ff19401395c1f73e17266f0239a6ee /net.c
parent8e84fa3854ef166311402e8ed7dc3cd4d71c273b (diff)
downloadqemu-7376a85485e97af61698ff2f8914e2aa5fd9381a.tar.gz
qemu-7376a85485e97af61698ff2f8914e2aa5fd9381a.tar.bz2
qemu-7376a85485e97af61698ff2f8914e2aa5fd9381a.zip
net: only read from tapfd when we can send
Reduce the number of packets dropped under heavy network traffic by only reading a packet from the tapfd when a client can actually handle it. Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Diffstat (limited to 'net.c')
-rw-r--r--net.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/net.c b/net.c
index 0d9e520301..54ad98f077 100644
--- a/net.c
+++ b/net.c
@@ -956,6 +956,13 @@ static void tap_receive(void *opaque, const uint8_t *buf, int size)
}
}
+static int tap_can_send(void *opaque)
+{
+ TAPState *s = opaque;
+
+ return qemu_can_send_packet(s->vc);
+}
+
#ifdef __sun__
static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
{
@@ -1011,7 +1018,7 @@ static TAPState *net_tap_fd_init(VLANState *vlan,
s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive,
NULL, tap_cleanup, s);
s->vc->fd_readv = tap_receive_iov;
- qemu_set_fd_handler(s->fd, tap_send, NULL, s);
+ qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
return s;
}