Lines Matching defs:vid
1483 /* Store all vlan ids from the list to the vid table */
1489 u16 vid;
1494 for_each_set_bit(vid, vdev->active_vlans, VLAN_N_VID)
1495 status = vxge_hw_vpath_vid_add(vpath->handle, vid);
3298 * @vid: vid
3303 vxge_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
3309 /* Add these vlan to the vid table */
3314 vxge_hw_vpath_vid_add(vpath->handle, vid);
3316 set_bit(vid, vdev->active_vlans);
3324 * @vid: vid
3329 vxge_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
3337 /* Delete this vlan from the vid table */
3342 vxge_hw_vpath_vid_delete(vpath->handle, vid);
3346 clear_bit(vid, vdev->active_vlans);