/*
  * Select a cache or random write zone for reclaim.
  */
-static struct dm_zone *dmz_get_rnd_zone_for_reclaim(struct dmz_metadata *zmd)
+static struct dm_zone *dmz_get_rnd_zone_for_reclaim(struct dmz_metadata *zmd,
+                                                   bool idle)
 {
        struct dm_zone *dzone = NULL;
        struct dm_zone *zone;
        struct list_head *zone_list = &zmd->map_rnd_list;
 
        /* If we have cache zones select from the cache zone list */
-       if (zmd->nr_cache)
+       if (zmd->nr_cache) {
                zone_list = &zmd->map_cache_list;
+               /* Try to relaim random zones, too, when idle */
+               if (idle && list_empty(zone_list))
+                       zone_list = &zmd->map_rnd_list;
+       }
 
        list_for_each_entry(zone, zone_list, link) {
                if (dmz_is_buf(zone))
 /*
  * Select a zone for reclaim.
  */
-struct dm_zone *dmz_get_zone_for_reclaim(struct dmz_metadata *zmd)
+struct dm_zone *dmz_get_zone_for_reclaim(struct dmz_metadata *zmd, bool idle)
 {
        struct dm_zone *zone;
 
        if (list_empty(&zmd->reserved_seq_zones_list))
                zone = dmz_get_seq_zone_for_reclaim(zmd);
        else
-               zone = dmz_get_rnd_zone_for_reclaim(zmd);
+               zone = dmz_get_rnd_zone_for_reclaim(zmd, idle);
        dmz_unlock_map(zmd);
 
        return zone;
 
        int alloc_flags = dmz_nr_cache_zones(zmd) ?
                DMZ_ALLOC_RND : DMZ_ALLOC_SEQ;
 
-       /* Get a free sequential zone */
+       /* Always use sequential zones to reclaim random zones */
+       if (dmz_is_rnd(dzone))
+               alloc_flags = DMZ_ALLOC_SEQ;
+       /* Get a free random or sequential zone */
        dmz_lock_map(zmd);
        szone = dmz_alloc_zone(zmd, alloc_flags | DMZ_ALLOC_RECLAIM);
        dmz_unlock_map(zmd);
        dmz_unlock_flush(zmd);
 }
 
+/*
+ * Test if the target device is idle.
+ */
+static inline int dmz_target_idle(struct dmz_reclaim *zrc)
+{
+       return time_is_before_jiffies(zrc->atime + DMZ_IDLE_PERIOD);
+}
+
 /*
  * Find a candidate zone for reclaim and process it.
  */
        int ret;
 
        /* Get a data zone */
-       dzone = dmz_get_zone_for_reclaim(zmd);
+       dzone = dmz_get_zone_for_reclaim(zmd, dmz_target_idle(zrc));
        if (!dzone)
                return -EBUSY;
 
        return 0;
 }
 
-/*
- * Test if the target device is idle.
- */
-static inline int dmz_target_idle(struct dmz_reclaim *zrc)
-{
-       return time_is_before_jiffies(zrc->atime + DMZ_IDLE_PERIOD);
-}
-
 static unsigned int dmz_reclaim_percentage(struct dmz_reclaim *zrc)
 {
        struct dmz_metadata *zmd = zrc->metadata;
  */
 static bool dmz_should_reclaim(struct dmz_reclaim *zrc, unsigned int p_unmap)
 {
+       unsigned int nr_reclaim = dmz_nr_rnd_zones(zrc->metadata);
+
+       if (dmz_nr_cache_zones(zrc->metadata))
+               nr_reclaim += dmz_nr_cache_zones(zrc->metadata);
+
        /* Reclaim when idle */
-       if (dmz_target_idle(zrc) && p_unmap < 100)
+       if (dmz_target_idle(zrc) && nr_reclaim)
                return true;
 
        /* If there are still plenty of cache zones, do not reclaim */
 
 
 int dmz_lock_zone_reclaim(struct dm_zone *zone);
 void dmz_unlock_zone_reclaim(struct dm_zone *zone);
-struct dm_zone *dmz_get_zone_for_reclaim(struct dmz_metadata *zmd);
+struct dm_zone *dmz_get_zone_for_reclaim(struct dmz_metadata *zmd, bool idle);
 
 struct dm_zone *dmz_get_chunk_mapping(struct dmz_metadata *zmd,
                                      unsigned int chunk, int op);