Skip to content

Commit

Permalink
be2net: setup xps queue mapping
Browse files Browse the repository at this point in the history
This patch sets up xps queue mapping on load, so that TX traffic is
steered to the queue whose irqs are being processed by the current cpu.
This helps in avoiding TX lock contention.

Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sathya Perla authored and David S. Miller committed Mar 29, 2015
1 parent d658d98 commit 73f394e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions drivers/net/ethernet/emulex/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2454,8 +2454,9 @@ static void be_tx_queues_destroy(struct be_adapter *adapter)

static int be_tx_qs_create(struct be_adapter *adapter)
{
struct be_queue_info *cq, *eq;
struct be_queue_info *cq;
struct be_tx_obj *txo;
struct be_eq_obj *eqo;
int status, i;

adapter->num_tx_qs = min(adapter->num_evt_qs, be_max_txqs(adapter));
Expand All @@ -2473,8 +2474,8 @@ static int be_tx_qs_create(struct be_adapter *adapter)
/* If num_evt_qs is less than num_tx_qs, then more than
* one txq share an eq
*/
eq = &adapter->eq_obj[i % adapter->num_evt_qs].q;
status = be_cmd_cq_create(adapter, cq, eq, false, 3);
eqo = &adapter->eq_obj[i % adapter->num_evt_qs];
status = be_cmd_cq_create(adapter, cq, &eqo->q, false, 3);
if (status)
return status;

Expand All @@ -2486,6 +2487,9 @@ static int be_tx_qs_create(struct be_adapter *adapter)
status = be_cmd_txq_create(adapter, txo);
if (status)
return status;

netif_set_xps_queue(adapter->netdev, eqo->affinity_mask,
eqo->idx);
}

dev_info(&adapter->pdev->dev, "created %d TX queue(s)\n",
Expand Down

0 comments on commit 73f394e

Please sign in to comment.