From: Ilya Dryomov Date: Thu, 16 Jan 2014 17:18:27 +0000 (+0200) Subject: libceph: dout() is missing a newline X-Git-Tag: v3.14-rc1~71^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b4af2e8c9f3fc9c31d2f9374b79af2c890ef897;p=profile%2Fivi%2Fkernel-x86-ivi.git libceph: dout() is missing a newline Add a missing newline to a dout() in __reset_osd(). Signed-off-by: Ilya Dryomov --- diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index 7331951..959d332 100644 --- 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;