Lines Matching refs:fmt

87 	const char *fmt;  member
133 #define no_printk(fmt, ...) \ argument
136 printk(fmt, ##__VA_ARGS__); \
142 void early_printk(const char *fmt, ...);
164 const char *fmt, va_list args);
167 int vprintk(const char *fmt, va_list args);
172 const char *fmt, ...);
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
292 #define pr_fmt(fmt) fmt argument
301 #define pr_emerg(fmt, ...) \ argument
302 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
303 #define pr_alert(fmt, ...) \ argument
304 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
305 #define pr_crit(fmt, ...) \ argument
306 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
307 #define pr_err(fmt, ...) \ argument
308 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
309 #define pr_warning(fmt, ...) \ argument
310 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
312 #define pr_notice(fmt, ...) \ argument
313 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
314 #define pr_info(fmt, ...) \ argument
315 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
321 #define pr_cont(fmt, ...) \ argument
322 printk(KERN_CONT fmt, ##__VA_ARGS__)
326 #define pr_devel(fmt, ...) \ argument
327 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
329 #define pr_devel(fmt, ...) \ argument
330 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
339 #define pr_debug(fmt, ...) \ argument
340 dynamic_pr_debug(fmt, ##__VA_ARGS__)
342 #define pr_debug(fmt, ...) \ argument
343 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
345 #define pr_debug(fmt, ...) \ argument
346 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
354 #define printk_once(fmt, ...) \ argument
361 printk(fmt, ##__VA_ARGS__); \
365 #define printk_deferred_once(fmt, ...) \ argument
372 printk_deferred(fmt, ##__VA_ARGS__); \
377 #define printk_once(fmt, ...) \ argument
378 no_printk(fmt, ##__VA_ARGS__)
379 #define printk_deferred_once(fmt, ...) \ argument
380 no_printk(fmt, ##__VA_ARGS__)
383 #define pr_emerg_once(fmt, ...) \ argument
384 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
385 #define pr_alert_once(fmt, ...) \ argument
386 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
387 #define pr_crit_once(fmt, ...) \ argument
388 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
389 #define pr_err_once(fmt, ...) \ argument
390 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
391 #define pr_warn_once(fmt, ...) \ argument
392 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
393 #define pr_notice_once(fmt, ...) \ argument
394 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
395 #define pr_info_once(fmt, ...) \ argument
396 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
397 #define pr_cont_once(fmt, ...) \ argument
398 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
401 #define pr_devel_once(fmt, ...) \ argument
402 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
404 #define pr_devel_once(fmt, ...) \ argument
405 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
410 #define pr_debug_once(fmt, ...) \ argument
411 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
413 #define pr_debug_once(fmt, ...) \ argument
414 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
422 #define printk_ratelimited(fmt, ...) \ argument
429 printk(fmt, ##__VA_ARGS__); \
432 #define printk_ratelimited(fmt, ...) \ argument
433 no_printk(fmt, ##__VA_ARGS__)
436 #define pr_emerg_ratelimited(fmt, ...) \ argument
437 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
438 #define pr_alert_ratelimited(fmt, ...) \ argument
439 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
440 #define pr_crit_ratelimited(fmt, ...) \ argument
441 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
442 #define pr_err_ratelimited(fmt, ...) \ argument
443 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
444 #define pr_warn_ratelimited(fmt, ...) \ argument
445 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
446 #define pr_notice_ratelimited(fmt, ...) \ argument
447 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
448 #define pr_info_ratelimited(fmt, ...) \ argument
449 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
453 #define pr_devel_ratelimited(fmt, ...) \ argument
454 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
456 #define pr_devel_ratelimited(fmt, ...) \ argument
457 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
463 #define pr_debug_ratelimited(fmt, ...) \ argument
468 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \
471 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
474 #define pr_debug_ratelimited(fmt, ...) \ argument
475 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
477 #define pr_debug_ratelimited(fmt, ...) \ argument
478 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)