Re: [dpdk-dev] [PATCH] app/testpmd: set and clear keep CRC offload flag

2018-08-01 Thread Thomas Monjalon
01/08/2018 10:22, Andrew Rybchenko: > On 01.08.2018 11:13, Bernard Iremonger wrote: > > If the "port config all crc-strip on" command is issued, > > The DEV_RX_OFFLOAD_KEEP_CRC offload flag should be cleared. > > > > If the "port config all crc-strip off command is issued, > > The DEV_RX_OFFLOAD_KE

Re: [dpdk-dev] [PATCH] app/testpmd: set and clear keep CRC offload flag

2018-08-01 Thread Andrew Rybchenko
On 01.08.2018 11:13, Bernard Iremonger wrote: If the "port config all crc-strip on" command is issued, The DEV_RX_OFFLOAD_KEEP_CRC offload flag should be cleared. If the "port config all crc-strip off command is issued, The DEV_RX_OFFLOAD_KEEP_CRC offload flag should be set. Fixes: 70815c9ecadd

[dpdk-dev] [PATCH] app/testpmd: set and clear keep CRC offload flag

2018-08-01 Thread Bernard Iremonger
If the "port config all crc-strip on" command is issued, The DEV_RX_OFFLOAD_KEEP_CRC offload flag should be cleared. If the "port config all crc-strip off command is issued, The DEV_RX_OFFLOAD_KEEP_CRC offload flag should be set. Fixes: 70815c9ecadd ("ethdev: add new offload flag to keep CRC") Si