libceph: don't spam dmesg with stray reply warnings
commitcd8140c673upstream. Commitd15f9d694b("libceph: check data_len in ->alloc_msg()") mistakenly bumped the log level on the "tid %llu unknown, skipping" message. Turn it back into a dout() - stray replies are perfectly normal when OSDs flap, crash, get killed for testing purposes, etc. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
10dada9dad
commit
01c3c0f921
@@ -2843,8 +2843,8 @@ static struct ceph_msg *get_reply(struct ceph_connection *con,
|
|||||||
mutex_lock(&osdc->request_mutex);
|
mutex_lock(&osdc->request_mutex);
|
||||||
req = __lookup_request(osdc, tid);
|
req = __lookup_request(osdc, tid);
|
||||||
if (!req) {
|
if (!req) {
|
||||||
pr_warn("%s osd%d tid %llu unknown, skipping\n",
|
dout("%s osd%d tid %llu unknown, skipping\n", __func__,
|
||||||
__func__, osd->o_osd, tid);
|
osd->o_osd, tid);
|
||||||
m = NULL;
|
m = NULL;
|
||||||
*skip = 1;
|
*skip = 1;
|
||||||
goto out;
|
goto out;
|
||||||
|
|||||||
Reference in New Issue
Block a user