Lines Matching refs:vid
512 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan); in ixgbevf_process_skb_fields() local
515 if (test_bit(vid & VLAN_VID_MASK, active_vlans)) in ixgbevf_process_skb_fields()
516 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid); in ixgbevf_process_skb_fields()
1799 __be16 proto, u16 vid) in ixgbevf_vlan_rx_add_vid() argument
1808 err = hw->mac.ops.set_vfta(hw, vid, 0, true); in ixgbevf_vlan_rx_add_vid()
1819 set_bit(vid, adapter->active_vlans); in ixgbevf_vlan_rx_add_vid()
1825 __be16 proto, u16 vid) in ixgbevf_vlan_rx_kill_vid() argument
1834 err = hw->mac.ops.set_vfta(hw, vid, 0, false); in ixgbevf_vlan_rx_kill_vid()
1838 clear_bit(vid, adapter->active_vlans); in ixgbevf_vlan_rx_kill_vid()
1845 u16 vid; in ixgbevf_restore_vlan() local
1847 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID) in ixgbevf_restore_vlan()
1849 htons(ETH_P_8021Q), vid); in ixgbevf_restore_vlan()