]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/jfs/jfs_logmgr.c
Merge branch 'for-3.10/core' of git://git.kernel.dk/linux-block
[karo-tx-linux.git] / fs / jfs / jfs_logmgr.c
index 8ae5e350da430132ca37c94ff8e22d6053b76877..c57499dca89c5a3910bcefc5af951179aa693f24 100644 (file)
@@ -1058,7 +1058,8 @@ static int lmLogSync(struct jfs_log * log, int hard_sync)
  */
 void jfs_syncpt(struct jfs_log *log, int hard_sync)
 {      LOG_LOCK(log);
-       lmLogSync(log, hard_sync);
+       if (!test_bit(log_QUIESCE, &log->flag))
+               lmLogSync(log, hard_sync);
        LOG_UNLOCK(log);
 }