Searched refs:vvfl (Results 1 - 1 of 1) sorted by relevance

/linux-4.4.14/drivers/net/ethernet/intel/i40evf/
H A Di40evf_virtchnl.c509 struct i40e_virtchnl_vlan_filter_list *vvfl; i40evf_add_vlans() local
539 vvfl = kzalloc(len, GFP_ATOMIC); i40evf_add_vlans()
540 if (!vvfl) i40evf_add_vlans()
543 vvfl->vsi_id = adapter->vsi_res->vsi_id; i40evf_add_vlans()
544 vvfl->num_elements = count; i40evf_add_vlans()
547 vvfl->vlan_id[i] = f->vlan; i40evf_add_vlans()
553 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_ADD_VLAN, (u8 *)vvfl, len); i40evf_add_vlans()
554 kfree(vvfl); i40evf_add_vlans()
567 struct i40e_virtchnl_vlan_filter_list *vvfl; i40evf_del_vlans() local
597 vvfl = kzalloc(len, GFP_ATOMIC); i40evf_del_vlans()
598 if (!vvfl) i40evf_del_vlans()
601 vvfl->vsi_id = adapter->vsi_res->vsi_id; i40evf_del_vlans()
602 vvfl->num_elements = count; i40evf_del_vlans()
605 vvfl->vlan_id[i] = f->vlan; i40evf_del_vlans()
612 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_DEL_VLAN, (u8 *)vvfl, len); i40evf_del_vlans()
613 kfree(vvfl); i40evf_del_vlans()

Completed in 54 milliseconds