Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/net/mac80211/
Ddebug.h85 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 …]
Dtrace.c15 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 …]
Ddebugfs.c21 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/
Dlog.h68 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); \
Dlog.c61 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/
Dlib.c27 #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/
Dmod.c12 #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()
Dprotocol.c29 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 …]
Dprotocol.h13 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/
Dl2tp_core.h321 #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/
Ddccp.h22 #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/
Dnf_conntrack_proto.c54 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()
Dnf_conntrack_acct.c8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
Dnf_conntrack_timestamp.c6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
Dxt_osf.c5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
Dxt_CHECKSUM.c9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
Dnf_log.c223 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/
Datm_sysfs.c36 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/
Dwimax-internal.h22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
/net/core/
Dnetpoll.c13 #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/
Dip_vs_fo.c12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
Dip_vs_ovf.c16 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
Dip_vs_lc.c13 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt argument
/net/openvswitch/
Dvport-gre.c6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
/net/caif/
Dcfdbgl.c7 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__ argument

12345678910>>...14