mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

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>
32 lines
737 B
C
32 lines
737 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2019, Intel Corporation. */
|
|
|
|
#ifndef _ICE_DCB_LIB_H_
|
|
#define _ICE_DCB_LIB_H_
|
|
|
|
#include "ice.h"
|
|
#include "ice_lib.h"
|
|
|
|
#ifdef CONFIG_DCB
|
|
u8 ice_dcb_get_ena_tc(struct ice_dcbx_cfg *dcbcfg);
|
|
u8 ice_dcb_get_num_tc(struct ice_dcbx_cfg *dcbcfg);
|
|
int ice_init_pf_dcb(struct ice_pf *pf);
|
|
#else
|
|
static inline u8 ice_dcb_get_ena_tc(struct ice_dcbx_cfg __always_unused *dcbcfg)
|
|
{
|
|
return ICE_DFLT_TRAFFIC_CLASS;
|
|
}
|
|
|
|
static inline u8 ice_dcb_get_num_tc(struct ice_dcbx_cfg __always_unused *dcbcfg)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
static inline int ice_init_pf_dcb(struct ice_pf *pf)
|
|
{
|
|
dev_dbg(&pf->pdev->dev, "DCB not supported\n");
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
#endif /* CONFIG_DCB */
|
|
#endif /* _ICE_DCB_LIB_H_ */
|