ceph: add newline to end of debug message format

Some of dout format do not include newline in the end,
fix for the files which are in fs/ceph and net/ceph directories,
and changing printk to dout for printing debug info in super.c

Signed-off-by: Chengguang Xu <cgxu519@icloud.com>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
Chengguang Xu
2018-01-30 16:29:17 +08:00
committed by Ilya Dryomov
parent b133185217
commit 4c069a5821
7 changed files with 19 additions and 20 deletions

View File

@@ -217,7 +217,7 @@ static int parse_fsid(const char *str, struct ceph_fsid *fsid)
if (i == 16)
err = 0;
dout("parse_fsid ret %d got fsid %pU", err, fsid);
dout("parse_fsid ret %d got fsid %pU\n", err, fsid);
return err;
}