Re: [dpdk-dev] [PATCH] test/test_flow_classify: fix build warning

2018-01-18 Thread Thomas Monjalon
18/01/2018 16:18, Jasvinder Singh: > Move all static variables defined in header file to c file. > > error log: /usr/bin/ld: Warning: size of symbol 'count' changed > from 8 in test_pmd_perf.o to 24 in test_flow_classify.o > > Fixes: 50bdac5916d9 ("flow_classify: remove table id parameter from

Re: [dpdk-dev] [PATCH] test/test_flow_classify: fix build warning

2018-01-18 Thread Ferruh Yigit
On 1/18/2018 3:18 PM, Jasvinder Singh wrote: > Move all static variables defined in header file to c file. > > error log: /usr/bin/ld: Warning: size of symbol 'count' changed > from 8 in test_pmd_perf.o to 24 in test_flow_classify.o > > Fixes: 50bdac5916d9 ("flow_classify: remove table id param

[dpdk-dev] [PATCH] test/test_flow_classify: fix build warning

2018-01-18 Thread Jasvinder Singh
Move all static variables defined in header file to c file. error log: /usr/bin/ld: Warning: size of symbol 'count' changed from 8 in test_pmd_perf.o to 24 in test_flow_classify.o Fixes: 50bdac5916d9 ("flow_classify: remove table id parameter from API") Signed-off-by: Jasvinder Singh --- tes