diff options
author | Vikas Gupta <vikas.gupta@broadcom.com> | 2024-04-06 02:55:12 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-04-08 15:55:47 +0300 |
commit | b5ea7d33ba2a42b95b4298d08d2af9cdeeaf0090 (patch) | |
tree | 9d07a6c35810d405036a17be2bf3e3c6207bf7db | |
parent | 7ac10c7d728d75bc9daaa8fade3c7a3273b9a9ff (diff) | |
download | linux-b5ea7d33ba2a42b95b4298d08d2af9cdeeaf0090.tar.xz |
bnxt_en: Fix error recovery for RoCE ulp client
Since runtime MSIXs vector allocation/free has been removed,
the L2 driver needs to repopulate the MSIX entries for the
ulp client as the irq table may change during the recovery
process.
Fixes: 303432211324 ("bnxt_en: Remove runtime interrupt vector allocation")
Reviewed-by: Andy Gospodarek <andrew.gospodarek@broadcom.com>
Signed-off-by: Vikas Gupta <vikas.gupta@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c index a5f9c9090a6b..195c02dc0683 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c @@ -210,6 +210,9 @@ void bnxt_ulp_start(struct bnxt *bp, int err) if (err) return; + if (edev->ulp_tbl->msix_requested) + bnxt_fill_msix_vecs(bp, edev->msix_entries); + if (aux_priv) { struct auxiliary_device *adev; |