[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [NET] back: Refcount fixes to vif rate-limiting code.
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Node ID fd80b7e1e333d250095ff1939c0dcca0698f5397 # Parent 6e932f32662cd5d4742780be25b88fd7a782b181 [NET] back: Refcount fixes to vif rate-limiting code. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- linux-2.6-xen-sparse/drivers/xen/netback/interface.c | 1 + linux-2.6-xen-sparse/drivers/xen/netback/netback.c | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff -r 6e932f32662c -r fd80b7e1e333 linux-2.6-xen-sparse/drivers/xen/netback/interface.c --- a/linux-2.6-xen-sparse/drivers/xen/netback/interface.c Mon Oct 09 16:43:09 2006 +0100 +++ b/linux-2.6-xen-sparse/drivers/xen/netback/interface.c Mon Oct 09 17:08:18 2006 +0100 @@ -62,6 +62,7 @@ static void __netif_down(netif_t *netif) { disable_irq(netif->irq); netif_deschedule_work(netif); + del_timer_sync(&netif->credit_timeout); } static int net_open(struct net_device *dev) diff -r 6e932f32662c -r fd80b7e1e333 linux-2.6-xen-sparse/drivers/xen/netback/netback.c --- a/linux-2.6-xen-sparse/drivers/xen/netback/netback.c Mon Oct 09 16:43:09 2006 +0100 +++ b/linux-2.6-xen-sparse/drivers/xen/netback/netback.c Mon Oct 09 17:08:18 2006 +0100 @@ -1102,6 +1102,7 @@ static void net_tx_action(unsigned long i = netif->tx.req_cons; rmb(); /* Ensure that we see the request before we copy it. */ memcpy(&txreq, RING_GET_REQUEST(&netif->tx, i), sizeof(txreq)); + /* Credit-based scheduling. */ if (txreq.size > netif->remaining_credit) { unsigned long now = jiffies; @@ -1110,8 +1111,10 @@ static void net_tx_action(unsigned long msecs_to_jiffies(netif->credit_usec / 1000); /* Timer could already be pending in rare cases. */ - if (timer_pending(&netif->credit_timeout)) - break; + if (timer_pending(&netif->credit_timeout)) { + netif_put(netif); + continue; + } /* Passed the point where we can replenish credit? */ if (time_after_eq(now, next_credit)) { @@ -1128,7 +1131,8 @@ static void net_tx_action(unsigned long tx_credit_callback; __mod_timer(&netif->credit_timeout, next_credit); - break; + netif_put(netif); + continue; } } netif->remaining_credit -= txreq.size; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |