net/ice/base: cleanup code
1. There are a lots of function header mismatch its function name. 2. remove unnecessary header file include. 3. remove unnecessary macro. 4. remove unnecessary comment. Signed-off-by: Dave Ertman <david.m.ertman@intel.com> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Acked-by: Qiming Yang <qiming.yang@intel.com>
This commit is contained in:
parent
3dc4a4d7e9
commit
8ae24eff3e
@ -638,7 +638,7 @@ ice_cleanup_fltr_mgmt_single(struct ice_hw *hw, struct ice_switch_info *sw)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_cleanup_all_fltr_mgmt - cleanup filter management list and locks
|
||||
* ice_cleanup_fltr_mgmt_struct - cleanup filter management list and locks
|
||||
* @hw: pointer to the HW struct
|
||||
*/
|
||||
void ice_cleanup_fltr_mgmt_struct(struct ice_hw *hw)
|
||||
@ -4903,7 +4903,7 @@ ice_aq_set_lldp_mib(struct ice_hw *hw, u8 mib_type, void *buf, u16 buf_size,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_fw_supports_lldp_fltr - check NVM version supports lldp_fltr_ctrl
|
||||
* ice_fw_supports_lldp_fltr_ctrl - check NVM version supports lldp_fltr_ctrl
|
||||
* @hw: pointer to HW struct
|
||||
*/
|
||||
bool ice_fw_supports_lldp_fltr_ctrl(struct ice_hw *hw)
|
||||
|
@ -857,7 +857,7 @@ ice_cee_to_dcb_cfg(struct ice_aqc_get_cee_dcb_cfg_resp *cee_cfg,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_get_ieee_dcb_cfg
|
||||
* ice_get_ieee_or_cee_dcb_cfg
|
||||
* @pi: port information structure
|
||||
* @dcbx_mode: mode of DCBX (IEEE or CEE)
|
||||
*
|
||||
|
@ -1845,7 +1845,7 @@ bool ice_fdir_has_frag(enum ice_fltr_ptype flow)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_fdir_find_by_idx - find filter with idx
|
||||
* ice_fdir_find_fltr_by_idx - find filter with idx
|
||||
* @hw: pointer to hardware structure
|
||||
* @fltr_idx: index to find.
|
||||
*
|
||||
|
@ -357,7 +357,6 @@ ice_marker_ptype_tcam_handler(u32 sect_type, void *section, u32 index,
|
||||
if (sect_type != ICE_SID_RXPARSER_MARKER_PTYPE)
|
||||
return NULL;
|
||||
|
||||
/* cppcheck-suppress nullPointer */
|
||||
if (index > ICE_MAX_MARKER_PTYPE_TCAMS_IN_BUF)
|
||||
return NULL;
|
||||
|
||||
|
@ -1984,7 +1984,7 @@ ice_sched_cfg_vsi(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u16 maxqs,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_sched_rm_agg_vsi_entry - remove aggregator related VSI info entry
|
||||
* ice_sched_rm_agg_vsi_info - remove aggregator related VSI info entry
|
||||
* @pi: port information structure
|
||||
* @vsi_handle: software VSI handle
|
||||
*
|
||||
@ -3360,7 +3360,7 @@ ice_cfg_vsi_bw_lmt_per_tc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_cfg_dflt_vsi_bw_lmt_per_tc - configure default VSI BW limit per TC
|
||||
* ice_cfg_vsi_bw_dflt_lmt_per_tc - configure default VSI BW limit per TC
|
||||
* @pi: port information structure
|
||||
* @vsi_handle: software VSI handle
|
||||
* @tc: traffic class
|
||||
@ -3515,7 +3515,7 @@ ice_cfg_agg_bw_no_shared_lmt(struct ice_port_info *pi, u32 agg_id)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_cfg_agg_bw_shared_lmt_per_tc - configure aggregator BW shared limit per tc
|
||||
* ice_cfg_agg_bw_shared_lmt_per_tc - config aggregator BW shared limit per tc
|
||||
* @pi: port information structure
|
||||
* @agg_id: aggregator ID
|
||||
* @tc: traffic class
|
||||
@ -3535,7 +3535,7 @@ ice_cfg_agg_bw_shared_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_cfg_agg_bw_shared_lmt_per_tc - configure aggregator BW shared limit per tc
|
||||
* ice_cfg_agg_bw_no_shared_lmt_per_tc - cfg aggregator BW shared limit per tc
|
||||
* @pi: port information structure
|
||||
* @agg_id: aggregator ID
|
||||
* @tc: traffic class
|
||||
@ -3553,7 +3553,7 @@ ice_cfg_agg_bw_no_shared_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_config_vsi_queue_priority - config VSI queue priority of node
|
||||
* ice_cfg_vsi_q_priority - config VSI queue priority of node
|
||||
* @pi: port information structure
|
||||
* @num_qs: number of VSI queues
|
||||
* @q_ids: queue IDs array
|
||||
@ -3649,7 +3649,6 @@ ice_cfg_agg_vsi_priority_per_tc(struct ice_port_info *pi, u32 agg_id,
|
||||
LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
|
||||
ice_sched_agg_vsi_info, list_entry)
|
||||
if (agg_vsi_info->vsi_handle == vsi_handle) {
|
||||
/* cppcheck-suppress unreadVariable */
|
||||
vsi_handle_valid = true;
|
||||
break;
|
||||
}
|
||||
|
@ -2298,7 +2298,7 @@ ice_alloc_global_lut_exit:
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_free_global_lut - free a RSS global LUT
|
||||
* ice_free_rss_global_lut - free a RSS global LUT
|
||||
* @hw: pointer to the HW struct
|
||||
* @global_lut_id: ID of the RSS global LUT to free
|
||||
*/
|
||||
@ -3174,7 +3174,6 @@ ice_aq_get_recipe(struct ice_hw *hw,
|
||||
buf_size = *num_recipes * sizeof(*s_recipe_list);
|
||||
|
||||
status = ice_aq_send_cmd(hw, &desc, s_recipe_list, buf_size, cd);
|
||||
/* cppcheck-suppress constArgument */
|
||||
*num_recipes = LE16_TO_CPU(cmd->num_sub_recipes);
|
||||
|
||||
return status;
|
||||
@ -4979,7 +4978,7 @@ enum ice_status ice_add_vlan(struct ice_hw *hw, struct LIST_HEAD_TYPE *v_list)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_add_mac_vlan - Add MAC and VLAN pair based filter rule
|
||||
* ice_add_mac_vlan_rule - Add MAC and VLAN pair based filter rule
|
||||
* @hw: pointer to the hardware structure
|
||||
* @mv_list: list of MAC and VLAN filters
|
||||
* @sw: pointer to switch info struct for which function add rule
|
||||
@ -5671,7 +5670,7 @@ ice_get_vsi_promisc(struct ice_hw *hw, u16 vsi_handle, u8 *promisc_mask,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_get_vsi_vlan_promisc - get VLAN promiscuous mode of given VSI
|
||||
* _ice_get_vsi_vlan_promisc - get VLAN promiscuous mode of given VSI
|
||||
* @hw: pointer to the hardware structure
|
||||
* @vsi_handle: VSI handle to retrieve info from
|
||||
* @promisc_mask: pointer to mask to be filled in
|
||||
@ -6664,7 +6663,7 @@ static bool ice_prot_type_to_id(enum ice_protocol_type type, u8 *id)
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_find_valid_words - count valid words
|
||||
* ice_fill_valid_words - count valid words
|
||||
* @rule: advanced rule with lookup information
|
||||
* @lkup_exts: byte offset extractions of the words that are valid
|
||||
*
|
||||
@ -7263,7 +7262,7 @@ free_mem:
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_tun_type_match_mask - determine if tun type needs a match mask
|
||||
* ice_tun_type_match_word - determine if tun type needs a match mask
|
||||
* @tun_type: tunnel type
|
||||
* @mask: mask to be used for the tunnel
|
||||
*/
|
||||
@ -8860,7 +8859,7 @@ ice_rem_adv_rule_by_id(struct ice_hw *hw,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_rem_adv_for_vsi - removes existing advanced switch rules for a
|
||||
* ice_rem_adv_rule_for_vsi - removes existing advanced switch rules for a
|
||||
* given VSI handle
|
||||
* @hw: pointer to the hardware structure
|
||||
* @vsi_handle: VSI handle for which we are supposed to remove all the rules.
|
||||
@ -9142,7 +9141,7 @@ ice_replay_vsi_all_fltr(struct ice_hw *hw, struct ice_port_info *pi,
|
||||
}
|
||||
|
||||
/**
|
||||
* ice_rm_all_sw_replay_rule - helper function to delete filter replay rules
|
||||
* ice_rm_sw_replay_rule_info - helper function to delete filter replay rules
|
||||
* @hw: pointer to the HW struct
|
||||
* @sw: pointer to switch info struct for which function removes filters
|
||||
*
|
||||
|
@ -44,9 +44,7 @@
|
||||
#define ice_struct_size(ptr, field, num) \
|
||||
(sizeof(*(ptr)) + sizeof(*(ptr)->field) * (num))
|
||||
|
||||
#ifndef FLEX_ARRAY_SIZE
|
||||
#define FLEX_ARRAY_SIZE(_ptr, _mem, cnt) ((cnt) * sizeof(_ptr->_mem[0]))
|
||||
#endif /* FLEX_ARRAY_SIZE */
|
||||
|
||||
#include "ice_status.h"
|
||||
#include "ice_hw_autogen.h"
|
||||
|
@ -2,11 +2,10 @@
|
||||
* Copyright(c) 2001-2021 Intel Corporation
|
||||
*/
|
||||
|
||||
#include "ice_vlan_mode.h"
|
||||
#include "ice_common.h"
|
||||
|
||||
/**
|
||||
* ice_pkg_supports_dvm - determine if DDP supports Double VLAN mode (DVM)
|
||||
* ice_pkg_get_supported_vlan_mode - chk if DDP supports Double VLAN mode (DVM)
|
||||
* @hw: pointer to the HW struct
|
||||
* @dvm: output variable to determine if DDP supports DVM(true) or SVM(false)
|
||||
*/
|
||||
|
@ -6,7 +6,6 @@
|
||||
#define _ICE_VLAN_MODE_H_
|
||||
|
||||
#include "ice_osdep.h"
|
||||
#include "ice_status.h"
|
||||
|
||||
struct ice_hw;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user