Skip to content

Commit

Permalink
dax: pr_err() strings should end with newlines
Browse files Browse the repository at this point in the history
pr_err() messages should terminated with a new-line to avoid
other messages being concatenated onto the end.

Signed-off-by: Arvind Yadav <[email protected]>
Signed-off-by: Dan Williams <[email protected]>
  • Loading branch information
ArvindYadavCs authored and djbw committed Sep 28, 2017
1 parent d34cb80 commit d083e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dax/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ int __bdev_dax_supported(struct super_block *sb, int blocksize)
put_dax(dax_dev);

if (len < 1) {
pr_err("VFS (%s): error: dax access failed (%ld)",
pr_err("VFS (%s): error: dax access failed (%ld)\n",
sb->s_id, len);
return len < 0 ? len : -EIO;
}
Expand Down

0 comments on commit d083e6d

Please sign in to comment.