examples/multi_process: fix build
authorEmma Kenny <emma.kenny@intel.com>
Mon, 2 Jul 2018 15:40:21 +0000 (16:40 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 11 Jul 2018 17:22:40 +0000 (19:22 +0200)
commitcded996be2f7612d2417e77b19938da58b90ec3b
treec67ecdb955a3f8c8838d90e06ffd4eafe0e4ca14
parentc754c7d809347e264cc305b1e389cb322e1e1ab3
examples/multi_process: fix build

Fix bug with undeclared variable name and
calling a variable that is not member of struct.

CC main.o
l2fwd_fork/main.c:  In function ‘main’: l2fwd_fork/main.c:1043:33:
 error: ‘dev_info’ undeclared (first use in this function)
 rte_eth_dev_info_get(portid, &dev_info);

l2fwd_fork/main.c:1043:33: note: each undeclared identifier is
reported only once for each function it appears in
l2fwd_fork/main.c:1077:11: error: ‘struct rte_eth_txconf’
has no member named ‘tx_offloads’
   txq_conf.tx_offloads = local_port_conf.txmode.offloads;

Fixes: f8c02ca878af ("examples/multi_process: convert to new ethdev offloads API")
Cc: stable@dpdk.org
Signed-off-by: Emma Kenny <emma.kenny@intel.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Shahaf Shuler <shahafs@mellanox.com>
examples/multi_process/l2fwd_fork/main.c