From: Aaron Conole Date: Tue, 22 Mar 2016 21:37:15 +0000 (-0400) Subject: ixgbe: fix VLAN filter missing brackets X-Git-Tag: spdx-start~7131 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c0de18e856d8c6b4e98ca198091ec7c3528c38e4;p=dpdk.git ixgbe: fix VLAN filter missing brackets The ixgbe vlan filter code has an if check with an incorrect whitespace. Fixes: fe3a45fd4104 ("ixgbe: add VMDq support") Signed-off-by: Aaron Conole Acked-by: Panu Matilainen Acked-by: Helin Zhang --- diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c index 8961454aba..78524b2c3c 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.c +++ b/drivers/net/ixgbe/ixgbe_ethdev.c @@ -4447,10 +4447,11 @@ ixgbe_set_pool_vlan_filter(struct rte_eth_dev *dev, uint16_t vlan, if (ixgbe_vmdq_mode_check(hw) < 0) return -ENOTSUP; for (pool_idx = 0; pool_idx < ETH_64_POOLS; pool_idx++) { - if (pool_mask & ((uint64_t)(1ULL << pool_idx))) + if (pool_mask & ((uint64_t)(1ULL << pool_idx))) { ret = hw->mac.ops.set_vfta(hw,vlan,pool_idx,vlan_on); if (ret < 0) return ret; + } } return ret;