From: alex Date: Wed, 27 Apr 2005 03:30:42 +0000 (+0000) Subject: - needless CWARN() removed X-Git-Tag: 1.4.10~1220 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=98c7560d5141fe5da38e5fd622935439cea6a283;p=fs%2Flustre-release.git - needless CWARN() removed --- diff --git a/lustre/lmv/lmv_obd.c b/lustre/lmv/lmv_obd.c index 0a39316..afc2876 100644 --- a/lustre/lmv/lmv_obd.c +++ b/lustre/lmv/lmv_obd.c @@ -639,10 +639,8 @@ static int lmv_statfs(struct obd_device *obd, struct obd_statfs *osfs, RETURN(-ENOMEM); for (i = 0; i < lmv->desc.ld_tgt_count; i++) { - if (lmv->tgts[i].ltd_exp == NULL) { - CWARN("%s: NULL export for %d\n", obd->obd_name, i); + if (lmv->tgts[i].ltd_exp == NULL) continue; - } rc = obd_statfs(lmv->tgts[i].ltd_exp->exp_obd, temp, max_age); if (rc) {