From: Wei Zhao Date: Wed, 13 Feb 2019 03:49:48 +0000 (+0800) Subject: net/ice: enable VLAN filter offloads support X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=cb05494d2910ec35005877a79e03b9a791500111 net/ice: enable VLAN filter offloads support VLAN filter is required to be configured during dev_start according to dev_conf.rxmod.offloads setting, so ice_vlan_offload_set is called to handle this. Fixes: 690175ee51bf ("net/ice: support getting device information") Cc: stable@dpdk.org Signed-off-by: Wei Zhao Acked-by: Qi Zhang --- diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c index 6b0113b373..a23c63ae59 100644 --- a/drivers/net/ice/ice_ethdev.c +++ b/drivers/net/ice/ice_ethdev.c @@ -1714,7 +1714,7 @@ ice_dev_start(struct rte_eth_dev *dev) struct ice_vsi *vsi = pf->main_vsi; uint16_t nb_rxq = 0; uint16_t nb_txq, i; - int ret; + int mask, ret; /* program Tx queues' context in hardware */ for (nb_txq = 0; nb_txq < data->nb_tx_queues; nb_txq++) { @@ -1742,6 +1742,14 @@ ice_dev_start(struct rte_eth_dev *dev) ice_set_rx_function(dev); + mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | + ETH_VLAN_EXTEND_MASK; + ret = ice_vlan_offload_set(dev, mask); + if (ret) { + PMD_INIT_LOG(ERR, "Unable to set VLAN offload"); + goto rx_err; + } + /* enable Rx interrput and mapping Rx queue to interrupt vector */ if (ice_rxq_intr_setup(dev)) return -EIO;