diff options
author | Chengguang Xu <cgxu519@icloud.com> | 2018-01-30 16:29:17 +0800 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2018-04-02 10:12:44 +0200 |
commit | 4c069a5821ddc568e9509f49fcc9481c8a43712f (patch) | |
tree | 4073453bfae91969d4f5bc094bd0055f7e66a787 /net/ceph/ceph_common.c | |
parent | b13318521776304a37c8cb3e2a3e613d228a38f3 (diff) | |
download | linux-stable-4c069a5821ddc568e9509f49fcc9481c8a43712f.tar.gz linux-stable-4c069a5821ddc568e9509f49fcc9481c8a43712f.tar.bz2 linux-stable-4c069a5821ddc568e9509f49fcc9481c8a43712f.zip |
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>
Diffstat (limited to 'net/ceph/ceph_common.c')
-rw-r--r-- | net/ceph/ceph_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c index 4d4c82229e9e..627ffab77695 100644 --- a/net/ceph/ceph_common.c +++ b/net/ceph/ceph_common.c @@ -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; } |