From b109e261e2da80362f35278ff55f07c47bbff906 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 4 Aug 2004 14:41:38 +0000 Subject: [PATCH] - we need not that CWARN()s --- lustre/mds/handler.c | 6 +++--- lustre/mds/mds_reint.c | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lustre/mds/handler.c b/lustre/mds/handler.c index d5e0d44..d84cf6b 100644 --- a/lustre/mds/handler.c +++ b/lustre/mds/handler.c @@ -1382,9 +1382,9 @@ static int mdt_obj_create(struct ptlrpc_request *req) fid.generation = body->oa.o_generation; new = mds_fid2dentry(mds, &fid, NULL); if (!IS_ERR(new) && new->d_inode) { - CWARN("mkdir() repairing is on its way: %lu/%lu\n", - (unsigned long) fid.id, - (unsigned long) fid.generation); + CDEBUG(D_HA, "mkdir() repairing is on its way: %lu/%lu\n", + (unsigned long) fid.id, + (unsigned long) fid.generation); obdo_from_inode(&repbody->oa, new->d_inode, FILTER_VALID_FLAGS); repbody->oa.o_id = new->d_inode->i_ino; diff --git a/lustre/mds/mds_reint.c b/lustre/mds/mds_reint.c index 43d240a..2106d7a 100644 --- a/lustre/mds/mds_reint.c +++ b/lustre/mds/mds_reint.c @@ -738,10 +738,10 @@ static int mds_reint_create(struct mds_update_record *rec, int offset, CDEBUG(D_OTHER, "%s: create dir on MDS %u\n", obd->obd_name, i); if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) { - CWARN("%s: replay dir creation %*s -> %u/%u\n", - obd->obd_name, rec->ur_namelen - 1, - rec->ur_name, (unsigned) rec->ur_fid2->id, - (unsigned) rec->ur_fid2->generation); + CDEBUG(D_HA, "%s: replay dir creation %*s -> %u/%u\n", + obd->obd_name, rec->ur_namelen - 1, + rec->ur_name, (unsigned) rec->ur_fid2->id, + (unsigned) rec->ur_fid2->generation); oa->o_id = rec->ur_fid2->id; oa->o_generation = rec->ur_fid2->generation; oa->o_flags |= OBD_FL_RECREATE_OBJS; -- 1.8.3.1