>Prefix "net: " is typically used for lib/librte_net. It should be >"drivers/net: " here. > >"Rx flow action offload" sounds strange. May be "Rx flow mark offload". > >On 8/16/19 8:55 AM, pbhagavat...@marvell.com wrote: >> From: Pavan Nikhilesh <pbhagavat...@marvell.com> >> >> Add DEV_RX_OFFLOAD_FLOW_MARK flag for all supported NICs. > >"all supported NICs" sounds wrong here as well. >It sounds like all NICs supported by DPDK. > >> Signed-off-by: Pavan Nikhilesh <pbhagavat...@marvell.com> > >[snip] > >> diff --git a/drivers/net/sfc/sfc_rx.c b/drivers/net/sfc/sfc_rx.c >> index 695580b22..0f842e9e9 100644 >> --- a/drivers/net/sfc/sfc_rx.c >> +++ b/drivers/net/sfc/sfc_rx.c >> @@ -619,7 +619,8 @@ struct sfc_dp_rx sfc_efx_rx = { >> .features = SFC_DP_RX_FEAT_INTR, >> .dev_offload_capa = DEV_RX_OFFLOAD_CHECKSUM, >> .queue_offload_capa = DEV_RX_OFFLOAD_SCATTER | >> - DEV_RX_OFFLOAD_RSS_HASH, >> + DEV_RX_OFFLOAD_RSS_HASH | >> + DEV_RX_OFFLOAD_FLOW_MARK, >> .qsize_up_rings = sfc_efx_rx_qsize_up_rings, >> .qcreate = sfc_efx_rx_qcreate, >> .qdestroy = sfc_efx_rx_qdestroy, > >In the case of net/sfc it is supported by sfc_ef10_essb_rx only >(drivers/net/sfc/sfc_ef10_essb_rx.c).
Will fix in v2. Pavan.