From 9cd7f2fd9e3182fcab7c6338fc39b72743815f1d Mon Sep 17 00:00:00 2001 From: adilger Date: Thu, 23 May 2002 17:47:34 +0000 Subject: [PATCH] Quiet some overly verbose messages. --- lustre/mdc/mdc_reint.c | 3 ++- lustre/ptlrpc/client.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lustre/mdc/mdc_reint.c b/lustre/mdc/mdc_reint.c index 59b893a..2f59c2e 100644 --- a/lustre/mdc/mdc_reint.c +++ b/lustre/mdc/mdc_reint.c @@ -39,7 +39,8 @@ static int mdc_reint(struct ptlrpc_client *cl, struct ptlrpc_request *request, i rc = ptlrpc_queue_wait(request); rc = ptlrpc_check_status(request, rc); - CERROR("error in handling %d\n", rc); + if (rc) + CERROR("error in handling %d\n", rc); return rc; } diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 288d43f..b9b842d 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -441,7 +441,7 @@ int ptlrpc_queue_wait(struct ptlrpc_request *req) ENTRY; init_waitqueue_head(&req->rq_wait_for_rep); - CERROR("subsys: %s req %Ld opc %d level %d, conn level %d\n", + CDEBUG(D_NET, "subsys: %s req %Ld opc %d level %d, conn level %d\n", cli->cli_name, req->rq_xid, req->rq_reqmsg->opc, req->rq_level, req->rq_connection->c_level); -- 1.8.3.1