zoned.h 10.4 KB
Newer Older
1 2 3 4 5 6
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef BTRFS_ZONED_H
#define BTRFS_ZONED_H

#include <linux/types.h>
N
Naohiro Aota 已提交
7
#include <linux/blkdev.h>
8 9
#include "volumes.h"
#include "disk-io.h"
10
#include "block-group.h"
11
#include "btrfs_inode.h"
12

13
#define BTRFS_DEFAULT_RECLAIM_THRESH           			(75)
14

15 16 17 18 19 20 21 22
struct btrfs_zoned_device_info {
	/*
	 * Number of zones, zone size and types of zones if bdev is a
	 * zoned block device.
	 */
	u64 zone_size;
	u8  zone_size_shift;
	u32 nr_zones;
23 24
	unsigned int max_active_zones;
	atomic_t active_zones_left;
25 26
	unsigned long *seq_zones;
	unsigned long *empty_zones;
27
	unsigned long *active_zones;
28
	struct blk_zone *zone_cache;
29
	struct blk_zone sb_zones[2 * BTRFS_SUPER_MIRROR_MAX];
30 31 32 33 34
};

#ifdef CONFIG_BLK_DEV_ZONED
int btrfs_get_dev_zone(struct btrfs_device *device, u64 pos,
		       struct blk_zone *zone);
35
int btrfs_get_dev_zone_info_all_devices(struct btrfs_fs_info *fs_info);
36
int btrfs_get_dev_zone_info(struct btrfs_device *device, bool populate_cache);
37
void btrfs_destroy_dev_zone_info(struct btrfs_device *device);
N
Naohiro Aota 已提交
38
int btrfs_check_zoned_mode(struct btrfs_fs_info *fs_info);
39
int btrfs_check_mountopts_zoned(struct btrfs_fs_info *info);
40 41 42 43
int btrfs_sb_log_location_bdev(struct block_device *bdev, int mirror, int rw,
			       u64 *bytenr_ret);
int btrfs_sb_log_location(struct btrfs_device *device, int mirror, int rw,
			  u64 *bytenr_ret);
44
int btrfs_advance_sb_log(struct btrfs_device *device, int mirror);
45
int btrfs_reset_sb_log_zones(struct block_device *bdev, int mirror);
46 47 48 49 50
u64 btrfs_find_allocatable_zones(struct btrfs_device *device, u64 hole_start,
				 u64 hole_end, u64 num_bytes);
int btrfs_reset_device_zone(struct btrfs_device *device, u64 physical,
			    u64 length, u64 *bytes);
int btrfs_ensure_empty_zones(struct btrfs_device *device, u64 start, u64 size);
51
int btrfs_load_block_group_zone_info(struct btrfs_block_group *cache, bool new);
52
void btrfs_calc_zone_unusable(struct btrfs_block_group *cache);
53 54 55
void btrfs_redirty_list_add(struct btrfs_transaction *trans,
			    struct extent_buffer *eb);
void btrfs_free_redirty_list(struct btrfs_transaction *trans);
56
bool btrfs_use_zone_append(struct btrfs_inode *inode, u64 start);
57 58 59
void btrfs_record_physical_zoned(struct inode *inode, u64 file_offset,
				 struct bio *bio);
void btrfs_rewrite_logical_zoned(struct btrfs_ordered_extent *ordered);
60 61 62 63 64
bool btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info,
				    struct extent_buffer *eb,
				    struct btrfs_block_group **cache_ret);
void btrfs_revert_meta_write_pointer(struct btrfs_block_group *cache,
				     struct extent_buffer *eb);
65
int btrfs_zoned_issue_zeroout(struct btrfs_device *device, u64 physical, u64 length);
66 67
int btrfs_sync_zone_write_pointer(struct btrfs_device *tgt_dev, u64 logical,
				  u64 physical_start, u64 physical_pos);
68 69
struct btrfs_device *btrfs_zoned_get_device(struct btrfs_fs_info *fs_info,
					    u64 logical, u64 length);
70 71
bool btrfs_zone_activate(struct btrfs_block_group *block_group);
int btrfs_zone_finish(struct btrfs_block_group *block_group);
72
bool btrfs_can_activate_zone(struct btrfs_fs_devices *fs_devices, u64 flags);
73 74
void btrfs_zone_finish_endio(struct btrfs_fs_info *fs_info, u64 logical,
			     u64 length);
75
void btrfs_clear_data_reloc_bg(struct btrfs_block_group *bg);
76
void btrfs_free_zone_cache(struct btrfs_fs_info *fs_info);
77
bool btrfs_zoned_should_reclaim(struct btrfs_fs_info *fs_info);
78 79 80 81 82 83 84
#else /* CONFIG_BLK_DEV_ZONED */
static inline int btrfs_get_dev_zone(struct btrfs_device *device, u64 pos,
				     struct blk_zone *zone)
{
	return 0;
}

