sys/dev/ixl/ixl.h
517
void ixl_debug_core(device_t dev, u32 enabled_mask, u32 mask, char *fmt, ...);
sys/dev/ixl/ixl_pf.h
283
#define ixl_dbg(pf, m, s, ...) ixl_debug_core((pf)->dev, (pf)->dbg_mask, m, s, ##__VA_ARGS__)
sys/dev/ixl/ixl_pf.h
284
#define ixl_dbg_info(pf, s, ...) ixl_debug_core((pf)->dev, (pf)->dbg_mask, IXL_DBG_INFO, s, ##__VA_ARGS__)
sys/dev/ixl/ixl_pf.h
285
#define ixl_dbg_filter(pf, s, ...) ixl_debug_core((pf)->dev, (pf)->dbg_mask, IXL_DBG_FILTER, s, ##__VA_ARGS__)
sys/dev/ixl/ixl_pf.h
286
#define ixl_dbg_iov(pf, s, ...) ixl_debug_core((pf)->dev, (pf)->dbg_mask, IXL_DBG_IOV, s, ##__VA_ARGS__)
sys/dev/ixl/ixl_pf.h
287
#define ixl_dbg_link(pf, s, ...) ixl_debug_core((pf)->dev, (pf)->dbg_mask, IXL_DBG_LINK, s, ##__VA_ARGS__)