Re: [dpdk-dev] [PATCH V2 1/2] net/failsafe: convert to new Tx offloads API

2018-01-04 Thread Stephen Hemminger
On Thu, 4 Jan 2018 21:50:57 +0200 Moti Haimovsky wrote: > .tx_offload_capa = 0x0, > + .tx_queue_offload_capa = 0x0, > .flow_type_rss_offloads = 0x0, Minor nit you don't need to initialize every structure element. Compiler defaults everything to zero.

[dpdk-dev] [PATCH V2 1/2] net/failsafe: convert to new Tx offloads API

2018-01-04 Thread Moti Haimovsky
Ethdev Tx offloads API has changed since: commit cba7f53b717d ("ethdev: introduce Tx queue offloads API") This commit adds support for the new Tx offloads API. Signed-off-by: Moti Haimovsky --- V2: * Fixed coding style warnings. --- drivers/net/failsafe/failsafe_ops.c | 45 ++