From: Ivan Ilchenko <ivan.ilche...@oktetlabs.com>

rte_eth_dev_info_get() return value was changed from void to
int, so this patch modify rte_eth_dev_info_get() usage across
examples/netmap_compat according to its new return type.

Signed-off-by: Ivan Ilchenko <ivan.ilche...@oktetlabs.com>
Signed-off-by: Andrew Rybchenko <arybche...@solarflare.com>
---
 examples/netmap_compat/lib/compat_netmap.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/examples/netmap_compat/lib/compat_netmap.c 
b/examples/netmap_compat/lib/compat_netmap.c
index 10a437943..c25cc093d 100644
--- a/examples/netmap_compat/lib/compat_netmap.c
+++ b/examples/netmap_compat/lib/compat_netmap.c
@@ -684,7 +684,14 @@ rte_netmap_init_port(uint16_t portid, const struct 
rte_netmap_port_conf *conf)
                return -EINVAL;
        }
 
-       rte_eth_dev_info_get(portid, &dev_info);
+       ret = rte_eth_dev_info_get(portid, &dev_info);
+       if (ret != 0) {
+               RTE_LOG(ERR, USER1,
+                       "Error during getting device (port %u) info: %s\n",
+                       portid, strerror(-ret));
+               return ret;
+       }
+
        if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
                conf->eth_conf->txmode.offloads |=
                        DEV_TX_OFFLOAD_MBUF_FAST_FREE;
-- 
2.17.1

Reply via email to