mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-29 22:14:41 +08:00
b94b013eb6
Implement interface layer for the DCBNL subsystem. These are the functions to support the callbacks defined in the dcbnl_rtnl_ops struct. These callbacks are going to be used to interface with the DCB settings of the device. Implementation of dcb_nl set functions and supporting SW DCB functions. Signed-off-by: Dave Ertman <david.m.ertman@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
20 lines
569 B
C
20 lines
569 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2019, Intel Corporation. */
|
|
|
|
#ifndef _ICE_DCB_NL_H_
|
|
#define _ICE_DCB_NL_H_
|
|
|
|
#ifdef CONFIG_DCB
|
|
void ice_dcbnl_setup(struct ice_vsi *vsi);
|
|
void ice_dcbnl_set_all(struct ice_vsi *vsi);
|
|
void
|
|
ice_dcbnl_flush_apps(struct ice_pf *pf, struct ice_dcbx_cfg *old_cfg,
|
|
struct ice_dcbx_cfg *new_cfg);
|
|
#else
|
|
#define ice_dcbnl_setup(vsi) do {} while (0)
|
|
#define ice_dcbnl_set_all(vsi) do {} while (0)
|
|
#define ice_dcbnl_flush_apps(pf, old_cfg, new_cfg) do {} while (0)
|
|
#endif /* CONFIG_DCB */
|
|
|
|
#endif /* _ICE_DCB_NL_H_ */
|