|
@@ -1679,12 +1679,7 @@ asmlinkage int vprintk_emit(int facility, int level,
|
|
|
* The printf needs to come first; we need the syslog
|
|
|
* prefix which might be passed-in as a parameter.
|
|
|
*/
|
|
|
- if (in_sched)
|
|
|
- text_len = scnprintf(text, sizeof(textbuf),
|
|
|
- KERN_WARNING "[sched_delayed] ");
|
|
|
-
|
|
|
- text_len += vscnprintf(text + text_len,
|
|
|
- sizeof(textbuf) - text_len, fmt, args);
|
|
|
+ text_len = vscnprintf(text, sizeof(textbuf), fmt, args);
|
|
|
|
|
|
/* mark and strip a trailing newline */
|
|
|
if (text_len && text[text_len-1] == '\n') {
|