wil6210: NAPI completion refactor
authorVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Sun, 8 Mar 2015 13:42:01 +0000 (15:42 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 13 Mar 2015 13:17:31 +0000 (15:17 +0200)
It is expected that driver completes NAPI when less than
full budget is consumed.

Fulfill this requirement.

Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/wil6210/netdev.c

index ace30c1..f2f7ea2 100644 (file)
@@ -82,7 +82,7 @@ static int wil6210_netdev_poll_rx(struct napi_struct *napi, int budget)
        wil_rx_handle(wil, &quota);
        done = budget - quota;
 
-       if (done <= 1) { /* burst ends - only one packet processed */
+       if (done < budget) {
                napi_complete(napi);
                wil6210_unmask_irq_rx(wil);
                wil_dbg_txrx(wil, "NAPI RX complete\n");
@@ -110,7 +110,7 @@ static int wil6210_netdev_poll_tx(struct napi_struct *napi, int budget)
                tx_done += wil_tx_complete(wil, i);
        }
 
-       if (tx_done <= 1) { /* burst ends - only one packet processed */
+       if (tx_done < budget) {
                napi_complete(napi);
                wil6210_unmask_irq_tx(wil);
                wil_dbg_txrx(wil, "NAPI TX complete\n");