blob: dab34dc48fb6a68577ee166a7b6fe703893a5f23 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09002/*
3 * Zoned block device handling
4 *
5 * Copyright (c) 2015, Hannes Reinecke
6 * Copyright (c) 2015, SUSE Linux GmbH
7 *
8 * Copyright (c) 2016, Damien Le Moal
9 * Copyright (c) 2016, Western Digital
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/rbtree.h>
15#include <linux/blkdev.h>
Damien Le Moalbf505452018-10-12 19:08:50 +090016#include <linux/blk-mq.h>
Damien Le Moal26202922019-07-01 14:09:18 +090017#include <linux/mm.h>
18#include <linux/vmalloc.h>
Damien Le Moalbd976e52019-07-01 14:09:16 +090019#include <linux/sched/mm.h>
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090020
Damien Le Moala2d6b3a2018-10-12 19:08:47 +090021#include "blk.h"
22
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090023static inline sector_t blk_zone_start(struct request_queue *q,
24 sector_t sector)
25{
Damien Le Moalf99e8642017-01-12 07:58:32 -070026 sector_t zone_mask = blk_queue_zone_sectors(q) - 1;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090027
28 return sector & ~zone_mask;
29}
30
31/*
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090032 * Return true if a request is a write requests that needs zone write locking.
33 */
34bool blk_req_needs_zone_write_lock(struct request *rq)
35{
36 if (!rq->q->seq_zones_wlock)
37 return false;
38
39 if (blk_rq_is_passthrough(rq))
40 return false;
41
42 switch (req_op(rq)) {
43 case REQ_OP_WRITE_ZEROES:
44 case REQ_OP_WRITE_SAME:
45 case REQ_OP_WRITE:
46 return blk_rq_zone_is_seq(rq);
47 default:
48 return false;
49 }
50}
51EXPORT_SYMBOL_GPL(blk_req_needs_zone_write_lock);
52
53void __blk_req_zone_write_lock(struct request *rq)
54{
55 if (WARN_ON_ONCE(test_and_set_bit(blk_rq_zone_no(rq),
56 rq->q->seq_zones_wlock)))
57 return;
58
59 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
60 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
61}
62EXPORT_SYMBOL_GPL(__blk_req_zone_write_lock);
63
64void __blk_req_zone_write_unlock(struct request *rq)
65{
66 rq->rq_flags &= ~RQF_ZONE_WRITE_LOCKED;
67 if (rq->q->seq_zones_wlock)
68 WARN_ON_ONCE(!test_and_clear_bit(blk_rq_zone_no(rq),
69 rq->q->seq_zones_wlock));
70}
71EXPORT_SYMBOL_GPL(__blk_req_zone_write_unlock);
72
Damien Le Moala91e1382018-10-12 19:08:43 +090073static inline unsigned int __blkdev_nr_zones(struct request_queue *q,
74 sector_t nr_sectors)
75{
Damien Le Moal113ab722019-07-10 13:53:10 +090076 sector_t zone_sectors = blk_queue_zone_sectors(q);
Damien Le Moala91e1382018-10-12 19:08:43 +090077
78 return (nr_sectors + zone_sectors - 1) >> ilog2(zone_sectors);
79}
80
81/**
82 * blkdev_nr_zones - Get number of zones
83 * @bdev: Target block device
84 *
85 * Description:
86 * Return the total number of zones of a zoned block device.
87 * For a regular block device, the number of zones is always 0.
88 */
89unsigned int blkdev_nr_zones(struct block_device *bdev)
90{
91 struct request_queue *q = bdev_get_queue(bdev);
92
93 if (!blk_queue_is_zoned(q))
94 return 0;
95
96 return __blkdev_nr_zones(q, bdev->bd_part->nr_sects);
97}
98EXPORT_SYMBOL_GPL(blkdev_nr_zones);
99
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900100/*
Christoph Hellwige76239a2018-10-12 19:08:49 +0900101 * Check that a zone report belongs to this partition, and if yes, fix its start
102 * sector and write pointer and return true. Return false otherwise.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900103 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900104static bool blkdev_report_zone(struct block_device *bdev, struct blk_zone *rep)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900105{
106 sector_t offset = get_start_sect(bdev);
107
108 if (rep->start < offset)
109 return false;
110
111 rep->start -= offset;
112 if (rep->start + rep->len > bdev->bd_part->nr_sects)
113 return false;
114
115 if (rep->type == BLK_ZONE_TYPE_CONVENTIONAL)
116 rep->wp = rep->start + rep->len;
117 else
118 rep->wp -= offset;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900119 return true;
120}
121
Christoph Hellwige76239a2018-10-12 19:08:49 +0900122static int blk_report_zones(struct gendisk *disk, sector_t sector,
Damien Le Moalbd976e52019-07-01 14:09:16 +0900123 struct blk_zone *zones, unsigned int *nr_zones)
Christoph Hellwige76239a2018-10-12 19:08:49 +0900124{
125 struct request_queue *q = disk->queue;
126 unsigned int z = 0, n, nrz = *nr_zones;
127 sector_t capacity = get_capacity(disk);
128 int ret;
129
130 while (z < nrz && sector < capacity) {
131 n = nrz - z;
Damien Le Moalbd976e52019-07-01 14:09:16 +0900132 ret = disk->fops->report_zones(disk, sector, &zones[z], &n);
Christoph Hellwige76239a2018-10-12 19:08:49 +0900133 if (ret)
134 return ret;
135 if (!n)
136 break;
137 sector += blk_queue_zone_sectors(q) * n;
138 z += n;
139 }
140
141 WARN_ON(z > *nr_zones);
142 *nr_zones = z;
143
144 return 0;
145}
146
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900147/**
148 * blkdev_report_zones - Get zones information
149 * @bdev: Target block device
150 * @sector: Sector from which to report zones
151 * @zones: Array of zone structures where to return the zones information
152 * @nr_zones: Number of zone structures in the zone array
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900153 *
154 * Description:
155 * Get zone information starting from the zone containing @sector.
156 * The number of zone information reported may be less than the number
157 * requested by @nr_zones. The number of zones actually reported is
158 * returned in @nr_zones.
Damien Le Moalbd976e52019-07-01 14:09:16 +0900159 * The caller must use memalloc_noXX_save/restore() calls to control
160 * memory allocations done within this function (zone array and command
161 * buffer allocation by the device driver).
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900162 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900163int blkdev_report_zones(struct block_device *bdev, sector_t sector,
Damien Le Moalbd976e52019-07-01 14:09:16 +0900164 struct blk_zone *zones, unsigned int *nr_zones)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900165{
166 struct request_queue *q = bdev_get_queue(bdev);
Christoph Hellwige76239a2018-10-12 19:08:49 +0900167 unsigned int i, nrz;
Arnd Bergmann3c4da7582016-10-21 17:42:33 +0200168 int ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900169
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900170 if (!blk_queue_is_zoned(q))
171 return -EOPNOTSUPP;
172
Christoph Hellwige76239a2018-10-12 19:08:49 +0900173 /*
174 * A block device that advertized itself as zoned must have a
175 * report_zones method. If it does not have one defined, the device
176 * driver has a bug. So warn about that.
177 */
178 if (WARN_ON_ONCE(!bdev->bd_disk->fops->report_zones))
179 return -EOPNOTSUPP;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900180
Christoph Hellwige76239a2018-10-12 19:08:49 +0900181 if (!*nr_zones || sector >= bdev->bd_part->nr_sects) {
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900182 *nr_zones = 0;
183 return 0;
184 }
185
Christoph Hellwige76239a2018-10-12 19:08:49 +0900186 nrz = min(*nr_zones,
187 __blkdev_nr_zones(q, bdev->bd_part->nr_sects - sector));
188 ret = blk_report_zones(bdev->bd_disk, get_start_sect(bdev) + sector,
Damien Le Moalbd976e52019-07-01 14:09:16 +0900189 zones, &nrz);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900190 if (ret)
Christoph Hellwige76239a2018-10-12 19:08:49 +0900191 return ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900192
Christoph Hellwige76239a2018-10-12 19:08:49 +0900193 for (i = 0; i < nrz; i++) {
194 if (!blkdev_report_zone(bdev, zones))
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900195 break;
Christoph Hellwige76239a2018-10-12 19:08:49 +0900196 zones++;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900197 }
198
Christoph Hellwige76239a2018-10-12 19:08:49 +0900199 *nr_zones = i;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900200
Christoph Hellwige76239a2018-10-12 19:08:49 +0900201 return 0;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900202}
203EXPORT_SYMBOL_GPL(blkdev_report_zones);
204
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700205static inline bool blkdev_allow_reset_all_zones(struct block_device *bdev,
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900206 sector_t sector,
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700207 sector_t nr_sectors)
208{
209 if (!blk_queue_zone_resetall(bdev_get_queue(bdev)))
210 return false;
211
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900212 if (sector || nr_sectors != part_nr_sects_read(bdev->bd_part))
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700213 return false;
214 /*
215 * REQ_OP_ZONE_RESET_ALL can be executed only if the block device is
216 * the entire disk, that is, if the blocks device start offset is 0 and
217 * its capacity is the same as the entire disk.
218 */
219 return get_start_sect(bdev) == 0 &&
220 part_nr_sects_read(bdev->bd_part) == get_capacity(bdev->bd_disk);
221}
222
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900223/**
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900224 * blkdev_zone_mgmt - Execute a zone management operation on a range of zones
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900225 * @bdev: Target block device
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900226 * @op: Operation to be performed on the zones
227 * @sector: Start sector of the first zone to operate on
228 * @nr_sectors: Number of sectors, should be at least the length of one zone and
229 * must be zone size aligned.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900230 * @gfp_mask: Memory allocation flags (for bio_alloc)
231 *
232 * Description:
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900233 * Perform the specified operation on the range of zones specified by
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900234 * @sector..@sector+@nr_sectors. Specifying the entire disk sector range
235 * is valid, but the specified range should not contain conventional zones.
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900236 * The operation to execute on each zone can be a zone reset, open, close
237 * or finish request.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900238 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900239int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
240 sector_t sector, sector_t nr_sectors,
241 gfp_t gfp_mask)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900242{
243 struct request_queue *q = bdev_get_queue(bdev);
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900244 sector_t zone_sectors = blk_queue_zone_sectors(q);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900245 sector_t end_sector = sector + nr_sectors;
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900246 struct bio *bio = NULL;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900247 int ret;
248
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900249 if (!blk_queue_is_zoned(q))
250 return -EOPNOTSUPP;
251
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900252 if (bdev_read_only(bdev))
253 return -EPERM;
254
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900255 if (!op_is_zone_mgmt(op))
256 return -EOPNOTSUPP;
257
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900258 if (!nr_sectors || end_sector > bdev->bd_part->nr_sects)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900259 /* Out of range */
260 return -EINVAL;
261
262 /* Check alignment (handle eventual smaller last zone) */
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900263 if (sector & (zone_sectors - 1))
264 return -EINVAL;
265
266 if ((nr_sectors & (zone_sectors - 1)) &&
267 end_sector != bdev->bd_part->nr_sects)
268 return -EINVAL;
269
270 while (sector < end_sector) {
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900271 bio = blk_next_bio(bio, 0, gfp_mask);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200272 bio_set_dev(bio, bdev);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900273
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900274 /*
275 * Special case for the zone reset operation that reset all
276 * zones, this is useful for applications like mkfs.
277 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900278 if (op == REQ_OP_ZONE_RESET &&
279 blkdev_allow_reset_all_zones(bdev, sector, nr_sectors)) {
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900280 bio->bi_opf = REQ_OP_ZONE_RESET_ALL;
281 break;
282 }
283
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900284 bio->bi_opf = op;
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900285 bio->bi_iter.bi_sector = sector;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900286 sector += zone_sectors;
287
288 /* This may take a while, so be nice to others */
289 cond_resched();
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900290 }
291
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900292 ret = submit_bio_wait(bio);
293 bio_put(bio);
294
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900295 return ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900296}
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900297EXPORT_SYMBOL_GPL(blkdev_zone_mgmt);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900298
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800299/*
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900300 * BLKREPORTZONE ioctl processing.
301 * Called from blkdev_ioctl.
302 */
303int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
304 unsigned int cmd, unsigned long arg)
305{
306 void __user *argp = (void __user *)arg;
307 struct request_queue *q;
308 struct blk_zone_report rep;
309 struct blk_zone *zones;
310 int ret;
311
312 if (!argp)
313 return -EINVAL;
314
315 q = bdev_get_queue(bdev);
316 if (!q)
317 return -ENXIO;
318
319 if (!blk_queue_is_zoned(q))
320 return -ENOTTY;
321
322 if (!capable(CAP_SYS_ADMIN))
323 return -EACCES;
324
325 if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report)))
326 return -EFAULT;
327
328 if (!rep.nr_zones)
329 return -EINVAL;
330
Damien Le Moal2e85fba2018-10-12 19:08:44 +0900331 rep.nr_zones = min(blkdev_nr_zones(bdev), rep.nr_zones);
Bart Van Assche327ea4a2018-05-22 08:27:22 -0700332
Kees Cook344476e2018-06-12 14:04:32 -0700333 zones = kvmalloc_array(rep.nr_zones, sizeof(struct blk_zone),
334 GFP_KERNEL | __GFP_ZERO);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900335 if (!zones)
336 return -ENOMEM;
337
Damien Le Moalbd976e52019-07-01 14:09:16 +0900338 ret = blkdev_report_zones(bdev, rep.sector, zones, &rep.nr_zones);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900339 if (ret)
340 goto out;
341
342 if (copy_to_user(argp, &rep, sizeof(struct blk_zone_report))) {
343 ret = -EFAULT;
344 goto out;
345 }
346
347 if (rep.nr_zones) {
348 if (copy_to_user(argp + sizeof(struct blk_zone_report), zones,
349 sizeof(struct blk_zone) * rep.nr_zones))
350 ret = -EFAULT;
351 }
352
353 out:
Bart Van Assche327ea4a2018-05-22 08:27:22 -0700354 kvfree(zones);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900355
356 return ret;
357}
358
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800359/*
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900360 * BLKRESETZONE ioctl processing.
361 * Called from blkdev_ioctl.
362 */
363int blkdev_reset_zones_ioctl(struct block_device *bdev, fmode_t mode,
364 unsigned int cmd, unsigned long arg)
365{
366 void __user *argp = (void __user *)arg;
367 struct request_queue *q;
368 struct blk_zone_range zrange;
369
370 if (!argp)
371 return -EINVAL;
372
373 q = bdev_get_queue(bdev);
374 if (!q)
375 return -ENXIO;
376
377 if (!blk_queue_is_zoned(q))
378 return -ENOTTY;
379
380 if (!capable(CAP_SYS_ADMIN))
381 return -EACCES;
382
383 if (!(mode & FMODE_WRITE))
384 return -EBADF;
385
386 if (copy_from_user(&zrange, argp, sizeof(struct blk_zone_range)))
387 return -EFAULT;
388
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900389 return blkdev_zone_mgmt(bdev, REQ_OP_ZONE_RESET,
390 zrange.sector, zrange.nr_sectors, GFP_KERNEL);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900391}
Damien Le Moalbf505452018-10-12 19:08:50 +0900392
393static inline unsigned long *blk_alloc_zone_bitmap(int node,
394 unsigned int nr_zones)
395{
396 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
397 GFP_NOIO, node);
398}
399
400/*
401 * Allocate an array of struct blk_zone to get nr_zones zone information.
402 * The allocated array may be smaller than nr_zones.
403 */
Damien Le Moal26202922019-07-01 14:09:18 +0900404static struct blk_zone *blk_alloc_zones(unsigned int *nr_zones)
Damien Le Moalbf505452018-10-12 19:08:50 +0900405{
Damien Le Moal26202922019-07-01 14:09:18 +0900406 struct blk_zone *zones;
407 size_t nrz = min(*nr_zones, BLK_ZONED_REPORT_MAX_ZONES);
Damien Le Moalbf505452018-10-12 19:08:50 +0900408
Damien Le Moal26202922019-07-01 14:09:18 +0900409 /*
410 * GFP_KERNEL here is meaningless as the caller task context has
411 * the PF_MEMALLOC_NOIO flag set in blk_revalidate_disk_zones()
412 * with memalloc_noio_save().
413 */
414 zones = kvcalloc(nrz, sizeof(struct blk_zone), GFP_KERNEL);
415 if (!zones) {
416 *nr_zones = 0;
417 return NULL;
Damien Le Moalbf505452018-10-12 19:08:50 +0900418 }
419
Damien Le Moal26202922019-07-01 14:09:18 +0900420 *nr_zones = nrz;
421
422 return zones;
Damien Le Moalbf505452018-10-12 19:08:50 +0900423}
424
425void blk_queue_free_zone_bitmaps(struct request_queue *q)
426{
427 kfree(q->seq_zones_bitmap);
428 q->seq_zones_bitmap = NULL;
429 kfree(q->seq_zones_wlock);
430 q->seq_zones_wlock = NULL;
431}
432
433/**
434 * blk_revalidate_disk_zones - (re)allocate and initialize zone bitmaps
435 * @disk: Target disk
436 *
437 * Helper function for low-level device drivers to (re) allocate and initialize
438 * a disk request queue zone bitmaps. This functions should normally be called
439 * within the disk ->revalidate method. For BIO based queues, no zone bitmap
440 * is allocated.
441 */
442int blk_revalidate_disk_zones(struct gendisk *disk)
443{
444 struct request_queue *q = disk->queue;
445 unsigned int nr_zones = __blkdev_nr_zones(q, get_capacity(disk));
446 unsigned long *seq_zones_wlock = NULL, *seq_zones_bitmap = NULL;
447 unsigned int i, rep_nr_zones = 0, z = 0, nrz;
448 struct blk_zone *zones = NULL;
Damien Le Moalbd976e52019-07-01 14:09:16 +0900449 unsigned int noio_flag;
Damien Le Moalbf505452018-10-12 19:08:50 +0900450 sector_t sector = 0;
451 int ret = 0;
452
453 /*
454 * BIO based queues do not use a scheduler so only q->nr_zones
455 * needs to be updated so that the sysfs exposed value is correct.
456 */
Jens Axboe344e9ff2018-11-15 12:22:51 -0700457 if (!queue_is_mq(q)) {
Damien Le Moalbf505452018-10-12 19:08:50 +0900458 q->nr_zones = nr_zones;
459 return 0;
460 }
461
Damien Le Moalbd976e52019-07-01 14:09:16 +0900462 /*
463 * Ensure that all memory allocations in this context are done as
464 * if GFP_NOIO was specified.
465 */
466 noio_flag = memalloc_noio_save();
467
Damien Le Moalbf505452018-10-12 19:08:50 +0900468 if (!blk_queue_is_zoned(q) || !nr_zones) {
469 nr_zones = 0;
470 goto update;
471 }
472
473 /* Allocate bitmaps */
474 ret = -ENOMEM;
475 seq_zones_wlock = blk_alloc_zone_bitmap(q->node, nr_zones);
476 if (!seq_zones_wlock)
477 goto out;
478 seq_zones_bitmap = blk_alloc_zone_bitmap(q->node, nr_zones);
479 if (!seq_zones_bitmap)
480 goto out;
481
482 /* Get zone information and initialize seq_zones_bitmap */
483 rep_nr_zones = nr_zones;
Damien Le Moal26202922019-07-01 14:09:18 +0900484 zones = blk_alloc_zones(&rep_nr_zones);
Damien Le Moalbf505452018-10-12 19:08:50 +0900485 if (!zones)
486 goto out;
487
488 while (z < nr_zones) {
489 nrz = min(nr_zones - z, rep_nr_zones);
Damien Le Moalbd976e52019-07-01 14:09:16 +0900490 ret = blk_report_zones(disk, sector, zones, &nrz);
Damien Le Moalbf505452018-10-12 19:08:50 +0900491 if (ret)
492 goto out;
493 if (!nrz)
494 break;
495 for (i = 0; i < nrz; i++) {
496 if (zones[i].type != BLK_ZONE_TYPE_CONVENTIONAL)
497 set_bit(z, seq_zones_bitmap);
498 z++;
499 }
500 sector += nrz * blk_queue_zone_sectors(q);
501 }
502
503 if (WARN_ON(z != nr_zones)) {
504 ret = -EIO;
505 goto out;
506 }
507
508update:
509 /*
510 * Install the new bitmaps, making sure the queue is stopped and
511 * all I/Os are completed (i.e. a scheduler is not referencing the
512 * bitmaps).
513 */
514 blk_mq_freeze_queue(q);
515 q->nr_zones = nr_zones;
516 swap(q->seq_zones_wlock, seq_zones_wlock);
517 swap(q->seq_zones_bitmap, seq_zones_bitmap);
518 blk_mq_unfreeze_queue(q);
519
520out:
Damien Le Moalbd976e52019-07-01 14:09:16 +0900521 memalloc_noio_restore(noio_flag);
522
Damien Le Moal26202922019-07-01 14:09:18 +0900523 kvfree(zones);
Damien Le Moalbf505452018-10-12 19:08:50 +0900524 kfree(seq_zones_wlock);
525 kfree(seq_zones_bitmap);
526
527 if (ret) {
528 pr_warn("%s: failed to revalidate zones\n", disk->disk_name);
529 blk_mq_freeze_queue(q);
530 blk_queue_free_zone_bitmaps(q);
531 blk_mq_unfreeze_queue(q);
532 }
533
534 return ret;
535}
536EXPORT_SYMBOL_GPL(blk_revalidate_disk_zones);
537