net: disable draining tap queue in one goqemu-0.11.0-9.fc12qemu-0.11.0-9.fc13
commit2e7c7b6cb25603e2fa40990da86d03a57b2616bd
authorMark McLoughlin <markmc@redhat.com>
Thu, 29 Oct 2009 11:34:17 +0000 (29 11:34 +0000)
committerMark McLoughlin <markmc@redhat.com>
Thu, 29 Oct 2009 12:50:58 +0000 (29 12:50 +0000)
tree64feea74216e50d20ebaa545952b3ea717930b63
parent1c3ea4df653c7b71df0a12184c747a517330c408
net: disable draining tap queue in one go

If qemu_send_packet_async() returns zero, it means the packet has been
queued and the sent callback will be invoked once it has been flushed.

This is only possible where the NIC's receive() handler returns zero
and promises to notify the networking core that room is available in its
queue again.

In the case where the receive handler does not have this capability
(and its queue fills up) it returns -1 and the networking core does not
queue up the packet. This condition is indicated by a -1 return from
qemu_send_packet_async().

Currently, tap handles this condition simply by dropping the packet. It
should do its best to avoid getting into this situation by checking such
NIC's have room for a packet before copying the packet from the tap
interface.

tap_send() used to achieve this by only reading a single packet before
returning to the mainloop. That way, tap_can_send() is called before
reading each packet.

tap_send() was changed to completely drain the tap interface queue
without taking into account the situation where the NIC returns an
error and the packet is not queued. Let's start fixing this by
reverting to the previous behaviour of reading one packet at a time.

Reported-by: Scott Tsai <scottt.tw@gmail.com>
Tested-by: Sven Rudolph <Sven_Rudolph@drewag.de>
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Fedora-patch: qemu-fix-dropped-packets-with-non-virtio-nics.patch
net.c