0001
0002
0003
0004 #ifndef _ICE_DCB_NL_H_
0005 #define _ICE_DCB_NL_H_
0006
0007 #ifdef CONFIG_DCB
0008 void ice_dcbnl_setup(struct ice_vsi *vsi);
0009 void ice_dcbnl_set_all(struct ice_vsi *vsi);
0010 void
0011 ice_dcbnl_flush_apps(struct ice_pf *pf, struct ice_dcbx_cfg *old_cfg,
0012 struct ice_dcbx_cfg *new_cfg);
0013 #else
0014 static inline void ice_dcbnl_setup(struct ice_vsi *vsi) { }
0015 static inline void ice_dcbnl_set_all(struct ice_vsi *vsi) { }
0016 static inline void
0017 ice_dcbnl_flush_apps(struct ice_pf *pf, struct ice_dcbx_cfg *old_cfg,
0018 struct ice_dcbx_cfg *new_cfg) { }
0019 #endif
0020 #endif