diff options
author | Johannes Thumshirn <johannes.thumshirn@wdc.com> | 2024-01-28 23:52:20 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-02-12 08:41:16 -0700 |
commit | 71f4ecdbb42addf82b01b734b122a02707fed521 (patch) | |
tree | a502d4e5d0a6b6bc38a564cb51343270499e34b5 /fs/zonefs | |
parent | 147ec1c60e3273d21ea1f212c6636f231d6d2771 (diff) | |
download | linux-71f4ecdbb42addf82b01b734b122a02707fed521.tar.gz linux-71f4ecdbb42addf82b01b734b122a02707fed521.tar.bz2 linux-71f4ecdbb42addf82b01b734b122a02707fed521.zip |
block: remove gfp_flags from blkdev_zone_mgmt
Now that all callers pass in GFP_KERNEL to blkdev_zone_mgmt() and use
memalloc_no{io,fs}_{save,restore}() to define the allocation scope, we can
drop the gfp_mask parameter from blkdev_zone_mgmt() as well as
blkdev_zone_reset_all() and blkdev_zone_reset_all_emulated().
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Mike Snitzer <snitzer@kernel.org>
Link: https://lore.kernel.org/r/20240128-zonefs_nofs-v3-5-ae3b7c8def61@wdc.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/zonefs')
-rw-r--r-- | fs/zonefs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c index 63fbac018c04..cadb1364f951 100644 --- a/fs/zonefs/super.c +++ b/fs/zonefs/super.c @@ -113,7 +113,7 @@ static int zonefs_zone_mgmt(struct super_block *sb, trace_zonefs_zone_mgmt(sb, z, op); ret = blkdev_zone_mgmt(sb->s_bdev, op, z->z_sector, - z->z_size >> SECTOR_SHIFT, GFP_KERNEL); + z->z_size >> SECTOR_SHIFT); if (ret) { zonefs_err(sb, "Zone management operation %s at %llu failed %d\n", |