projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eeb0bed
)
libceph: dout() is missing a newline
author
Ilya Dryomov
<ilya.dryomov@inktank.com>
Thu, 16 Jan 2014 17:18:27 +0000
(19:18 +0200)
committer
Ilya Dryomov
<ilya.dryomov@inktank.com>
Sun, 26 Jan 2014 10:35:54 +0000
(12:35 +0200)
Add a missing newline to a dout() in __reset_osd().
Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
net/ceph/osd_client.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ceph/osd_client.c
b/net/ceph/osd_client.c
index 7331951704907e47337f8ac7fb4c0491beededee..959d332ed5342943d02cd35c0dbec0b1aba28c93 100644
(file)
--- a/
net/ceph/osd_client.c
+++ b/
net/ceph/osd_client.c
@@
-1044,8
+1044,8
@@
static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
!ceph_con_opened(&osd->o_con)) {
struct ceph_osd_request *req;
- dout("
osd addr hasn't changed and connection never opened,
"
- "
letting msgr retry
");
+ dout("
osd addr hasn't changed and connection never opened,
"
+ "
letting msgr retry\n
");
/* touch each r_stamp for handle_timeout()'s benfit */
list_for_each_entry(req, &osd->o_requests, r_osd_item)
req->r_stamp = jiffies;