2 * Copyright (C) 2017 Western Digital Corporation or its affiliates.
4 * This file is released under the GPL.
9 #include <linux/module.h>
11 #define DM_MSG_PREFIX "zoned reclaim"
14 struct dmz_metadata
*metadata
;
17 struct delayed_work work
;
18 struct workqueue_struct
*wq
;
20 struct dm_kcopyd_client
*kc
;
21 struct dm_kcopyd_throttle kc_throttle
;
26 /* Last target access time */
31 * Reclaim state flags.
38 * Number of seconds of target BIO inactivity to consider the target idle.
40 #define DMZ_IDLE_PERIOD (10UL * HZ)
43 * Percentage of unmapped (free) random zones below which reclaim starts
44 * even if the target is busy.
46 #define DMZ_RECLAIM_LOW_UNMAP_RND 30
49 * Percentage of unmapped (free) random zones above which reclaim will
50 * stop if the target is busy.
52 #define DMZ_RECLAIM_HIGH_UNMAP_RND 50
55 * Align a sequential zone write pointer to chunk_block.
57 static int dmz_reclaim_align_wp(struct dmz_reclaim
*zrc
, struct dm_zone
*zone
,
60 struct dmz_metadata
*zmd
= zrc
->metadata
;
61 sector_t wp_block
= zone
->wp_block
;
62 unsigned int nr_blocks
;
65 if (wp_block
== block
)
72 * Zeroout the space between the write
73 * pointer and the requested position.
75 nr_blocks
= block
- wp_block
;
76 ret
= blkdev_issue_zeroout(zrc
->dev
->bdev
,
77 dmz_start_sect(zmd
, zone
) + dmz_blk2sect(wp_block
),
78 dmz_blk2sect(nr_blocks
), GFP_NOIO
, 0);
81 "Align zone %u wp %llu to %llu (wp+%u) blocks failed %d",
82 dmz_id(zmd
, zone
), (unsigned long long)wp_block
,
83 (unsigned long long)block
, nr_blocks
, ret
);
87 zone
->wp_block
= block
;
93 * dm_kcopyd_copy end notification.
95 static void dmz_reclaim_kcopy_end(int read_err
, unsigned long write_err
,
98 struct dmz_reclaim
*zrc
= context
;
100 if (read_err
|| write_err
)
105 clear_bit_unlock(DMZ_RECLAIM_KCOPY
, &zrc
->flags
);
106 smp_mb__after_atomic();
107 wake_up_bit(&zrc
->flags
, DMZ_RECLAIM_KCOPY
);
111 * Copy valid blocks of src_zone into dst_zone.
113 static int dmz_reclaim_copy(struct dmz_reclaim
*zrc
,
114 struct dm_zone
*src_zone
, struct dm_zone
*dst_zone
)
116 struct dmz_metadata
*zmd
= zrc
->metadata
;
117 struct dmz_dev
*dev
= zrc
->dev
;
118 struct dm_io_region src
, dst
;
119 sector_t block
= 0, end_block
;
121 sector_t src_zone_block
;
122 sector_t dst_zone_block
;
123 unsigned long flags
= 0;
126 if (dmz_is_seq(src_zone
))
127 end_block
= src_zone
->wp_block
;
129 end_block
= dev
->zone_nr_blocks
;
130 src_zone_block
= dmz_start_block(zmd
, src_zone
);
131 dst_zone_block
= dmz_start_block(zmd
, dst_zone
);
133 if (dmz_is_seq(dst_zone
))
134 set_bit(DM_KCOPYD_WRITE_SEQ
, &flags
);
136 while (block
< end_block
) {
137 /* Get a valid region from the source zone */
138 ret
= dmz_first_valid_block(zmd
, src_zone
, &block
);
144 * If we are writing in a sequential zone, we must make sure
145 * that writes are sequential. So Zeroout any eventual hole
148 if (dmz_is_seq(dst_zone
)) {
149 ret
= dmz_reclaim_align_wp(zrc
, dst_zone
, block
);
154 src
.bdev
= dev
->bdev
;
155 src
.sector
= dmz_blk2sect(src_zone_block
+ block
);
156 src
.count
= dmz_blk2sect(nr_blocks
);
158 dst
.bdev
= dev
->bdev
;
159 dst
.sector
= dmz_blk2sect(dst_zone_block
+ block
);
160 dst
.count
= src
.count
;
162 /* Copy the valid region */
163 set_bit(DMZ_RECLAIM_KCOPY
, &zrc
->flags
);
164 ret
= dm_kcopyd_copy(zrc
->kc
, &src
, 1, &dst
, flags
,
165 dmz_reclaim_kcopy_end
, zrc
);
169 /* Wait for copy to complete */
170 wait_on_bit_io(&zrc
->flags
, DMZ_RECLAIM_KCOPY
,
171 TASK_UNINTERRUPTIBLE
);
176 if (dmz_is_seq(dst_zone
))
177 dst_zone
->wp_block
= block
;
184 * Move valid blocks of dzone buffer zone into dzone (after its write pointer)
185 * and free the buffer zone.
187 static int dmz_reclaim_buf(struct dmz_reclaim
*zrc
, struct dm_zone
*dzone
)
189 struct dm_zone
*bzone
= dzone
->bzone
;
190 sector_t chunk_block
= dzone
->wp_block
;
191 struct dmz_metadata
*zmd
= zrc
->metadata
;
194 dmz_dev_debug(zrc
->dev
,
195 "Chunk %u, move buf zone %u (weight %u) to data zone %u (weight %u)",
196 dzone
->chunk
, dmz_id(zmd
, bzone
), dmz_weight(bzone
),
197 dmz_id(zmd
, dzone
), dmz_weight(dzone
));
199 /* Flush data zone into the buffer zone */
200 ret
= dmz_reclaim_copy(zrc
, bzone
, dzone
);
206 /* Validate copied blocks */
207 ret
= dmz_merge_valid_blocks(zmd
, bzone
, dzone
, chunk_block
);
209 /* Free the buffer zone */
210 dmz_invalidate_blocks(zmd
, bzone
, 0, zrc
->dev
->zone_nr_blocks
);
212 dmz_unmap_zone(zmd
, bzone
);
213 dmz_unlock_zone_reclaim(dzone
);
214 dmz_free_zone(zmd
, bzone
);
218 dmz_unlock_flush(zmd
);
224 * Merge valid blocks of dzone into its buffer zone and free dzone.
226 static int dmz_reclaim_seq_data(struct dmz_reclaim
*zrc
, struct dm_zone
*dzone
)
228 unsigned int chunk
= dzone
->chunk
;
229 struct dm_zone
*bzone
= dzone
->bzone
;
230 struct dmz_metadata
*zmd
= zrc
->metadata
;
233 dmz_dev_debug(zrc
->dev
,
234 "Chunk %u, move data zone %u (weight %u) to buf zone %u (weight %u)",
235 chunk
, dmz_id(zmd
, dzone
), dmz_weight(dzone
),
236 dmz_id(zmd
, bzone
), dmz_weight(bzone
));
238 /* Flush data zone into the buffer zone */
239 ret
= dmz_reclaim_copy(zrc
, dzone
, bzone
);
245 /* Validate copied blocks */
246 ret
= dmz_merge_valid_blocks(zmd
, dzone
, bzone
, 0);
249 * Free the data zone and remap the chunk to
252 dmz_invalidate_blocks(zmd
, dzone
, 0, zrc
->dev
->zone_nr_blocks
);
254 dmz_unmap_zone(zmd
, bzone
);
255 dmz_unmap_zone(zmd
, dzone
);
256 dmz_unlock_zone_reclaim(dzone
);
257 dmz_free_zone(zmd
, dzone
);
258 dmz_map_zone(zmd
, bzone
, chunk
);
262 dmz_unlock_flush(zmd
);
268 * Move valid blocks of the random data zone dzone into a free sequential zone.
269 * Once blocks are moved, remap the zone chunk to the sequential zone.
271 static int dmz_reclaim_rnd_data(struct dmz_reclaim
*zrc
, struct dm_zone
*dzone
)
273 unsigned int chunk
= dzone
->chunk
;
274 struct dm_zone
*szone
= NULL
;
275 struct dmz_metadata
*zmd
= zrc
->metadata
;
278 /* Get a free sequential zone */
280 szone
= dmz_alloc_zone(zmd
, DMZ_ALLOC_RECLAIM
);
285 dmz_dev_debug(zrc
->dev
,
286 "Chunk %u, move rnd zone %u (weight %u) to seq zone %u",
287 chunk
, dmz_id(zmd
, dzone
), dmz_weight(dzone
),
290 /* Flush the random data zone into the sequential zone */
291 ret
= dmz_reclaim_copy(zrc
, dzone
, szone
);
296 /* Validate copied blocks */
297 ret
= dmz_copy_valid_blocks(zmd
, dzone
, szone
);
300 /* Free the sequential zone */
302 dmz_free_zone(zmd
, szone
);
305 /* Free the data zone and remap the chunk */
306 dmz_invalidate_blocks(zmd
, dzone
, 0, zrc
->dev
->zone_nr_blocks
);
308 dmz_unmap_zone(zmd
, dzone
);
309 dmz_unlock_zone_reclaim(dzone
);
310 dmz_free_zone(zmd
, dzone
);
311 dmz_map_zone(zmd
, szone
, chunk
);
315 dmz_unlock_flush(zmd
);
321 * Reclaim an empty zone.
323 static void dmz_reclaim_empty(struct dmz_reclaim
*zrc
, struct dm_zone
*dzone
)
325 struct dmz_metadata
*zmd
= zrc
->metadata
;
329 dmz_unmap_zone(zmd
, dzone
);
330 dmz_unlock_zone_reclaim(dzone
);
331 dmz_free_zone(zmd
, dzone
);
333 dmz_unlock_flush(zmd
);
337 * Find a candidate zone for reclaim and process it.
339 static void dmz_reclaim(struct dmz_reclaim
*zrc
)
341 struct dmz_metadata
*zmd
= zrc
->metadata
;
342 struct dm_zone
*dzone
;
343 struct dm_zone
*rzone
;
347 /* Get a data zone */
348 dzone
= dmz_get_zone_for_reclaim(zmd
);
354 if (dmz_is_rnd(dzone
)) {
355 if (!dmz_weight(dzone
)) {
357 dmz_reclaim_empty(zrc
, dzone
);
361 * Reclaim the random data zone by moving its
362 * valid data blocks to a free sequential zone.
364 ret
= dmz_reclaim_rnd_data(zrc
, dzone
);
369 struct dm_zone
*bzone
= dzone
->bzone
;
370 sector_t chunk_block
= 0;
372 ret
= dmz_first_valid_block(zmd
, bzone
, &chunk_block
);
376 if (ret
== 0 || chunk_block
>= dzone
->wp_block
) {
378 * The buffer zone is empty or its valid blocks are
379 * after the data zone write pointer.
381 ret
= dmz_reclaim_buf(zrc
, dzone
);
385 * Reclaim the data zone by merging it into the
386 * buffer zone so that the buffer zone itself can
387 * be later reclaimed.
389 ret
= dmz_reclaim_seq_data(zrc
, dzone
);
395 dmz_unlock_zone_reclaim(dzone
);
399 (void) dmz_flush_metadata(zrc
->metadata
);
401 dmz_dev_debug(zrc
->dev
, "Reclaimed zone %u in %u ms",
402 dmz_id(zmd
, rzone
), jiffies_to_msecs(jiffies
- start
));
406 * Test if the target device is idle.
408 static inline int dmz_target_idle(struct dmz_reclaim
*zrc
)
410 return time_is_before_jiffies(zrc
->atime
+ DMZ_IDLE_PERIOD
);
414 * Test if reclaim is necessary.
416 static bool dmz_should_reclaim(struct dmz_reclaim
*zrc
)
418 struct dmz_metadata
*zmd
= zrc
->metadata
;
419 unsigned int nr_rnd
= dmz_nr_rnd_zones(zmd
);
420 unsigned int nr_unmap_rnd
= dmz_nr_unmap_rnd_zones(zmd
);
421 unsigned int p_unmap_rnd
= nr_unmap_rnd
* 100 / nr_rnd
;
423 /* Reclaim when idle */
424 if (dmz_target_idle(zrc
) && nr_unmap_rnd
< nr_rnd
)
427 /* If there are still plenty of random zones, do not reclaim */
428 if (p_unmap_rnd
>= DMZ_RECLAIM_HIGH_UNMAP_RND
)
432 * If the percentage of unmappped random zones is low,
433 * reclaim even if the target is busy.
435 return p_unmap_rnd
<= DMZ_RECLAIM_LOW_UNMAP_RND
;
439 * Reclaim work function.
441 static void dmz_reclaim_work(struct work_struct
*work
)
443 struct dmz_reclaim
*zrc
= container_of(work
, struct dmz_reclaim
, work
.work
);
444 struct dmz_metadata
*zmd
= zrc
->metadata
;
445 unsigned int nr_rnd
, nr_unmap_rnd
;
446 unsigned int p_unmap_rnd
;
448 if (!dmz_should_reclaim(zrc
)) {
449 mod_delayed_work(zrc
->wq
, &zrc
->work
, DMZ_IDLE_PERIOD
);
454 * We need to start reclaiming random zones: set up zone copy
455 * throttling to either go fast if we are very low on random zones
456 * and slower if there are still some free random zones to avoid
457 * as much as possible to negatively impact the user workload.
459 nr_rnd
= dmz_nr_rnd_zones(zmd
);
460 nr_unmap_rnd
= dmz_nr_unmap_rnd_zones(zmd
);
461 p_unmap_rnd
= nr_unmap_rnd
* 100 / nr_rnd
;
462 if (dmz_target_idle(zrc
) || p_unmap_rnd
< DMZ_RECLAIM_LOW_UNMAP_RND
/ 2) {
463 /* Idle or very low percentage: go fast */
464 zrc
->kc_throttle
.throttle
= 100;
466 /* Busy but we still have some random zone: throttle */
467 zrc
->kc_throttle
.throttle
= min(75U, 100U - p_unmap_rnd
/ 2);
470 dmz_dev_debug(zrc
->dev
,
471 "Reclaim (%u): %s, %u%% free rnd zones (%u/%u)",
472 zrc
->kc_throttle
.throttle
,
473 (dmz_target_idle(zrc
) ? "Idle" : "Busy"),
474 p_unmap_rnd
, nr_unmap_rnd
, nr_rnd
);
478 dmz_schedule_reclaim(zrc
);
482 * Initialize reclaim.
484 int dmz_ctr_reclaim(struct dmz_dev
*dev
, struct dmz_metadata
*zmd
,
485 struct dmz_reclaim
**reclaim
)
487 struct dmz_reclaim
*zrc
;
490 zrc
= kzalloc(sizeof(struct dmz_reclaim
), GFP_KERNEL
);
496 zrc
->atime
= jiffies
;
498 /* Reclaim kcopyd client */
499 zrc
->kc
= dm_kcopyd_client_create(&zrc
->kc_throttle
);
500 if (IS_ERR(zrc
->kc
)) {
501 ret
= PTR_ERR(zrc
->kc
);
507 INIT_DELAYED_WORK(&zrc
->work
, dmz_reclaim_work
);
508 zrc
->wq
= alloc_ordered_workqueue("dmz_rwq_%s", WQ_MEM_RECLAIM
,
516 queue_delayed_work(zrc
->wq
, &zrc
->work
, 0);
521 dm_kcopyd_client_destroy(zrc
->kc
);
530 void dmz_dtr_reclaim(struct dmz_reclaim
*zrc
)
532 cancel_delayed_work_sync(&zrc
->work
);
533 destroy_workqueue(zrc
->wq
);
534 dm_kcopyd_client_destroy(zrc
->kc
);
541 void dmz_suspend_reclaim(struct dmz_reclaim
*zrc
)
543 cancel_delayed_work_sync(&zrc
->work
);
549 void dmz_resume_reclaim(struct dmz_reclaim
*zrc
)
551 queue_delayed_work(zrc
->wq
, &zrc
->work
, DMZ_IDLE_PERIOD
);
557 void dmz_reclaim_bio_acc(struct dmz_reclaim
*zrc
)
559 zrc
->atime
= jiffies
;
563 * Start reclaim if necessary.
565 void dmz_schedule_reclaim(struct dmz_reclaim
*zrc
)
567 if (dmz_should_reclaim(zrc
))
568 mod_delayed_work(zrc
->wq
, &zrc
->work
, 0);