projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d34cb80
)
dax: pr_err() strings should end with newlines
author
Arvind Yadav
<arvind.yadav.cs@gmail.com>
Mon, 25 Sep 2017 10:41:13 +0000
(16:11 +0530)
committer
Dan Williams
<dan.j.williams@intel.com>
Thu, 28 Sep 2017 16:13:06 +0000
(09:13 -0700)
pr_err() messages should terminated with a new-line to avoid
other messages being concatenated onto the end.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/dax/super.c
patch
|
blob
|
history
diff --git
a/drivers/dax/super.c
b/drivers/dax/super.c
index
557b937
..
30d8a5a
100644
(file)
--- a/
drivers/dax/super.c
+++ b/
drivers/dax/super.c
@@
-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;
}