app/testpmd: set socket id when adding new port
Signed-off-by: Declan Doherty <declan.doherty@intel.com> Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
This commit is contained in:
parent
4743e40ce0
commit
a21d5a4be4
@ -3759,7 +3759,7 @@ static void cmd_create_bonded_device_parsed(void *parsed_result,
|
||||
|
||||
/* Update number of ports */
|
||||
nb_ports = rte_eth_dev_count();
|
||||
reconfig(port_id);
|
||||
reconfig(port_id, res->socket);
|
||||
rte_eth_promiscuous_enable(port_id);
|
||||
}
|
||||
|
||||
|
@ -630,7 +630,7 @@ init_config(void)
|
||||
|
||||
|
||||
void
|
||||
reconfig(portid_t new_port_id)
|
||||
reconfig(portid_t new_port_id, unsigned socket_id)
|
||||
{
|
||||
struct rte_port *port;
|
||||
|
||||
@ -649,6 +649,7 @@ reconfig(portid_t new_port_id)
|
||||
/* set flag to initialize port/queue */
|
||||
port->need_reconfig = 1;
|
||||
port->need_reconfig_queues = 1;
|
||||
port->socket_id = socket_id;
|
||||
|
||||
init_port_config();
|
||||
}
|
||||
|
@ -457,7 +457,7 @@ void fwd_config_display(void);
|
||||
void rxtx_config_display(void);
|
||||
void fwd_config_setup(void);
|
||||
void set_def_fwd_config(void);
|
||||
void reconfig(portid_t new_port_id);
|
||||
void reconfig(portid_t new_port_id, unsigned socket_id);
|
||||
int init_fwd_streams(void);
|
||||
|
||||
void port_mtu_set(portid_t port_id, uint16_t mtu);
|
||||
|
Loading…
Reference in New Issue
Block a user