Whamcloud - gitweb
Branch HEAD
authoradilger <adilger>
Tue, 8 Jul 2008 18:14:15 +0000 (18:14 +0000)
committeradilger <adilger>
Tue, 8 Jul 2008 18:14:15 +0000 (18:14 +0000)
Don't print out commit callback messages except when they are increasing
the last_committed value.  The rest can assume to have been committed.

lustre/include/obd.h

index 553f2ca..242d80d 100644 (file)
@@ -1504,11 +1504,14 @@ static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
                        obd->obd_name, transno, error);
                 return;
         }
-        CDEBUG(D_HA, "%s: transno "LPU64" committed\n",
-               obd->obd_name, transno);
         if (transno > obd->obd_last_committed) {
+                CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
+                       obd->obd_name, transno);
                 obd->obd_last_committed = transno;
                 ptlrpc_commit_replies (obd);
+        } else {
+                CDEBUG(D_INFO, "%s: transno "LPD64" committed\n",
+                       obd->obd_name, transno);
         }
 }