Skip to content

Commit

Permalink
isofs: add KERN_CONT to printing of ER records
Browse files Browse the repository at this point in the history
The ER records are printed without explicit log level presuming line
continuation until "\n".  After the commit 4bcc595 (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 <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
rppt authored and torvalds committed Nov 30, 2016
1 parent ded6e84 commit a107bf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/isofs/rock.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,9 @@ parse_rock_ridge_inode_internal(struct iso_directory_record *de,
{
int p;
for (p = 0; p < rr->u.ER.len_id; p++)
printk("%c", rr->u.ER.data[p]);
printk(KERN_CONT "%c", rr->u.ER.data[p]);
}
printk("\n");
printk(KERN_CONT "\n");
break;
case SIG('P', 'X'):
inode->i_mode = isonum_733(rr->u.PX.mode);
Expand Down

0 comments on commit a107bf8

Please sign in to comment.