Lines Matching refs:fmt
90 const char *fmt; member
136 #define no_printk(fmt, ...) \ argument
139 printk(fmt, ##__VA_ARGS__); \
145 void early_printk(const char *fmt, ...);
169 const char *fmt, va_list args);
172 int vprintk(const char *fmt, va_list args);
175 int printk(const char *fmt, ...);
180 __printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
205 __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...);
260 static inline __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...) in dump_stack_set_arch_desc() argument
305 #define pr_fmt(fmt) fmt argument
316 #define pr_emerg(fmt, ...) \ argument
317 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
326 #define pr_alert(fmt, ...) \ argument
327 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
336 #define pr_crit(fmt, ...) \ argument
337 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
346 #define pr_err(fmt, ...) \ argument
347 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
356 #define pr_warn(fmt, ...) \ argument
357 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
366 #define pr_notice(fmt, ...) \ argument
367 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
376 #define pr_info(fmt, ...) \ argument
377 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
388 #define pr_cont(fmt, ...) \ argument
389 printk(KERN_CONT fmt, ##__VA_ARGS__)
402 #define pr_devel(fmt, ...) \ argument
403 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
405 #define pr_devel(fmt, ...) \ argument
406 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
427 #define pr_debug(fmt, ...) \ argument
428 dynamic_pr_debug(fmt, ##__VA_ARGS__)
430 #define pr_debug(fmt, ...) \ argument
431 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
433 #define pr_debug(fmt, ...) \ argument
434 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
442 #define printk_once(fmt, ...) \ argument
449 printk(fmt, ##__VA_ARGS__); \
453 #define printk_deferred_once(fmt, ...) \ argument
460 printk_deferred(fmt, ##__VA_ARGS__); \
465 #define printk_once(fmt, ...) \ argument
466 no_printk(fmt, ##__VA_ARGS__)
467 #define printk_deferred_once(fmt, ...) \ argument
468 no_printk(fmt, ##__VA_ARGS__)
471 #define pr_emerg_once(fmt, ...) \ argument
472 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
473 #define pr_alert_once(fmt, ...) \ argument
474 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
475 #define pr_crit_once(fmt, ...) \ argument
476 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
477 #define pr_err_once(fmt, ...) \ argument
478 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
479 #define pr_warn_once(fmt, ...) \ argument
480 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
481 #define pr_notice_once(fmt, ...) \ argument
482 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
483 #define pr_info_once(fmt, ...) \ argument
484 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
488 #define pr_devel_once(fmt, ...) \ argument
489 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
491 #define pr_devel_once(fmt, ...) \ argument
492 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
497 #define pr_debug_once(fmt, ...) \ argument
498 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
500 #define pr_debug_once(fmt, ...) \ argument
501 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
509 #define printk_ratelimited(fmt, ...) \ argument
516 printk(fmt, ##__VA_ARGS__); \
519 #define printk_ratelimited(fmt, ...) \ argument
520 no_printk(fmt, ##__VA_ARGS__)
523 #define pr_emerg_ratelimited(fmt, ...) \ argument
524 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
525 #define pr_alert_ratelimited(fmt, ...) \ argument
526 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
527 #define pr_crit_ratelimited(fmt, ...) \ argument
528 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
529 #define pr_err_ratelimited(fmt, ...) \ argument
530 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
531 #define pr_warn_ratelimited(fmt, ...) \ argument
532 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
533 #define pr_notice_ratelimited(fmt, ...) \ argument
534 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
535 #define pr_info_ratelimited(fmt, ...) \ argument
536 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
540 #define pr_devel_ratelimited(fmt, ...) \ argument
541 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
543 #define pr_devel_ratelimited(fmt, ...) \ argument
544 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
551 #define pr_debug_ratelimited(fmt, ...) \ argument
556 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \
559 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
562 #define pr_debug_ratelimited(fmt, ...) \ argument
563 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
565 #define pr_debug_ratelimited(fmt, ...) \ argument
566 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)