Home
last modified time | relevance | path

Searched refs:v_list (Results 1 – 4 of 4) sorted by relevance

/f-stack/dpdk/drivers/net/ice/base/
H A Dice_switch.h439 ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
450 ice_remove_mac_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list);
H A Dice_switch.c4467 ice_add_vlan_rule(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list, in ice_add_vlan_rule() argument
4474 LIST_FOR_EACH_ENTRY(v_list_itr, v_list, ice_fltr_list_entry, in ice_add_vlan_rule()
4496 if (!v_list || !hw) in ice_add_vlan()
4499 return ice_add_vlan_rule(hw, v_list, hw->switch_info); in ice_add_vlan()
4926 ice_remove_vlan_rule(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list, in ice_remove_vlan_rule() argument
4931 LIST_FOR_EACH_ENTRY_SAFE(v_list_itr, tmp, v_list, ice_fltr_list_entry, in ice_remove_vlan_rule()
4952 ice_remove_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list) in ice_remove_vlan() argument
4956 if (!v_list || !hw) in ice_remove_vlan()
4960 return ice_remove_vlan_rule(hw, v_list, recp_list); in ice_remove_vlan()
4976 LIST_FOR_EACH_ENTRY_SAFE(v_list_itr, tmp, v_list, ice_fltr_list_entry, in ice_remove_mac_vlan_rule()
[all …]
/f-stack/dpdk/drivers/net/i40e/base/
H A Di40e_prototype.h204 struct i40e_aqc_add_remove_vlan_element_data *v_list,
207 struct i40e_aqc_add_remove_vlan_element_data *v_list,
H A Di40e_common.c3344 struct i40e_aqc_add_remove_vlan_element_data *v_list, in i40e_aq_add_vlan() argument
3353 if (count == 0 || !v_list || !hw) in i40e_aq_add_vlan()
3356 buf_size = count * sizeof(*v_list); in i40e_aq_add_vlan()
3369 status = i40e_asq_send_command(hw, &desc, v_list, buf_size, in i40e_aq_add_vlan()
3384 struct i40e_aqc_add_remove_vlan_element_data *v_list, in i40e_aq_remove_vlan() argument
3393 if (count == 0 || !v_list || !hw) in i40e_aq_remove_vlan()
3396 buf_size = count * sizeof(*v_list); in i40e_aq_remove_vlan()
3409 status = i40e_asq_send_command(hw, &desc, v_list, buf_size, in i40e_aq_remove_vlan()