Lines Matching defs:vind
3992 * @vind: VMDq output index that maps queue to VLAN id in VLVFB
3998 s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
4006 if (vlan > 4095 || vind > 63)
4036 ret_val = ixgbe_set_vlvf_generic(hw, vlan, vind, vlan_on, &vfta_delta,
4056 * @vind: VMDq output index that maps queue to VLAN id in VLVFB
4065 s32 ixgbe_set_vlvf_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
4074 if (vlan > 4095 || vind > 63)
4080 * set the vind bit in the matching VLVFB
4082 * clear the pool bit and possibly the vind
4091 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32));
4094 bits |= 1 << (vind % 32);
4099 bits ^= 1 << (vind % 32);
4102 !IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + 1 - vind / 32))) {
4112 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), 0);
4135 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), bits);