> -----Original Message-----
> From: Andrew Rybchenko <arybche...@solarflare.com>
> Sent: Tuesday, September 3, 2019 4:57 PM
> To: Marko Kovacevic <marko.kovace...@intel.com>; Ori Kam
> <or...@mellanox.com>; Bruce Richardson <bruce.richard...@intel.com>;
> Pablo de Lara <pablo.de.lara.gua...@intel.com>; Radu Nicolau
> <radu.nico...@intel.com>; Akhil Goyal <akhil.go...@nxp.com>; Tomasz
> Kantecki <tomasz.kante...@intel.com>
> Cc: dev@dpdk.org; Ivan Ilchenko <ivan.ilche...@oktetlabs.com>
> Subject: [PATCH v2 28/54] examples/flow_filtering: check status of getting
> ethdev info
>
> 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/flow_filtering according to its new return type.
>
> Signed-off-by: Ivan Ilchenko <ivan.ilche...@oktetlabs.com>
> Signed-off-by: Andrew Rybchenko <arybche...@solarflare.com>
Acked-by: Ori Kam <or...@mellanox.com>
Thanks,
Ori Kam
> ---
> examples/flow_filtering/main.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/examples/flow_filtering/main.c b/examples/flow_filtering/main.c
> index a0487be..fe064fa 100644
> --- a/examples/flow_filtering/main.c
> +++ b/examples/flow_filtering/main.c
> @@ -136,7 +136,12 @@
> struct rte_eth_rxconf rxq_conf;
> struct rte_eth_dev_info dev_info;
>
> - rte_eth_dev_info_get(port_id, &dev_info);
> + ret = rte_eth_dev_info_get(port_id, &dev_info);
> + if (ret != 0)
> + rte_exit(EXIT_FAILURE,
> + "Error during getting device (port %u) info: %s\n",
> + port_id, strerror(-ret));
> +
> port_conf.txmode.offloads &= dev_info.tx_offload_capa;
> printf(":: initializing port: %d\n", port_id);
> ret = rte_eth_dev_configure(port_id,
> --
> 1.8.3.1