diff options
author | Damien Le Moal <damien.lemoal@wdc.com> | 2019-07-01 01:09:16 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-07-11 22:04:37 -0400 |
commit | bd976e52725965ddcceb9abecbcc7ca46863665c (patch) | |
tree | 920d0b976f212f1a4af42c67f271ff8c18406589 /drivers/md/dm-flakey.c | |
parent | b4c5875d36178e8df409bdce232f270cac89fafe (diff) |
block: Kill gfp_t argument of blkdev_report_zones()
Only GFP_KERNEL and GFP_NOIO are used with blkdev_report_zones(). In
preparation of using vmalloc() for large report buffer and zone array
allocations used by this function, remove its "gfp_t gfp_mask" argument
and rely on the caller context to use memalloc_noio_save/restore() where
necessary (block layer zone revalidation and dm-zoned I/O error path).
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/dm-flakey.c')
-rw-r--r-- | drivers/md/dm-flakey.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/md/dm-flakey.c b/drivers/md/dm-flakey.c index a9bc518156f2..2900fbde89b3 100644 --- a/drivers/md/dm-flakey.c +++ b/drivers/md/dm-flakey.c | |||
@@ -461,15 +461,14 @@ static int flakey_prepare_ioctl(struct dm_target *ti, struct block_device **bdev | |||
461 | 461 | ||
462 | #ifdef CONFIG_BLK_DEV_ZONED | 462 | #ifdef CONFIG_BLK_DEV_ZONED |
463 | static int flakey_report_zones(struct dm_target *ti, sector_t sector, | 463 | static int flakey_report_zones(struct dm_target *ti, sector_t sector, |
464 | struct blk_zone *zones, unsigned int *nr_zones, | 464 | struct blk_zone *zones, unsigned int *nr_zones) |
465 | gfp_t gfp_mask) | ||
466 | { | 465 | { |
467 | struct flakey_c *fc = ti->private; | 466 | struct flakey_c *fc = ti->private; |
468 | int ret; | 467 | int ret; |
469 | 468 | ||
470 | /* Do report and remap it */ | 469 | /* Do report and remap it */ |
471 | ret = blkdev_report_zones(fc->dev->bdev, flakey_map_sector(ti, sector), | 470 | ret = blkdev_report_zones(fc->dev->bdev, flakey_map_sector(ti, sector), |
472 | zones, nr_zones, gfp_mask); | 471 | zones, nr_zones); |
473 | if (ret != 0) | 472 | if (ret != 0) |
474 | return ret; | 473 | return ret; |
475 | 474 | ||