summaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
authorJens Axboe2019-07-12 17:09:57 +0200
committerJens Axboe2019-07-12 17:09:57 +0200
commite347946439ed70e3af0d0c330b36d5648e71727b (patch)
tree7f4bb8b058167191352dcf2eebd01b5c147a3259 /drivers/block
parentblock: Limit zone array allocation size (diff)
downloadkernel-qcow2-linux-e347946439ed70e3af0d0c330b36d5648e71727b.tar.gz
kernel-qcow2-linux-e347946439ed70e3af0d0c330b36d5648e71727b.tar.xz
kernel-qcow2-linux-e347946439ed70e3af0d0c330b36d5648e71727b.zip
null_blk: fixup ->report_zones() for !CONFIG_BLK_DEV_ZONED
A previous commit changed the prototype, but didn't adjust the function for when zoned device support is disabled. Fix it up. Fixes: bd976e527259 ("block: Kill gfp_t argument of blkdev_report_zones()") Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/null_blk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/null_blk.h b/drivers/block/null_blk.h
index 4b9bbe3bb5a1..a1b9929bd911 100644
--- a/drivers/block/null_blk.h
+++ b/drivers/block/null_blk.h
@@ -102,7 +102,7 @@ static inline int null_zone_init(struct nullb_device *dev)
static inline void null_zone_exit(struct nullb_device *dev) {}
static inline int null_zone_report(struct gendisk *disk, sector_t sector,
struct blk_zone *zones,
- unsigned int *nr_zones, gfp_t gfp_mask)
+ unsigned int *nr_zones)
{
return -EOPNOTSUPP;
}