mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 17:45:12 +07:00
5153a18e57
This patch continues the code move out of ice_main.c The following top level functions (and related dependency functions) were moved to ice_lib.c: ice_vsi_delete ice_free_res ice_get_res ice_is_reset_recovery_pending ice_vsi_put_qs ice_vsi_dis_irq ice_vsi_free_irq ice_vsi_free_rx_rings ice_vsi_free_tx_rings ice_msix_clean_rings Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, Intel Corporation. */
|
|
|
|
#ifndef _ICE_LIB_H_
|
|
#define _ICE_LIB_H_
|
|
|
|
#include "ice.h"
|
|
|
|
int ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
|
|
const u8 *macaddr);
|
|
|
|
void ice_free_fltr_list(struct device *dev, struct list_head *h);
|
|
|
|
void ice_update_eth_stats(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_cfg_rxqs(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_cfg_txqs(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_cfg_msix(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid);
|
|
|
|
int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid);
|
|
|
|
int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena);
|
|
|
|
int ice_vsi_start_rx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_stop_rx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_stop_tx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena);
|
|
|
|
void ice_vsi_delete(struct ice_vsi *vsi);
|
|
|
|
int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id);
|
|
|
|
int
|
|
ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id);
|
|
|
|
bool ice_is_reset_recovery_pending(unsigned long *state);
|
|
|
|
void ice_vsi_put_qs(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_dis_irq(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_irq(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_rx_rings(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_tx_rings(struct ice_vsi *vsi);
|
|
|
|
irqreturn_t ice_msix_clean_rings(int __always_unused irq, void *data);
|
|
#endif /* !_ICE_LIB_H_ */
|