Commit b0935343 authored by Michael Chan's avatar Michael Chan Committed by Jakub Kicinski
Browse files

bnxt_en: Simplify bnxt_rfs_capable()



bnxt_rfs_capable() determines the number of VNICs and RSS_CTXs
required to support aRFS and then reserves the resources.  We already
have functions bnxt_get_total_vnics() and bnxt_get_total_rss_ctxs()
to do that.  Simplify the code by calling these functions.  It is
also more correct to do the resource reservation after
bnxt_can_reserve_rings() returns true.

Signed-off-by: default avatarMichael Chan <michael.chan@broadcom.com>
Link: https://lore.kernel.org/r/20240325222902.220712-8-michael.chan@broadcom.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent ecb342bb
Loading
Loading
Loading
Loading
+6 −15
Original line number Diff line number Diff line
@@ -12479,28 +12479,19 @@ static bool bnxt_rfs_capable(struct bnxt *bp)
	struct bnxt_hw_rings hwr = {0};
	int max_vnics, max_rss_ctxs;

	hwr.rss_ctx = 1;
	if (BNXT_SUPPORTS_NTUPLE_VNIC(bp)) {
		/* 2 VNICS: default + Ntuple */
		hwr.vnic = 2;
		hwr.rss_ctx = bnxt_get_nr_rss_ctxs(bp, bp->rx_nr_rings) *
			      hwr.vnic;
		goto check_reserve_vnic;
	}
	if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS)
	if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) &&
	    !BNXT_SUPPORTS_NTUPLE_VNIC(bp))
		return bnxt_rfs_supported(bp);

	if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp) || !bp->rx_nr_rings)
		return false;

	hwr.vnic = 1 + bp->rx_nr_rings;
check_reserve_vnic:
	hwr.grp = bp->rx_nr_rings;
	hwr.vnic = bnxt_get_total_vnics(bp, bp->rx_nr_rings);
	hwr.rss_ctx = bnxt_get_total_rss_ctxs(bp, &hwr);
	max_vnics = bnxt_get_max_func_vnics(bp);
	max_rss_ctxs = bnxt_get_max_func_rss_ctxs(bp);

	if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS) &&
	    !(bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP))
		hwr.rss_ctx = hwr.vnic;

	if (hwr.vnic > max_vnics || hwr.rss_ctx > max_rss_ctxs) {
		if (bp->rx_nr_rings > 1)
			netdev_warn(bp->dev,