ethdev: avoid blocking telemetry for link status

When querying the link status via telemetry interface, we don't want the
client to have to wait for multiple seconds for a reply. Therefore use
"rte_eth_link_get_nowait()" rather than "rte_eth_link_get()" in the
telemetry callback.

Fixes: c190daedb9b1 ("ethdev: add telemetry callbacks")
Cc: stable@dpdk.org

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Ciara Power <ciara.power@intel.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
Bruce Richardson 2021-01-14 12:17:33 +00:00 committed by Ferruh Yigit
parent 5f4f6a73eb
commit 26fe208ad8

View File

@ -5739,7 +5739,7 @@ eth_dev_handle_port_link_status(const char *cmd __rte_unused,
if (!rte_eth_dev_is_valid_port(port_id))
return -1;
ret = rte_eth_link_get(port_id, &link);
ret = rte_eth_link_get_nowait(port_id, &link);
if (ret < 0)
return -1;