Re: [dpdk-dev] [PATCH v1] testpmd: fix incorrect port_id word size

2018-01-31 Thread Thomas Monjalon
20/01/2018 14:33, Ferruh Yigit: > On 1/19/2018 1:27 PM, Remy Horton wrote: > > "app/testpmd: fix incorrect port id word size" ? > > > The word size of port_id is now 16 bits, but there were parsing directives > > that assumed it was still of type UINT8, resulting in incorrect commandline > > pars

Re: [dpdk-dev] [PATCH v1] testpmd: fix incorrect port_id word size

2018-01-20 Thread Ferruh Yigit
On 1/19/2018 1:27 PM, Remy Horton wrote: "app/testpmd: fix incorrect port id word size" ? > The word size of port_id is now 16 bits, but there were parsing directives > that assumed it was still of type UINT8, resulting in incorrect commandline > parse results. > > Fixes: f14a210a65fe ("app: fix

[dpdk-dev] [PATCH v1] testpmd: fix incorrect port_id word size

2018-01-19 Thread Remy Horton
The word size of port_id is now 16 bits, but there were parsing directives that assumed it was still of type UINT8, resulting in incorrect commandline parse results. Fixes: f14a210a65fe ("app: fix port id type") Signed-off-by: Remy Horton --- app/test-pmd/cmdline.c | 2 +- 1 file changed, 1 ins