85 86 87 88 89
static inline int btrfs_get_dev_zone_info_all_devices(struct btrfs_fs_info *fs_info)
{
	return 0;
}

90 91
static inline int btrfs_get_dev_zone_info(struct btrfs_device *device,
					  bool populate_cache)
92 93 94 95 96 97
{
	return 0;
}

static inline void btrfs_destroy_dev_zone_info(struct btrfs_device *device) { }

N
Naohiro Aota 已提交
98 99 100 101 102 103 104 105 106
static inline int btrfs_check_zoned_mode(const struct btrfs_fs_info *fs_info)
{
	if (!btrfs_is_zoned(fs_info))
		return 0;

	btrfs_err(fs_info, "zoned block devices support is not enabled");
	return -EOPNOTSUPP;
}

107 108 109 110 111
static inline int btrfs_check_mountopts_zoned(struct btrfs_fs_info *info)
{
	return 0;
}

112 113 114 115 116 117 118 119 120 121 122 123 124 125
static inline int btrfs_sb_log_location_bdev(struct block_device *bdev,
					     int mirror, int rw, u64 *bytenr_ret)
{
	*bytenr_ret = btrfs_sb_offset(mirror);
	return 0;
}

static inline int btrfs_sb_log_location(struct btrfs_device *device, int mirror,
					int rw, u64 *bytenr_ret)
{
	*bytenr_ret = btrfs_sb_offset(mirror);
	return 0;
}

126 127 128 129
static inline int btrfs_advance_sb_log(struct btrfs_device *device, int mirror)
{
	return 0;
}
130 131 132 133 134 135

static inline int btrfs_reset_sb_log_zones(struct block_device *bdev, int mirror)
{
	return 0;
}

136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
static inline u64 btrfs_find_allocatable_zones(struct btrfs_device *device,
					       u64 hole_start, u64 hole_end,
					       u64 num_bytes)
{
	return hole_start;
}

static inline int btrfs_reset_device_zone(struct btrfs_device *device,
					  u64 physical, u64 length, u64 *bytes)
{
	*bytes = 0;
	return 0;
}

static inline int btrfs_ensure_empty_zones(struct btrfs_device *device,
					   u64 start, u64 size)
{
	return 0;
}

156
static inline int btrfs_load_block_group_zone_info(
157
		struct btrfs_block_group *cache, bool new)
158 159 160 161
{
	return 0;
}

162 163
static inline void btrfs_calc_zone_unusable(struct btrfs_block_group *cache) { }

164 165 166 167
static inline void btrfs_redirty_list_add(struct btrfs_transaction *trans,
					  struct extent_buffer *eb) { }
static inline void btrfs_free_redirty_list(struct btrfs_transaction *trans) { }

168
static inline bool btrfs_use_zone_append(struct btrfs_inode *inode, u64 start)
169 170 171
{
	return false;
}
172 173 174 175 176 177 178 179 180

static inline void btrfs_record_physical_zoned(struct inode *inode,
					       u64 file_offset, struct bio *bio)
{
}

static inline void btrfs_rewrite_logical_zoned(
				struct btrfs_ordered_extent *ordered) { }

181 182 183 184 185 186 187 188 189 190 191 192 193
static inline bool btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info,
			       struct extent_buffer *eb,
			       struct btrfs_block_group **cache_ret)
{
	return true;
}

static inline void btrfs_revert_meta_write_pointer(
						struct btrfs_block_group *cache,
						struct extent_buffer *eb)
{
}

194 195 196 197 198 199
static inline int btrfs_zoned_issue_zeroout(struct btrfs_device *device,
					    u64 physical, u64 length)
{
	return -EOPNOTSUPP;
}

200 201 202 203 204 205 206
static inline int btrfs_sync_zone_write_pointer(struct btrfs_device *tgt_dev,
						u64 logical, u64 physical_start,
						u64 physical_pos)
{
	return -EOPNOTSUPP;
}

207 208 209 210 211 212 213
static inline struct btrfs_device *btrfs_zoned_get_device(
						  struct btrfs_fs_info *fs_info,
						  u64 logical, u64 length)
{
	return ERR_PTR(-EOPNOTSUPP);
}

214 215 216 217 218 219 220 221 222 223
static inline bool btrfs_zone_activate(struct btrfs_block_group *block_group)
{
	return true;
}

static inline int btrfs_zone_finish(struct btrfs_block_group *block_group)
{
	return 0;
}

224
static inline bool btrfs_can_activate_zone(struct btrfs_fs_devices *fs_devices,
225
					   u64 flags)
226 227 228 229
{
	return true;
}

230 231 232
static inline void btrfs_zone_finish_endio(struct btrfs_fs_info *fs_info,
					   u64 logical, u64 length) { }

233 234
static inline void btrfs_clear_data_reloc_bg(struct btrfs_block_group *bg) { }

235
static inline void btrfs_free_zone_cache(struct btrfs_fs_info *fs_info) { }
236 237 238 239 240

