* [Qemu-devel] [6864] e1000: Fix RX descriptor low threshold interrupt logic ( Alex Williamson)
@ 2009-03-20 16:13 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2009-03-20 16:13 UTC (permalink / raw)
To: qemu-devel
Revision: 6864
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6864
Author: aliguori
Date: 2009-03-20 16:13:47 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
e1000: Fix RX descriptor low threshold interrupt logic (Alex Williamson)
The RXDMT0 interrupt is supposed to fire when the number of free
RX descriptors drops to some fraction of the total descriptors.
However in practice, it seems like we're adding this interrupt
cause on every RX. Fix the logic to treat (tail - head) as the
number of free entries rather than the number of used entries.
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/hw/e1000.c
Modified: trunk/hw/e1000.c
===================================================================
--- trunk/hw/e1000.c 2009-03-20 16:13:41 UTC (rev 6863)
+++ trunk/hw/e1000.c 2009-03-20 16:13:47 UTC (rev 6864)
@@ -666,8 +666,8 @@
n = E1000_ICS_RXT0;
if ((rdt = s->mac_reg[RDT]) < s->mac_reg[RDH])
rdt += s->mac_reg[RDLEN] / sizeof(desc);
- if (((rdt - s->mac_reg[RDH]) * sizeof(desc)) << s->rxbuf_min_shift >=
- s->mac_reg[RDLEN])
+ if (((rdt - s->mac_reg[RDH]) * sizeof(desc)) <= s->mac_reg[RDLEN] >>
+ s->rxbuf_min_shift)
n |= E1000_ICS_RXDMT0;
set_ics(s, 0, n);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-20 16:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-20 16:13 [Qemu-devel] [6864] e1000: Fix RX descriptor low threshold interrupt logic ( Alex Williamson) Anthony Liguori
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).