From: Mark McLoughlin <markmc@redhat.com>
To: qemu-devel@nongnu.org
Cc: Mark McLoughlin <markmc@redhat.com>
Subject: [Qemu-devel] [PATCH 4/8] net: handle EAGAIN from tapfd write()
Date: Thu, 18 Jun 2009 18:21:32 +0100 [thread overview]
Message-ID: <1245345696-20915-5-git-send-email-markmc@redhat.com> (raw)
In-Reply-To: <1245345696-20915-4-git-send-email-markmc@redhat.com>
If a write() on tapfd returns EAGAIN, return zero so that the packet
gets queued (in the case of async send) and enable polling tapfd for
writing.
When tapfd becomes writable, disable write polling and flush any queued
packets.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
---
net.c | 27 +++++++++++++++++++++++++--
1 files changed, 25 insertions(+), 2 deletions(-)
diff --git a/net.c b/net.c
index 9005822..e2e73ef 100644
--- a/net.c
+++ b/net.c
@@ -1044,19 +1044,21 @@ typedef struct TAPState {
char down_script_arg[128];
uint8_t buf[4096];
unsigned int read_poll : 1;
+ unsigned int write_poll : 1;
} TAPState;
static int launch_script(const char *setup_script, const char *ifname, int fd);
static int tap_can_send(void *opaque);
static void tap_send(void *opaque);
+static void tap_writable(void *opaque);
static void tap_update_fd_handler(TAPState *s)
{
qemu_set_fd_handler2(s->fd,
s->read_poll ? tap_can_send : NULL,
s->read_poll ? tap_send : NULL,
- NULL,
+ s->write_poll ? tap_writable : NULL,
s);
}
@@ -1066,6 +1068,21 @@ static void tap_read_poll(TAPState *s, int enable)
tap_update_fd_handler(s);
}
+static void tap_write_poll(TAPState *s, int enable)
+{
+ s->write_poll = !!enable;
+ tap_update_fd_handler(s);
+}
+
+static void tap_writable(void *opaque)
+{
+ TAPState *s = opaque;
+
+ tap_write_poll(s, 0);
+
+ qemu_flush_queued_packets(s->vc);
+}
+
static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
int iovcnt)
{
@@ -1074,7 +1091,12 @@ static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
do {
len = writev(s->fd, iov, iovcnt);
- } while (len == -1 && (errno == EINTR || errno == EAGAIN));
+ } while (len == -1 && errno == EINTR);
+
+ if (len == -1 && errno == EAGAIN) {
+ tap_write_poll(s, 1);
+ return 0;
+ }
return len;
}
@@ -1150,6 +1172,7 @@ static void tap_cleanup(VLANClientState *vc)
launch_script(s->down_script, s->down_script_arg, s->fd);
tap_read_poll(s, 0);
+ tap_write_poll(s, 0);
close(s->fd);
qemu_free(s);
}
--
1.6.0.6
next prev parent reply other threads:[~2009-06-18 17:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-18 17:21 [Qemu-devel] [PATCH 0/8] TUNSETSNDBUF - pushback to help UDP tx Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 1/8] net: add qemu_purge_queued_packets() Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 2/8] net: purge queued packets in tap_cleanup() Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 3/8] net: add tap_read_poll() helper Mark McLoughlin
2009-06-18 17:21 ` Mark McLoughlin [this message]
2009-06-18 17:21 ` [Qemu-devel] [PATCH 5/8] net: return TAPState from net_tap_init() Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 6/8] net: add '-net tap,sndbuf=nbytes' Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 7/8] net: add packet length to NetPacketSent callback Mark McLoughlin
2009-06-18 17:21 ` [Qemu-devel] [PATCH 8/8] virtio-net: implement async packet sending Mark McLoughlin
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=1245345696-20915-5-git-send-email-markmc@redhat.com \
--to=markmc@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).