net/bnxt: remove unnecessary code
Also removed a log message which does not convey any useful information. Fixes: d24610f7bfda ("net/bnxt: allow flow creation when RSS is enabled") Cc: stable@dpdk.org Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> Reviewed-by: Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com> Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
This commit is contained in:
parent
94df7953ac
commit
b93fe4db51
@ -953,7 +953,7 @@ static int bnxt_vnic_prep(struct bnxt *bp, struct bnxt_vnic_info *vnic,
|
||||
|
||||
/* RSS context is required only when there is more than one RSS ring */
|
||||
if (vnic->rx_queue_cnt > 1) {
|
||||
rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic, 0 /* ctx_idx 0 */);
|
||||
rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic, 0);
|
||||
if (rc) {
|
||||
rte_flow_error_set(error, -rc,
|
||||
RTE_FLOW_ERROR_TYPE_ACTION,
|
||||
@ -961,8 +961,6 @@ static int bnxt_vnic_prep(struct bnxt *bp, struct bnxt_vnic_info *vnic,
|
||||
"Failed to alloc VNIC context");
|
||||
goto ret;
|
||||
}
|
||||
} else {
|
||||
PMD_DRV_LOG(DEBUG, "No RSS context required\n");
|
||||
}
|
||||
|
||||
if (rx_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
|
||||
|
Loading…
x
Reference in New Issue
Block a user