From 6e50f52454400d2aea0097f15043fa7563911eed Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 31 Jan 2006 05:50:40 +0000 Subject: [PATCH] Branch b_release_1_4_6 Quiet overly-verbose error message. --- lustre/obdclass/genops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/obdclass/genops.c b/lustre/obdclass/genops.c index bbac930..32d9aac 100644 --- a/lustre/obdclass/genops.c +++ b/lustre/obdclass/genops.c @@ -1215,8 +1215,8 @@ search_again: list_for_each(p, &obd->obd_exports) { doomed_exp[num_to_evict] = list_entry(p, struct obd_export, exp_obd_chain); - if (strcmp(obd_export_nid2str(doomed_exp[num_to_evict]), nid) - == 0) { + if (strcmp(obd_export_nid2str(doomed_exp[num_to_evict]), + nid) == 0) { class_export_get(doomed_exp[num_to_evict]); if (++num_to_evict == EVICT_BATCH) break; @@ -1238,7 +1238,7 @@ search_again: } if (!exports_evicted) - CERROR("%s: can't disconnect NID '%s': no exports found\n", + CDEBUG(D_HA,"%s: can't disconnect NID '%s': no exports found\n", obd->obd_name, nid); return exports_evicted; } -- 1.8.3.1