Whamcloud - gitweb
Branch: b1_4
authoradilger <adilger>
Thu, 24 Feb 2005 23:55:36 +0000 (23:55 +0000)
committeradilger <adilger>
Thu, 24 Feb 2005 23:55:36 +0000 (23:55 +0000)
Quiet verbose and mostly useless message (printed loc_llcd == NULL always).

lustre/ptlrpc/recov_thread.c

index 11d37b4..27c31a3 100644 (file)
@@ -192,13 +192,13 @@ int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp)
         ENTRY;
 
         if (exp && (ctxt->loc_imp == exp->exp_imp_reverse)) {
+                CDEBUG(D_INFO, "reverse import disconnected, put llcd %p:%p\n",
+                       ctxt->loc_llcd, ctxt);
                 down(&ctxt->loc_sem);
                 if (ctxt->loc_llcd != NULL) {
                         llcd_put(ctxt->loc_llcd);
                         ctxt->loc_llcd = NULL;
                 }
-                CWARN("reverse import disconnected, put "
-                      "llcd %p:%p\n", ctxt->loc_llcd, ctxt);
                 ctxt->loc_imp = NULL;
                 up(&ctxt->loc_sem);
         } else {