net/bnxt: check invalid VNIC in cleanup path
The cleanup/rollback operation post rte_eth_dev_start failure might end up invoking an HWRM cmd even on an invalid vNIC resulting in error messages being logged needlessly. Fix to check for the same before issuing the HWRM cmd. Fixes: c09f57b49c13 ("net/bnxt: add start/stop/link update operations") Cc: stable@dpdk.org Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Reviewed-by: Somnath Kotur <somnath.kotur@broadcom.com>
This commit is contained in:
parent
ae2d19da02
commit
fcaf844e99
@ -2325,6 +2325,11 @@ void bnxt_free_all_hwrm_resources(struct bnxt *bp)
|
||||
for (i = bp->nr_vnics - 1; i >= 0; i--) {
|
||||
struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
|
||||
|
||||
if (vnic->fw_vnic_id == INVALID_HW_RING_ID) {
|
||||
PMD_DRV_LOG(DEBUG, "Invalid vNIC ID\n");
|
||||
return;
|
||||
}
|
||||
|
||||
bnxt_clear_hwrm_vnic_flows(bp, vnic);
|
||||
|
||||
bnxt_clear_hwrm_vnic_filters(bp, vnic);
|
||||
|
Loading…
x
Reference in New Issue
Block a user