net/bonding: fix port id types
Following the port id conversion to 16bits, two references to bonding
port id have been missed.
Fixes: f8244c6399
("ethdev: increase port id range")
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
86dc5089e6
commit
c4fa09ba8e
@ -2196,7 +2196,7 @@ void
|
||||
bond_ethdev_close(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct bond_dev_private *internals = dev->data->dev_private;
|
||||
uint8_t bond_port_id = internals->port_id;
|
||||
uint16_t bond_port_id = internals->port_id;
|
||||
int skipped = 0;
|
||||
struct rte_flow_error ferror;
|
||||
|
||||
@ -2663,7 +2663,7 @@ bond_ethdev_lsc_event_callback(uint16_t port_id, enum rte_eth_event_type type,
|
||||
if (type != RTE_ETH_EVENT_INTR_LSC || param == NULL)
|
||||
return rc;
|
||||
|
||||
bonded_eth_dev = &rte_eth_devices[*(uint8_t *)param];
|
||||
bonded_eth_dev = &rte_eth_devices[*(uint16_t *)param];
|
||||
|
||||
if (check_for_bonded_ethdev(bonded_eth_dev))
|
||||
return rc;
|
||||
|
Loading…
Reference in New Issue
Block a user