Home
last modified time | relevance | path

Searched refs:vind (Results 1 – 8 of 8) sorted by relevance

/freebsd-9-stable/sys/dev/ixgbe/
Dixgbe_82598.h43 s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on);
Dixgbe_api.c968 s32 ixgbe_set_vfta(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on) in ixgbe_set_vfta() argument
970 return ixgbe_call_func(hw, hw->mac.ops.set_vfta, (hw, vlan, vind, in ixgbe_set_vfta()
985 s32 ixgbe_set_vlvf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on, in ixgbe_set_vlvf() argument
988 return ixgbe_call_func(hw, hw->mac.ops.set_vlvf, (hw, vlan, vind, in ixgbe_set_vlvf()
Dixgbe_common.h134 u32 vind, bool vlan_on);
135 s32 ixgbe_set_vlvf_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
Dixgbe_api.h122 u32 vind, bool vlan_on);
123 s32 ixgbe_set_vlvf(struct ixgbe_hw *hw, u32 vlan, u32 vind,
Dixgbe_vf.h132 s32 ixgbe_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on);
Dixgbe_vf.c376 s32 ixgbe_set_vfta_vf(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on) in ixgbe_set_vfta_vf() argument
381 UNREFERENCED_1PARAMETER(vind); in ixgbe_set_vfta_vf()
Dixgbe_common.c3816 s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind, in ixgbe_set_vfta_generic() argument
3863 ret_val = ixgbe_set_vlvf_generic(hw, vlan, vind, vlan_on, in ixgbe_set_vfta_generic()
3885 s32 ixgbe_set_vlvf_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind, in ixgbe_set_vlvf_generic() argument
3913 if (vind < 32) { in ixgbe_set_vlvf_generic()
3916 bits |= (1 << vind); in ixgbe_set_vlvf_generic()
3923 bits |= (1 << (vind - 32)); in ixgbe_set_vlvf_generic()
3930 if (vind < 32) { in ixgbe_set_vlvf_generic()
3933 bits &= ~(1 << vind); in ixgbe_set_vlvf_generic()
3942 bits &= ~(1 << (vind - 32)); in ixgbe_set_vlvf_generic()
Dixgbe_82598.c993 s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind, in ixgbe_set_vfta_82598() argument
1016 bits |= (vind << bitindex); in ixgbe_set_vfta_82598()