]> git.dujemihanovic.xyz Git - linux.git/commitdiff
octeontx2-pf: Dont allocate BPIDs for LBK interfaces
authorGeetha sowjanya <gakula@marvell.com>
Sun, 16 Jul 2023 09:37:41 +0000 (15:07 +0530)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 18 Jul 2023 12:51:45 +0000 (14:51 +0200)
Current driver enables backpressure for LBK interfaces.
But these interfaces do not support this feature.
Hence, this patch fixes the issue by skipping the
backpressure configuration for these interfaces.

Fixes: 75f36270990c ("octeontx2-pf: Support to enable/disable pause frames via ethtool").
Signed-off-by: Geetha sowjanya <gakula@marvell.com>
Signed-off-by: Sunil Goutham <sgoutham@marvell.com>
Link: https://lore.kernel.org/r/20230716093741.28063-1-gakula@marvell.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c

index fe8ea4e531b7e3bc18675cb31ab1dc1889339cb7..9551b422622a422576ab0012f48f50db13fa03aa 100644 (file)
@@ -1454,8 +1454,9 @@ static int otx2_init_hw_resources(struct otx2_nic *pf)
        if (err)
                goto err_free_npa_lf;
 
-       /* Enable backpressure */
-       otx2_nix_config_bp(pf, true);
+       /* Enable backpressure for CGX mapped PF/VFs */
+       if (!is_otx2_lbkvf(pf->pdev))
+               otx2_nix_config_bp(pf, true);
 
        /* Init Auras and pools used by NIX RQ, for free buffer ptrs */
        err = otx2_rq_aura_pool_init(pf);