From: Jens Axboe Date: Fri, 12 Jul 2019 15:09:57 +0000 (-0600) Subject: null_blk: fixup ->report_zones() for !CONFIG_BLK_DEV_ZONED X-Git-Tag: v5.15~5926^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e347946439ed70e3af0d0c330b36d5648e71727b;p=platform%2Fkernel%2Flinux-starfive.git 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 --- diff --git a/drivers/block/null_blk.h b/drivers/block/null_blk.h index 4b9bbe3..a1b9929 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; }