From: Stephen Hemminger Date: Fri, 29 Oct 2021 21:50:12 +0000 (-0700) Subject: pcapng: use new ethdev namespace X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=ae1702fffedd2548a39715a900a603e8ee362f3f;p=dpdk.git pcapng: use new ethdev namespace RTE_ prefix was added by commit 295968d17407 ("ethdev: add namespace") Fixes: 8d23ce8f5ee9 ("pcapng: add new library for writing pcapng files") Signed-off-by: Stephen Hemminger --- diff --git a/lib/pcapng/rte_pcapng.c b/lib/pcapng/rte_pcapng.c index a3d5760e68..03edabe73e 100644 --- a/lib/pcapng/rte_pcapng.c +++ b/lib/pcapng/rte_pcapng.c @@ -178,7 +178,7 @@ pcapng_add_interface(rte_pcapng_t *self, uint16_t port) /* DPDK reports in units of Mbps */ rte_eth_link_get(port, &link); - if (link.link_status == ETH_LINK_UP) + if (link.link_status == RTE_ETH_LINK_UP) speed = link.link_speed * PCAPNG_MBPS_SPEED; if (rte_eth_macaddr_get(port, &macaddr) < 0)