Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

isofs: add KERN_CONT to printing of ER records

The ER records are printed without explicit log level presuming line
continuation until "\n". After the commit 4bcc595ccd8 (printk:
reinstate KERN_CONT for printing continuation lines), the ER records are
printed a character per line.

Adding KERN_CONT to appropriate printk statements restores the printout
behavior.

Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Mike Rapoport and committed by
Linus Torvalds
a107bf8b ded6e842

+2 -2
+2 -2
fs/isofs/rock.c
··· 377 377 { 378 378 int p; 379 379 for (p = 0; p < rr->u.ER.len_id; p++) 380 - printk("%c", rr->u.ER.data[p]); 380 + printk(KERN_CONT "%c", rr->u.ER.data[p]); 381 381 } 382 - printk("\n"); 382 + printk(KERN_CONT "\n"); 383 383 break; 384 384 case SIG('P', 'X'): 385 385 inode->i_mode = isonum_733(rr->u.PX.mode);