aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/ice/ice_lib.h
diff options
context:
space:
mode:
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>2019-02-28 18:24:24 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2019-04-18 11:38:47 -0400
commit7b9ffc76bf5998aad8feaa26d9d3fcb65ec7a21b (patch)
tree9935f6c7b53786d7f9ce06d804aa4a42ce541ec4 /drivers/net/ethernet/intel/ice/ice_lib.h
parent0ebd3ff13ccad2940516ba522ca8d21cea4f56f6 (diff)
ice: Add code for DCB initialization part 3/4
This patch adds a new function ice_pf_dcb_cfg (and related helpers) which applies the DCB configuration obtained from the firmware. As part of this, VSIs/netdevs are updated with traffic class information. This patch requires a bit of a refactor of existing code. 1. For a MIB change event, the associated VSI is closed and brought up again. The gap between closing and opening the VSI can cause a race condition. Fix this by grabbing the rtnl_lock prior to closing the VSI and then only free it after re-opening the VSI during a MIB change event. 2. ice_sched_query_elem is used in ice_sched.c and with this patch, in ice_dcb.c as well. However, ice_dcb.c is not built when CONFIG_DCB is unset. This results in namespace warnings (ice_sched.o: Externally defined symbols with no external references) when CONFIG_DCB is unset. To avoid this move ice_sched_query_elem from ice_sched.c to ice_common.c. 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>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_lib.h')
-rw-r--r--drivers/net/ethernet/intel/ice/ice_lib.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_lib.h b/drivers/net/ethernet/intel/ice/ice_lib.h
index 519ef59e9e43..714ace077796 100644
--- a/drivers/net/ethernet/intel/ice/ice_lib.h
+++ b/drivers/net/ethernet/intel/ice/ice_lib.h
@@ -41,6 +41,10 @@ void ice_vsi_delete(struct ice_vsi *vsi);
41 41
42int ice_vsi_clear(struct ice_vsi *vsi); 42int ice_vsi_clear(struct ice_vsi *vsi);
43 43
44#ifdef CONFIG_DCB
45int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc);
46#endif /* CONFIG_DCB */
47
44struct ice_vsi * 48struct ice_vsi *
45ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi, 49ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
46 enum ice_vsi_type type, u16 vf_id); 50 enum ice_vsi_type type, u16 vf_id);
@@ -62,6 +66,10 @@ void ice_vsi_free_q_vectors(struct ice_vsi *vsi);
62 66
63void ice_vsi_put_qs(struct ice_vsi *vsi); 67void ice_vsi_put_qs(struct ice_vsi *vsi);
64 68
69#ifdef CONFIG_DCB
70void ice_vsi_map_rings_to_vectors(struct ice_vsi *vsi);
71#endif /* CONFIG_DCB */
72
65void ice_vsi_dis_irq(struct ice_vsi *vsi); 73void ice_vsi_dis_irq(struct ice_vsi *vsi);
66 74
67void ice_vsi_free_irq(struct ice_vsi *vsi); 75void ice_vsi_free_irq(struct ice_vsi *vsi);