Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.9 19 lines 569 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (c) 2019, Intel Corporation. */ 3 4#ifndef _ICE_DCB_NL_H_ 5#define _ICE_DCB_NL_H_ 6 7#ifdef CONFIG_DCB 8void ice_dcbnl_setup(struct ice_vsi *vsi); 9void ice_dcbnl_set_all(struct ice_vsi *vsi); 10void 11ice_dcbnl_flush_apps(struct ice_pf *pf, struct ice_dcbx_cfg *old_cfg, 12 struct ice_dcbx_cfg *new_cfg); 13#else 14#define ice_dcbnl_setup(vsi) do {} while (0) 15#define ice_dcbnl_set_all(vsi) do {} while (0) 16#define ice_dcbnl_flush_apps(pf, old_cfg, new_cfg) do {} while (0) 17#endif /* CONFIG_DCB */ 18 19#endif /* _ICE_DCB_NL_H_ */