diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-09-25 16:11:13 +0530 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-09-28 09:13:06 -0700 |
commit | d083e6dae083ba3576ee454d5cab4491d9c21ec5 (patch) | |
tree | 3f91001df706fb4f58363b3950fbc6d94f665e01 | |
parent | d34cb808402898e53b9a9bcbbedd01667a78723b (diff) | |
download | linux-d083e6dae083ba3576ee454d5cab4491d9c21ec5.tar.bz2 |
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: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r-- | drivers/dax/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dax/super.c b/drivers/dax/super.c index 557b93703532..30d8a5aedd23 100644 --- 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; } |