Commit aa575749 authored by Joe Perches's avatar Joe Perches Committed by Dave Kleikamp
Browse files

jfs: Remove unnecessary line continuations and terminating newlines



These jfs_<level> uses need neither a line continuation to assemble
the format strings nor newline terminations in the formats.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent b18db6de
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -49,14 +49,12 @@ void jfs_issue_discard(struct inode *ip, u64 blkno, u64 nblocks)


	r = sb_issue_discard(sb, blkno, nblocks, GFP_NOFS, 0);
	r = sb_issue_discard(sb, blkno, nblocks, GFP_NOFS, 0);
	if (unlikely(r != 0)) {
	if (unlikely(r != 0)) {
		jfs_err("JFS: sb_issue_discard" \
		jfs_err("JFS: sb_issue_discard(%p, %llu, %llu, GFP_NOFS, 0) = %d => failed!",
			"(%p, %llu, %llu, GFP_NOFS, 0) = %d => failed!\n",
			sb, (unsigned long long)blkno,
			sb, (unsigned long long)blkno,
			(unsigned long long)nblocks, r);
			(unsigned long long)nblocks, r);
	}
	}


	jfs_info("JFS: sb_issue_discard" \
	jfs_info("JFS: sb_issue_discard(%p, %llu, %llu, GFP_NOFS, 0) = %d",
		"(%p, %llu, %llu, GFP_NOFS, 0) = %d\n",
		sb, (unsigned long long)blkno,
		sb, (unsigned long long)blkno,
		(unsigned long long)nblocks, r);
		(unsigned long long)nblocks, r);