Commit c8b7abdd authored by Bruce Allan's avatar Bruce Allan Committed by Jeff Kirsher

ice: fix some function prototype and signature style issues

Put the return type on a separate line for function prototypes and
signatures that would exceed the 80-character limit if both were on
the same line.
Signed-off-by: default avatarBruce Allan <bruce.w.allan@intel.com>
Signed-off-by: default avatarAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 60dcc39e
...@@ -367,7 +367,8 @@ struct ice_netdev_priv { ...@@ -367,7 +367,8 @@ struct ice_netdev_priv {
* @vsi: pointer to vsi struct, can be NULL * @vsi: pointer to vsi struct, can be NULL
* @q_vector: pointer to q_vector, can be NULL * @q_vector: pointer to q_vector, can be NULL
*/ */
static inline void ice_irq_dynamic_ena(struct ice_hw *hw, struct ice_vsi *vsi, static inline void
ice_irq_dynamic_ena(struct ice_hw *hw, struct ice_vsi *vsi,
struct ice_q_vector *q_vector) struct ice_q_vector *q_vector)
{ {
u32 vector = (vsi && q_vector) ? vsi->hw_base_vector + q_vector->v_idx : u32 vector = (vsi && q_vector) ? vsi->hw_base_vector + q_vector->v_idx :
......
...@@ -1100,8 +1100,9 @@ const struct ice_ctx_ele ice_tlan_ctx_info[] = { ...@@ -1100,8 +1100,9 @@ const struct ice_ctx_ele ice_tlan_ctx_info[] = {
* *
* Dumps debug log about control command with descriptor contents. * Dumps debug log about control command with descriptor contents.
*/ */
void ice_debug_cq(struct ice_hw *hw, u32 __maybe_unused mask, void *desc, void
void *buf, u16 buf_len) ice_debug_cq(struct ice_hw *hw, u32 __maybe_unused mask, void *desc, void *buf,
u16 buf_len)
{ {
struct ice_aq_desc *cq_desc = (struct ice_aq_desc *)desc; struct ice_aq_desc *cq_desc = (struct ice_aq_desc *)desc;
u16 len; u16 len;
...@@ -1620,8 +1621,8 @@ ice_aq_discover_caps(struct ice_hw *hw, void *buf, u16 buf_size, u32 *cap_count, ...@@ -1620,8 +1621,8 @@ ice_aq_discover_caps(struct ice_hw *hw, void *buf, u16 buf_size, u32 *cap_count,
* @hw: pointer to the hardware structure * @hw: pointer to the hardware structure
* @opc: capabilities type to discover - pass in the command opcode * @opc: capabilities type to discover - pass in the command opcode
*/ */
static enum ice_status ice_discover_caps(struct ice_hw *hw, static enum ice_status
enum ice_adminq_opc opc) ice_discover_caps(struct ice_hw *hw, enum ice_adminq_opc opc)
{ {
enum ice_status status; enum ice_status status;
u32 cap_count; u32 cap_count;
...@@ -2548,8 +2549,8 @@ ice_aq_dis_lan_txq(struct ice_hw *hw, u8 num_qgrps, ...@@ -2548,8 +2549,8 @@ ice_aq_dis_lan_txq(struct ice_hw *hw, u8 num_qgrps,
* @dest_ctx: the context to be written to * @dest_ctx: the context to be written to
* @ce_info: a description of the struct to be filled * @ce_info: a description of the struct to be filled
*/ */
static void ice_write_byte(u8 *src_ctx, u8 *dest_ctx, static void
const struct ice_ctx_ele *ce_info) ice_write_byte(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
{ {
u8 src_byte, dest_byte, mask; u8 src_byte, dest_byte, mask;
u8 *from, *dest; u8 *from, *dest;
...@@ -2587,8 +2588,8 @@ static void ice_write_byte(u8 *src_ctx, u8 *dest_ctx, ...@@ -2587,8 +2588,8 @@ static void ice_write_byte(u8 *src_ctx, u8 *dest_ctx,
* @dest_ctx: the context to be written to * @dest_ctx: the context to be written to
* @ce_info: a description of the struct to be filled * @ce_info: a description of the struct to be filled
*/ */
static void ice_write_word(u8 *src_ctx, u8 *dest_ctx, static void
const struct ice_ctx_ele *ce_info) ice_write_word(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
{ {
u16 src_word, mask; u16 src_word, mask;
__le16 dest_word; __le16 dest_word;
...@@ -2630,8 +2631,8 @@ static void ice_write_word(u8 *src_ctx, u8 *dest_ctx, ...@@ -2630,8 +2631,8 @@ static void ice_write_word(u8 *src_ctx, u8 *dest_ctx,
* @dest_ctx: the context to be written to * @dest_ctx: the context to be written to
* @ce_info: a description of the struct to be filled * @ce_info: a description of the struct to be filled
*/ */
static void ice_write_dword(u8 *src_ctx, u8 *dest_ctx, static void
const struct ice_ctx_ele *ce_info) ice_write_dword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
{ {
u32 src_dword, mask; u32 src_dword, mask;
__le32 dest_dword; __le32 dest_dword;
...@@ -2681,8 +2682,8 @@ static void ice_write_dword(u8 *src_ctx, u8 *dest_ctx, ...@@ -2681,8 +2682,8 @@ static void ice_write_dword(u8 *src_ctx, u8 *dest_ctx,
* @dest_ctx: the context to be written to * @dest_ctx: the context to be written to
* @ce_info: a description of the struct to be filled * @ce_info: a description of the struct to be filled
*/ */
static void ice_write_qword(u8 *src_ctx, u8 *dest_ctx, static void
const struct ice_ctx_ele *ce_info) ice_write_qword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
{ {
u64 src_qword, mask; u64 src_qword, mask;
__le64 dest_qword; __le64 dest_qword;
...@@ -3026,7 +3027,8 @@ void ice_replay_post(struct ice_hw *hw) ...@@ -3026,7 +3027,8 @@ void ice_replay_post(struct ice_hw *hw)
* @prev_stat: ptr to previous loaded stat value * @prev_stat: ptr to previous loaded stat value
* @cur_stat: ptr to current stat value * @cur_stat: ptr to current stat value
*/ */
void ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg, void
ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg,
bool prev_stat_loaded, u64 *prev_stat, u64 *cur_stat) bool prev_stat_loaded, u64 *prev_stat, u64 *cur_stat)
{ {
u64 new_data; u64 new_data;
...@@ -3057,7 +3059,8 @@ void ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg, ...@@ -3057,7 +3059,8 @@ void ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg,
* @prev_stat: ptr to previous loaded stat value * @prev_stat: ptr to previous loaded stat value
* @cur_stat: ptr to current stat value * @cur_stat: ptr to current stat value
*/ */
void ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded, void
ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded,
u64 *prev_stat, u64 *cur_stat) u64 *prev_stat, u64 *cur_stat)
{ {
u32 new_data; u32 new_data;
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
#include "ice_switch.h" #include "ice_switch.h"
#include <linux/avf/virtchnl.h> #include <linux/avf/virtchnl.h>
void ice_debug_cq(struct ice_hw *hw, u32 mask, void *desc, void *buf, void
u16 buf_len); ice_debug_cq(struct ice_hw *hw, u32 mask, void *desc, void *buf, u16 buf_len);
enum ice_status ice_init_hw(struct ice_hw *hw); enum ice_status ice_init_hw(struct ice_hw *hw);
void ice_deinit_hw(struct ice_hw *hw); void ice_deinit_hw(struct ice_hw *hw);
enum ice_status ice_check_reset(struct ice_hw *hw); enum ice_status ice_check_reset(struct ice_hw *hw);
...@@ -28,8 +28,8 @@ ice_acquire_res(struct ice_hw *hw, enum ice_aq_res_ids res, ...@@ -28,8 +28,8 @@ ice_acquire_res(struct ice_hw *hw, enum ice_aq_res_ids res,
enum ice_aq_res_access_type access, u32 timeout); enum ice_aq_res_access_type access, u32 timeout);
void ice_release_res(struct ice_hw *hw, enum ice_aq_res_ids res); void ice_release_res(struct ice_hw *hw, enum ice_aq_res_ids res);
enum ice_status ice_init_nvm(struct ice_hw *hw); enum ice_status ice_init_nvm(struct ice_hw *hw);
enum ice_status ice_read_sr_buf(struct ice_hw *hw, u16 offset, u16 *words, enum ice_status
u16 *data); ice_read_sr_buf(struct ice_hw *hw, u16 offset, u16 *words, u16 *data);
enum ice_status enum ice_status
ice_sq_send_cmd(struct ice_hw *hw, struct ice_ctl_q_info *cq, ice_sq_send_cmd(struct ice_hw *hw, struct ice_ctl_q_info *cq,
struct ice_aq_desc *desc, void *buf, u16 buf_size, struct ice_aq_desc *desc, void *buf, u16 buf_size,
...@@ -106,8 +106,10 @@ ice_ena_vsi_txq(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u8 num_qgrps, ...@@ -106,8 +106,10 @@ ice_ena_vsi_txq(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u8 num_qgrps,
enum ice_status ice_replay_vsi(struct ice_hw *hw, u16 vsi_handle); enum ice_status ice_replay_vsi(struct ice_hw *hw, u16 vsi_handle);
void ice_replay_post(struct ice_hw *hw); void ice_replay_post(struct ice_hw *hw);
void ice_output_fw_log(struct ice_hw *hw, struct ice_aq_desc *desc, void *buf); void ice_output_fw_log(struct ice_hw *hw, struct ice_aq_desc *desc, void *buf);
void ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg, void
ice_stat_update40(struct ice_hw *hw, u32 hireg, u32 loreg,
bool prev_stat_loaded, u64 *prev_stat, u64 *cur_stat); bool prev_stat_loaded, u64 *prev_stat, u64 *cur_stat);
void ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded, void
ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded,
u64 *prev_stat, u64 *cur_stat); u64 *prev_stat, u64 *cur_stat);
#endif /* _ICE_COMMON_H_ */ #endif /* _ICE_COMMON_H_ */
...@@ -1156,7 +1156,8 @@ ice_get_settings_link_down(struct ethtool_link_ksettings *ks, ...@@ -1156,7 +1156,8 @@ ice_get_settings_link_down(struct ethtool_link_ksettings *ks,
* *
* Reports speed/duplex settings based on media_type * Reports speed/duplex settings based on media_type
*/ */
static int ice_get_link_ksettings(struct net_device *netdev, static int
ice_get_link_ksettings(struct net_device *netdev,
struct ethtool_link_ksettings *ks) struct ethtool_link_ksettings *ks)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
...@@ -1565,7 +1566,8 @@ ice_set_link_ksettings(struct net_device *netdev, ...@@ -1565,7 +1566,8 @@ ice_set_link_ksettings(struct net_device *netdev,
* *
* Returns Success if the command is supported. * Returns Success if the command is supported.
*/ */
static int ice_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd, static int
ice_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
u32 __always_unused *rule_locs) u32 __always_unused *rule_locs)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
...@@ -2023,8 +2025,9 @@ ice_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, u8 *hfunc) ...@@ -2023,8 +2025,9 @@ ice_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, u8 *hfunc)
* Returns -EINVAL if the table specifies an invalid queue id, otherwise * Returns -EINVAL if the table specifies an invalid queue id, otherwise
* returns 0 after programming the table. * returns 0 after programming the table.
*/ */
static int ice_set_rxfh(struct net_device *netdev, const u32 *indir, static int
const u8 *key, const u8 hfunc) ice_set_rxfh(struct net_device *netdev, const u32 *indir, const u8 *key,
const u8 hfunc)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
struct ice_vsi *vsi = np->vsi; struct ice_vsi *vsi = np->vsi;
...@@ -2179,7 +2182,8 @@ ice_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec) ...@@ -2179,7 +2182,8 @@ ice_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec)
return __ice_get_coalesce(netdev, ec, -1); return __ice_get_coalesce(netdev, ec, -1);
} }
static int ice_get_per_q_coalesce(struct net_device *netdev, u32 q_num, static int
ice_get_per_q_coalesce(struct net_device *netdev, u32 q_num,
struct ethtool_coalesce *ec) struct ethtool_coalesce *ec)
{ {
return __ice_get_coalesce(netdev, ec, q_num); return __ice_get_coalesce(netdev, ec, q_num);
...@@ -2324,7 +2328,8 @@ ice_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec) ...@@ -2324,7 +2328,8 @@ ice_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec)
return __ice_set_coalesce(netdev, ec, -1); return __ice_set_coalesce(netdev, ec, -1);
} }
static int ice_set_per_q_coalesce(struct net_device *netdev, u32 q_num, static int
ice_set_per_q_coalesce(struct net_device *netdev, u32 q_num,
struct ethtool_coalesce *ec) struct ethtool_coalesce *ec)
{ {
return __ice_set_coalesce(netdev, ec, q_num); return __ice_set_coalesce(netdev, ec, q_num);
......
...@@ -2107,8 +2107,9 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, ...@@ -2107,8 +2107,9 @@ ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
* @rst_src: reset source * @rst_src: reset source
* @rel_vmvf_num: Relative id of VF/VM * @rel_vmvf_num: Relative id of VF/VM
*/ */
int ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, int
enum ice_disq_rst_src rst_src, u16 rel_vmvf_num) ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
u16 rel_vmvf_num)
{ {
return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings, return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings,
0); 0);
......
...@@ -1113,7 +1113,8 @@ static void ice_set_ctrlq_len(struct ice_hw *hw) ...@@ -1113,7 +1113,8 @@ static void ice_set_ctrlq_len(struct ice_hw *hw)
* This is a callback function used by the irq_set_affinity_notifier function * This is a callback function used by the irq_set_affinity_notifier function
* so that we may register to receive changes to the irq affinity masks. * so that we may register to receive changes to the irq affinity masks.
*/ */
static void ice_irq_affinity_notify(struct irq_affinity_notify *notify, static void
ice_irq_affinity_notify(struct irq_affinity_notify *notify,
const cpumask_t *mask) const cpumask_t *mask)
{ {
struct ice_q_vector *q_vector = struct ice_q_vector *q_vector =
...@@ -1658,8 +1659,9 @@ ice_pf_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi) ...@@ -1658,8 +1659,9 @@ ice_pf_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi)
* *
* net_device_ops implementation for adding vlan ids * net_device_ops implementation for adding vlan ids
*/ */
static int ice_vlan_rx_add_vid(struct net_device *netdev, static int
__always_unused __be16 proto, u16 vid) ice_vlan_rx_add_vid(struct net_device *netdev, __always_unused __be16 proto,
u16 vid)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
struct ice_vsi *vsi = np->vsi; struct ice_vsi *vsi = np->vsi;
...@@ -1696,8 +1698,9 @@ static int ice_vlan_rx_add_vid(struct net_device *netdev, ...@@ -1696,8 +1698,9 @@ static int ice_vlan_rx_add_vid(struct net_device *netdev,
* *
* net_device_ops implementation for removing vlan ids * net_device_ops implementation for removing vlan ids
*/ */
static int ice_vlan_rx_kill_vid(struct net_device *netdev, static int
__always_unused __be16 proto, u16 vid) ice_vlan_rx_kill_vid(struct net_device *netdev, __always_unused __be16 proto,
u16 vid)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
struct ice_vsi *vsi = np->vsi; struct ice_vsi *vsi = np->vsi;
...@@ -2057,8 +2060,8 @@ static void ice_verify_cacheline_size(struct ice_pf *pf) ...@@ -2057,8 +2060,8 @@ static void ice_verify_cacheline_size(struct ice_pf *pf)
* *
* Returns 0 on success, negative on failure * Returns 0 on success, negative on failure
*/ */
static int ice_probe(struct pci_dev *pdev, static int
const struct pci_device_id __always_unused *ent) ice_probe(struct pci_dev *pdev, const struct pci_device_id __always_unused *ent)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct ice_pf *pf; struct ice_pf *pf;
...@@ -2493,7 +2496,8 @@ ice_fdb_add(struct ndmsg *ndm, struct nlattr __always_unused *tb[], ...@@ -2493,7 +2496,8 @@ ice_fdb_add(struct ndmsg *ndm, struct nlattr __always_unused *tb[],
* @addr: the MAC address entry being added * @addr: the MAC address entry being added
* @vid: VLAN id * @vid: VLAN id
*/ */
static int ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[], static int
ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[],
struct net_device *dev, const unsigned char *addr, struct net_device *dev, const unsigned char *addr,
__always_unused u16 vid) __always_unused u16 vid)
{ {
...@@ -2519,8 +2523,8 @@ static int ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[], ...@@ -2519,8 +2523,8 @@ static int ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[],
* @netdev: ptr to the netdev being adjusted * @netdev: ptr to the netdev being adjusted
* @features: the feature set that the stack is suggesting * @features: the feature set that the stack is suggesting
*/ */
static int ice_set_features(struct net_device *netdev, static int
netdev_features_t features) ice_set_features(struct net_device *netdev, netdev_features_t features)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
struct ice_vsi *vsi = np->vsi; struct ice_vsi *vsi = np->vsi;
...@@ -2674,8 +2678,8 @@ int ice_up(struct ice_vsi *vsi) ...@@ -2674,8 +2678,8 @@ int ice_up(struct ice_vsi *vsi)
* This function fetches stats from the ring considering the atomic operations * This function fetches stats from the ring considering the atomic operations
* that needs to be performed to read u64 values in 32 bit machine. * that needs to be performed to read u64 values in 32 bit machine.
*/ */
static void ice_fetch_u64_stats_per_ring(struct ice_ring *ring, u64 *pkts, static void
u64 *bytes) ice_fetch_u64_stats_per_ring(struct ice_ring *ring, u64 *pkts, u64 *bytes)
{ {
unsigned int start; unsigned int start;
*pkts = 0; *pkts = 0;
......
...@@ -322,8 +322,8 @@ struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle) ...@@ -322,8 +322,8 @@ struct ice_vsi_ctx *ice_get_vsi_ctx(struct ice_hw *hw, u16 vsi_handle)
* *
* save the VSI context entry for a given VSI handle * save the VSI context entry for a given VSI handle
*/ */
static void ice_save_vsi_ctx(struct ice_hw *hw, u16 vsi_handle, static void
struct ice_vsi_ctx *vsi) ice_save_vsi_ctx(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi)
{ {
hw->vsi_ctx[vsi_handle] = vsi; hw->vsi_ctx[vsi_handle] = vsi;
} }
......
...@@ -199,7 +199,8 @@ enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw); ...@@ -199,7 +199,8 @@ enum ice_status ice_update_sw_rule_bridge_mode(struct ice_hw *hw);
enum ice_status ice_add_mac(struct ice_hw *hw, struct list_head *m_lst); enum ice_status ice_add_mac(struct ice_hw *hw, struct list_head *m_lst);
enum ice_status ice_remove_mac(struct ice_hw *hw, struct list_head *m_lst); enum ice_status ice_remove_mac(struct ice_hw *hw, struct list_head *m_lst);
void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle); void ice_remove_vsi_fltr(struct ice_hw *hw, u16 vsi_handle);
enum ice_status ice_add_vlan(struct ice_hw *hw, struct list_head *m_list); enum ice_status
ice_add_vlan(struct ice_hw *hw, struct list_head *m_list);
enum ice_status ice_remove_vlan(struct ice_hw *hw, struct list_head *v_list); enum ice_status ice_remove_vlan(struct ice_hw *hw, struct list_head *v_list);
enum ice_status enum ice_status
ice_cfg_dflt_vsi(struct ice_hw *hw, u16 vsi_handle, bool set, u8 direction); ice_cfg_dflt_vsi(struct ice_hw *hw, u16 vsi_handle, bool set, u8 direction);
......
...@@ -100,8 +100,8 @@ void ice_free_tx_ring(struct ice_ring *tx_ring) ...@@ -100,8 +100,8 @@ void ice_free_tx_ring(struct ice_ring *tx_ring)
* *
* Returns true if there's any budget left (e.g. the clean is finished) * Returns true if there's any budget left (e.g. the clean is finished)
*/ */
static bool ice_clean_tx_irq(struct ice_vsi *vsi, struct ice_ring *tx_ring, static bool
int napi_budget) ice_clean_tx_irq(struct ice_vsi *vsi, struct ice_ring *tx_ring, int napi_budget)
{ {
unsigned int total_bytes = 0, total_pkts = 0; unsigned int total_bytes = 0, total_pkts = 0;
unsigned int budget = vsi->work_lmt; unsigned int budget = vsi->work_lmt;
...@@ -389,8 +389,8 @@ static void ice_release_rx_desc(struct ice_ring *rx_ring, u32 val) ...@@ -389,8 +389,8 @@ static void ice_release_rx_desc(struct ice_ring *rx_ring, u32 val)
* Returns true if the page was successfully allocated or * Returns true if the page was successfully allocated or
* reused. * reused.
*/ */
static bool ice_alloc_mapped_page(struct ice_ring *rx_ring, static bool
struct ice_rx_buf *bi) ice_alloc_mapped_page(struct ice_ring *rx_ring, struct ice_rx_buf *bi)
{ {
struct page *page = bi->page; struct page *page = bi->page;
dma_addr_t dma; dma_addr_t dma;
...@@ -510,8 +510,8 @@ static bool ice_page_is_reserved(struct page *page) ...@@ -510,8 +510,8 @@ static bool ice_page_is_reserved(struct page *page)
* The function will then update the page offset if necessary and return * The function will then update the page offset if necessary and return
* true if the buffer can be reused by the adapter. * true if the buffer can be reused by the adapter.
*/ */
static bool ice_add_rx_frag(struct ice_rx_buf *rx_buf, static bool
union ice_32b_rx_flex_desc *rx_desc, ice_add_rx_frag(struct ice_rx_buf *rx_buf, union ice_32b_rx_flex_desc *rx_desc,
struct sk_buff *skb) struct sk_buff *skb)
{ {
#if (PAGE_SIZE < 8192) #if (PAGE_SIZE < 8192)
...@@ -587,8 +587,8 @@ static bool ice_add_rx_frag(struct ice_rx_buf *rx_buf, ...@@ -587,8 +587,8 @@ static bool ice_add_rx_frag(struct ice_rx_buf *rx_buf,
* *
* Synchronizes page for reuse by the adapter * Synchronizes page for reuse by the adapter
*/ */
static void ice_reuse_rx_page(struct ice_ring *rx_ring, static void
struct ice_rx_buf *old_buf) ice_reuse_rx_page(struct ice_ring *rx_ring, struct ice_rx_buf *old_buf)
{ {
u16 nta = rx_ring->next_to_alloc; u16 nta = rx_ring->next_to_alloc;
struct ice_rx_buf *new_buf; struct ice_rx_buf *new_buf;
...@@ -613,8 +613,8 @@ static void ice_reuse_rx_page(struct ice_ring *rx_ring, ...@@ -613,8 +613,8 @@ static void ice_reuse_rx_page(struct ice_ring *rx_ring,
* correctly, as well as handling calling the page recycle function if * correctly, as well as handling calling the page recycle function if
* necessary. * necessary.
*/ */
static struct sk_buff *ice_fetch_rx_buf(struct ice_ring *rx_ring, static struct sk_buff *
union ice_32b_rx_flex_desc *rx_desc) ice_fetch_rx_buf(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc)
{ {
struct ice_rx_buf *rx_buf; struct ice_rx_buf *rx_buf;
struct sk_buff *skb; struct sk_buff *skb;
...@@ -751,8 +751,8 @@ static bool ice_cleanup_headers(struct sk_buff *skb) ...@@ -751,8 +751,8 @@ static bool ice_cleanup_headers(struct sk_buff *skb)
* The status_error_len doesn't need to be shifted because it begins * The status_error_len doesn't need to be shifted because it begins
* at offset zero. * at offset zero.
*/ */
static bool ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc, static bool
const u16 stat_err_bits) ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc, const u16 stat_err_bits)
{ {
return !!(rx_desc->wb.status_error0 & return !!(rx_desc->wb.status_error0 &
cpu_to_le16(stat_err_bits)); cpu_to_le16(stat_err_bits));
...@@ -769,8 +769,8 @@ static bool ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc, ...@@ -769,8 +769,8 @@ static bool ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc,
* sk_buff in the next buffer to be chained and return true indicating * sk_buff in the next buffer to be chained and return true indicating
* that this is in fact a non-EOP buffer. * that this is in fact a non-EOP buffer.
*/ */
static bool ice_is_non_eop(struct ice_ring *rx_ring, static bool
union ice_32b_rx_flex_desc *rx_desc, ice_is_non_eop(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc,
struct sk_buff *skb) struct sk_buff *skb)
{ {
u32 ntc = rx_ring->next_to_clean + 1; u32 ntc = rx_ring->next_to_clean + 1;
...@@ -838,7 +838,8 @@ ice_rx_hash(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc, ...@@ -838,7 +838,8 @@ ice_rx_hash(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc,
* *
* skb->protocol must be set before this function is called * skb->protocol must be set before this function is called
*/ */
static void ice_rx_csum(struct ice_vsi *vsi, struct sk_buff *skb, static void
ice_rx_csum(struct ice_vsi *vsi, struct sk_buff *skb,
union ice_32b_rx_flex_desc *rx_desc, u8 ptype) union ice_32b_rx_flex_desc *rx_desc, u8 ptype)
{ {
struct ice_rx_ptype_decoded decoded; struct ice_rx_ptype_decoded decoded;
...@@ -909,7 +910,8 @@ static void ice_rx_csum(struct ice_vsi *vsi, struct sk_buff *skb, ...@@ -909,7 +910,8 @@ static void ice_rx_csum(struct ice_vsi *vsi, struct sk_buff *skb,
* order to populate the hash, checksum, VLAN, protocol, and * order to populate the hash, checksum, VLAN, protocol, and
* other fields within the skb. * other fields within the skb.
*/ */
static void ice_process_skb_fields(struct ice_ring *rx_ring, static void
ice_process_skb_fields(struct ice_ring *rx_ring,
union ice_32b_rx_flex_desc *rx_desc, union ice_32b_rx_flex_desc *rx_desc,
struct sk_buff *skb, u8 ptype) struct sk_buff *skb, u8 ptype)
{ {
...@@ -930,8 +932,8 @@ static void ice_process_skb_fields(struct ice_ring *rx_ring, ...@@ -930,8 +932,8 @@ static void ice_process_skb_fields(struct ice_ring *rx_ring,
* This function sends the completed packet (via. skb) up the stack using * This function sends the completed packet (via. skb) up the stack using
* gro receive functions (with/without vlan tag) * gro receive functions (with/without vlan tag)
*/ */
static void ice_receive_skb(struct ice_ring *rx_ring, struct sk_buff *skb, static void
u16 vlan_tag) ice_receive_skb(struct ice_ring *rx_ring, struct sk_buff *skb, u16 vlan_tag)
{ {
if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) && if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
(vlan_tag & VLAN_VID_MASK)) { (vlan_tag & VLAN_VID_MASK)) {
......
...@@ -1227,8 +1227,9 @@ static void ice_vc_dis_vf(struct ice_vf *vf) ...@@ -1227,8 +1227,9 @@ static void ice_vc_dis_vf(struct ice_vf *vf)
* *
* send msg to VF * send msg to VF
*/ */
static int ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode, static int
enum ice_status v_retval, u8 *msg, u16 msglen) ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode, enum ice_status v_retval,
u8 *msg, u16 msglen)
{ {
enum ice_status aq_ret; enum ice_status aq_ret;
struct ice_pf *pf; struct ice_pf *pf;
...@@ -2498,8 +2499,8 @@ void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event) ...@@ -2498,8 +2499,8 @@ void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event)
* *
* return VF configuration * return VF configuration
*/ */
int ice_get_vf_cfg(struct net_device *netdev, int vf_id, int
struct ifla_vf_info *ivi) ice_get_vf_cfg(struct net_device *netdev, int vf_id, struct ifla_vf_info *ivi)
{ {
struct ice_netdev_priv *np = netdev_priv(netdev); struct ice_netdev_priv *np = netdev_priv(netdev);
struct ice_vsi *vsi = np->vsi; struct ice_vsi *vsi = np->vsi;
......
...@@ -78,8 +78,8 @@ struct ice_vf { ...@@ -78,8 +78,8 @@ struct ice_vf {
void ice_process_vflr_event(struct ice_pf *pf); void ice_process_vflr_event(struct ice_pf *pf);
int ice_sriov_configure(struct pci_dev *pdev, int num_vfs); int ice_sriov_configure(struct pci_dev *pdev, int num_vfs);
int ice_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac); int ice_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac);
int ice_get_vf_cfg(struct net_device *netdev, int vf_id, int
struct ifla_vf_info *ivi); ice_get_vf_cfg(struct net_device *netdev, int vf_id, struct ifla_vf_info *ivi);
void ice_free_vfs(struct ice_pf *pf); void ice_free_vfs(struct ice_pf *pf);
void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event); void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event);
...@@ -87,8 +87,9 @@ void ice_vc_notify_link_state(struct ice_pf *pf); ...@@ -87,8 +87,9 @@ void ice_vc_notify_link_state(struct ice_pf *pf);
void ice_vc_notify_reset(struct ice_pf *pf); void ice_vc_notify_reset(struct ice_pf *pf);
bool ice_reset_all_vfs(struct ice_pf *pf, bool is_vflr); bool ice_reset_all_vfs(struct ice_pf *pf, bool is_vflr);
int ice_set_vf_port_vlan(struct net_device *netdev, int vf_id, int
u16 vlan_id, u8 qos, __be16 vlan_proto); ice_set_vf_port_vlan(struct net_device *netdev, int vf_id, u16 vlan_id, u8 qos,
__be16 vlan_proto);
int ice_set_vf_trust(struct net_device *netdev, int vf_id, bool trusted); int ice_set_vf_trust(struct net_device *netdev, int vf_id, bool trusted);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment