Lines Matching refs:vid
539 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan); in ixgbevf_process_skb_fields() local
542 if (test_bit(vid & VLAN_VID_MASK, active_vlans)) in ixgbevf_process_skb_fields()
543 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid); in ixgbevf_process_skb_fields()
1803 __be16 proto, u16 vid) in ixgbevf_vlan_rx_add_vid() argument
1812 err = hw->mac.ops.set_vfta(hw, vid, 0, true); in ixgbevf_vlan_rx_add_vid()
1823 set_bit(vid, adapter->active_vlans); in ixgbevf_vlan_rx_add_vid()
1829 __be16 proto, u16 vid) in ixgbevf_vlan_rx_kill_vid() argument
1838 err = hw->mac.ops.set_vfta(hw, vid, 0, false); in ixgbevf_vlan_rx_kill_vid()
1842 clear_bit(vid, adapter->active_vlans); in ixgbevf_vlan_rx_kill_vid()
1849 u16 vid; in ixgbevf_restore_vlan() local
1851 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID) in ixgbevf_restore_vlan()
1853 htons(ETH_P_8021Q), vid); in ixgbevf_restore_vlan()