Skip to content

Commit ba09801

Browse files
Michael Chandavem330
Michael Chan
authored andcommitted
bnxt_en: Use existing MSIX vectors for all mqprio TX rings
We can now fully support sharing the same MSIX for all mqprio TX rings belonging to the same ethtool channel with the new infrastructure: 1. Allocate the proper entries for cp_ring_arr in struct bnxt_cp_ring_info to support the additional TX rings. 2. Populate the tx_ring array in struct bnxt_napi for all TX rings sharing the same NAPI. 3. bnxt_num_tx_to_cp() returns the proper NQ/completion rings to support the TX rings in the input. 4. Adjust bnxt_get_num_ring_stats() for the reduced number of ring counters with the new scheme. Reviewed-by: Andy Gospodarek <[email protected]> Signed-off-by: Michael Chan <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent f07b588 commit ba09801

File tree

2 files changed

+43
-16
lines changed

2 files changed

+43
-16
lines changed

drivers/net/ethernet/broadcom/bnxt/bnxt.c

+41-15
Original file line numberDiff line numberDiff line change
@@ -3609,14 +3609,18 @@ static int bnxt_alloc_cp_rings(struct bnxt *bp)
36093609
{
36103610
bool sh = !!(bp->flags & BNXT_FLAG_SHARED_RINGS);
36113611
int i, j, rc, ulp_base_vec, ulp_msix;
3612+
int tcs = netdev_get_num_tc(bp->dev);
36123613

3614+
if (!tcs)
3615+
tcs = 1;
36133616
ulp_msix = bnxt_get_ulp_msix_num(bp);
36143617
ulp_base_vec = bnxt_get_ulp_msix_base(bp);
36153618
for (i = 0, j = 0; i < bp->cp_nr_rings; i++) {
36163619
struct bnxt_napi *bnapi = bp->bnapi[i];
36173620
struct bnxt_cp_ring_info *cpr, *cpr2;
36183621
struct bnxt_ring_struct *ring;
36193622
int cp_count = 0, k;
3623+
int rx = 0, tx = 0;
36203624

36213625
if (!bnapi)
36223626
continue;
@@ -3637,11 +3641,18 @@ static int bnxt_alloc_cp_rings(struct bnxt *bp)
36373641
if (!(bp->flags & BNXT_FLAG_CHIP_P5))
36383642
continue;
36393643

3640-
if (i < bp->rx_nr_rings)
3644+
if (i < bp->rx_nr_rings) {
36413645
cp_count++;
3642-
if ((sh && i < bp->tx_nr_rings) ||
3643-
(!sh && i >= bp->rx_nr_rings))
3646+
rx = 1;
3647+
}
3648+
if (i < bp->tx_nr_rings_xdp) {
36443649
cp_count++;
3650+
tx = 1;
3651+
} else if ((sh && i < bp->tx_nr_rings) ||
3652+
(!sh && i >= bp->rx_nr_rings)) {
3653+
cp_count += tcs;
3654+
tx = 1;
3655+
}
36453656

36463657
cpr->cp_ring_arr = kcalloc(cp_count, sizeof(*cpr),
36473658
GFP_KERNEL);
@@ -3656,14 +3667,19 @@ static int bnxt_alloc_cp_rings(struct bnxt *bp)
36563667
return rc;
36573668
cpr2->bnapi = bnapi;
36583669
cpr2->cp_idx = k;
3659-
if (!k && i < bp->rx_nr_rings) {
3670+
if (!k && rx) {
36603671
bp->rx_ring[i].rx_cpr = cpr2;
36613672
cpr2->cp_ring_type = BNXT_NQ_HDL_TYPE_RX;
36623673
} else {
3663-
bp->tx_ring[j++].tx_cpr = cpr2;
3674+
int n, tc = k - rx;
3675+
3676+
n = BNXT_TC_TO_RING_BASE(bp, tc) + j;
3677+
bp->tx_ring[n].tx_cpr = cpr2;
36643678
cpr2->cp_ring_type = BNXT_NQ_HDL_TYPE_TX;
36653679
}
36663680
}
3681+
if (tx)
3682+
j++;
36673683
}
36683684
return 0;
36693685
}
@@ -4704,24 +4720,33 @@ static int bnxt_alloc_mem(struct bnxt *bp, bool irq_re_init)
47044720
else
47054721
j = bp->rx_nr_rings;
47064722

4707-
for (i = 0; i < bp->tx_nr_rings; i++, j++) {
4723+
for (i = 0; i < bp->tx_nr_rings; i++) {
47084724
struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
4725+
struct bnxt_napi *bnapi2;
47094726

47104727
if (bp->flags & BNXT_FLAG_CHIP_P5)
47114728
txr->tx_ring_struct.ring_mem.flags =
47124729
BNXT_RMEM_RING_PTE_FLAG;
4713-
else
4714-
txr->tx_cpr = &bp->bnapi[i]->cp_ring;
4715-
txr->bnapi = bp->bnapi[j];
4716-
bp->bnapi[j]->tx_ring[0] = txr;
47174730
bp->tx_ring_map[i] = bp->tx_nr_rings_xdp + i;
47184731
if (i >= bp->tx_nr_rings_xdp) {
4732+
int k = j + BNXT_RING_TO_TC_OFF(bp, i);
4733+
4734+
bnapi2 = bp->bnapi[k];
47194735
txr->txq_index = i - bp->tx_nr_rings_xdp;
4720-
bp->bnapi[j]->tx_int = bnxt_tx_int;
4736+
txr->tx_napi_idx =
4737+
BNXT_RING_TO_TC(bp, txr->txq_index);
4738+
bnapi2->tx_ring[txr->tx_napi_idx] = txr;
4739+
bnapi2->tx_int = bnxt_tx_int;
47214740
} else {
4722-
bp->bnapi[j]->flags |= BNXT_NAPI_FLAG_XDP;
4723-
bp->bnapi[j]->tx_int = bnxt_tx_int_xdp;
4741+
bnapi2 = bp->bnapi[j];
4742+
bnapi2->flags |= BNXT_NAPI_FLAG_XDP;
4743+
bnapi2->tx_ring[0] = txr;
4744+
bnapi2->tx_int = bnxt_tx_int_xdp;
4745+
j++;
47244746
}
4747+
txr->bnapi = bnapi2;
4748+
if (!(bp->flags & BNXT_FLAG_CHIP_P5))
4749+
txr->tx_cpr = &bnapi2->cp_ring;
47254750
}
47264751

47274752
rc = bnxt_alloc_stats(bp);
@@ -9099,7 +9124,7 @@ static int __bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
90999124

91009125
static int __bnxt_num_tx_to_cp(struct bnxt *bp, int tx, int tx_sets, int tx_xdp)
91019126
{
9102-
return tx;
9127+
return (tx - tx_xdp) / tx_sets + tx_xdp;
91039128
}
91049129

91059130
int bnxt_num_tx_to_cp(struct bnxt *bp, int tx)
@@ -13723,7 +13748,8 @@ static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1372313748
}
1372413749

1372513750
max_irqs = bnxt_get_max_irq(pdev);
13726-
dev = alloc_etherdev_mq(sizeof(*bp), max_irqs);
13751+
dev = alloc_etherdev_mqs(sizeof(*bp), max_irqs * BNXT_MAX_QUEUE,
13752+
max_irqs);
1372713753
if (!dev)
1372813754
return -ENOMEM;
1372913755

drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,8 @@ static int bnxt_get_num_ring_stats(struct bnxt *bp)
528528
bnxt_get_num_tpa_ring_stats(bp);
529529
tx = NUM_RING_TX_HW_STATS;
530530
cmn = NUM_RING_CMN_SW_STATS;
531-
return rx * bp->rx_nr_rings + tx * bp->tx_nr_rings +
531+
return rx * bp->rx_nr_rings +
532+
tx * (bp->tx_nr_rings_xdp + bp->tx_nr_rings_per_tc) +
532533
cmn * bp->cp_nr_rings;
533534
}
534535

0 commit comments

Comments
 (0)