struct r5conf *conf = log->rdev->mddev->private;
        sector_t free_space;
        sector_t reclaim_space;
+       bool wake_reclaim = false;
 
        if (!r5c_is_writeback(log))
                return;
        reclaim_space = r5c_log_required_to_flush_cache(conf);
        if (free_space < 2 * reclaim_space)
                set_bit(R5C_LOG_CRITICAL, &conf->cache_state);
-       else
+       else {
+               if (test_bit(R5C_LOG_CRITICAL, &conf->cache_state))
+                       wake_reclaim = true;
                clear_bit(R5C_LOG_CRITICAL, &conf->cache_state);
+       }
        if (free_space < 3 * reclaim_space)
                set_bit(R5C_LOG_TIGHT, &conf->cache_state);
        else
                clear_bit(R5C_LOG_TIGHT, &conf->cache_state);
+
+       if (wake_reclaim)
+               r5l_wake_reclaim(log, 0);
 }
 
 /*
                spin_unlock(&conf->device_lock);
                spin_unlock_irqrestore(&log->stripe_in_journal_lock, flags);
        }
+
+       if (!test_bit(R5C_LOG_CRITICAL, &conf->cache_state))
+               r5l_run_no_space_stripes(log);
+
        md_wakeup_thread(conf->mddev->thread);
 }
 
        spin_unlock_irq(&conf->log->stripe_in_journal_lock);
        sh->log_start = MaxSector;
        atomic_dec(&conf->log->stripe_in_journal_count);
+       r5c_update_log_state(conf->log);
 }
 
 int