Re: [dpdk-dev] [PATCH v1] examples/multi_process: fix build error

2018-07-11 Thread Thomas Monjalon
03/07/2018 14:10, Shahaf Shuler: > Monday, July 2, 2018 6:40 PM, Emma Kenny: > > Subject: [PATCH v1] examples/multi_process: fix build error > > > > 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

Re: [dpdk-dev] [PATCH v1] examples/multi_process: fix build error

2018-07-03 Thread Shahaf Shuler
Monday, July 2, 2018 6:40 PM, Emma Kenny: > Subject: [PATCH v1] examples/multi_process: fix build error > > 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: ‘de

Re: [dpdk-dev] [PATCH v1] examples/multi_process: fix build error

2018-07-02 Thread Ferruh Yigit
On 7/2/2018 4:40 PM, Emma Kenny wrote: > 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_

[dpdk-dev] [PATCH v1] examples/multi_process: fix build error

2018-07-02 Thread Emma Kenny
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: n