Skip to content

Commit

Permalink
app/testpmd: fix secondary process packet forwarding
Browse files Browse the repository at this point in the history
[ upstream commit 5028f207a4fa6d5cdd86019e43d2e2d80fa21ced ]

Under multi-process scenario, the secondary process gets queue state
from the wrong location (the global variable 'ports'). Therefore, the
secondary process can not forward since "stream_init" is not called.

This commit fixes the issue by calling 'rte_eth_rx/tx_queue_info_get'
to get queue state from shared memory.

Fixes: 3c4426d ("app/testpmd: do not poll stopped queues")

Signed-off-by: Shiyang He <shiyangx.he@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@amd.com>
  • Loading branch information
heshiyax authored and kevintraynor committed Mar 15, 2023
1 parent 096166c commit 66c0e09
Showing 1 changed file with 71 additions and 1 deletion.
72 changes: 71 additions & 1 deletion app/test-pmd/testpmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2363,6 +2363,70 @@ launch_packet_forwarding(lcore_function_t *pkt_fwd_on_lcore)
}
}

static void
update_rx_queue_state(uint16_t port_id, uint16_t queue_id)
{
struct rte_eth_rxq_info rx_qinfo;
int32_t rc;

rc = rte_eth_rx_queue_info_get(port_id,
queue_id, &rx_qinfo);
if (rc == 0) {
ports[port_id].rxq[queue_id].state =
rx_qinfo.queue_state;
} else if (rc == -ENOTSUP) {
/*
* Set the rxq state to RTE_ETH_QUEUE_STATE_STARTED
* to ensure that the PMDs do not implement
* rte_eth_rx_queue_info_get can forward.
*/
ports[port_id].rxq[queue_id].state =
RTE_ETH_QUEUE_STATE_STARTED;
} else {
TESTPMD_LOG(WARNING,
"Failed to get rx queue info\n");
}
}

static void
update_tx_queue_state(uint16_t port_id, uint16_t queue_id)
{
struct rte_eth_txq_info tx_qinfo;
int32_t rc;

rc = rte_eth_tx_queue_info_get(port_id,
queue_id, &tx_qinfo);
if (rc == 0) {
ports[port_id].txq[queue_id].state =
tx_qinfo.queue_state;
} else if (rc == -ENOTSUP) {
/*
* Set the txq state to RTE_ETH_QUEUE_STATE_STARTED
* to ensure that the PMDs do not implement
* rte_eth_tx_queue_info_get can forward.
*/
ports[port_id].txq[queue_id].state =
RTE_ETH_QUEUE_STATE_STARTED;
} else {
TESTPMD_LOG(WARNING,
"Failed to get tx queue info\n");
}
}

static void
update_queue_state(void)
{
portid_t pi;
queueid_t qi;

RTE_ETH_FOREACH_DEV(pi) {
for (qi = 0; qi < nb_rxq; qi++)
update_rx_queue_state(pi, qi);
for (qi = 0; qi < nb_txq; qi++)
update_tx_queue_state(pi, qi);
}
}

/*
* Launch packet forwarding configuration.
*/
Expand Down Expand Up @@ -2402,9 +2466,12 @@ start_packet_forwarding(int with_tx_first)
if (!pkt_fwd_shared_rxq_check())
return;

if (stream_init != NULL)
if (stream_init != NULL) {
if (rte_eal_process_type() == RTE_PROC_SECONDARY)
update_queue_state();
for (i = 0; i < cur_fwd_config.nb_fwd_streams; i++)
stream_init(fwd_streams[i]);
}

port_fwd_begin = cur_fwd_config.fwd_eng->port_fwd_begin;
if (port_fwd_begin != NULL) {
Expand Down Expand Up @@ -3059,6 +3126,9 @@ start_port(portid_t pid)
pl[cfg_pi++] = pi;
}

if (rte_eal_process_type() == RTE_PROC_SECONDARY)
update_queue_state();

if (at_least_one_port_successfully_started && !no_link_check)
check_all_ports_link_status(RTE_PORT_ALL);
else if (at_least_one_port_exist & all_ports_already_started)
Expand Down

0 comments on commit 66c0e09

Please sign in to comment.