net/bnxt: update returned error on invalid max ring
Return EINVAL instead of ENOSPC when invalid queue_idx passed in during rx and tx queue_setup_op routines. Signed-off-by: Jay Ding <jay.ding@broadcom.com> Signed-off-by: Scott Branden <scott.branden@broadcom.com> Reviewed-by: Ray Jui <ray.jui@broadcom.com> Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
This commit is contained in:
parent
6070ed8eab
commit
a42b152aba
@ -290,7 +290,7 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
|
||||
PMD_DRV_LOG(ERR,
|
||||
"Cannot create Rx ring %d. Only %d rings available\n",
|
||||
queue_idx, bp->max_rx_rings);
|
||||
return -ENOSPC;
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!nb_desc || nb_desc > MAX_RX_DESC_CNT) {
|
||||
|
@ -86,7 +86,7 @@ int bnxt_tx_queue_setup_op(struct rte_eth_dev *eth_dev,
|
||||
PMD_DRV_LOG(ERR,
|
||||
"Cannot create Tx ring %d. Only %d rings available\n",
|
||||
queue_idx, bp->max_tx_rings);
|
||||
return -ENOSPC;
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!nb_desc || nb_desc > MAX_TX_DESC_CNT) {
|
||||
|
Loading…
Reference in New Issue
Block a user