Whamcloud - gitweb
- make FLD less noisy after lookup -2 bug is fixed.
authoryury <yury>
Mon, 16 Oct 2006 08:08:29 +0000 (08:08 +0000)
committeryury <yury>
Mon, 16 Oct 2006 08:08:29 +0000 (08:08 +0000)
lustre/fld/fld_handler.c
lustre/fld/fld_request.c

index 357a83d..5ed0965 100644 (file)
@@ -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);
 
index 926c102..8a207e9 100644 (file)
@@ -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);