Lines Matching refs:fmt
49 #define cifs_info_func(ratefunc, fmt, ...) \ argument
51 pr_info_ ## ratefunc("CIFS: " fmt, ##__VA_ARGS__); \
54 #define cifs_info(fmt, ...) \ argument
56 cifs_info_func(ratelimited, fmt, ##__VA_ARGS__); \
60 #define cifs_dbg_func(ratefunc, type, fmt, ...) \ argument
64 fmt, __FILE__, ##__VA_ARGS__); \
67 fmt, ##__VA_ARGS__); \
69 pr_debug_ ## ratefunc(fmt, ##__VA_ARGS__); \
73 #define cifs_dbg(type, fmt, ...) \ argument
77 type, fmt, ##__VA_ARGS__); \
80 type, fmt, ##__VA_ARGS__); \
83 #define cifs_server_dbg_func(ratefunc, type, fmt, ...) \ argument
89 pr_debug_ ## ratefunc("%s: \\\\%s " fmt, \
92 pr_err_ ## ratefunc("CIFS VFS: \\\\%s " fmt, \
95 pr_debug_ ## ratefunc("\\\\%s " fmt, \
100 #define cifs_server_dbg(type, fmt, ...) \ argument
104 type, fmt, ##__VA_ARGS__); \
107 type, fmt, ##__VA_ARGS__); \
110 #define cifs_tcon_dbg_func(ratefunc, type, fmt, ...) \ argument
116 pr_debug_ ## ratefunc("%s: %s " fmt, \
119 pr_err_ ## ratefunc("CIFS VFS: %s " fmt, \
122 pr_debug_ ## ratefunc("%s " fmt, \
127 #define cifs_tcon_dbg(type, fmt, ...) \ argument
131 type, fmt, ##__VA_ARGS__); \
134 type, fmt, ##__VA_ARGS__); \
142 #define cifs_dbg(type, fmt, ...) \ argument
145 pr_debug(fmt, ##__VA_ARGS__); \
148 #define cifs_server_dbg(type, fmt, ...) \ argument
151 pr_debug("\\\\%s " fmt, \
155 #define cifs_tcon_dbg(type, fmt, ...) \ argument
158 pr_debug("%s " fmt, tcon->treeName, ##__VA_ARGS__); \
161 #define cifs_info(fmt, ...) \ argument
163 pr_info("CIFS: "fmt, ##__VA_ARGS__); \