From: Brian Behlendorf Date: Tue, 18 May 2010 21:37:28 +0000 (-0700) Subject: b=16909 Quiet LNET messages X-Git-Tag: v1_8_3_51~27 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=ce83dd706a109bdcfee0001cd9711d0e3a5bbabd;p=fs%2Flustre-release.git b=16909 Quiet LNET messages These messages are not as uncommon as one would like. --- diff --git a/lustre/ptlrpc/events.c b/lustre/ptlrpc/events.c index e624950..a89fe71 100644 --- a/lustre/ptlrpc/events.c +++ b/lustre/ptlrpc/events.c @@ -62,8 +62,7 @@ void request_out_callback(lnet_event_t *ev) ev->type == LNET_EVENT_UNLINK); LASSERT (ev->unlinked); - DEBUG_REQ((ev->status == 0) ? D_NET : D_ERROR, req, - "type %d, status %d", ev->type, ev->status); + DEBUG_REQ(D_NET, req, "type %d, status %d", ev->type, ev->status); if (ev->type == LNET_EVENT_UNLINK || ev->status != 0) { @@ -91,8 +90,7 @@ void reply_in_callback(lnet_event_t *ev) struct ptlrpc_request *req = cbid->cbid_arg; ENTRY; - DEBUG_REQ((ev->status == 0) ? D_NET : D_ERROR, req, - "type %d, status %d", ev->type, ev->status); + DEBUG_REQ(D_NET, req, "type %d, status %d", ev->type, ev->status); LASSERT(ev->type == LNET_EVENT_PUT || ev->type == LNET_EVENT_UNLINK); LASSERT(ev->md.start == req->rq_repbuf);