/net/mac80211/ |
D | debug.h | 85 void __sdata_info(const char *fmt, ...) __printf(1, 2); 86 void __sdata_dbg(bool print, const char *fmt, ...) __printf(2, 3); 87 void __sdata_err(const char *fmt, ...) __printf(1, 2); 88 void __wiphy_dbg(struct wiphy *wiphy, bool print, const char *fmt, ...) 91 #define _sdata_info(sdata, fmt, ...) \ argument 92 __sdata_info("%s: " fmt, (sdata)->name, ##__VA_ARGS__) 93 #define _sdata_dbg(print, sdata, fmt, ...) \ argument 94 __sdata_dbg(print, "%s: " fmt, (sdata)->name, ##__VA_ARGS__) 95 #define _sdata_err(sdata, fmt, ...) \ argument 96 __sdata_err("%s: " fmt, (sdata)->name, ##__VA_ARGS__) [all …]
|
D | trace.c | 15 void __sdata_info(const char *fmt, ...) in __sdata_info() argument 18 .fmt = fmt, in __sdata_info() 22 va_start(args, fmt); in __sdata_info() 30 void __sdata_dbg(bool print, const char *fmt, ...) in __sdata_dbg() argument 33 .fmt = fmt, in __sdata_dbg() 37 va_start(args, fmt); in __sdata_dbg() 46 void __sdata_err(const char *fmt, ...) in __sdata_err() argument 49 .fmt = fmt, in __sdata_err() 53 va_start(args, fmt); in __sdata_err() 61 void __wiphy_dbg(struct wiphy *wiphy, bool print, const char *fmt, ...) in __wiphy_dbg() argument [all …]
|
D | debugfs.c | 21 loff_t *ppos, char *fmt, ...) in mac80211_format_buffer() argument 27 va_start(args, fmt); in mac80211_format_buffer() 28 res = vscnprintf(buf, sizeof(buf), fmt, args); in mac80211_format_buffer() 34 #define DEBUGFS_READONLY_FILE_FN(name, fmt, value...) \ argument 41 fmt "\n", ##value); \ 51 #define DEBUGFS_READONLY_FILE(name, fmt, value...) \ argument 52 DEBUGFS_READONLY_FILE_FN(name, fmt, value) \
|
/net/batman-adv/ |
D | log.h | 68 int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...) 79 #define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...) \ argument 84 batadv_debug_log(__batpriv, fmt, ## arg); \ 92 const char *fmt __always_unused, ...) in _batadv_dbg() 121 #define batadv_info(net_dev, fmt, arg...) \ argument 125 batadv_dbg(BATADV_DBG_ALL, _batpriv, fmt, ## arg); \ 126 pr_info("%s: " fmt, _netdev->name, ## arg); \ 135 #define batadv_err(net_dev, fmt, arg...) \ argument 139 batadv_dbg(BATADV_DBG_ALL, _batpriv, fmt, ## arg); \ 140 pr_err("%s: " fmt, _netdev->name, ## arg); \
|
D | log.c | 61 const char *fmt, ...) in batadv_fdebug_log() argument 71 va_start(args, fmt); in batadv_fdebug_log() 72 vscnprintf(debug_log_buf, sizeof(debug_log_buf), fmt, args); in batadv_fdebug_log() 225 int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...) in batadv_debug_log() argument 230 va_start(args, fmt); in batadv_debug_log() 232 vaf.fmt = fmt; in batadv_debug_log()
|
/net/bluetooth/ |
D | lib.c | 27 #define pr_fmt(fmt) "Bluetooth: " fmt argument 145 vaf.fmt = format; in bt_info() 161 vaf.fmt = format; in bt_warn() 177 vaf.fmt = format; in bt_err() 193 vaf.fmt = format; in bt_err_ratelimited()
|
/net/9p/ |
D | mod.c | 12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument 33 const char *fmt, ...) in _p9_debug() argument 41 va_start(args, fmt); in _p9_debug() 43 vaf.fmt = fmt; in _p9_debug()
|
D | protocol.c | 29 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...); 92 p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt, in p9pdu_vreadf() argument 98 for (ptr = fmt; *ptr; ptr++) { in p9pdu_vreadf() 360 p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt, in p9pdu_vwritef() argument 366 for (ptr = fmt; *ptr; ptr++) { in p9pdu_vwritef() 529 int p9pdu_readf(struct p9_fcall *pdu, int proto_version, const char *fmt, ...) in p9pdu_readf() argument 534 va_start(ap, fmt); in p9pdu_readf() 535 ret = p9pdu_vreadf(pdu, proto_version, fmt, ap); in p9pdu_readf() 542 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...) in p9pdu_writef() argument 547 va_start(ap, fmt); in p9pdu_writef() [all …]
|
D | protocol.h | 13 int p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt, 15 int p9pdu_readf(struct p9_fcall *pdu, int proto_version, const char *fmt, ...);
|
/net/l2tp/ |
D | l2tp_core.h | 321 #define l2tp_printk(ptr, type, func, fmt, ...) \ argument 324 func(fmt, ##__VA_ARGS__); \ 327 #define l2tp_warn(ptr, type, fmt, ...) \ argument 328 l2tp_printk(ptr, type, pr_warn, fmt, ##__VA_ARGS__) 329 #define l2tp_info(ptr, type, fmt, ...) \ argument 330 l2tp_printk(ptr, type, pr_info, fmt, ##__VA_ARGS__) 331 #define l2tp_dbg(ptr, type, fmt, ...) \ argument 332 l2tp_printk(ptr, type, pr_debug, fmt, ##__VA_ARGS__)
|
/net/dccp/ |
D | dccp.h | 22 #define DCCP_WARN(fmt, ...) \ argument 23 net_warn_ratelimited("%s: " fmt, __func__, ##__VA_ARGS__) 24 #define DCCP_CRIT(fmt, a...) printk(KERN_CRIT fmt " at %s:%d/%s()\n", ##a, \ argument 32 #define DCCP_PRINTK(enable, fmt, args...) do { if (enable) \ argument 33 printk(fmt, ##args); \ 35 #define DCCP_PR_DEBUG(enable, fmt, a...) DCCP_PRINTK(enable, KERN_DEBUG \ argument 36 "%s: " fmt, __func__, ##a) 42 #define dccp_debug(fmt, a...) dccp_pr_debug_cat(KERN_DEBUG fmt, ##a) argument
|
/net/netfilter/ |
D | nf_conntrack_proto.c | 54 const char *fmt, ...) in nf_l4proto_log_invalid() argument 63 va_start(args, fmt); in nf_l4proto_log_invalid() 64 vaf.fmt = fmt; in nf_l4proto_log_invalid() 76 const char *fmt, ...) in nf_ct_l4proto_log_invalid() argument 86 va_start(args, fmt); in nf_ct_l4proto_log_invalid() 87 vaf.fmt = fmt; in nf_ct_l4proto_log_invalid()
|
D | nf_conntrack_acct.c | 8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
D | nf_conntrack_timestamp.c | 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
D | xt_osf.c | 5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
D | xt_CHECKSUM.c | 9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
D | nf_log.c | 223 const char *fmt, ...) in nf_log_packet() argument 236 va_start(args, fmt); in nf_log_packet() 237 vsnprintf(prefix, sizeof(prefix), fmt, args); in nf_log_packet() 251 const struct nf_loginfo *loginfo, const char *fmt, ...) in nf_log_trace() argument 260 va_start(args, fmt); in nf_log_trace() 261 vsnprintf(prefix, sizeof(prefix), fmt, args); in nf_log_trace()
|
/net/atm/ |
D | atm_sysfs.c | 36 int bin[] = { 1, 2, 10, 6, 1 }, *fmt = bin; in show_atmaddress() local 42 if (j == *fmt) { in show_atmaddress() 45 ++fmt; in show_atmaddress()
|
/net/wimax/ |
D | wimax-internal.h | 22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
/net/core/ |
D | netpoll.c | 13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument 66 #define np_info(np, fmt, ...) \ argument 67 pr_info("%s: " fmt, np->name, ##__VA_ARGS__) 68 #define np_err(np, fmt, ...) \ argument 69 pr_err("%s: " fmt, np->name, ##__VA_ARGS__) 70 #define np_notice(np, fmt, ...) \ argument 71 pr_notice("%s: " fmt, np->name, ##__VA_ARGS__)
|
/net/netfilter/ipvs/ |
D | ip_vs_fo.c | 12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
|
D | ip_vs_ovf.c | 16 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
|
D | ip_vs_lc.c | 13 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
|
/net/openvswitch/ |
D | vport-gre.c | 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
|
/net/caif/ |
D | cfdbgl.c | 7 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__ argument
|