static inline bool btrfs_zoned_should_reclaim(struct btrfs_fs_info *fs_info)
{
	return false;
}
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
#endif

static inline bool btrfs_dev_is_sequential(struct btrfs_device *device, u64 pos)
{
	struct btrfs_zoned_device_info *zone_info = device->zone_info;

	if (!zone_info)
		return false;

	return test_bit(pos >> zone_info->zone_size_shift, zone_info->seq_zones);
}

static inline bool btrfs_dev_is_empty_zone(struct btrfs_device *device, u64 pos)
{
	struct btrfs_zoned_device_info *zone_info = device->zone_info;

	if (!zone_info)
		return true;

	return test_bit(pos >> zone_info->zone_size_shift, zone_info->empty_zones);
}

static inline void btrfs_dev_set_empty_zone_bit(struct btrfs_device *device,
						u64 pos, bool set)
{
	struct btrfs_zoned_device_info *zone_info = device->zone_info;
	unsigned int zno;

	if (!zone_info)
		return;

	zno = pos >> zone_info->zone_size_shift;
	if (set)
		set_bit(zno, zone_info->empty_zones);
	else
		clear_bit(zno, zone_info->empty_zones);
}

static inline void btrfs_dev_set_zone_empty(struct btrfs_device *device, u64 pos)
{
	btrfs_dev_set_empty_zone_bit(device, pos, true);
}

static inline void btrfs_dev_clear_zone_empty(struct btrfs_device *device, u64 pos)
{
	btrfs_dev_set_empty_zone_bit(device, pos, false);
}

N
Naohiro Aota 已提交
289 290 291 292
static inline bool btrfs_check_device_zone_type(const struct btrfs_fs_info *fs_info,
						struct block_device *bdev)
{
	if (btrfs_is_zoned(fs_info)) {
293 294 295 296 297 298 299 300 301
		/*
		 * We can allow a regular device on a zoned filesystem, because
		 * we will emulate the zoned capabilities.
		 */
		if (!bdev_is_zoned(bdev))
			return true;

		return fs_info->zone_size ==
			(bdev_zone_sectors(bdev) << SECTOR_SHIFT);
N
Naohiro Aota 已提交
302 303 304 305 306 307
	}

	/* Do not allow Host Manged zoned device */
	return bdev_zoned_model(bdev) != BLK_ZONED_HM;
}

308 309 310 311 312 313 314 315 316
static inline bool btrfs_check_super_location(struct btrfs_device *device, u64 pos)
{
	/*
	 * On a non-zoned device, any address is OK. On a zoned device,
	 * non-SEQUENTIAL WRITE REQUIRED zones are capable.
	 */
	return device->zone_info == NULL || !btrfs_dev_is_sequential(device, pos);
}

317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
static inline bool btrfs_can_zone_reset(struct btrfs_device *device,
					u64 physical, u64 length)
{
	u64 zone_size;

	if (!btrfs_dev_is_sequential(device, physical))
		return false;

	zone_size = device->zone_info->zone_size;
	if (!IS_ALIGNED(physical, zone_size) || !IS_ALIGNED(length, zone_size))
		return false;

	return true;
}

332 333 334 335 336 337 338 339 340 341 342 343 344 345
static inline void btrfs_zoned_meta_io_lock(struct btrfs_fs_info *fs_info)
{
	if (!btrfs_is_zoned(fs_info))
		return;
	mutex_lock(&fs_info->zoned_meta_io_lock);
}

static inline void btrfs_zoned_meta_io_unlock(struct btrfs_fs_info *fs_info)
{
	if (!btrfs_is_zoned(fs_info))
		return;
	mutex_unlock(&fs_info->zoned_meta_io_lock);
}

346 347 348 349 350 351 352 353 354 355 356 357 358
static inline void btrfs_clear_treelog_bg(struct btrfs_block_group *bg)
{
	struct btrfs_fs_info *fs_info = bg->fs_info;

	if (!btrfs_is_zoned(fs_info))
		return;

	spin_lock(&fs_info->treelog_bg_lock);
	if (fs_info->treelog_bg == bg->start)
		fs_info->treelog_bg = 0;
	spin_unlock(&fs_info->treelog_bg_lock);
}

359 360 361 362 363
static inline void btrfs_zoned_data_reloc_lock(struct btrfs_inode *inode)
{
	struct btrfs_root *root = inode->root;

	if (btrfs_is_data_reloc_root(root) && btrfs_is_zoned(root->fs_info))
364
		mutex_lock(&root->fs_info->zoned_data_reloc_io_lock);
365 366 367 368 369 370 371
}

static inline void btrfs_zoned_data_reloc_unlock(struct btrfs_inode *inode)
{
	struct btrfs_root *root = inode->root;

	if (btrfs_is_data_reloc_root(root) && btrfs_is_zoned(root->fs_info))
372
		mutex_unlock(&root->fs_info->zoned_data_reloc_io_lock);
373 374
}

375
#endif