Merge tag 'amlogic-dt64-2.1' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman...
[linux-2.6-block.git] / fs / btrfs / volumes.h
CommitLineData
9888c340 1/* SPDX-License-Identifier: GPL-2.0 */
0b86a832
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
0b86a832
CM
4 */
5
9888c340
DS
6#ifndef BTRFS_VOLUMES_H
7#define BTRFS_VOLUMES_H
8790d502 8
cea9e445 9#include <linux/bio.h>
b2117a39 10#include <linux/sort.h>
55e301fd 11#include <linux/btrfs.h>
8b712842 12#include "async-thread.h"
cea9e445 13
fce466ea
QW
14#define BTRFS_MAX_DATA_CHUNK_SIZE (10ULL * SZ_1G)
15
67a2c45e
MX
16extern struct mutex uuid_mutex;
17
ee22184b 18#define BTRFS_STRIPE_LEN SZ_64K
b2117a39 19
f2984462 20struct buffer_head;
ffbd517d
CM
21struct btrfs_pending_bios {
22 struct bio *head;
23 struct bio *tail;
24};
25
5f141126
NB
26struct btrfs_io_geometry {
27 /* remaining bytes before crossing a stripe */
28 u64 len;
29 /* offset of logical address in chunk */
30 u64 offset;
31 /* length of single IO stripe */
32 u64 stripe_len;
33 /* number of stripe where address falls */
34 u64 stripe_nr;
35 /* offset of address in stripe */
36 u64 stripe_offset;
37 /* offset of raid56 stripe into the chunk */
38 u64 raid56_stripe_offset;
39};
40
7cc8e58d
MX
41/*
42 * Use sequence counter to get consistent device stat data on
43 * 32-bit processors.
44 */
45#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
46#include <linux/seqlock.h>
47#define __BTRFS_NEED_DEVICE_DATA_ORDERED
48#define btrfs_device_data_ordered_init(device) \
49 seqcount_init(&device->data_seqcount)
50#else
51#define btrfs_device_data_ordered_init(device) do { } while (0)
52#endif
53
ebbede42 54#define BTRFS_DEV_STATE_WRITEABLE (0)
e12c9621 55#define BTRFS_DEV_STATE_IN_FS_METADATA (1)
e6e674bd 56#define BTRFS_DEV_STATE_MISSING (2)
401e29c1 57#define BTRFS_DEV_STATE_REPLACE_TGT (3)
1c3063b6 58#define BTRFS_DEV_STATE_FLUSH_SENT (4)
ebbede42 59
0b86a832 60struct btrfs_device {
0b6f5d40
NB
61 struct list_head dev_list; /* device_list_mutex */
62 struct list_head dev_alloc_list; /* chunk mutex */
bbbf7243 63 struct list_head post_commit_list; /* chunk mutex */
2b82032c 64 struct btrfs_fs_devices *fs_devices;
fb456252 65 struct btrfs_fs_info *fs_info;
ffbd517d 66
d5ee37bc
MX
67 struct rcu_string *name;
68
69 u64 generation;
70
71 spinlock_t io_lock ____cacheline_aligned;
72 int running_pending;
ffbd517d
CM
73 /* regular prio bios */
74 struct btrfs_pending_bios pending_bios;
70fd7614 75 /* sync bios */
ffbd517d
CM
76 struct btrfs_pending_bios pending_sync_bios;
77
d5ee37bc
MX
78 struct block_device *bdev;
79
80 /* the mode sent to blkdev_get */
81 fmode_t mode;
82
ebbede42 83 unsigned long dev_state;
58efbc9f 84 blk_status_t last_flush_error;
e0ae9994 85 int flush_bio_sent;
b3075717 86
7cc8e58d
MX
87#ifdef __BTRFS_NEED_DEVICE_DATA_ORDERED
88 seqcount_t data_seqcount;
89#endif
90
0b86a832
CM
91 /* the internal btrfs device id */
92 u64 devid;
93
6ba40b61 94 /* size of the device in memory */
0b86a832
CM
95 u64 total_bytes;
96
6ba40b61 97 /* size of the device on disk */
d6397bae
CB
98 u64 disk_total_bytes;
99
0b86a832
CM
100 /* bytes used */
101 u64 bytes_used;
102
103 /* optimal io alignment for this device */
104 u32 io_align;
105
106 /* optimal io width for this device */
107 u32 io_width;
3c45bfc1
DG
108 /* type and info about this device */
109 u64 type;
0b86a832
CM
110
111 /* minimal io size for this device */
112 u32 sector_size;
113
0b86a832 114 /* physical drive uuid (or lvm uuid) */
e17cade2 115 u8 uuid[BTRFS_UUID_SIZE];
8b712842 116
935e5cc9
MX
117 /*
118 * size of the device on the current transaction
119 *
120 * This variant is update when committing the transaction,
bbbf7243 121 * and protected by chunk mutex
935e5cc9
MX
122 */
123 u64 commit_total_bytes;
124
ce7213c7
MX
125 /* bytes used on the current transaction */
126 u64 commit_bytes_used;
935e5cc9 127
3c45bfc1 128 /* for sending down flush barriers */
3c45bfc1
DG
129 struct bio *flush_bio;
130 struct completion flush_wait;
131
a2de733c 132 /* per-device scrub information */
cadbc0a0 133 struct scrub_ctx *scrub_ctx;
a2de733c 134
d458b054 135 struct btrfs_work work;
90519d66
AJ
136
137 /* readahead state */
90519d66
AJ
138 atomic_t reada_in_flight;
139 u64 reada_next;
140 struct reada_zone *reada_curr_zone;
141 struct radix_tree_root reada_zones;
142 struct radix_tree_root reada_extents;
387125fc 143
442a4f63
SB
144 /* disk I/O failure stats. For detailed description refer to
145 * enum btrfs_dev_stat_values in ioctl.h */
733f4fbb 146 int dev_stats_valid;
addc3fa7
MX
147
148 /* Counter to record the change of device stats */
149 atomic_t dev_stats_ccnt;
442a4f63 150 atomic_t dev_stat_values[BTRFS_DEV_STAT_VALUES_MAX];
1c11b63e
JM
151
152 struct extent_io_tree alloc_state;
0b86a832
CM
153};
154
7cc8e58d
MX
155/*
156 * If we read those variants at the context of their own lock, we needn't
157 * use the following helpers, reading them directly is safe.
158 */
159#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
160#define BTRFS_DEVICE_GETSET_FUNCS(name) \
161static inline u64 \
162btrfs_device_get_##name(const struct btrfs_device *dev) \
163{ \
164 u64 size; \
165 unsigned int seq; \
166 \
167 do { \
168 seq = read_seqcount_begin(&dev->data_seqcount); \
169 size = dev->name; \
170 } while (read_seqcount_retry(&dev->data_seqcount, seq)); \
171 return size; \
172} \
173 \
174static inline void \
175btrfs_device_set_##name(struct btrfs_device *dev, u64 size) \
176{ \
177 preempt_disable(); \
178 write_seqcount_begin(&dev->data_seqcount); \
179 dev->name = size; \
180 write_seqcount_end(&dev->data_seqcount); \
181 preempt_enable(); \
182}
183#elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
184#define BTRFS_DEVICE_GETSET_FUNCS(name) \
185static inline u64 \
186btrfs_device_get_##name(const struct btrfs_device *dev) \
187{ \
188 u64 size; \
189 \
190 preempt_disable(); \
191 size = dev->name; \
192 preempt_enable(); \
193 return size; \
194} \
195 \
196static inline void \
197btrfs_device_set_##name(struct btrfs_device *dev, u64 size) \
198{ \
199 preempt_disable(); \
200 dev->name = size; \
201 preempt_enable(); \
202}
203#else
204#define BTRFS_DEVICE_GETSET_FUNCS(name) \
205static inline u64 \
206btrfs_device_get_##name(const struct btrfs_device *dev) \
207{ \
208 return dev->name; \
209} \
210 \
211static inline void \
212btrfs_device_set_##name(struct btrfs_device *dev, u64 size) \
213{ \
214 dev->name = size; \
215}
216#endif
217
218BTRFS_DEVICE_GETSET_FUNCS(total_bytes);
219BTRFS_DEVICE_GETSET_FUNCS(disk_total_bytes);
220BTRFS_DEVICE_GETSET_FUNCS(bytes_used);
221
8a4b83cc
CM
222struct btrfs_fs_devices {
223 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
7239ff4b 224 u8 metadata_uuid[BTRFS_FSID_SIZE];
d1a63002 225 bool fsid_change;
c4babc5e 226 struct list_head fs_list;
8a4b83cc 227
8a4b83cc 228 u64 num_devices;
a0af469b 229 u64 open_devices;
2b82032c 230 u64 rw_devices;
cd02dca5 231 u64 missing_devices;
2b82032c 232 u64 total_rw_bytes;
02db0844 233 u64 total_devices;
d1a63002
NB
234
235 /* Highest generation number of seen devices */
236 u64 latest_generation;
237
8a4b83cc 238 struct block_device *latest_bdev;
e5e9a520
CM
239
240 /* all of the devices in the FS, protected by a mutex
241 * so we can safely walk it to write out the supers without
9b011adf
WS
242 * worrying about add/remove by the multi-device code.
243 * Scrubbing super can kick off supers writing by holding
244 * this mutex lock.
e5e9a520
CM
245 */
246 struct mutex device_list_mutex;
0b6f5d40
NB
247
248 /* List of all devices, protected by device_list_mutex */
8a4b83cc 249 struct list_head devices;
b3075717 250
0b6f5d40
NB
251 /*
252 * Devices which can satisfy space allocation. Protected by
253 * chunk_mutex
254 */
b3075717 255 struct list_head alloc_list;
2b82032c
YZ
256
257 struct btrfs_fs_devices *seed;
258 int seeding;
2b82032c
YZ
259
260 int opened;
c289811c
CM
261
262 /* set when we find or add a device that doesn't have the
263 * nonrot flag set
264 */
265 int rotating;
2e7910d6 266
5a13f430 267 struct btrfs_fs_info *fs_info;
2e7910d6 268 /* sysfs kobjects */
c1b7e474 269 struct kobject fsid_kobj;
2e7910d6
AJ
270 struct kobject *device_dir_kobj;
271 struct completion kobj_unregister;
8a4b83cc
CM
272};
273
facc8a22
MX
274#define BTRFS_BIO_INLINE_CSUM_SIZE 64
275
ab4ba2e1
QW
276#define BTRFS_MAX_DEVS(info) ((BTRFS_MAX_ITEM_SIZE(info) \
277 - sizeof(struct btrfs_chunk)) \
278 / sizeof(struct btrfs_stripe) + 1)
279
280#define BTRFS_MAX_DEVS_SYS_CHUNK ((BTRFS_SYSTEM_CHUNK_ARRAY_SIZE \
281 - 2 * sizeof(struct btrfs_disk_key) \
282 - 2 * sizeof(struct btrfs_chunk)) \
283 / sizeof(struct btrfs_stripe) + 1)
284
9be3395b
CM
285/*
286 * we need the mirror number and stripe index to be passed around
287 * the call chain while we are processing end_io (especially errors).
288 * Really, what we need is a btrfs_bio structure that has this info
289 * and is properly sized with its stripe array, but we're not there
290 * quite yet. We have our own btrfs bioset, and all of the bios
291 * we allocate are actually btrfs_io_bios. We'll cram as much of
292 * struct btrfs_bio as we can into this over time.
293 */
294struct btrfs_io_bio {
c1dc0896
MX
295 unsigned int mirror_num;
296 unsigned int stripe_index;
297 u64 logical;
facc8a22
MX
298 u8 *csum;
299 u8 csum_inline[BTRFS_BIO_INLINE_CSUM_SIZE];
17347cec 300 struct bvec_iter iter;
fa1bcbe0
DS
301 /*
302 * This member must come last, bio_alloc_bioset will allocate enough
303 * bytes for entire btrfs_io_bio but relies on bio being last.
304 */
9be3395b
CM
305 struct bio bio;
306};
307
308static inline struct btrfs_io_bio *btrfs_io_bio(struct bio *bio)
309{
310 return container_of(bio, struct btrfs_io_bio, bio);
311}
312
b3a0dd50
DS
313static inline void btrfs_io_bio_free_csum(struct btrfs_io_bio *io_bio)
314{
315 if (io_bio->csum != io_bio->csum_inline) {
316 kfree(io_bio->csum);
317 io_bio->csum = NULL;
318 }
319}
320
cea9e445
CM
321struct btrfs_bio_stripe {
322 struct btrfs_device *dev;
323 u64 physical;
fce3bb9a 324 u64 length; /* only used for discard mappings */
cea9e445
CM
325};
326
a1d3c478 327struct btrfs_bio {
140475ae 328 refcount_t refs;
cea9e445 329 atomic_t stripes_pending;
c404e0dc 330 struct btrfs_fs_info *fs_info;
10f11900 331 u64 map_type; /* get from map_lookup->type */
cea9e445 332 bio_end_io_t *end_io;
7d2b4daa 333 struct bio *orig_bio;
c55f1396 334 unsigned long flags;
cea9e445 335 void *private;
a236aed1
CM
336 atomic_t error;
337 int max_errors;
cea9e445 338 int num_stripes;
a1d3c478 339 int mirror_num;
2c8cdd6e
MX
340 int num_tgtdevs;
341 int *tgtdev_map;
8e5cfb55
ZL
342 /*
343 * logical block numbers for the start of each stripe
344 * The last one or two are p/q. These are sorted,
345 * so raid_map[0] is the start of our full stripe
346 */
347 u64 *raid_map;
cea9e445
CM
348 struct btrfs_bio_stripe stripes[];
349};
350
b2117a39
MX
351struct btrfs_device_info {
352 struct btrfs_device *dev;
353 u64 dev_offset;
354 u64 max_avail;
73c5de00 355 u64 total_avail;
b2117a39
MX
356};
357
31e50229 358struct btrfs_raid_attr {
8c3e3582
DS
359 u8 sub_stripes; /* sub_stripes info for map */
360 u8 dev_stripes; /* stripes per dev */
361 u8 devs_max; /* max devs to use */
362 u8 devs_min; /* min devs needed */
363 u8 tolerated_failures; /* max tolerated fail devs */
364 u8 devs_increment; /* ndevs has to be a multiple of this */
365 u8 ncopies; /* how many copies to data has */
366 u8 nparity; /* number of stripes worth of bytes to store
b50836ed 367 * parity information */
8c3e3582 368 u8 mindev_error; /* error code if min devs requisite is unmet */
ed23467b 369 const char raid_name[8]; /* name of the raid */
41a6e891 370 u64 bg_flag; /* block group flag of the raid */
31e50229
LB
371};
372
af902047 373extern const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES];
af902047 374
1abe9b8a 375struct map_lookup {
376 u64 type;
377 int io_align;
378 int io_width;
3d8da678 379 u64 stripe_len;
1abe9b8a 380 int num_stripes;
381 int sub_stripes;
cf90d884 382 int verified_stripes; /* For mount time dev extent verification */
1abe9b8a 383 struct btrfs_bio_stripe stripes[];
384};
385
a2de733c
AJ
386#define map_lookup_size(n) (sizeof(struct map_lookup) + \
387 (sizeof(struct btrfs_bio_stripe) * (n)))
388
c9e9f97b 389struct btrfs_balance_args;
19a39dce 390struct btrfs_balance_progress;
c9e9f97b 391struct btrfs_balance_control {
c9e9f97b
ID
392 struct btrfs_balance_args data;
393 struct btrfs_balance_args meta;
394 struct btrfs_balance_args sys;
395
396 u64 flags;
19a39dce
ID
397
398 struct btrfs_balance_progress stat;
c9e9f97b
ID
399};
400
cf8cddd3
CH
401enum btrfs_map_op {
402 BTRFS_MAP_READ,
403 BTRFS_MAP_WRITE,
404 BTRFS_MAP_DISCARD,
405 BTRFS_MAP_GET_READ_MIRRORS,
406};
407
408static inline enum btrfs_map_op btrfs_op(struct bio *bio)
409{
410 switch (bio_op(bio)) {
411 case REQ_OP_DISCARD:
412 return BTRFS_MAP_DISCARD;
413 case REQ_OP_WRITE:
414 return BTRFS_MAP_WRITE;
415 default:
416 WARN_ON_ONCE(1);
0a4c9265 417 /* fall through */
cf8cddd3
CH
418 case REQ_OP_READ:
419 return BTRFS_MAP_READ;
420 }
421}
422
6e9606d2
ZL
423void btrfs_get_bbio(struct btrfs_bio *bbio);
424void btrfs_put_bbio(struct btrfs_bio *bbio);
cf8cddd3 425int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
cea9e445 426 u64 logical, u64 *length,
a1d3c478 427 struct btrfs_bio **bbio_ret, int mirror_num);
cf8cddd3 428int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
af8e2d1d 429 u64 logical, u64 *length,
825ad4c9 430 struct btrfs_bio **bbio_ret);
5f141126 431int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
89b798ad 432 u64 logical, u64 len, struct btrfs_io_geometry *io_geom);
63a9c7b9
NB
433int btrfs_rmap_block(struct btrfs_fs_info *fs_info, u64 chunk_start,
434 u64 physical, u64 **logical, int *naddrs, int *stripe_len);
6bccf3ab 435int btrfs_read_sys_array(struct btrfs_fs_info *fs_info);
5b4aacef 436int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info);
c216b203 437int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, u64 type);
c8bf1b67 438void btrfs_mapping_tree_free(struct extent_map_tree *tree);
58efbc9f
OS
439blk_status_t btrfs_map_bio(struct btrfs_fs_info *fs_info, struct bio *bio,
440 int mirror_num, int async_submit);
8a4b83cc 441int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
97288f2c 442 fmode_t flags, void *holder);
36350e95
GJ
443struct btrfs_device *btrfs_scan_one_device(const char *path,
444 fmode_t flags, void *holder);
228a73ab 445int btrfs_forget_devices(const char *path);
8a4b83cc 446int btrfs_close_devices(struct btrfs_fs_devices *fs_devices);
9b99b115 447void btrfs_free_extra_devids(struct btrfs_fs_devices *fs_devices, int step);
d6507cf1
NB
448void btrfs_assign_next_active_device(struct btrfs_device *device,
449 struct btrfs_device *this_dev);
a27a94c2
NB
450struct btrfs_device *btrfs_find_device_by_devspec(struct btrfs_fs_info *fs_info,
451 u64 devid,
452 const char *devpath);
12bd2fc0
ID
453struct btrfs_device *btrfs_alloc_device(struct btrfs_fs_info *fs_info,
454 const u64 *devid,
455 const u8 *uuid);
a425f9d4 456void btrfs_free_device(struct btrfs_device *device);
2ff7e61e 457int btrfs_rm_device(struct btrfs_fs_info *fs_info,
da353f6b 458 const char *device_path, u64 devid);
ffc5a379 459void __exit btrfs_cleanup_fs_uuids(void);
5d964051 460int btrfs_num_copies(struct btrfs_fs_info *fs_info, u64 logical, u64 len);
8f18cf13
CM
461int btrfs_grow_device(struct btrfs_trans_handle *trans,
462 struct btrfs_device *device, u64 new_size);
e4319cd9 463struct btrfs_device *btrfs_find_device(struct btrfs_fs_devices *fs_devices,
09ba3bc9 464 u64 devid, u8 *uuid, u8 *fsid, bool seed);
8f18cf13 465int btrfs_shrink_device(struct btrfs_device *device, u64 new_size);
da353f6b 466int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *path);
6fcf6e2b
DS
467int btrfs_balance(struct btrfs_fs_info *fs_info,
468 struct btrfs_balance_control *bctl,
c9e9f97b 469 struct btrfs_ioctl_balance_args *bargs);
f89e09cf 470void btrfs_describe_block_groups(u64 flags, char *buf, u32 size_buf);
2b6ba629 471int btrfs_resume_balance_async(struct btrfs_fs_info *fs_info);
68310a5e 472int btrfs_recover_balance(struct btrfs_fs_info *fs_info);
837d5b6e 473int btrfs_pause_balance(struct btrfs_fs_info *fs_info);
a7e99c69 474int btrfs_cancel_balance(struct btrfs_fs_info *fs_info);
f7a81ea4 475int btrfs_create_uuid_tree(struct btrfs_fs_info *fs_info);
70f80175 476int btrfs_check_uuid_tree(struct btrfs_fs_info *fs_info);
2ff7e61e 477int btrfs_chunk_readonly(struct btrfs_fs_info *fs_info, u64 chunk_offset);
60dfdf25
NB
478int find_free_dev_extent_start(struct btrfs_device *device, u64 num_bytes,
479 u64 search_start, u64 *start, u64 *max_avail);
480int find_free_dev_extent(struct btrfs_device *device, u64 num_bytes,
ba1bf481 481 u64 *start, u64 *max_avail);
442a4f63 482void btrfs_dev_stat_inc_and_print(struct btrfs_device *dev, int index);
2ff7e61e 483int btrfs_get_dev_stats(struct btrfs_fs_info *fs_info,
b27f7c0c 484 struct btrfs_ioctl_get_dev_stats *stats);
cb517eab 485void btrfs_init_devices_late(struct btrfs_fs_info *fs_info);
733f4fbb 486int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info);
196c9d8d 487int btrfs_run_dev_stats(struct btrfs_trans_handle *trans);
68a9db5f 488void btrfs_rm_dev_replace_remove_srcdev(struct btrfs_device *srcdev);
65237ee3 489void btrfs_rm_dev_replace_free_srcdev(struct btrfs_device *srcdev);
4f5ad7bd 490void btrfs_destroy_dev_replace_tgtdev(struct btrfs_device *tgtdev);
da353f6b 491void btrfs_scratch_superblocks(struct block_device *bdev, const char *device_path);
592d92ee 492int btrfs_is_parity_mirror(struct btrfs_fs_info *fs_info,
e4ff5fb5 493 u64 logical, u64 len);
2ff7e61e 494unsigned long btrfs_full_stripe_len(struct btrfs_fs_info *fs_info,
53b381b3 495 u64 logical);
6df9a95e 496int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
97aff912
NB
497 u64 chunk_offset, u64 chunk_size);
498int btrfs_remove_chunk(struct btrfs_trans_handle *trans, u64 chunk_offset);
60ca842e
OS
499struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info,
500 u64 logical, u64 length);
addc3fa7 501
442a4f63
SB
502static inline void btrfs_dev_stat_inc(struct btrfs_device *dev,
503 int index)
504{
505 atomic_inc(dev->dev_stat_values + index);
9deae968
NB
506 /*
507 * This memory barrier orders stores updating statistics before stores
508 * updating dev_stats_ccnt.
509 *
510 * It pairs with smp_rmb() in btrfs_run_dev_stats().
511 */
addc3fa7
MX
512 smp_mb__before_atomic();
513 atomic_inc(&dev->dev_stats_ccnt);
442a4f63
SB
514}
515
516static inline int btrfs_dev_stat_read(struct btrfs_device *dev,
517 int index)
518{
519 return atomic_read(dev->dev_stat_values + index);
520}
521
522static inline int btrfs_dev_stat_read_and_reset(struct btrfs_device *dev,
523 int index)
524{
525 int ret;
526
527 ret = atomic_xchg(dev->dev_stat_values + index, 0);
4660c49f
NB
528 /*
529 * atomic_xchg implies a full memory barriers as per atomic_t.txt:
530 * - RMW operations that have a return value are fully ordered;
531 *
532 * This implicit memory barriers is paired with the smp_rmb in
533 * btrfs_run_dev_stats
534 */
addc3fa7 535 atomic_inc(&dev->dev_stats_ccnt);
442a4f63
SB
536 return ret;
537}
538
539static inline void btrfs_dev_stat_set(struct btrfs_device *dev,
540 int index, unsigned long val)
541{
542 atomic_set(dev->dev_stat_values + index, val);
9deae968
NB
543 /*
544 * This memory barrier orders stores updating statistics before stores
545 * updating dev_stats_ccnt.
546 *
547 * It pairs with smp_rmb() in btrfs_run_dev_stats().
548 */
addc3fa7
MX
549 smp_mb__before_atomic();
550 atomic_inc(&dev->dev_stats_ccnt);
442a4f63
SB
551}
552
553static inline void btrfs_dev_stat_reset(struct btrfs_device *dev,
554 int index)
555{
556 btrfs_dev_stat_set(dev, index, 0);
557}
935e5cc9 558
3e72ee88
QW
559/*
560 * Convert block group flags (BTRFS_BLOCK_GROUP_*) to btrfs_raid_types, which
561 * can be used as index to access btrfs_raid_array[].
562 */
563static inline enum btrfs_raid_types btrfs_bg_flags_to_raid_index(u64 flags)
564{
565 if (flags & BTRFS_BLOCK_GROUP_RAID10)
566 return BTRFS_RAID_RAID10;
567 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
568 return BTRFS_RAID_RAID1;
569 else if (flags & BTRFS_BLOCK_GROUP_DUP)
570 return BTRFS_RAID_DUP;
571 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
572 return BTRFS_RAID_RAID0;
573 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
574 return BTRFS_RAID_RAID5;
575 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
576 return BTRFS_RAID_RAID6;
577
578 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
579}
580
bbbf7243 581void btrfs_commit_device_sizes(struct btrfs_transaction *trans);
04216820 582
c73eccf7 583struct list_head *btrfs_get_fs_uuids(void);
5a13f430
AJ
584void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info);
585void btrfs_reset_fs_info_ptr(struct btrfs_fs_info *fs_info);
6528b99d
AJ
586bool btrfs_check_rw_degradable(struct btrfs_fs_info *fs_info,
587 struct btrfs_device *failing_dev);
21634a19 588
46df06b8 589int btrfs_bg_type_to_factor(u64 flags);
158da513 590const char *btrfs_bg_type_to_raid_name(u64 flags);
cf90d884 591int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info);
46df06b8 592
0b86a832 593#endif