Lines Matching refs:fmt
63 const char *fmt; member
110 int no_printk(const char *fmt, ...) in no_printk() argument
117 void early_printk(const char *fmt, ...);
123 typedef int(*printk_func_t)(const char *fmt, va_list args);
129 const char *fmt, va_list args);
132 int vprintk(const char *fmt, va_list args);
137 const char *fmt, ...);
140 int printk(const char *fmt, ...);
145 __printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
167 void dump_stack_set_arch_desc(const char *fmt, ...);
218 static inline void dump_stack_set_arch_desc(const char *fmt, ...) in dump_stack_set_arch_desc() argument
234 #define pr_fmt(fmt) fmt argument
243 #define pr_emerg(fmt, ...) \ argument
244 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
245 #define pr_alert(fmt, ...) \ argument
246 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
247 #define pr_crit(fmt, ...) \ argument
248 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
249 #define pr_err(fmt, ...) \ argument
250 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
251 #define pr_warning(fmt, ...) \ argument
252 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
254 #define pr_notice(fmt, ...) \ argument
255 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
256 #define pr_info(fmt, ...) \ argument
257 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
263 #define pr_cont(fmt, ...) \ argument
264 printk(KERN_CONT fmt, ##__VA_ARGS__)
268 #define pr_devel(fmt, ...) \ argument
269 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
271 #define pr_devel(fmt, ...) \ argument
272 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
280 #define pr_debug(fmt, ...) \ argument
281 dynamic_pr_debug(fmt, ##__VA_ARGS__)
283 #define pr_debug(fmt, ...) \ argument
284 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
286 #define pr_debug(fmt, ...) \ argument
287 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
295 #define printk_once(fmt, ...) \ argument
301 printk(fmt, ##__VA_ARGS__); \
304 #define printk_deferred_once(fmt, ...) \ argument
310 printk_deferred(fmt, ##__VA_ARGS__); \
314 #define printk_once(fmt, ...) \ argument
315 no_printk(fmt, ##__VA_ARGS__)
316 #define printk_deferred_once(fmt, ...) \ argument
317 no_printk(fmt, ##__VA_ARGS__)
320 #define pr_emerg_once(fmt, ...) \ argument
321 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
322 #define pr_alert_once(fmt, ...) \ argument
323 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
324 #define pr_crit_once(fmt, ...) \ argument
325 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
326 #define pr_err_once(fmt, ...) \ argument
327 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
328 #define pr_warn_once(fmt, ...) \ argument
329 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
330 #define pr_notice_once(fmt, ...) \ argument
331 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
332 #define pr_info_once(fmt, ...) \ argument
333 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
334 #define pr_cont_once(fmt, ...) \ argument
335 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
338 #define pr_devel_once(fmt, ...) \ argument
339 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
341 #define pr_devel_once(fmt, ...) \ argument
342 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
347 #define pr_debug_once(fmt, ...) \ argument
348 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
350 #define pr_debug_once(fmt, ...) \ argument
351 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
359 #define printk_ratelimited(fmt, ...) \ argument
366 printk(fmt, ##__VA_ARGS__); \
369 #define printk_ratelimited(fmt, ...) \ argument
370 no_printk(fmt, ##__VA_ARGS__)
373 #define pr_emerg_ratelimited(fmt, ...) \ argument
374 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
375 #define pr_alert_ratelimited(fmt, ...) \ argument
376 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
377 #define pr_crit_ratelimited(fmt, ...) \ argument
378 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
379 #define pr_err_ratelimited(fmt, ...) \ argument
380 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
381 #define pr_warn_ratelimited(fmt, ...) \ argument
382 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
383 #define pr_notice_ratelimited(fmt, ...) \ argument
384 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
385 #define pr_info_ratelimited(fmt, ...) \ argument
386 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
390 #define pr_devel_ratelimited(fmt, ...) \ argument
391 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
393 #define pr_devel_ratelimited(fmt, ...) \ argument
394 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
400 #define pr_debug_ratelimited(fmt, ...) \ argument
405 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
408 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
411 #define pr_debug_ratelimited(fmt, ...) \ argument
412 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
414 #define pr_debug_ratelimited(fmt, ...) \ argument
415 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)