MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ixgbe_set_vfta

Function ixgbe_set_vfta

dpdk/drivers/net/ixgbe/base/ixgbe_api.c:1076–1081  ·  view source on GitHub ↗

* 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. **/

Source from the content-addressed store, hash-verified

1074 * Turn on/off specified VLAN in the VLAN filter table.
1075 **/
1076s32 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

Callers 2

ixgbevf_set_vfta_allFunction · 0.85
ixgbevf_vlan_filter_setFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected