amd-xgbe: Clarify output message about queues
authorLendacky, Thomas <Thomas.Lendacky@amd.com>
Fri, 20 Mar 2015 16:50:10 +0000 (11:50 -0500)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Mar 2015 20:33:57 +0000 (16:33 -0400)
Clarify that the queues referred to in a message when the device is
brought up are hardware queues and not necessarily related to the
Linux network queues.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/xgbe/xgbe-dev.c

index 400757b49872704f6b236579efaf048ad461c2e9..29137c9e22008cd21b701a8b3fb8768346f3b7c3 100644 (file)
@@ -2004,7 +2004,8 @@ static void xgbe_config_tx_fifo_size(struct xgbe_prv_data *pdata)
        for (i = 0; i < pdata->tx_q_count; i++)
                XGMAC_MTL_IOWRITE_BITS(pdata, i, MTL_Q_TQOMR, TQS, fifo_size);
 
-       netdev_notice(pdata->netdev, "%d Tx queues, %d byte fifo per queue\n",
+       netdev_notice(pdata->netdev,
+                     "%d Tx hardware queues, %d byte fifo per queue\n",
                      pdata->tx_q_count, ((fifo_size + 1) * 256));
 }
 
@@ -2019,7 +2020,8 @@ static void xgbe_config_rx_fifo_size(struct xgbe_prv_data *pdata)
        for (i = 0; i < pdata->rx_q_count; i++)
                XGMAC_MTL_IOWRITE_BITS(pdata, i, MTL_Q_RQOMR, RQS, fifo_size);
 
-       netdev_notice(pdata->netdev, "%d Rx queues, %d byte fifo per queue\n",
+       netdev_notice(pdata->netdev,
+                     "%d Rx hardware queues, %d byte fifo per queue\n",
                      pdata->rx_q_count, ((fifo_size + 1) * 256));
 }
 
This page took 0.025537 seconds and 5 git commands to generate.