|
@@ -128,9 +128,9 @@ asmlinkage __printf(1, 2) __cold
|
|
|
int printk(const char *fmt, ...);
|
|
|
|
|
|
/*
|
|
|
- * Special printk facility for scheduler use only, _DO_NOT_USE_ !
|
|
|
+ * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
|
|
|
*/
|
|
|
-__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
|
|
|
+__printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
|
|
|
|
|
|
/*
|
|
|
* Please don't use printk_ratelimit(), because it shares ratelimiting state
|
|
@@ -165,7 +165,7 @@ int printk(const char *s, ...)
|
|
|
return 0;
|
|
|
}
|
|
|
static inline __printf(1, 2) __cold
|
|
|
-int printk_sched(const char *s, ...)
|
|
|
+int printk_deferred(const char *s, ...)
|
|
|
{
|
|
|
return 0;
|
|
|
}
|