net/bonding: fix queue index types
Caught by code review, rxq and txq indexes are on 16bits. Fixes: d1d1e664c6c4 ("bonding: free queue memory when closing") Cc: stable@dpdk.org Signed-off-by: David Marchand <david.marchand@redhat.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
646d3f20aa
commit
88245e7e21
@ -2128,7 +2128,7 @@ out_err:
|
||||
static void
|
||||
bond_ethdev_free_queues(struct rte_eth_dev *dev)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t i;
|
||||
|
||||
if (dev->data->rx_queues != NULL) {
|
||||
for (i = 0; i < dev->data->nb_rx_queues; i++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user