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

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: Joe Perches <joe@perches.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>

authored by

Joe Perches and committed by
Dave Kleikamp
aa575749 b18db6de

+2 -4
+2 -4
fs/jfs/jfs_discard.c
··· 49 49 50 50 r = sb_issue_discard(sb, blkno, nblocks, GFP_NOFS, 0); 51 51 if (unlikely(r != 0)) { 52 - jfs_err("JFS: sb_issue_discard" \ 53 - "(%p, %llu, %llu, GFP_NOFS, 0) = %d => failed!\n", 52 + jfs_err("JFS: sb_issue_discard(%p, %llu, %llu, GFP_NOFS, 0) = %d => failed!", 54 53 sb, (unsigned long long)blkno, 55 54 (unsigned long long)nblocks, r); 56 55 } 57 56 58 - jfs_info("JFS: sb_issue_discard" \ 59 - "(%p, %llu, %llu, GFP_NOFS, 0) = %d\n", 57 + jfs_info("JFS: sb_issue_discard(%p, %llu, %llu, GFP_NOFS, 0) = %d", 60 58 sb, (unsigned long long)blkno, 61 59 (unsigned long long)nblocks, r); 62 60