The patch titled cxgb: fix NAPI has been added to the -mm tree. Its filename is cxgb-fix-napi.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cxgb: fix NAPI From: Divy Le Ray <divy@xxxxxxxxxxx> netif_rx_complete() should be called only when work_done < budget. Signed-off-by: Divy Le ray <divy@xxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/chelsio/sge.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/net/chelsio/sge.c~cxgb-fix-napi drivers/net/chelsio/sge.c --- a/drivers/net/chelsio/sge.c~cxgb-fix-napi +++ a/drivers/net/chelsio/sge.c @@ -1629,11 +1629,9 @@ int t1_poll(struct napi_struct *napi, in { struct adapter *adapter = container_of(napi, struct adapter, napi); struct net_device *dev = adapter->port[0].dev; - int work_done; - - work_done = process_responses(adapter, budget); + int work_done = process_responses(adapter, budget); - if (likely(!responses_pending(adapter))) { + if (likely(work_done < budget)) { netif_rx_complete(dev, napi); writel(adapter->sge->respQ.cidx, adapter->regs + A_SG_SLEEPING); _ Patches currently in -mm which might be from divy@xxxxxxxxxxx are git-netdev-all.patch cxgb-fix-t2-gso.patch cxgb-fix-napi.patch cxgb-fix-stats.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html