From: robert.read Date: Thu, 17 Sep 2009 20:15:21 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_270~36 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=b531408712d1e414a0eb30ef8fe8b106caf20dd0;p=fs%2Flustre-release.git Branch HEAD b=19551 i=adilger i=tianzy Fix spurious quota messages. --- diff --git a/lustre/quota/quota_master.c b/lustre/quota/quota_master.c index 4c68085..37739e8 100644 --- a/lustre/quota/quota_master.c +++ b/lustre/quota/quota_master.c @@ -533,7 +533,7 @@ int mds_quota_adjust(struct obd_device *obd, const unsigned int qcids[], } if (rc2) - CDEBUG(rc2 == QUOTA_REQ_RETURNED ? D_QUOTA: D_ERROR, + CDEBUG(D_QUOTA, "mds adjust qunit %ssuccessfully! (opc:%d rc:%d)\n", rc2 == QUOTA_REQ_RETURNED ? "" : "un", opc, rc2); RETURN(0); @@ -569,9 +569,9 @@ int filter_quota_adjust(struct obd_device *obd, const unsigned int qcids[], if (rc || rc2) { if (!rc) rc = rc2; - CDEBUG(rc == QUOTA_REQ_RETURNED ? D_QUOTA: D_ERROR, + CDEBUG(D_QUOTA, "filter adjust qunit %ssuccessfully! (opc:%d rc%d)\n", - QUOTA_REQ_RETURNED ? "" : "un", opc, rc); + rc == QUOTA_REQ_RETURNED ? "" : "un", opc, rc); } RETURN(0);