Lines Matching refs:fmt

15 #define pr_fmt(fmt) "CIFS: " fmt
55 #define cifs_info_func(ratefunc, fmt, ...) \
56 pr_info_ ## ratefunc(fmt, ##__VA_ARGS__)
58 #define cifs_info(fmt, ...) \
59 cifs_info_func(ratelimited, fmt, ##__VA_ARGS__)
62 #define cifs_dbg_func(ratefunc, type, fmt, ...) \
65 pr_debug_ ## ratefunc("%s: " fmt, \
68 pr_err_ ## ratefunc("VFS: " fmt, ##__VA_ARGS__); \
70 pr_debug_ ## ratefunc(fmt, ##__VA_ARGS__); \
74 #define cifs_dbg(type, fmt, ...) \
77 cifs_dbg_func(once, type, fmt, ##__VA_ARGS__); \
79 cifs_dbg_func(ratelimited, type, fmt, ##__VA_ARGS__); \
82 #define cifs_server_dbg_func(ratefunc, type, fmt, ...) \
86 pr_debug_ ## ratefunc("%s: \\\\%s " fmt, \
90 pr_err_ ## ratefunc("VFS: \\\\%s " fmt, \
93 pr_debug_ ## ratefunc("\\\\%s " fmt, \
99 #define cifs_server_dbg(type, fmt, ...) \
102 cifs_server_dbg_func(once, type, fmt, ##__VA_ARGS__); \
104 cifs_server_dbg_func(ratelimited, type, fmt, \
108 #define cifs_tcon_dbg_func(ratefunc, type, fmt, ...) \
114 pr_debug_ ## ratefunc("%s: %s " fmt, \
117 pr_err_ ## ratefunc("VFS: %s " fmt, tn, ##__VA_ARGS__); \
119 pr_debug_ ## ratefunc("%s " fmt, tn, ##__VA_ARGS__); \
123 #define cifs_tcon_dbg(type, fmt, ...) \
126 cifs_tcon_dbg_func(once, type, fmt, ##__VA_ARGS__); \
128 cifs_tcon_dbg_func(ratelimited, type, fmt, \
137 #define cifs_dbg(type, fmt, ...) \
140 pr_debug(fmt, ##__VA_ARGS__); \
143 #define cifs_server_dbg(type, fmt, ...) \
146 pr_debug("\\\\%s " fmt, \
150 #define cifs_tcon_dbg(type, fmt, ...) \
153 pr_debug("%s " fmt, tcon->tree_name, ##__VA_ARGS__); \
156 #define cifs_info(fmt, ...) \
157 pr_info(fmt, ##__VA_ARGS__)