* ixgbe_set_vfta - Set VLAN filter table * @hw: pointer to hardware structure * @vlan: VLAN id to write to VLAN filter * @vind: VMDq output index that maps queue to VLAN id in VLVFB * @vlan_on: boolean flag to turn on/off VLAN * @vlvf_bypass: boolean flag indicating updating the default pool is okay * * Turn on/off specified VLAN in the VLAN filter table. **/
| 1074 | * Turn on/off specified VLAN in the VLAN filter table. |
| 1075 | **/ |
| 1076 | s32 ixgbe_set_vfta(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on, |
| 1077 | bool vlvf_bypass) |
| 1078 | { |
| 1079 | return ixgbe_call_func(hw, hw->mac.ops.set_vfta, (hw, vlan, vind, |
| 1080 | vlan_on, vlvf_bypass), IXGBE_NOT_IMPLEMENTED); |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * ixgbe_set_vlvf - Set VLAN Pool Filter |
no outgoing calls
no test coverage detected