jfs: Remove terminating newlines from jfs_info, jfs_warn, jfs_err uses
These macros add the newline so these cause extra blank lines in logging output. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
This commit is contained in:

committed by
Dave Kleikamp

parent
1993b176a8
commit
b18db6de2c
@@ -84,7 +84,7 @@ static void jfs_handle_error(struct super_block *sb)
|
||||
panic("JFS (device %s): panic forced after error\n",
|
||||
sb->s_id);
|
||||
else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
|
||||
jfs_err("ERROR: (device %s): remounting filesystem as read-only\n",
|
||||
jfs_err("ERROR: (device %s): remounting filesystem as read-only",
|
||||
sb->s_id);
|
||||
sb->s_flags |= MS_RDONLY;
|
||||
}
|
||||
@@ -641,7 +641,7 @@ static int jfs_freeze(struct super_block *sb)
|
||||
}
|
||||
rc = updateSuper(sb, FM_CLEAN);
|
||||
if (rc) {
|
||||
jfs_err("jfs_freeze: updateSuper failed\n");
|
||||
jfs_err("jfs_freeze: updateSuper failed");
|
||||
/*
|
||||
* Don't fail here. Everything succeeded except
|
||||
* marking the superblock clean, so there's really
|
||||
|
Reference in New Issue
Block a user