]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/commitdiff
gianfar: use netif_tx_queue_stopped instead of __netif_subqueue_stopped
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 18 Mar 2012 21:11:22 +0000 (17:11 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 18 Mar 2012 21:11:22 +0000 (17:11 -0400)
The __netif_subqueue_stopped() just does the following:

        struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
        return netif_tx_queue_stopped(txq);

and since we already have the txq in scope, we can just call that
directly in this case.

Suggested-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/net/ethernet/freescale/gianfar.c

index 6e66cc35c970a8dda7a3a1168414eb2078930be5..d9428f0e738a2edf2267055ab1e2008d63d2ff3f 100644 (file)
@@ -2565,7 +2565,7 @@ static int gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
        }
 
        /* If we freed a buffer, we can restart transmission, if necessary */
-       if (__netif_subqueue_stopped(dev, tqi) && tx_queue->num_txbdfree)
+       if (netif_tx_queue_stopped(txq) && tx_queue->num_txbdfree)
                netif_wake_subqueue(dev, tqi);
 
        /* Update dirty indicators */