> -----Original Message----- > From: Wu, Yanglong > Sent: Thursday, May 10, 2018 10:45 AM > To: [email protected] > Cc: Zhang, Qi Z <[email protected]>; Dai, Wei <[email protected]>; Wu, > Yanglong <[email protected]> > Subject: [PATCH] net/i40e: fix missing VLAN offload capability > > VLAN offload capability should be exposed both VF and PF since i40e does > support it. > > Fixes: c3ac7c5b0b8a ("net/i40e: convert to new Rx offloads API") > Signed-off-by: Yanglong Wu <[email protected]> > --- > drivers/net/i40e/i40e_ethdev.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c > index 894505f98..ad377f440 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -3299,7 +3299,9 @@ i40e_dev_info_get(struct rte_eth_dev *dev, struct > rte_eth_dev_info *dev_info) > DEV_RX_OFFLOAD_CRC_STRIP | > DEV_RX_OFFLOAD_VLAN_EXTEND | > DEV_RX_OFFLOAD_VLAN_FILTER | > - DEV_RX_OFFLOAD_JUMBO_FRAME; > + DEV_RX_OFFLOAD_JUMBO_FRAME | > + DEV_RX_OFFLOAD_VLAN_FILTER | > + DEV_RX_OFFLOAD_VLAN_EXTEND;
This is duplicate. I guess want to add missing flags to i40evf_dev_info_get ? > > dev_info->tx_queue_offload_capa = > DEV_TX_OFFLOAD_MBUF_FAST_FREE; > dev_info->tx_offload_capa = > -- > 2.11.0

