From: Sage Weil Date: Mon, 30 Jul 2012 23:26:13 +0000 (-0700) Subject: libceph: be less chatty about stray replies X-Git-Tag: firefly_0821_release~3680^2~2292^2~14 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=756a16a5d53c072cd1f937b261641c1a3b53fdd7;p=firefly-linux-kernel-4.4.55.git libceph: be less chatty about stray replies There are many (normal) conditions that can lead to us getting unexpected replies, include cluster topology changes, osd failures, and timeouts. There's no need to spam the console about it. Signed-off-by: Sage Weil Reviewed-by: Alex Elder --- diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index ad427e698890..42119c05e82c 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -2037,8 +2037,8 @@ static struct ceph_msg *get_reply(struct ceph_connection *con, if (!req) { *skip = 1; m = NULL; - pr_info("get_reply unknown tid %llu from osd%d\n", tid, - osd->o_osd); + dout("get_reply unknown tid %llu from osd%d\n", tid, + osd->o_osd); goto out; }