1 /* SPDX-License-Identifier: GPL-2.0 */
6 #include <linux/types.h>
7 #include <linux/blkdev.h>
11 #include "block-group.h"
12 #include "btrfs_inode.h"
14 #define BTRFS_DEFAULT_RECLAIM_THRESH (75)
16 struct btrfs_zoned_device_info {
18 * Number of zones, zone size and types of zones if bdev is a
24 unsigned int max_active_zones;
26 * Reserved active zones for one metadata and one system block group.
27 * It can vary per-device depending on the allocation status.
29 int reserved_active_zones;
30 atomic_t active_zones_left;
31 unsigned long *seq_zones;
32 unsigned long *empty_zones;
33 unsigned long *active_zones;
34 struct blk_zone *zone_cache;
35 struct blk_zone sb_zones[2 * BTRFS_SUPER_MIRROR_MAX];
38 void btrfs_finish_ordered_zoned(struct btrfs_ordered_extent *ordered);
40 #ifdef CONFIG_BLK_DEV_ZONED
41 int btrfs_get_dev_zone(struct btrfs_device *device, u64 pos,
42 struct blk_zone *zone);
43 int btrfs_get_dev_zone_info_all_devices(struct btrfs_fs_info *fs_info);
44 int btrfs_get_dev_zone_info(struct btrfs_device *device, bool populate_cache);
45 void btrfs_destroy_dev_zone_info(struct btrfs_device *device);
46 struct btrfs_zoned_device_info *btrfs_clone_dev_zone_info(struct btrfs_device *orig_dev);
47 int btrfs_check_zoned_mode(struct btrfs_fs_info *fs_info);
48 int btrfs_check_mountopts_zoned(struct btrfs_fs_info *info, unsigned long *mount_opt);
49 int btrfs_sb_log_location_bdev(struct block_device *bdev, int mirror, int rw,
51 int btrfs_sb_log_location(struct btrfs_device *device, int mirror, int rw,
53 int btrfs_advance_sb_log(struct btrfs_device *device, int mirror);
54 int btrfs_reset_sb_log_zones(struct block_device *bdev, int mirror);
55 u64 btrfs_find_allocatable_zones(struct btrfs_device *device, u64 hole_start,
56 u64 hole_end, u64 num_bytes);
57 int btrfs_reset_device_zone(struct btrfs_device *device, u64 physical,
58 u64 length, u64 *bytes);
59 int btrfs_ensure_empty_zones(struct btrfs_device *device, u64 start, u64 size);
60 int btrfs_load_block_group_zone_info(struct btrfs_block_group *cache, bool new);
61 void btrfs_calc_zone_unusable(struct btrfs_block_group *cache);
62 bool btrfs_use_zone_append(struct btrfs_bio *bbio);
63 void btrfs_record_physical_zoned(struct btrfs_bio *bbio);
64 int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info,
65 struct btrfs_eb_write_context *ctx);
66 int btrfs_zoned_issue_zeroout(struct btrfs_device *device, u64 physical, u64 length);
67 int btrfs_sync_zone_write_pointer(struct btrfs_device *tgt_dev, u64 logical,
68 u64 physical_start, u64 physical_pos);
69 bool btrfs_zone_activate(struct btrfs_block_group *block_group);
70 int btrfs_zone_finish(struct btrfs_block_group *block_group);
71 bool btrfs_can_activate_zone(struct btrfs_fs_devices *fs_devices, u64 flags);
72 void btrfs_zone_finish_endio(struct btrfs_fs_info *fs_info, u64 logical,
74 void btrfs_schedule_zone_finish_bg(struct btrfs_block_group *bg,
75 struct extent_buffer *eb);
76 void btrfs_clear_data_reloc_bg(struct btrfs_block_group *bg);
77 void btrfs_free_zone_cache(struct btrfs_fs_info *fs_info);
78 bool btrfs_zoned_should_reclaim(struct btrfs_fs_info *fs_info);
79 void btrfs_zoned_release_data_reloc_bg(struct btrfs_fs_info *fs_info, u64 logical,
81 int btrfs_zone_finish_one_bg(struct btrfs_fs_info *fs_info);
82 int btrfs_zoned_activate_one_bg(struct btrfs_fs_info *fs_info,
83 struct btrfs_space_info *space_info, bool do_finish);
84 void btrfs_check_active_zone_reservation(struct btrfs_fs_info *fs_info);
85 #else /* CONFIG_BLK_DEV_ZONED */
86 static inline int btrfs_get_dev_zone(struct btrfs_device *device, u64 pos,
87 struct blk_zone *zone)
92 static inline int btrfs_get_dev_zone_info_all_devices(struct btrfs_fs_info *fs_info)
97 static inline int btrfs_get_dev_zone_info(struct btrfs_device *device,
103 static inline void btrfs_destroy_dev_zone_info(struct btrfs_device *device) { }
106 * In case the kernel is compiled without CONFIG_BLK_DEV_ZONED we'll never call
107 * into btrfs_clone_dev_zone_info() so it's safe to return NULL here.
109 static inline struct btrfs_zoned_device_info *btrfs_clone_dev_zone_info(
110 struct btrfs_device *orig_dev)
115 static inline int btrfs_check_zoned_mode(const struct btrfs_fs_info *fs_info)
117 if (!btrfs_is_zoned(fs_info))
120 btrfs_err(fs_info, "zoned block devices support is not enabled");
124 static inline int btrfs_check_mountopts_zoned(struct btrfs_fs_info *info,
125 unsigned long *mount_opt)
130 static inline int btrfs_sb_log_location_bdev(struct block_device *bdev,
131 int mirror, int rw, u64 *bytenr_ret)
133 *bytenr_ret = btrfs_sb_offset(mirror);
137 static inline int btrfs_sb_log_location(struct btrfs_device *device, int mirror,
138 int rw, u64 *bytenr_ret)
140 *bytenr_ret = btrfs_sb_offset(mirror);
144 static inline int btrfs_advance_sb_log(struct btrfs_device *device, int mirror)
149 static inline int btrfs_reset_sb_log_zones(struct block_device *bdev, int mirror)
154 static inline u64 btrfs_find_allocatable_zones(struct btrfs_device *device,
155 u64 hole_start, u64 hole_end,
161 static inline int btrfs_reset_device_zone(struct btrfs_device *device,
162 u64 physical, u64 length, u64 *bytes)
168 static inline int btrfs_ensure_empty_zones(struct btrfs_device *device,
174 static inline int btrfs_load_block_group_zone_info(
175 struct btrfs_block_group *cache, bool new)
180 static inline void btrfs_calc_zone_unusable(struct btrfs_block_group *cache) { }
182 static inline bool btrfs_use_zone_append(struct btrfs_bio *bbio)
187 static inline void btrfs_record_physical_zoned(struct btrfs_bio *bbio)
191 static inline int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info,
192 struct btrfs_eb_write_context *ctx)
197 static inline int btrfs_zoned_issue_zeroout(struct btrfs_device *device,
198 u64 physical, u64 length)
203 static inline int btrfs_sync_zone_write_pointer(struct btrfs_device *tgt_dev,
204 u64 logical, u64 physical_start,
210 static inline bool btrfs_zone_activate(struct btrfs_block_group *block_group)
215 static inline int btrfs_zone_finish(struct btrfs_block_group *block_group)
220 static inline bool btrfs_can_activate_zone(struct btrfs_fs_devices *fs_devices,
226 static inline void btrfs_zone_finish_endio(struct btrfs_fs_info *fs_info,
227 u64 logical, u64 length) { }
229 static inline void btrfs_schedule_zone_finish_bg(struct btrfs_block_group *bg,
230 struct extent_buffer *eb) { }
232 static inline void btrfs_clear_data_reloc_bg(struct btrfs_block_group *bg) { }
234 static inline void btrfs_free_zone_cache(struct btrfs_fs_info *fs_info) { }
236 static inline bool btrfs_zoned_should_reclaim(struct btrfs_fs_info *fs_info)
241 static inline void btrfs_zoned_release_data_reloc_bg(struct btrfs_fs_info *fs_info,
242 u64 logical, u64 length) { }
244 static inline int btrfs_zone_finish_one_bg(struct btrfs_fs_info *fs_info)
249 static inline int btrfs_zoned_activate_one_bg(struct btrfs_fs_info *fs_info,
250 struct btrfs_space_info *space_info,
253 /* Consider all the block groups are active */
257 static inline void btrfs_check_active_zone_reservation(struct btrfs_fs_info *fs_info) { }
261 static inline bool btrfs_dev_is_sequential(struct btrfs_device *device, u64 pos)
263 struct btrfs_zoned_device_info *zone_info = device->zone_info;
268 return test_bit(pos >> zone_info->zone_size_shift, zone_info->seq_zones);
271 static inline bool btrfs_dev_is_empty_zone(struct btrfs_device *device, u64 pos)
273 struct btrfs_zoned_device_info *zone_info = device->zone_info;
278 return test_bit(pos >> zone_info->zone_size_shift, zone_info->empty_zones);
281 static inline void btrfs_dev_set_empty_zone_bit(struct btrfs_device *device,
284 struct btrfs_zoned_device_info *zone_info = device->zone_info;
290 zno = pos >> zone_info->zone_size_shift;
292 set_bit(zno, zone_info->empty_zones);
294 clear_bit(zno, zone_info->empty_zones);
297 static inline void btrfs_dev_set_zone_empty(struct btrfs_device *device, u64 pos)
299 btrfs_dev_set_empty_zone_bit(device, pos, true);
302 static inline void btrfs_dev_clear_zone_empty(struct btrfs_device *device, u64 pos)
304 btrfs_dev_set_empty_zone_bit(device, pos, false);
307 static inline bool btrfs_check_device_zone_type(const struct btrfs_fs_info *fs_info,
308 struct block_device *bdev)
310 if (btrfs_is_zoned(fs_info)) {
312 * We can allow a regular device on a zoned filesystem, because
313 * we will emulate the zoned capabilities.
315 if (!bdev_is_zoned(bdev))
318 return fs_info->zone_size ==
319 (bdev_zone_sectors(bdev) << SECTOR_SHIFT);
322 /* Do not allow Host Managed zoned device. */
323 return bdev_zoned_model(bdev) != BLK_ZONED_HM;
326 static inline bool btrfs_check_super_location(struct btrfs_device *device, u64 pos)
329 * On a non-zoned device, any address is OK. On a zoned device,
330 * non-SEQUENTIAL WRITE REQUIRED zones are capable.
332 return device->zone_info == NULL || !btrfs_dev_is_sequential(device, pos);
335 static inline bool btrfs_can_zone_reset(struct btrfs_device *device,
336 u64 physical, u64 length)
340 if (!btrfs_dev_is_sequential(device, physical))
343 zone_size = device->zone_info->zone_size;
344 if (!IS_ALIGNED(physical, zone_size) || !IS_ALIGNED(length, zone_size))
350 static inline void btrfs_zoned_meta_io_lock(struct btrfs_fs_info *fs_info)
352 if (!btrfs_is_zoned(fs_info))
354 mutex_lock(&fs_info->zoned_meta_io_lock);
357 static inline void btrfs_zoned_meta_io_unlock(struct btrfs_fs_info *fs_info)
359 if (!btrfs_is_zoned(fs_info))
361 mutex_unlock(&fs_info->zoned_meta_io_lock);
364 static inline void btrfs_clear_treelog_bg(struct btrfs_block_group *bg)
366 struct btrfs_fs_info *fs_info = bg->fs_info;
368 if (!btrfs_is_zoned(fs_info))
371 spin_lock(&fs_info->treelog_bg_lock);
372 if (fs_info->treelog_bg == bg->start)
373 fs_info->treelog_bg = 0;
374 spin_unlock(&fs_info->treelog_bg_lock);
377 static inline void btrfs_zoned_data_reloc_lock(struct btrfs_inode *inode)
379 struct btrfs_root *root = inode->root;
381 if (btrfs_is_data_reloc_root(root) && btrfs_is_zoned(root->fs_info))
382 mutex_lock(&root->fs_info->zoned_data_reloc_io_lock);
385 static inline void btrfs_zoned_data_reloc_unlock(struct btrfs_inode *inode)
387 struct btrfs_root *root = inode->root;
389 if (btrfs_is_data_reloc_root(root) && btrfs_is_zoned(root->fs_info))
390 mutex_unlock(&root->fs_info->zoned_data_reloc_io_lock);
393 static inline bool btrfs_zoned_bg_is_full(const struct btrfs_block_group *bg)
395 ASSERT(btrfs_is_zoned(bg->fs_info));
396 return (bg->alloc_offset == bg->zone_capacity);