Commit d083e6da authored by Arvind Yadav's avatar Arvind Yadav Committed by Dan Williams

dax: pr_err() strings should end with newlines

pr_err() messages should terminated with a new-line to avoid
other messages being concatenated onto the end.
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent d34cb808
...@@ -118,7 +118,7 @@ int __bdev_dax_supported(struct super_block *sb, int blocksize) ...@@ -118,7 +118,7 @@ int __bdev_dax_supported(struct super_block *sb, int blocksize)
put_dax(dax_dev); put_dax(dax_dev);
if (len < 1) { 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); sb->s_id, len);
return len < 0 ? len : -EIO; return len < 0 ? len : -EIO;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment