Lines Matching refs:fmt
91 const char *fmt; member
137 #define no_printk(fmt, ...) \ argument
140 printk(fmt, ##__VA_ARGS__); \
146 void early_printk(const char *fmt, ...);
170 const char *fmt, va_list args);
173 int vprintk(const char *fmt, va_list args);
176 int printk(const char *fmt, ...);
181 __printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
206 __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
301 #define pr_fmt(fmt) fmt argument
312 #define pr_emerg(fmt, ...) \ argument
313 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
322 #define pr_alert(fmt, ...) \ argument
323 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
332 #define pr_crit(fmt, ...) \ argument
333 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
342 #define pr_err(fmt, ...) \ argument
343 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
352 #define pr_warn(fmt, ...) \ argument
353 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
362 #define pr_notice(fmt, ...) \ argument
363 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
372 #define pr_info(fmt, ...) \ argument
373 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
384 #define pr_cont(fmt, ...) \ argument
385 printk(KERN_CONT fmt, ##__VA_ARGS__)
398 #define pr_devel(fmt, ...) \ argument
399 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
401 #define pr_devel(fmt, ...) \ argument
402 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
423 #define pr_debug(fmt, ...) \ argument
424 dynamic_pr_debug(fmt, ##__VA_ARGS__)
426 #define pr_debug(fmt, ...) \ argument
427 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
429 #define pr_debug(fmt, ...) \ argument
430 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
438 #define printk_once(fmt, ...) \ argument
445 printk(fmt, ##__VA_ARGS__); \
449 #define printk_deferred_once(fmt, ...) \ argument
456 printk_deferred(fmt, ##__VA_ARGS__); \
461 #define printk_once(fmt, ...) \ argument
462 no_printk(fmt, ##__VA_ARGS__)
463 #define printk_deferred_once(fmt, ...) \ argument
464 no_printk(fmt, ##__VA_ARGS__)
467 #define pr_emerg_once(fmt, ...) \ argument
468 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
469 #define pr_alert_once(fmt, ...) \ argument
470 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
471 #define pr_crit_once(fmt, ...) \ argument
472 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
473 #define pr_err_once(fmt, ...) \ argument
474 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
475 #define pr_warn_once(fmt, ...) \ argument
476 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
477 #define pr_notice_once(fmt, ...) \ argument
478 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
479 #define pr_info_once(fmt, ...) \ argument
480 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
484 #define pr_devel_once(fmt, ...) \ argument
485 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
487 #define pr_devel_once(fmt, ...) \ argument
488 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
493 #define pr_debug_once(fmt, ...) \ argument
494 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
496 #define pr_debug_once(fmt, ...) \ argument
497 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
505 #define printk_ratelimited(fmt, ...) \ argument
512 printk(fmt, ##__VA_ARGS__); \
515 #define printk_ratelimited(fmt, ...) \ argument
516 no_printk(fmt, ##__VA_ARGS__)
519 #define pr_emerg_ratelimited(fmt, ...) \ argument
520 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
521 #define pr_alert_ratelimited(fmt, ...) \ argument
522 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
523 #define pr_crit_ratelimited(fmt, ...) \ argument
524 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
525 #define pr_err_ratelimited(fmt, ...) \ argument
526 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
527 #define pr_warn_ratelimited(fmt, ...) \ argument
528 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
529 #define pr_notice_ratelimited(fmt, ...) \ argument
530 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
531 #define pr_info_ratelimited(fmt, ...) \ argument
532 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
536 #define pr_devel_ratelimited(fmt, ...) \ argument
537 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
539 #define pr_devel_ratelimited(fmt, ...) \ argument
540 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
547 #define pr_debug_ratelimited(fmt, ...) \ argument
552 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \
555 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
558 #define pr_debug_ratelimited(fmt, ...) \ argument
559 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
561 #define pr_debug_ratelimited(fmt, ...) \ argument
562 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)