summaryrefslogtreecommitdiffstats
path: root/fs/jfs/jfs_logmgr.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2016-03-30 05:23:16 -0700
committerDave Kleikamp <dave.kleikamp@oracle.com>2016-03-30 10:48:03 -0500
commitb18db6de2ce2a6ca7f5da03701a2aa8c63b31b74 (patch)
tree99cc1a36bca76f5f074dfd3be1ce1a632282b113 /fs/jfs/jfs_logmgr.c
parent1993b176a8224e371e0732ffada7ab9eb3b0912b (diff)
downloadlinux-0-day-b18db6de2ce2a6ca7f5da03701a2aa8c63b31b74.tar.gz
linux-0-day-b18db6de2ce2a6ca7f5da03701a2aa8c63b31b74.tar.xz
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>
Diffstat (limited to 'fs/jfs/jfs_logmgr.c')
-rw-r--r--fs/jfs/jfs_logmgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c
index a270cb7ff4e03..7638355addcca 100644
--- a/fs/jfs/jfs_logmgr.c
+++ b/fs/jfs/jfs_logmgr.c
@@ -1094,7 +1094,7 @@ int lmLogOpen(struct super_block *sb)
if (log->bdev->bd_dev == sbi->logdev) {
if (memcmp(log->uuid, sbi->loguuid,
sizeof(log->uuid))) {
- jfs_warn("wrong uuid on JFS journal\n");
+ jfs_warn("wrong uuid on JFS journal");
mutex_unlock(&jfs_log_mutex);
return -EINVAL;
}
@@ -2136,7 +2136,7 @@ static void lbmStartIO(struct lbuf * bp)
struct bio *bio;
struct jfs_log *log = bp->l_log;
- jfs_info("lbmStartIO\n");
+ jfs_info("lbmStartIO");
bio = bio_alloc(GFP_NOFS, 1);
bio->bi_iter.bi_sector = bp->l_blkno << (log->l2bsize - 9);