]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
bnx2x: Enable Multi-Cos feature.
authorSudarsana Reddy Kalluru <skalluru@marvell.com>
Tue, 5 Nov 2019 05:51:10 +0000 (21:51 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 6 Nov 2019 02:25:14 +0000 (18:25 -0800)
FW version 7.13.15 addresses the issue in Multi-cos implementation.
This patch re-enables the Multi-Cos support in the driver.

Fixes: d1f0b5dce8fd ("bnx2x: Disable multi-cos feature.")
Signed-off-by: Sudarsana Reddy Kalluru <skalluru@marvell.com>
Signed-off-by: Ariel Elior <aelior@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c

index d10b421ed1f19939bb4046ede23d74b55ebb5beb..5e037a305b83636365f1ab76d6b9bb10b60e4173 100644 (file)
@@ -1934,7 +1934,8 @@ u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb,
        }
 
        /* select a non-FCoE queue */
-       return netdev_pick_tx(dev, skb, NULL) % (BNX2X_NUM_ETH_QUEUES(bp));
+       return netdev_pick_tx(dev, skb, NULL) %
+                       (BNX2X_NUM_ETH_QUEUES(bp) * bp->max_cos);
 }
 
 void bnx2x_set_num_queues(struct bnx2x *bp)