From 13f59565b706977b2f3bf449e059c01fff7f343e Mon Sep 17 00:00:00 2001 From: yury Date: Mon, 16 Oct 2006 08:08:29 +0000 Subject: [PATCH] - make FLD less noisy after lookup -2 bug is fixed. --- lustre/fld/fld_handler.c | 8 ++++---- lustre/fld/fld_request.c | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lustre/fld/fld_handler.c b/lustre/fld/fld_handler.c index 357a83db..5ed0965 100644 --- a/lustre/fld/fld_handler.c +++ b/lustre/fld/fld_handler.c @@ -168,10 +168,10 @@ static int fld_server_handle(struct lu_server_fld *fld, } up(&fld->lsf_sem); - - CDEBUG(D_INFO|D_WARNING, "%s: FLD req handle: error %d (opc: %d, seq: " - LPX64", mds: "LPU64")\n", fld->lsf_name, rc, opc, mf->mf_seq, - mf->mf_mds); + + CDEBUG(D_INFO, "%s: FLD req handle: error %d (opc: %d, seq: " + LPX64", mds: "LPU64")\n", fld->lsf_name, rc, opc, + mf->mf_seq, mf->mf_mds); RETURN(rc); diff --git a/lustre/fld/fld_request.c b/lustre/fld/fld_request.c index 926c102..8a207e9 100644 --- a/lustre/fld/fld_request.c +++ b/lustre/fld/fld_request.c @@ -449,7 +449,7 @@ int fld_client_create(struct lu_client_fld *fld, target = fld_client_get_target(fld, seq); LASSERT(target != NULL); - CDEBUG(D_INFO|D_WARNING, "%s: Create fld entry (seq: "LPX64"; mds: " + CDEBUG(D_INFO, "%s: Create fld entry (seq: "LPX64"; mds: " LPU64") on target %s (idx "LPU64")\n", fld->lcf_name, seq, mds, fld_target_name(target), target->ft_idx); @@ -499,7 +499,7 @@ int fld_client_delete(struct lu_client_fld *fld, seqno_t seq, target = fld_client_get_target(fld, seq); LASSERT(target != NULL); - CDEBUG(D_INFO|D_WARNING, "%s: Delete fld entry (seq: "LPX64") on " + CDEBUG(D_INFO, "%s: Delete fld entry (seq: "LPX64") on " "target %s (idx "LPU64")\n", fld->lcf_name, seq, fld_target_name(target), target->ft_idx); @@ -543,7 +543,7 @@ int fld_client_lookup(struct lu_client_fld *fld, target = fld_client_get_target(fld, seq); LASSERT(target != NULL); - CDEBUG(D_INFO|D_WARNING, "%s: Lookup fld entry (seq: "LPX64") on " + CDEBUG(D_INFO, "%s: Lookup fld entry (seq: "LPX64") on " "target %s (idx "LPU64")\n", fld->lcf_name, seq, fld_target_name(target), target->ft_idx); -- 1.8.3.1