]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - fs/btrfs/ctree.h
UBUNTU: Ubuntu-5.3.0-29.31
[mirror_ubuntu-eoan-kernel.git] / fs / btrfs / ctree.h
CommitLineData
9888c340 1/* SPDX-License-Identifier: GPL-2.0 */
6cbd5570
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
6cbd5570
CM
4 */
5
9888c340
DS
6#ifndef BTRFS_CTREE_H
7#define BTRFS_CTREE_H
eb60ceac 8
810191ff 9#include <linux/mm.h>
174cd4b1 10#include <linux/sched/signal.h>
810191ff 11#include <linux/highmem.h>
e20d96d6 12#include <linux/fs.h>
a2de733c 13#include <linux/rwsem.h>
803b2f54 14#include <linux/semaphore.h>
58176a96 15#include <linux/completion.h>
04160088 16#include <linux/backing-dev.h>
e6dcd2dc 17#include <linux/wait.h>
5a0e3ad6 18#include <linux/slab.h>
f8b18087 19#include <linux/kobject.h>
1abe9b8a 20#include <trace/events/btrfs.h>
479965d6 21#include <asm/kmap_types.h>
65019df8 22#include <asm/unaligned.h>
3b16a4e3 23#include <linux/pagemap.h>
55e301fd 24#include <linux/btrfs.h>
db671160 25#include <linux/btrfs_tree.h>
21c7e756 26#include <linux/workqueue.h>
f667aef6 27#include <linux/security.h>
ee22184b 28#include <linux/sizes.h>
897a41b1 29#include <linux/dynamic_debug.h>
1e4f4714 30#include <linux/refcount.h>
9678c543 31#include <linux/crc32c.h>
d1310b2e 32#include "extent_io.h"
5f39d397 33#include "extent_map.h"
8b712842 34#include "async-thread.h"
d12ffdd1 35#include "block-rsv.h"
e20d96d6 36
e089f05c 37struct btrfs_trans_handle;
79154b1b 38struct btrfs_transaction;
a22285a6 39struct btrfs_pending_snapshot;
31890da0 40struct btrfs_delayed_ref_root;
8719aaae 41struct btrfs_space_info;
35b7e476 42extern struct kmem_cache *btrfs_trans_handle_cachep;
35b7e476 43extern struct kmem_cache *btrfs_bit_radix_cachep;
2c90e5d6 44extern struct kmem_cache *btrfs_path_cachep;
dc89e982 45extern struct kmem_cache *btrfs_free_space_cachep;
421dc629 46extern struct kmem_cache *btrfs_free_space_bitmap_cachep;
e6dcd2dc 47struct btrfs_ordered_sum;
82fa113f 48struct btrfs_ref;
e089f05c 49
cdb4c574 50#define BTRFS_MAGIC 0x4D5F53665248425FULL /* ascii _BHRfS_M, no null */
eb60ceac 51
71a9c488
DS
52/*
53 * Maximum number of mirrors that can be available for all profiles counting
54 * the target device of dev-replace as one. During an active device replace
55 * procedure, the target device of the copy operation is a mirror for the
56 * filesystem data as well that can be used to read data in order to repair
57 * read errors on other disks.
58 *
59 * Current value is derived from RAID1 with 2 copies.
60 */
61#define BTRFS_MAX_MIRRORS (2 + 1)
94598ba8 62
4008c04a 63#define BTRFS_MAX_LEVEL 8
0b86a832 64
7c829b72
AJ
65#define BTRFS_OLDEST_GENERATION 0ULL
66
727011e0
CM
67/*
68 * the max metadata block size. This limit is somewhat artificial,
69 * but the memmove costs go through the roof for larger blocks.
70 */
71#define BTRFS_MAX_METADATA_BLOCKSIZE 65536
72
e20d96d6
CM
73/*
74 * we can actually store much bigger names, but lets not confuse the rest
75 * of linux
76 */
77#define BTRFS_NAME_LEN 255
78
f186373f
MF
79/*
80 * Theoretical limit is larger, but we keep this down to a sane
81 * value. That should limit greatly the possibility of collisions on
82 * inode ref items.
83 */
84#define BTRFS_LINK_MAX 65535U
85
4408ea7c 86/* four bytes for CRC32 */
4d4ab6d6 87static const int btrfs_csum_sizes[] = { 4 };
6d97c6e3 88static const char *btrfs_csum_names[] = { "crc32c" };
607d432d 89
3954401f 90#define BTRFS_EMPTY_DIR_SIZE 0
f254e52c 91
3d136a11
SB
92/* ioprio of readahead is set to idle */
93#define BTRFS_IOPRIO_READA (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0))
94
ee22184b 95#define BTRFS_DIRTY_METADATA_THRESH SZ_32M
e2d84521 96
dec59fa3
EL
97/*
98 * Use large batch size to reduce overhead of metadata updates. On the reader
99 * side, we only read it when we are close to ENOSPC and the read overhead is
100 * mostly related to the number of CPUs, so it is OK to use arbitrary large
101 * value here.
102 */
103#define BTRFS_TOTAL_BYTES_PINNED_BATCH SZ_128M
104
ee22184b 105#define BTRFS_MAX_EXTENT_SIZE SZ_128M
dcab6a3b 106
9678c543 107
823bb20a
DS
108/*
109 * Count how many BTRFS_MAX_EXTENT_SIZE cover the @size
110 */
111static inline u32 count_max_extents(u64 size)
112{
113 return div_u64(size + BTRFS_MAX_EXTENT_SIZE - 1, BTRFS_MAX_EXTENT_SIZE);
114}
115
0b86a832
CM
116static inline unsigned long btrfs_chunk_item_size(int num_stripes)
117{
118 BUG_ON(num_stripes == 0);
119 return sizeof(struct btrfs_chunk) +
120 sizeof(struct btrfs_stripe) * (num_stripes - 1);
121}
122
acce952b 123/*
b00146b5 124 * Runtime (in-memory) states of filesystem
acce952b 125 */
b00146b5
DS
126enum {
127 /* Global indicator of serious filesystem errors */
128 BTRFS_FS_STATE_ERROR,
129 /*
130 * Filesystem is being remounted, allow to skip some operations, like
131 * defrag
132 */
133 BTRFS_FS_STATE_REMOUNTING,
134 /* Track if a transaction abort has been reported on this filesystem */
135 BTRFS_FS_STATE_TRANS_ABORTED,
136 /*
137 * Bio operations should be blocked on this filesystem because a source
138 * or target device is being destroyed as part of a device replace
139 */
140 BTRFS_FS_STATE_DEV_REPLACING,
141 /* The btrfs_fs_info created for self-tests */
142 BTRFS_FS_STATE_DUMMY_FS_INFO,
143};
acce952b 144
5d4f98a2
YZ
145#define BTRFS_BACKREF_REV_MAX 256
146#define BTRFS_BACKREF_REV_SHIFT 56
147#define BTRFS_BACKREF_REV_MASK (((u64)BTRFS_BACKREF_REV_MAX - 1) << \
148 BTRFS_BACKREF_REV_SHIFT)
149
150#define BTRFS_OLD_BACKREF_REV 0
151#define BTRFS_MIXED_BACKREF_REV 1
63b10fc4 152
fec577fb
CM
153/*
154 * every tree block (leaf or node) starts with this header.
155 */
bb492bb0 156struct btrfs_header {
e17cade2 157 /* these first four must match the super block */
f254e52c 158 u8 csum[BTRFS_CSUM_SIZE];
5f39d397 159 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
db94535d 160 __le64 bytenr; /* which block this node is supposed to live in */
63b10fc4 161 __le64 flags;
e17cade2
CM
162
163 /* allowed to be different from the super from here on down */
164 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
7f5c1516 165 __le64 generation;
4d775673 166 __le64 owner;
5f39d397 167 __le32 nritems;
9a6f11ed 168 u8 level;
eb60ceac
CM
169} __attribute__ ((__packed__));
170
0b86a832
CM
171/*
172 * this is a very generous portion of the super block, giving us
173 * room to translate 14 chunks with 3 stripes each.
174 */
175#define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
176
af31f5e5
CM
177/*
178 * just in case we somehow lose the roots and are not able to mount,
179 * we store an array of the roots from previous transactions
180 * in the super.
181 */
182#define BTRFS_NUM_BACKUP_ROOTS 4
183struct btrfs_root_backup {
184 __le64 tree_root;
185 __le64 tree_root_gen;
186
187 __le64 chunk_root;
188 __le64 chunk_root_gen;
189
190 __le64 extent_root;
191 __le64 extent_root_gen;
192
193 __le64 fs_root;
194 __le64 fs_root_gen;
195
196 __le64 dev_root;
197 __le64 dev_root_gen;
198
199 __le64 csum_root;
200 __le64 csum_root_gen;
201
202 __le64 total_bytes;
203 __le64 bytes_used;
204 __le64 num_devices;
205 /* future */
d1423248 206 __le64 unused_64[4];
af31f5e5
CM
207
208 u8 tree_root_level;
209 u8 chunk_root_level;
210 u8 extent_root_level;
211 u8 fs_root_level;
212 u8 dev_root_level;
213 u8 csum_root_level;
214 /* future and to align */
215 u8 unused_8[10];
216} __attribute__ ((__packed__));
217
fec577fb
CM
218/*
219 * the super block basically lists the main trees of the FS
220 * it currently lacks any block count etc etc
221 */
234b63a0 222struct btrfs_super_block {
63b10fc4 223 /* the first 4 fields must match struct btrfs_header */
7239ff4b
NB
224 u8 csum[BTRFS_CSUM_SIZE];
225 /* FS specific UUID, visible to user */
226 u8 fsid[BTRFS_FSID_SIZE];
db94535d 227 __le64 bytenr; /* this block number */
63b10fc4 228 __le64 flags;
e17cade2
CM
229
230 /* allowed to be different from the btrfs_header from here own down */
3768f368 231 __le64 magic;
3768f368
CM
232 __le64 generation;
233 __le64 root;
0b86a832 234 __le64 chunk_root;
e02119d5 235 __le64 log_root;
c3027eb5
CM
236
237 /* this will help find the new super based on the log root */
238 __le64 log_root_transid;
db94535d
CM
239 __le64 total_bytes;
240 __le64 bytes_used;
2e635a27 241 __le64 root_dir_objectid;
8a4b83cc 242 __le64 num_devices;
5f39d397
CM
243 __le32 sectorsize;
244 __le32 nodesize;
707e8a07 245 __le32 __unused_leafsize;
87ee04eb 246 __le32 stripesize;
0b86a832 247 __le32 sys_chunk_array_size;
84234f3a 248 __le64 chunk_root_generation;
f2b636e8
JB
249 __le64 compat_flags;
250 __le64 compat_ro_flags;
251 __le64 incompat_flags;
607d432d 252 __le16 csum_type;
db94535d 253 u8 root_level;
0b86a832 254 u8 chunk_root_level;
e02119d5 255 u8 log_root_level;
0d81ba5d 256 struct btrfs_dev_item dev_item;
c3027eb5 257
7ae9c09d 258 char label[BTRFS_LABEL_SIZE];
c3027eb5 259
0af3d00b 260 __le64 cache_generation;
26432799 261 __le64 uuid_tree_generation;
0af3d00b 262
7239ff4b
NB
263 /* the UUID written into btree blocks */
264 u8 metadata_uuid[BTRFS_FSID_SIZE];
265
c3027eb5 266 /* future expansion */
7239ff4b 267 __le64 reserved[28];
0b86a832 268 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
af31f5e5 269 struct btrfs_root_backup super_roots[BTRFS_NUM_BACKUP_ROOTS];
cfaa7295
CM
270} __attribute__ ((__packed__));
271
f2b636e8
JB
272/*
273 * Compat flags that we support. If any incompat flags are set other than the
274 * ones specified below then we will fail to mount
275 */
5d4f98a2 276#define BTRFS_FEATURE_COMPAT_SUPP 0ULL
2eaa055f
JM
277#define BTRFS_FEATURE_COMPAT_SAFE_SET 0ULL
278#define BTRFS_FEATURE_COMPAT_SAFE_CLEAR 0ULL
70f6d82e
OS
279
280#define BTRFS_FEATURE_COMPAT_RO_SUPP \
6675df31
OS
281 (BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE | \
282 BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID)
70f6d82e 283
2eaa055f
JM
284#define BTRFS_FEATURE_COMPAT_RO_SAFE_SET 0ULL
285#define BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR 0ULL
286
0af3d00b
JB
287#define BTRFS_FEATURE_INCOMPAT_SUPP \
288 (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \
67377734 289 BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \
a6fa6fae 290 BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \
727011e0 291 BTRFS_FEATURE_INCOMPAT_BIG_METADATA | \
f186373f 292 BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \
5c1aab1d 293 BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD | \
53b381b3 294 BTRFS_FEATURE_INCOMPAT_RAID56 | \
3173a18f 295 BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF | \
16e7549f 296 BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA | \
7239ff4b
NB
297 BTRFS_FEATURE_INCOMPAT_NO_HOLES | \
298 BTRFS_FEATURE_INCOMPAT_METADATA_UUID)
f2b636e8 299
2eaa055f
JM
300#define BTRFS_FEATURE_INCOMPAT_SAFE_SET \
301 (BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
302#define BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR 0ULL
f2b636e8 303
fec577fb 304/*
62e2749e 305 * A leaf is full of items. offset and size tell us where to find
fec577fb
CM
306 * the item in the leaf (relative to the start of the data area)
307 */
0783fcfc 308struct btrfs_item {
e2fa7227 309 struct btrfs_disk_key key;
123abc88 310 __le32 offset;
5f39d397 311 __le32 size;
eb60ceac
CM
312} __attribute__ ((__packed__));
313
fec577fb
CM
314/*
315 * leaves have an item area and a data area:
316 * [item0, item1....itemN] [free space] [dataN...data1, data0]
317 *
318 * The data is separate from the items to get the keys closer together
319 * during searches.
320 */
234b63a0 321struct btrfs_leaf {
bb492bb0 322 struct btrfs_header header;
123abc88 323 struct btrfs_item items[];
eb60ceac
CM
324} __attribute__ ((__packed__));
325
fec577fb
CM
326/*
327 * all non-leaf blocks are nodes, they hold only keys and pointers to
328 * other blocks
329 */
123abc88
CM
330struct btrfs_key_ptr {
331 struct btrfs_disk_key key;
332 __le64 blockptr;
74493f7a 333 __le64 generation;
123abc88
CM
334} __attribute__ ((__packed__));
335
234b63a0 336struct btrfs_node {
bb492bb0 337 struct btrfs_header header;
123abc88 338 struct btrfs_key_ptr ptrs[];
eb60ceac
CM
339} __attribute__ ((__packed__));
340
fec577fb 341/*
234b63a0
CM
342 * btrfs_paths remember the path taken from the root down to the leaf.
343 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
fec577fb
CM
344 * to any other levels that are present.
345 *
346 * The slots array records the index of the item or block pointer
347 * used while walking the tree.
348 */
bbe339cc 349enum { READA_NONE, READA_BACK, READA_FORWARD };
234b63a0 350struct btrfs_path {
5f39d397 351 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
234b63a0 352 int slots[BTRFS_MAX_LEVEL];
925baedd 353 /* if there is real range locking, this locks field will change */
4fb72bf2 354 u8 locks[BTRFS_MAX_LEVEL];
dccabfad 355 u8 reada;
925baedd 356 /* keep some upper locks as we walk down */
7853f15b 357 u8 lowest_level;
459931ec
CM
358
359 /*
360 * set by btrfs_split_item, tells search_slot to keep all locks
361 * and to force calls to keep space in the nodes
362 */
b9473439
CM
363 unsigned int search_for_split:1;
364 unsigned int keep_locks:1;
365 unsigned int skip_locking:1;
366 unsigned int leave_spinning:1;
5d4f98a2 367 unsigned int search_commit_root:1;
3f8a18cc 368 unsigned int need_commit_sem:1;
5f5bc6b1 369 unsigned int skip_release_on_error:1;
eb60ceac 370};
da17066c 371#define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r->fs_info) >> 4) - \
5d4f98a2 372 sizeof(struct btrfs_item))
e922e087
SB
373struct btrfs_dev_replace {
374 u64 replace_state; /* see #define above */
a944442c
AP
375 time64_t time_started; /* seconds since 1-Jan-1970 */
376 time64_t time_stopped; /* seconds since 1-Jan-1970 */
e922e087
SB
377 atomic64_t num_write_errors;
378 atomic64_t num_uncorrectable_read_errors;
379
380 u64 cursor_left;
381 u64 committed_cursor_left;
382 u64 cursor_left_last_write_of_item;
383 u64 cursor_right;
384
385 u64 cont_reading_from_srcdev_mode; /* see #define above */
386
387 int is_valid;
388 int item_needs_writeback;
389 struct btrfs_device *srcdev;
390 struct btrfs_device *tgtdev;
391
e922e087 392 struct mutex lock_finishing_cancel_unmount;
129827e3 393 struct rw_semaphore rwsem;
e922e087
SB
394
395 struct btrfs_scrub_progress scrub_progress;
7f8d236a
DS
396
397 struct percpu_counter bio_counter;
398 wait_queue_head_t replace_wait;
e922e087
SB
399};
400
c1895442
JM
401/* For raid type sysfs entries */
402struct raid_kobject {
75cb379d 403 u64 flags;
c1895442
JM
404 struct kobject kobj;
405};
406
fa9c0d79
CM
407/*
408 * free clusters are used to claim free space in relatively large chunks,
583b7231
HK
409 * allowing us to do less seeky writes. They are used for all metadata
410 * allocations. In ssd_spread mode they are also used for data allocations.
fa9c0d79
CM
411 */
412struct btrfs_free_cluster {
413 spinlock_t lock;
414 spinlock_t refill_lock;
415 struct rb_root root;
416
417 /* largest extent in this cluster */
418 u64 max_size;
419
420 /* first extent starting offset */
421 u64 window_start;
422
c759c4e1
JB
423 /* We did a full search and couldn't create a cluster */
424 bool fragmented;
425
fa9c0d79
CM
426 struct btrfs_block_group_cache *block_group;
427 /*
428 * when a cluster is allocated from a block group, we put the
429 * cluster onto a list in the block group so that it can
430 * be freed before the block group is freed.
431 */
432 struct list_head block_group_list;
6324fbf3
CM
433};
434
817d52f8 435enum btrfs_caching_type {
bbe339cc
DS
436 BTRFS_CACHE_NO,
437 BTRFS_CACHE_STARTED,
438 BTRFS_CACHE_FAST,
439 BTRFS_CACHE_FINISHED,
440 BTRFS_CACHE_ERROR,
817d52f8
JB
441};
442
0af3d00b 443enum btrfs_disk_cache_state {
bbe339cc
DS
444 BTRFS_DC_WRITTEN,
445 BTRFS_DC_ERROR,
446 BTRFS_DC_CLEAR,
447 BTRFS_DC_SETUP,
0af3d00b
JB
448};
449
11833d66
YZ
450struct btrfs_caching_control {
451 struct list_head list;
452 struct mutex mutex;
453 wait_queue_head_t wait;
bab39bf9 454 struct btrfs_work work;
11833d66
YZ
455 struct btrfs_block_group_cache *block_group;
456 u64 progress;
1e4f4714 457 refcount_t count;
11833d66
YZ
458};
459
73fa48b6 460/* Once caching_thread() finds this much free space, it will wake up waiters. */
d4417e22 461#define CACHING_CTL_WAKE_UP SZ_2M
73fa48b6 462
4c6d1d85
CM
463struct btrfs_io_ctl {
464 void *cur, *orig;
465 struct page *page;
466 struct page **pages;
f15376df 467 struct btrfs_fs_info *fs_info;
c9dc4c65 468 struct inode *inode;
4c6d1d85
CM
469 unsigned long size;
470 int index;
471 int num_pages;
c9dc4c65
CM
472 int entries;
473 int bitmaps;
4c6d1d85
CM
474 unsigned check_crcs:1;
475};
476
0966a7b1
QW
477/*
478 * Tree to record all locked full stripes of a RAID5/6 block group
479 */
480struct btrfs_full_stripe_locks_tree {
481 struct rb_root root;
482 struct mutex lock;
483};
484
9078a3e1
CM
485struct btrfs_block_group_cache {
486 struct btrfs_key key;
487 struct btrfs_block_group_item item;
817d52f8 488 struct btrfs_fs_info *fs_info;
0af3d00b 489 struct inode *inode;
c286ac48 490 spinlock_t lock;
324ae4df 491 u64 pinned;
e8569813 492 u64 reserved;
e570fd27 493 u64 delalloc_bytes;
1b2da372 494 u64 bytes_super;
0b86a832 495 u64 flags;
5b0e95bf 496 u64 cache_generation;
a5ed9182
OS
497
498 /*
499 * If the free space extent count exceeds this number, convert the block
500 * group to bitmaps.
501 */
502 u32 bitmap_high_thresh;
503
504 /*
505 * If the free space extent count drops below this number, convert the
506 * block group back to extents.
507 */
508 u32 bitmap_low_thresh;
53b381b3 509
e570fd27
MX
510 /*
511 * It is just used for the delayed data space allocation because
512 * only the data space allocation and the relative metadata update
513 * can be done cross the transaction.
514 */
515 struct rw_semaphore data_rwsem;
516
53b381b3
DW
517 /* for raid56, this is a full stripe, without parity */
518 unsigned long full_stripe_len;
519
868f401a 520 unsigned int ro;
0410c94a 521 unsigned int iref:1;
4f69cb98 522 unsigned int has_caching_ctl:1;
04216820 523 unsigned int removed:1;
0af3d00b
JB
524
525 int disk_cache_state;
0f9dd46c 526
817d52f8 527 /* cache tracking stuff */
817d52f8 528 int cached;
11833d66
YZ
529 struct btrfs_caching_control *caching_ctl;
530 u64 last_byte_to_unpin;
817d52f8 531
0f9dd46c
JB
532 struct btrfs_space_info *space_info;
533
534 /* free space cache stuff */
34d52cb6 535 struct btrfs_free_space_ctl *free_space_ctl;
0f9dd46c
JB
536
537 /* block group cache stuff */
538 struct rb_node cache_node;
539
540 /* for block groups in the same raid type */
541 struct list_head list;
d2fb3437
YZ
542
543 /* usage count */
544 atomic_t count;
fa9c0d79
CM
545
546 /* List of struct btrfs_free_clusters for this block group.
547 * Today it will only have one thing on it, but that may change
548 */
549 struct list_head cluster_list;
ea658bad 550
47ab2a6c
JB
551 /* For delayed block group creation or deletion of empty block groups */
552 struct list_head bg_list;
633c0aad
JB
553
554 /* For read-only block groups */
555 struct list_head ro_list;
04216820
FM
556
557 atomic_t trimming;
ce93ec54
JB
558
559 /* For dirty block groups */
560 struct list_head dirty_list;
c9dc4c65
CM
561 struct list_head io_list;
562
563 struct btrfs_io_ctl io_ctl;
a5ed9182 564
9cfa3e34
FM
565 /*
566 * Incremented when doing extent allocations and holding a read lock
567 * on the space_info's groups_sem semaphore.
568 * Decremented when an ordered extent that represents an IO against this
569 * block group's range is created (after it's added to its inode's
570 * root's list of ordered extents) or immediately after the allocation
571 * if it's a metadata extent or fallocate extent (for these cases we
572 * don't create ordered extents).
573 */
574 atomic_t reservations;
575
f78c436c
FM
576 /*
577 * Incremented while holding the spinlock *lock* by a task checking if
578 * it can perform a nocow write (incremented if the value for the *ro*
579 * field is 0). Decremented by such tasks once they create an ordered
580 * extent or before that if some error happens before reaching that step.
581 * This is to prevent races between block group relocation and nocow
582 * writes through direct IO.
583 */
584 atomic_t nocow_writers;
585
a5ed9182
OS
586 /* Lock for free space tree operations. */
587 struct mutex free_space_lock;
588
589 /*
590 * Does the block group need to be added to the free space tree?
591 * Protected by free_space_lock.
592 */
593 int needs_free_space;
0966a7b1
QW
594
595 /* Record locked full stripes for RAID5/6 block group */
596 struct btrfs_full_stripe_locks_tree full_stripe_locks_root;
9078a3e1 597};
0b86a832 598
097b8a7c
JS
599/* delayed seq elem */
600struct seq_list {
601 struct list_head list;
602 u64 seq;
603};
604
3284da7b
DS
605#define SEQ_LIST_INIT(name) { .list = LIST_HEAD_INIT((name).list), .seq = 0 }
606
de47c9d3
EN
607#define SEQ_LAST ((u64)-1)
608
5d80366e
JB
609enum btrfs_orphan_cleanup_state {
610 ORPHAN_CLEANUP_STARTED = 1,
611 ORPHAN_CLEANUP_DONE = 2,
612};
613
53b381b3
DW
614/* used by the raid56 code to lock stripes for read/modify/write */
615struct btrfs_stripe_hash {
616 struct list_head hash_list;
53b381b3
DW
617 spinlock_t lock;
618};
619
620/* used by the raid56 code to lock stripes for read/modify/write */
621struct btrfs_stripe_hash_table {
4ae10b3a
CM
622 struct list_head stripe_cache;
623 spinlock_t cache_lock;
624 int cache_size;
625 struct btrfs_stripe_hash table[];
53b381b3
DW
626};
627
628#define BTRFS_STRIPE_HASH_TABLE_BITS 11
629
21c7e756
MX
630void btrfs_init_async_reclaim_work(struct work_struct *work);
631
097b8a7c 632/* fs_info */
5d4f98a2 633struct reloc_control;
0b86a832 634struct btrfs_device;
8a4b83cc 635struct btrfs_fs_devices;
c9e9f97b 636struct btrfs_balance_control;
16cdcec7 637struct btrfs_delayed_root;
afcdd129 638
eede2bf3
OS
639/*
640 * Block group or device which contains an active swapfile. Used for preventing
641 * unsafe operations while a swapfile is active.
642 *
643 * These are sorted on (ptr, inode) (note that a block group or device can
644 * contain more than one swapfile). We compare the pointer values because we
645 * don't actually care what the object is, we just need a quick check whether
646 * the object exists in the rbtree.
647 */
648struct btrfs_swapfile_pin {
649 struct rb_node node;
650 void *ptr;
651 struct inode *inode;
652 /*
653 * If true, ptr points to a struct btrfs_block_group_cache. Otherwise,
654 * ptr points to a struct btrfs_device.
655 */
656 bool is_block_group;
657};
658
659bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr);
660
eb1a524c
DS
661enum {
662 BTRFS_FS_BARRIER,
663 BTRFS_FS_CLOSING_START,
664 BTRFS_FS_CLOSING_DONE,
665 BTRFS_FS_LOG_RECOVERING,
666 BTRFS_FS_OPEN,
667 BTRFS_FS_QUOTA_ENABLED,
668 BTRFS_FS_UPDATE_UUID_TREE_GEN,
669 BTRFS_FS_CREATING_FREE_SPACE_TREE,
670 BTRFS_FS_BTREE_ERR,
671 BTRFS_FS_LOG1_ERR,
672 BTRFS_FS_LOG2_ERR,
673 BTRFS_FS_QUOTA_OVERRIDE,
674 /* Used to record internally whether fs has been frozen */
675 BTRFS_FS_FROZEN,
676 /*
677 * Indicate that a whole-filesystem exclusive operation is running
678 * (device replace, resize, device add/delete, balance)
679 */
680 BTRFS_FS_EXCL_OP,
681 /*
682 * To info transaction_kthread we need an immediate commit so it
683 * doesn't need to wait for commit_interval
684 */
685 BTRFS_FS_NEED_ASYNC_COMMIT,
686 /*
687 * Indicate that balance has been set up from the ioctl and is in the
688 * main phase. The fs_info::balance_ctl is initialized.
9e967495 689 * Set and cleared while holding fs_info::balance_mutex.
eb1a524c
DS
690 */
691 BTRFS_FS_BALANCE_RUNNING,
fd340d0f
JB
692
693 /* Indicate that the cleaner thread is awake and doing something. */
694 BTRFS_FS_CLEANER_RUNNING,
9b4e675a
DS
695
696 /*
697 * The checksumming has an optimized version and is considered fast,
698 * so we don't need to offload checksums to workqueues.
699 */
700 BTRFS_FS_CSUM_IMPL_FAST,
eb1a524c 701};
3009a62f 702
9f5fae2f 703struct btrfs_fs_info {
e17cade2 704 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
afcdd129 705 unsigned long flags;
62e2749e
CM
706 struct btrfs_root *extent_root;
707 struct btrfs_root *tree_root;
0b86a832
CM
708 struct btrfs_root *chunk_root;
709 struct btrfs_root *dev_root;
3de4586c 710 struct btrfs_root *fs_root;
d20f7043 711 struct btrfs_root *csum_root;
416ac51d 712 struct btrfs_root *quota_root;
f7a81ea4 713 struct btrfs_root *uuid_root;
a5ed9182 714 struct btrfs_root *free_space_root;
e02119d5
CM
715
716 /* the log root tree is a directory of all the other log roots */
717 struct btrfs_root *log_root_tree;
4df27c4d
YZ
718
719 spinlock_t fs_roots_radix_lock;
0f7d52f4 720 struct radix_tree_root fs_roots_radix;
1a5bc167 721
0f9dd46c
JB
722 /* block group cache stuff */
723 spinlock_t block_group_cache_lock;
a1897fdd 724 u64 first_logical_byte;
0f9dd46c
JB
725 struct rb_root block_group_cache_tree;
726
2bf64758 727 /* keep track of unallocated space */
a5ed45f8 728 atomic64_t free_chunk_space;
2bf64758 729
11833d66
YZ
730 struct extent_io_tree freed_extents[2];
731 struct extent_io_tree *pinned_extents;
1a5bc167 732
0b86a832 733 /* logical->physical extent mapping */
c8bf1b67 734 struct extent_map_tree mapping_tree;
0b86a832 735
16cdcec7
MX
736 /*
737 * block reservation for extent, checksum, root tree and
738 * delayed dir index item
739 */
f0486c68 740 struct btrfs_block_rsv global_block_rsv;
f0486c68
YZ
741 /* block reservation for metadata operations */
742 struct btrfs_block_rsv trans_block_rsv;
743 /* block reservation for chunk tree */
744 struct btrfs_block_rsv chunk_block_rsv;
6d668dda
JB
745 /* block reservation for delayed operations */
746 struct btrfs_block_rsv delayed_block_rsv;
ba2c4d4e
JB
747 /* block reservation for delayed refs */
748 struct btrfs_block_rsv delayed_refs_rsv;
f0486c68
YZ
749
750 struct btrfs_block_rsv empty_block_rsv;
751
293ffd5f 752 u64 generation;
15ee9bc7 753 u64 last_trans_committed;
0a2b2a84 754 u64 avg_delayed_ref_runtime;
12fcfd22
CM
755
756 /*
757 * this is updated to the current trans every time a full commit
758 * is required instead of the faster short fsync log commits
759 */
760 u64 last_trans_log_full_commit;
25cd999e 761 unsigned long mount_opt;
572d9ab7
DS
762 /*
763 * Track requests for actions that need to be done during transaction
764 * commit (like for some mount options).
765 */
766 unsigned long pending_changes;
261507a0 767 unsigned long compress_type:4;
f51d2b59 768 unsigned int compress_level;
d3740608 769 u32 commit_interval;
8c6a3ee6
MX
770 /*
771 * It is a suggestive number, the read side is safe even it gets a
772 * wrong number because we will write out the data into a regular
773 * extent. The write side(mount/remount) is under ->s_umount lock,
774 * so it is also safe.
775 */
6f568d35 776 u64 max_inline;
0d0c71b3 777
79154b1b 778 struct btrfs_transaction *running_transaction;
e6dcd2dc 779 wait_queue_head_t transaction_throttle;
f9295749 780 wait_queue_head_t transaction_wait;
bb9c12c9 781 wait_queue_head_t transaction_blocked_wait;
771ed689 782 wait_queue_head_t async_submit_wait;
e02119d5 783
ceda0864
MX
784 /*
785 * Used to protect the incompat_flags, compat_flags, compat_ro_flags
786 * when they are updated.
787 *
788 * Because we do not clear the flags for ever, so we needn't use
789 * the lock on the read side.
790 *
791 * We also needn't use the lock when we mount the fs, because
792 * there is no other task which will update the flag.
793 */
794 spinlock_t super_lock;
6c41761f
DS
795 struct btrfs_super_block *super_copy;
796 struct btrfs_super_block *super_for_commit;
e20d96d6 797 struct super_block *sb;
d98237b3 798 struct inode *btree_inode;
e02119d5 799 struct mutex tree_log_mutex;
a74a4b97
CM
800 struct mutex transaction_kthread_mutex;
801 struct mutex cleaner_mutex;
925baedd 802 struct mutex chunk_mutex;
53b381b3 803
1bbc621e
CM
804 /*
805 * this is taken to make sure we don't set block groups ro after
806 * the free space cache has been allocated on them
807 */
808 struct mutex ro_block_group_mutex;
809
53b381b3
DW
810 /* this is used during read/modify/write to make sure
811 * no two ios are trying to mod the same stripe at the same
812 * time
813 */
814 struct btrfs_stripe_hash_table *stripe_hash_table;
815
5a3f23d5
CM
816 /*
817 * this protects the ordered operations list only while we are
818 * processing all of the entries on it. This way we make
819 * sure the commit code doesn't find the list temporarily empty
820 * because another function happens to be doing non-waiting preflush
821 * before jumping into the main commit.
822 */
823 struct mutex ordered_operations_mutex;
9ffba8cd 824
9e351cc8 825 struct rw_semaphore commit_root_sem;
5a3f23d5 826
c71bf099 827 struct rw_semaphore cleanup_work_sem;
76dda93c 828
c71bf099 829 struct rw_semaphore subvol_sem;
76dda93c
YZ
830 struct srcu_struct subvol_srcu;
831
a4abeea4 832 spinlock_t trans_lock;
7585717f
CM
833 /*
834 * the reloc mutex goes with the trans lock, it is taken
835 * during commit to protect us from the relocation code
836 */
837 struct mutex reloc_mutex;
838
8fd17795 839 struct list_head trans_list;
facda1e7 840 struct list_head dead_roots;
11833d66 841 struct list_head caching_block_groups;
e02119d5 842
24bbcf04
YZ
843 spinlock_t delayed_iput_lock;
844 struct list_head delayed_iputs;
034f784d
JB
845 atomic_t nr_delayed_iputs;
846 wait_queue_head_t delayed_iputs_wait;
24bbcf04 847
f29021b2
JS
848 /* this protects tree_mod_seq_list */
849 spinlock_t tree_mod_seq_lock;
fc36ed7e 850 atomic64_t tree_mod_seq;
f29021b2
JS
851 struct list_head tree_mod_seq_list;
852
853 /* this protects tree_mod_log */
854 rwlock_t tree_mod_log_lock;
855 struct rb_root tree_mod_log;
856
771ed689 857 atomic_t async_delalloc_pages;
ce9adaa5 858
3eaa2885 859 /*
199c2a9c 860 * this is used to protect the following list -- ordered_roots.
3eaa2885 861 */
199c2a9c 862 spinlock_t ordered_root_lock;
5a3f23d5
CM
863
864 /*
199c2a9c
MX
865 * all fs/file tree roots in which there are data=ordered extents
866 * pending writeback are added into this list.
867 *
5a3f23d5
CM
868 * these can span multiple transactions and basically include
869 * every dirty data page that isn't from nodatacow
870 */
199c2a9c 871 struct list_head ordered_roots;
5a3f23d5 872
573bfb72 873 struct mutex delalloc_root_mutex;
eb73c1b7
MX
874 spinlock_t delalloc_root_lock;
875 /* all fs/file tree roots that have delalloc inodes. */
876 struct list_head delalloc_roots;
3eaa2885 877
8b712842
CM
878 /*
879 * there is a pool of worker threads for checksumming during writes
880 * and a pool for checksumming after reads. This is because readers
881 * can run with FS locks held, and the writers may be waiting for
882 * those locks. We don't want ordering in the pending list to cause
883 * deadlocks, and so the two are serviced separately.
1cc127b5
CM
884 *
885 * A third pool does submit_bio to avoid deadlocking with the other
886 * two
8b712842 887 */
d458b054
QW
888 struct btrfs_workqueue *workers;
889 struct btrfs_workqueue *delalloc_workers;
890 struct btrfs_workqueue *flush_workers;
891 struct btrfs_workqueue *endio_workers;
892 struct btrfs_workqueue *endio_meta_workers;
893 struct btrfs_workqueue *endio_raid56_workers;
8b110e39 894 struct btrfs_workqueue *endio_repair_workers;
d458b054
QW
895 struct btrfs_workqueue *rmw_workers;
896 struct btrfs_workqueue *endio_meta_write_workers;
897 struct btrfs_workqueue *endio_write_workers;
898 struct btrfs_workqueue *endio_freespace_worker;
899 struct btrfs_workqueue *submit_workers;
900 struct btrfs_workqueue *caching_workers;
901 struct btrfs_workqueue *readahead_workers;
bab39bf9 902
247e743c
CM
903 /*
904 * fixup workers take dirty pages that didn't properly go through
905 * the cow mechanism and make them safe to write. It happens
906 * for the sys_munmap function call path
907 */
d458b054
QW
908 struct btrfs_workqueue *fixup_workers;
909 struct btrfs_workqueue *delayed_workers;
a79b7d4b 910
a74a4b97
CM
911 struct task_struct *transaction_kthread;
912 struct task_struct *cleaner_kthread;
f7b885be 913 u32 thread_pool_size;
8b712842 914
6ab0a202 915 struct kobject *space_info_kobj;
9f5fae2f 916
324ae4df 917 u64 total_pinned;
b9473439 918
e2d84521
MX
919 /* used to keep from writing metadata until there is a nice batch */
920 struct percpu_counter dirty_metadata_bytes;
963d678b 921 struct percpu_counter delalloc_bytes;
4297ff84 922 struct percpu_counter dio_bytes;
e2d84521 923 s32 dirty_metadata_batch;
963d678b
MX
924 s32 delalloc_batch;
925
0b86a832
CM
926 struct list_head dirty_cowonly_roots;
927
8a4b83cc 928 struct btrfs_fs_devices *fs_devices;
4184ea7f
CM
929
930 /*
dc2d3005
JM
931 * The space_info list is effectively read only after initial
932 * setup. It is populated at mount time and cleaned up after
933 * all block groups are removed. RCU is used to protect it.
4184ea7f 934 */
6324fbf3 935 struct list_head space_info;
4184ea7f 936
b4d7c3c9
LZ
937 struct btrfs_space_info *data_sinfo;
938
5d4f98a2
YZ
939 struct reloc_control *reloc_ctl;
940
583b7231 941 /* data_alloc_cluster is only used in ssd_spread mode */
fa9c0d79
CM
942 struct btrfs_free_cluster data_alloc_cluster;
943
944 /* all metadata allocations go through this cluster */
945 struct btrfs_free_cluster meta_alloc_cluster;
d18a2c44 946
4cb5300b
CM
947 /* auto defrag inodes go here */
948 spinlock_t defrag_inodes_lock;
949 struct rb_root defrag_inodes;
950 atomic_t defrag_running;
951
de98ced9
MX
952 /* Used to protect avail_{data, metadata, system}_alloc_bits */
953 seqlock_t profiles_lock;
a46d11a8
ID
954 /*
955 * these three are in extended format (availability of single
956 * chunks is denoted by BTRFS_AVAIL_ALLOC_BIT_SINGLE bit, other
957 * types are denoted by corresponding BTRFS_BLOCK_GROUP_* bits)
958 */
d18a2c44
CM
959 u64 avail_data_alloc_bits;
960 u64 avail_metadata_alloc_bits;
961 u64 avail_system_alloc_bits;
788f20eb 962
c9e9f97b
ID
963 /* restriper state */
964 spinlock_t balance_lock;
965 struct mutex balance_mutex;
837d5b6e 966 atomic_t balance_pause_req;
a7e99c69 967 atomic_t balance_cancel_req;
c9e9f97b 968 struct btrfs_balance_control *balance_ctl;
837d5b6e 969 wait_queue_head_t balance_wait_q;
c9e9f97b 970
d612ac59
AJ
971 u32 data_chunk_allocations;
972 u32 metadata_ratio;
97e728d4 973
788f20eb 974 void *bdev_holder;
acce952b 975
a2de733c
AJ
976 /* private scrub information */
977 struct mutex scrub_lock;
978 atomic_t scrubs_running;
979 atomic_t scrub_pause_req;
980 atomic_t scrubs_paused;
981 atomic_t scrub_cancel_req;
982 wait_queue_head_t scrub_pause_wait;
c8352942
DS
983 /*
984 * The worker pointers are NULL iff the refcount is 0, ie. scrub is not
985 * running.
986 */
ff09c4ca 987 refcount_t scrub_workers_refcnt;
d458b054
QW
988 struct btrfs_workqueue *scrub_workers;
989 struct btrfs_workqueue *scrub_wr_completion_workers;
20b2e302 990 struct btrfs_workqueue *scrub_parity_workers;
a2de733c 991
21adbd5c
SB
992#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
993 u32 check_integrity_print_mask;
994#endif
416ac51d
AJ
995 /* is qgroup tracking in a consistent state? */
996 u64 qgroup_flags;
997
998 /* holds configuration and tracking. Protected by qgroup_lock */
999 struct rb_root qgroup_tree;
1000 spinlock_t qgroup_lock;
1001
1e8f9158
WS
1002 /*
1003 * used to avoid frequently calling ulist_alloc()/ulist_free()
1004 * when doing qgroup accounting, it must be protected by qgroup_lock.
1005 */
1006 struct ulist *qgroup_ulist;
1007
f2f6ed3d
WS
1008 /* protect user change for quota operations */
1009 struct mutex qgroup_ioctl_lock;
1010
416ac51d
AJ
1011 /* list of dirty qgroups to be written at next commit */
1012 struct list_head dirty_qgroups;
1013
e69bcee3 1014 /* used by qgroup for an efficient tree traversal */
416ac51d 1015 u64 qgroup_seq;
21adbd5c 1016
2f232036
JS
1017 /* qgroup rescan items */
1018 struct mutex qgroup_rescan_lock; /* protects the progress item */
1019 struct btrfs_key qgroup_rescan_progress;
d458b054 1020 struct btrfs_workqueue *qgroup_rescan_workers;
57254b6e 1021 struct completion qgroup_rescan_completion;
b382a324 1022 struct btrfs_work qgroup_rescan_work;
d2c609b8 1023 bool qgroup_rescan_running; /* protected by qgroup_rescan_lock */
2f232036 1024
acce952b 1025 /* filesystem state */
87533c47 1026 unsigned long fs_state;
16cdcec7
MX
1027
1028 struct btrfs_delayed_root *delayed_root;
af31f5e5 1029
90519d66
AJ
1030 /* readahead tree */
1031 spinlock_t reada_lock;
1032 struct radix_tree_root reada_tree;
531f4b1a 1033
2fefd558
ZL
1034 /* readahead works cnt */
1035 atomic_t reada_works_cnt;
1036
f28491e0
JB
1037 /* Extent buffer radix tree */
1038 spinlock_t buffer_lock;
1039 struct radix_tree_root buffer_radix;
1040
af31f5e5
CM
1041 /* next backup root to be overwritten */
1042 int backup_root_index;
5af3e8cc 1043
e922e087
SB
1044 /* device replace state */
1045 struct btrfs_dev_replace dev_replace;
5ac00add 1046
803b2f54 1047 struct semaphore uuid_tree_rescan_sem;
21c7e756
MX
1048
1049 /* Used to reclaim the metadata space in the background. */
1050 struct work_struct async_reclaim_work;
47ab2a6c
JB
1051
1052 spinlock_t unused_bgs_lock;
1053 struct list_head unused_bgs;
d4b450cd 1054 struct mutex unused_bg_unpin_mutex;
67c5e7d4 1055 struct mutex delete_unused_bgs_mutex;
f667aef6 1056
da17066c
JM
1057 /* Cached block sizes */
1058 u32 nodesize;
1059 u32 sectorsize;
1060 u32 stripesize;
fd708b81 1061
eede2bf3
OS
1062 /* Block groups and devices containing active swapfiles. */
1063 spinlock_t swapfile_pins_lock;
1064 struct rb_root swapfile_pins;
1065
6d97c6e3
JT
1066 struct crypto_shash *csum_shash;
1067
9e967495
FM
1068 /*
1069 * Number of send operations in progress.
1070 * Updated while holding fs_info::balance_mutex.
1071 */
1072 int send_in_progress;
1073
fd708b81
JB
1074#ifdef CONFIG_BTRFS_FS_REF_VERIFY
1075 spinlock_t ref_verify_lock;
1076 struct rb_root block_tree;
1077#endif
324ae4df 1078};
0b86a832 1079
da17066c
JM
1080static inline struct btrfs_fs_info *btrfs_sb(struct super_block *sb)
1081{
1082 return sb->s_fs_info;
1083}
1084
8257b2dc
MX
1085struct btrfs_subvolume_writers {
1086 struct percpu_counter counter;
1087 wait_queue_head_t wait;
1088};
1089
27cdeb70
MX
1090/*
1091 * The state of btrfs root
1092 */
61fa90c1
DS
1093enum {
1094 /*
1095 * btrfs_record_root_in_trans is a multi-step process, and it can race
1096 * with the balancing code. But the race is very small, and only the
1097 * first time the root is added to each transaction. So IN_TRANS_SETUP
1098 * is used to tell us when more checks are required
1099 */
1100 BTRFS_ROOT_IN_TRANS_SETUP,
1101 BTRFS_ROOT_REF_COWS,
1102 BTRFS_ROOT_TRACK_DIRTY,
1103 BTRFS_ROOT_IN_RADIX,
1104 BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
1105 BTRFS_ROOT_DEFRAG_RUNNING,
1106 BTRFS_ROOT_FORCE_COW,
1107 BTRFS_ROOT_MULTI_LOG_TASKS,
1108 BTRFS_ROOT_DIRTY,
83354f07 1109 BTRFS_ROOT_DELETING,
d2311e69
QW
1110
1111 /*
1112 * Reloc tree is orphan, only kept here for qgroup delayed subtree scan
1113 *
1114 * Set for the subvolume tree owning the reloc tree.
1115 */
1116 BTRFS_ROOT_DEAD_RELOC_TREE,
78c52d9e
JB
1117 /* Mark dead root stored on device whose cleanup needs to be resumed */
1118 BTRFS_ROOT_DEAD_TREE,
61fa90c1 1119};
27cdeb70 1120
370a11b8
QW
1121/*
1122 * Record swapped tree blocks of a subvolume tree for delayed subtree trace
1123 * code. For detail check comment in fs/btrfs/qgroup.c.
1124 */
1125struct btrfs_qgroup_swapped_blocks {
1126 spinlock_t lock;
1127 /* RM_EMPTY_ROOT() of above blocks[] */
1128 bool swapped;
1129 struct rb_root blocks[BTRFS_MAX_LEVEL];
1130};
1131
9f5fae2f
CM
1132/*
1133 * in ram representation of the tree. extent_root is used for all allocations
f2458e1d 1134 * and for the extent tree extent_root root.
9f5fae2f
CM
1135 */
1136struct btrfs_root {
5f39d397 1137 struct extent_buffer *node;
925baedd 1138
5f39d397 1139 struct extent_buffer *commit_root;
e02119d5 1140 struct btrfs_root *log_root;
1a40e23b 1141 struct btrfs_root *reloc_root;
31153d81 1142
27cdeb70 1143 unsigned long state;
62e2749e
CM
1144 struct btrfs_root_item root_item;
1145 struct btrfs_key root_key;
9f5fae2f 1146 struct btrfs_fs_info *fs_info;
d0c803c4
CM
1147 struct extent_io_tree dirty_log_pages;
1148
a2135011 1149 struct mutex objectid_mutex;
7237f183 1150
f0486c68
YZ
1151 spinlock_t accounting_lock;
1152 struct btrfs_block_rsv *block_rsv;
1153
581bb050 1154 /* free ino cache stuff */
581bb050 1155 struct btrfs_free_space_ctl *free_ino_ctl;
57cdc8db
DS
1156 enum btrfs_caching_type ino_cache_state;
1157 spinlock_t ino_cache_lock;
1158 wait_queue_head_t ino_cache_wait;
581bb050 1159 struct btrfs_free_space_ctl *free_ino_pinned;
57cdc8db
DS
1160 u64 ino_cache_progress;
1161 struct inode *ino_cache_inode;
581bb050 1162
e02119d5 1163 struct mutex log_mutex;
7237f183
YZ
1164 wait_queue_head_t log_writer_wait;
1165 wait_queue_head_t log_commit_wait[2];
8b050d35 1166 struct list_head log_ctxs[2];
7237f183
YZ
1167 atomic_t log_writers;
1168 atomic_t log_commit[2];
2ecb7923 1169 atomic_t log_batch;
bb14a59b 1170 int log_transid;
d1433deb
MX
1171 /* No matter the commit succeeds or not*/
1172 int log_transid_committed;
1173 /* Just be updated when the commit succeeds. */
bb14a59b 1174 int last_log_commit;
ff782e0a 1175 pid_t log_start_pid;
ea8c2819 1176
0f7d52f4 1177 u64 last_trans;
5f39d397 1178
9f5fae2f 1179 u32 type;
13a8a7c8
YZ
1180
1181 u64 highest_objectid;
7585717f 1182
3f157a2f 1183 u64 defrag_trans_start;
6702ed49 1184 struct btrfs_key defrag_progress;
0ef3e66b 1185 struct btrfs_key defrag_max;
0b86a832
CM
1186
1187 /* the dirty list is only used by non-reference counted roots */
1188 struct list_head dirty_list;
7b128766 1189
5d4f98a2
YZ
1190 struct list_head root_list;
1191
2ab28f32
JB
1192 spinlock_t log_extents_lock[2];
1193 struct list_head logged_list[2];
1194
d68fc57b 1195 int orphan_cleanup_state;
3394e160 1196
5d4f98a2
YZ
1197 spinlock_t inode_lock;
1198 /* red-black tree that keeps track of in-memory inodes */
1199 struct rb_root inode_tree;
1200
16cdcec7
MX
1201 /*
1202 * radix tree that keeps track of delayed nodes of every inode,
1203 * protected by inode_lock
1204 */
1205 struct radix_tree_root delayed_nodes_tree;
3394e160
CM
1206 /*
1207 * right now this just gets used so that a root has its own devid
1208 * for stat. It may be used for more later
1209 */
0ee5dc67 1210 dev_t anon_dev;
f1ebcc74 1211
5f3ab90a 1212 spinlock_t root_item_lock;
0700cea7 1213 refcount_t refs;
eb73c1b7 1214
573bfb72 1215 struct mutex delalloc_mutex;
eb73c1b7
MX
1216 spinlock_t delalloc_lock;
1217 /*
1218 * all of the inodes that have delalloc bytes. It is possible for
1219 * this list to be empty even when there is still dirty data=ordered
1220 * extents waiting to finish IO.
1221 */
1222 struct list_head delalloc_inodes;
1223 struct list_head delalloc_root;
1224 u64 nr_delalloc_inodes;
31f3d255
MX
1225
1226 struct mutex ordered_extent_mutex;
199c2a9c
MX
1227 /*
1228 * this is used by the balancing code to wait for all the pending
1229 * ordered extents
1230 */
1231 spinlock_t ordered_extent_lock;
1232
1233 /*
1234 * all of the data=ordered extents pending writeback
1235 * these can span multiple transactions and basically include
1236 * every dirty data page that isn't from nodatacow
1237 */
1238 struct list_head ordered_extents;
1239 struct list_head ordered_root;
1240 u64 nr_ordered_extents;
2c686537 1241
d2311e69
QW
1242 /*
1243 * Not empty if this subvolume root has gone through tree block swap
1244 * (relocation)
1245 *
1246 * Will be used by reloc_control::dirty_subvol_roots.
1247 */
1248 struct list_head reloc_dirty_list;
1249
2c686537
DS
1250 /*
1251 * Number of currently running SEND ioctls to prevent
1252 * manipulation with the read-only status via SUBVOL_SETFLAGS
1253 */
1254 int send_in_progress;
62d54f3a
FM
1255 /*
1256 * Number of currently running deduplication operations that have a
1257 * destination inode belonging to this root. Protected by the lock
1258 * root_item_lock.
1259 */
1260 int dedupe_in_progress;
8257b2dc 1261 struct btrfs_subvolume_writers *subv_writers;
ea14b57f 1262 atomic_t will_be_snapshotted;
8ecebf4d 1263 atomic_t snapshot_force_cow;
8287475a
QW
1264
1265 /* For qgroup metadata reserved space */
1266 spinlock_t qgroup_meta_rsv_lock;
1267 u64 qgroup_meta_rsv_pertrans;
1268 u64 qgroup_meta_rsv_prealloc;
57ec5fb4 1269
eede2bf3
OS
1270 /* Number of active swapfiles */
1271 atomic_t nr_swapfiles;
1272
370a11b8
QW
1273 /* Record pairs of swapped blocks for qgroup */
1274 struct btrfs_qgroup_swapped_blocks swapped_blocks;
1275
57ec5fb4
DS
1276#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
1277 u64 alloc_bytenr;
1278#endif
62e2749e 1279};
118c701e 1280
23b5ec74 1281struct btrfs_file_private {
23b5ec74
JB
1282 void *filldir_buf;
1283};
1284
da17066c
JM
1285static inline u32 btrfs_inode_sectorsize(const struct inode *inode)
1286{
1287 return btrfs_sb(inode->i_sb)->sectorsize;
1288}
62e2749e 1289
da17066c 1290static inline u32 BTRFS_LEAF_DATA_SIZE(const struct btrfs_fs_info *info)
1db1ff92 1291{
118c701e
NB
1292
1293 return info->nodesize - sizeof(struct btrfs_header);
1db1ff92
JM
1294}
1295
3d9ec8c4
NB
1296#define BTRFS_LEAF_DATA_OFFSET offsetof(struct btrfs_leaf, items)
1297
da17066c 1298static inline u32 BTRFS_MAX_ITEM_SIZE(const struct btrfs_fs_info *info)
1db1ff92 1299{
da17066c 1300 return BTRFS_LEAF_DATA_SIZE(info) - sizeof(struct btrfs_item);
1db1ff92
JM
1301}
1302
da17066c 1303static inline u32 BTRFS_NODEPTRS_PER_BLOCK(const struct btrfs_fs_info *info)
1db1ff92 1304{
da17066c 1305 return BTRFS_LEAF_DATA_SIZE(info) / sizeof(struct btrfs_key_ptr);
1db1ff92
JM
1306}
1307
1308#define BTRFS_FILE_EXTENT_INLINE_DATA_START \
1309 (offsetof(struct btrfs_file_extent_item, disk_bytenr))
da17066c 1310static inline u32 BTRFS_MAX_INLINE_DATA_SIZE(const struct btrfs_fs_info *info)
1db1ff92 1311{
da17066c 1312 return BTRFS_MAX_ITEM_SIZE(info) -
1db1ff92
JM
1313 BTRFS_FILE_EXTENT_INLINE_DATA_START;
1314}
1315
da17066c 1316static inline u32 BTRFS_MAX_XATTR_SIZE(const struct btrfs_fs_info *info)
1db1ff92 1317{
da17066c 1318 return BTRFS_MAX_ITEM_SIZE(info) - sizeof(struct btrfs_dir_item);
1db1ff92
JM
1319}
1320
0942caa3
DS
1321/*
1322 * Flags for mount options.
1323 *
1324 * Note: don't forget to add new options to btrfs_show_options()
1325 */
21ad10cf
CM
1326#define BTRFS_MOUNT_NODATASUM (1 << 0)
1327#define BTRFS_MOUNT_NODATACOW (1 << 1)
1328#define BTRFS_MOUNT_NOBARRIER (1 << 2)
e18e4809 1329#define BTRFS_MOUNT_SSD (1 << 3)
dfe25020 1330#define BTRFS_MOUNT_DEGRADED (1 << 4)
c8b97818 1331#define BTRFS_MOUNT_COMPRESS (1 << 5)
3a5e1404 1332#define BTRFS_MOUNT_NOTREELOG (1 << 6)
dccae999 1333#define BTRFS_MOUNT_FLUSHONCOMMIT (1 << 7)
451d7585 1334#define BTRFS_MOUNT_SSD_SPREAD (1 << 8)
c289811c 1335#define BTRFS_MOUNT_NOSSD (1 << 9)
e244a0ae 1336#define BTRFS_MOUNT_DISCARD (1 << 10)
a555f810 1337#define BTRFS_MOUNT_FORCE_COMPRESS (1 << 11)
0af3d00b 1338#define BTRFS_MOUNT_SPACE_CACHE (1 << 12)
88c2ba3b 1339#define BTRFS_MOUNT_CLEAR_CACHE (1 << 13)
4260f7c7 1340#define BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED (1 << 14)
91435650 1341#define BTRFS_MOUNT_ENOSPC_DEBUG (1 << 15)
4cb5300b 1342#define BTRFS_MOUNT_AUTO_DEFRAG (1 << 16)
4b9465cb 1343#define BTRFS_MOUNT_INODE_MAP_CACHE (1 << 17)
8dcddfa0 1344#define BTRFS_MOUNT_USEBACKUPROOT (1 << 18)
9555c6c1 1345#define BTRFS_MOUNT_SKIP_BALANCE (1 << 19)
c126dea7
CM
1346#define BTRFS_MOUNT_CHECK_INTEGRITY (1 << 20)
1347#define BTRFS_MOUNT_CHECK_INTEGRITY_INCLUDING_EXTENT_DATA (1 << 21)
8c342930 1348#define BTRFS_MOUNT_PANIC_ON_FATAL_ERROR (1 << 22)
f420ee1e 1349#define BTRFS_MOUNT_RESCAN_UUID_TREE (1 << 23)
d0bd4560
JB
1350#define BTRFS_MOUNT_FRAGMENT_DATA (1 << 24)
1351#define BTRFS_MOUNT_FRAGMENT_METADATA (1 << 25)
f7d3d2f9 1352#define BTRFS_MOUNT_FREE_SPACE_TREE (1 << 26)
96da0919 1353#define BTRFS_MOUNT_NOLOGREPLAY (1 << 27)
fb592373 1354#define BTRFS_MOUNT_REF_VERIFY (1 << 28)
b6cda9bc 1355
8b87dc17 1356#define BTRFS_DEFAULT_COMMIT_INTERVAL (30)
f7e98a7f 1357#define BTRFS_DEFAULT_MAX_INLINE (2048)
8b87dc17 1358
b6cda9bc
CM
1359#define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
1360#define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
dc81cdc5 1361#define btrfs_raw_test_opt(o, opt) ((o) & BTRFS_MOUNT_##opt)
3cdde224 1362#define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
b6cda9bc 1363 BTRFS_MOUNT_##opt)
572d9ab7 1364
3cdde224 1365#define btrfs_set_and_info(fs_info, opt, fmt, args...) \
9d89ce65 1366{ \
3cdde224
JM
1367 if (!btrfs_test_opt(fs_info, opt)) \
1368 btrfs_info(fs_info, fmt, ##args); \
1369 btrfs_set_opt(fs_info->mount_opt, opt); \
9d89ce65
WS
1370}
1371
3cdde224 1372#define btrfs_clear_and_info(fs_info, opt, fmt, args...) \
9d89ce65 1373{ \
3cdde224
JM
1374 if (btrfs_test_opt(fs_info, opt)) \
1375 btrfs_info(fs_info, fmt, ##args); \
1376 btrfs_clear_opt(fs_info->mount_opt, opt); \
9d89ce65
WS
1377}
1378
d0bd4560
JB
1379#ifdef CONFIG_BTRFS_DEBUG
1380static inline int
2ff7e61e 1381btrfs_should_fragment_free_space(struct btrfs_block_group_cache *block_group)
d0bd4560 1382{
2ff7e61e 1383 struct btrfs_fs_info *fs_info = block_group->fs_info;
0b246afa
JM
1384
1385 return (btrfs_test_opt(fs_info, FRAGMENT_METADATA) &&
d0bd4560 1386 block_group->flags & BTRFS_BLOCK_GROUP_METADATA) ||
0b246afa 1387 (btrfs_test_opt(fs_info, FRAGMENT_DATA) &&
d0bd4560
JB
1388 block_group->flags & BTRFS_BLOCK_GROUP_DATA);
1389}
1390#endif
1391
572d9ab7
DS
1392/*
1393 * Requests for changes that need to be done during transaction commit.
1394 *
1395 * Internal mount options that are used for special handling of the real
1396 * mount options (eg. cannot be set during remount and have to be set during
1397 * transaction commit)
1398 */
1399
7e1876ac
DS
1400#define BTRFS_PENDING_SET_INODE_MAP_CACHE (0)
1401#define BTRFS_PENDING_CLEAR_INODE_MAP_CACHE (1)
d51033d0 1402#define BTRFS_PENDING_COMMIT (2)
7e1876ac 1403
572d9ab7
DS
1404#define btrfs_test_pending(info, opt) \
1405 test_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1406#define btrfs_set_pending(info, opt) \
1407 set_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1408#define btrfs_clear_pending(info, opt) \
1409 clear_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1410
1411/*
1412 * Helpers for setting pending mount option changes.
1413 *
1414 * Expects corresponding macros
1415 * BTRFS_PENDING_SET_ and CLEAR_ + short mount option name
1416 */
1417#define btrfs_set_pending_and_info(info, opt, fmt, args...) \
1418do { \
1419 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1420 btrfs_info((info), fmt, ##args); \
1421 btrfs_set_pending((info), SET_##opt); \
1422 btrfs_clear_pending((info), CLEAR_##opt); \
1423 } \
1424} while(0)
1425
1426#define btrfs_clear_pending_and_info(info, opt, fmt, args...) \
1427do { \
1428 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1429 btrfs_info((info), fmt, ##args); \
1430 btrfs_set_pending((info), CLEAR_##opt); \
1431 btrfs_clear_pending((info), SET_##opt); \
1432 } \
1433} while(0)
1434
b98b6767
Y
1435/*
1436 * Inode flags
1437 */
fdebe2bd
Y
1438#define BTRFS_INODE_NODATASUM (1 << 0)
1439#define BTRFS_INODE_NODATACOW (1 << 1)
1440#define BTRFS_INODE_READONLY (1 << 2)
c8b97818 1441#define BTRFS_INODE_NOCOMPRESS (1 << 3)
d899e052 1442#define BTRFS_INODE_PREALLOC (1 << 4)
6cbff00f
CH
1443#define BTRFS_INODE_SYNC (1 << 5)
1444#define BTRFS_INODE_IMMUTABLE (1 << 6)
1445#define BTRFS_INODE_APPEND (1 << 7)
1446#define BTRFS_INODE_NODUMP (1 << 8)
1447#define BTRFS_INODE_NOATIME (1 << 9)
1448#define BTRFS_INODE_DIRSYNC (1 << 10)
75e7cb7f 1449#define BTRFS_INODE_COMPRESS (1 << 11)
6cbff00f 1450
08fe4db1
LZ
1451#define BTRFS_INODE_ROOT_ITEM_INIT (1 << 31)
1452
496245ca
QW
1453#define BTRFS_INODE_FLAG_MASK \
1454 (BTRFS_INODE_NODATASUM | \
1455 BTRFS_INODE_NODATACOW | \
1456 BTRFS_INODE_READONLY | \
1457 BTRFS_INODE_NOCOMPRESS | \
1458 BTRFS_INODE_PREALLOC | \
1459 BTRFS_INODE_SYNC | \
1460 BTRFS_INODE_IMMUTABLE | \
1461 BTRFS_INODE_APPEND | \
1462 BTRFS_INODE_NODUMP | \
1463 BTRFS_INODE_NOATIME | \
1464 BTRFS_INODE_DIRSYNC | \
1465 BTRFS_INODE_COMPRESS | \
1466 BTRFS_INODE_ROOT_ITEM_INIT)
1467
cfed81a0 1468struct btrfs_map_token {
1cbb1f45 1469 const struct extent_buffer *eb;
cfed81a0
CM
1470 char *kaddr;
1471 unsigned long offset;
1472};
1473
2e78c927
CR
1474#define BTRFS_BYTES_TO_BLKS(fs_info, bytes) \
1475 ((bytes) >> (fs_info)->sb->s_blocksize_bits)
1476
cfed81a0
CM
1477static inline void btrfs_init_map_token (struct btrfs_map_token *token)
1478{
ad914559 1479 token->kaddr = NULL;
cfed81a0
CM
1480}
1481
01327610 1482/* some macros to generate set/get functions for the struct fields. This
5f39d397
CM
1483 * assumes there is a lefoo_to_cpu for every type, so lets make a simple
1484 * one for u8:
1485 */
1486#define le8_to_cpu(v) (v)
1487#define cpu_to_le8(v) (v)
1488#define __le8 u8
1489
62e85577 1490#define read_eb_member(eb, ptr, type, member, result) (\
5f39d397
CM
1491 read_extent_buffer(eb, (char *)(result), \
1492 ((unsigned long)(ptr)) + \
1493 offsetof(type, member), \
1494 sizeof(((type *)0)->member)))
1495
62e85577 1496#define write_eb_member(eb, ptr, type, member, result) (\
5f39d397
CM
1497 write_extent_buffer(eb, (char *)(result), \
1498 ((unsigned long)(ptr)) + \
1499 offsetof(type, member), \
1500 sizeof(((type *)0)->member)))
1501
18077bb4 1502#define DECLARE_BTRFS_SETGET_BITS(bits) \
1cbb1f45
JM
1503u##bits btrfs_get_token_##bits(const struct extent_buffer *eb, \
1504 const void *ptr, unsigned long off, \
1505 struct btrfs_map_token *token); \
1506void btrfs_set_token_##bits(struct extent_buffer *eb, const void *ptr, \
18077bb4
LZ
1507 unsigned long off, u##bits val, \
1508 struct btrfs_map_token *token); \
1cbb1f45
JM
1509static inline u##bits btrfs_get_##bits(const struct extent_buffer *eb, \
1510 const void *ptr, \
18077bb4
LZ
1511 unsigned long off) \
1512{ \
1513 return btrfs_get_token_##bits(eb, ptr, off, NULL); \
1514} \
1cbb1f45 1515static inline void btrfs_set_##bits(struct extent_buffer *eb, void *ptr,\
18077bb4
LZ
1516 unsigned long off, u##bits val) \
1517{ \
1518 btrfs_set_token_##bits(eb, ptr, off, val, NULL); \
1519}
1520
1521DECLARE_BTRFS_SETGET_BITS(8)
1522DECLARE_BTRFS_SETGET_BITS(16)
1523DECLARE_BTRFS_SETGET_BITS(32)
1524DECLARE_BTRFS_SETGET_BITS(64)
1525
5f39d397 1526#define BTRFS_SETGET_FUNCS(name, type, member, bits) \
1cbb1f45
JM
1527static inline u##bits btrfs_##name(const struct extent_buffer *eb, \
1528 const type *s) \
18077bb4
LZ
1529{ \
1530 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1531 return btrfs_get_##bits(eb, s, offsetof(type, member)); \
1532} \
1533static inline void btrfs_set_##name(struct extent_buffer *eb, type *s, \
1534 u##bits val) \
1535{ \
1536 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1537 btrfs_set_##bits(eb, s, offsetof(type, member), val); \
1538} \
1cbb1f45
JM
1539static inline u##bits btrfs_token_##name(const struct extent_buffer *eb,\
1540 const type *s, \
18077bb4
LZ
1541 struct btrfs_map_token *token) \
1542{ \
1543 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1544 return btrfs_get_token_##bits(eb, s, offsetof(type, member), token); \
1545} \
1546static inline void btrfs_set_token_##name(struct extent_buffer *eb, \
1547 type *s, u##bits val, \
1548 struct btrfs_map_token *token) \
1549{ \
1550 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1551 btrfs_set_token_##bits(eb, s, offsetof(type, member), val, token); \
1552}
5f39d397
CM
1553
1554#define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
1cbb1f45 1555static inline u##bits btrfs_##name(const struct extent_buffer *eb) \
5f39d397 1556{ \
1cbb1f45 1557 const type *p = page_address(eb->pages[0]); \
df68b8a7 1558 u##bits res = le##bits##_to_cpu(p->member); \
810191ff 1559 return res; \
5f39d397
CM
1560} \
1561static inline void btrfs_set_##name(struct extent_buffer *eb, \
1562 u##bits val) \
1563{ \
727011e0 1564 type *p = page_address(eb->pages[0]); \
df68b8a7 1565 p->member = cpu_to_le##bits(val); \
5f39d397 1566}
9078a3e1 1567
5f39d397 1568#define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
1cbb1f45 1569static inline u##bits btrfs_##name(const type *s) \
5f39d397
CM
1570{ \
1571 return le##bits##_to_cpu(s->member); \
1572} \
1573static inline void btrfs_set_##name(type *s, u##bits val) \
1574{ \
1575 s->member = cpu_to_le##bits(val); \
1e1d2701
CM
1576}
1577
eca152ed
NB
1578
1579static inline u64 btrfs_device_total_bytes(struct extent_buffer *eb,
1580 struct btrfs_dev_item *s)
1581{
1582 BUILD_BUG_ON(sizeof(u64) !=
1583 sizeof(((struct btrfs_dev_item *)0))->total_bytes);
1584 return btrfs_get_64(eb, s, offsetof(struct btrfs_dev_item,
1585 total_bytes));
1586}
1587static inline void btrfs_set_device_total_bytes(struct extent_buffer *eb,
1588 struct btrfs_dev_item *s,
1589 u64 val)
1590{
1591 BUILD_BUG_ON(sizeof(u64) !=
1592 sizeof(((struct btrfs_dev_item *)0))->total_bytes);
7dfb8be1 1593 WARN_ON(!IS_ALIGNED(val, eb->fs_info->sectorsize));
eca152ed
NB
1594 btrfs_set_64(eb, s, offsetof(struct btrfs_dev_item, total_bytes), val);
1595}
1596
1597
0b86a832 1598BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
0b86a832
CM
1599BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1600BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1601BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
c3027eb5
CM
1602BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1603 start_offset, 64);
0b86a832
CM
1604BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1605BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
e17cade2
CM
1606BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1607BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
1608BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
2b82032c 1609BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
0b86a832 1610
8a4b83cc
CM
1611BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1612BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1613 total_bytes, 64);
1614BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1615 bytes_used, 64);
1616BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1617 io_align, 32);
1618BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1619 io_width, 32);
1620BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1621 sector_size, 32);
1622BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
e17cade2
CM
1623BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1624 dev_group, 32);
1625BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1626 seek_speed, 8);
1627BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1628 bandwidth, 8);
2b82032c
YZ
1629BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1630 generation, 64);
8a4b83cc 1631
410ba3a2 1632static inline unsigned long btrfs_device_uuid(struct btrfs_dev_item *d)
0b86a832 1633{
410ba3a2 1634 return (unsigned long)d + offsetof(struct btrfs_dev_item, uuid);
0b86a832
CM
1635}
1636
1473b24e 1637static inline unsigned long btrfs_device_fsid(struct btrfs_dev_item *d)
2b82032c 1638{
1473b24e 1639 return (unsigned long)d + offsetof(struct btrfs_dev_item, fsid);
2b82032c
YZ
1640}
1641
e17cade2 1642BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
0b86a832
CM
1643BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1644BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1645BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1646BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1647BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1648BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1649BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
321aecc6 1650BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
0b86a832
CM
1651BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1652BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1653
e17cade2
CM
1654static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1655{
1656 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1657}
1658
1659BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
0b86a832
CM
1660BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1661BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1662 stripe_len, 64);
1663BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1664 io_align, 32);
1665BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1666 io_width, 32);
1667BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1668 sector_size, 32);
1669BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1670BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1671 num_stripes, 16);
321aecc6
CM
1672BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1673 sub_stripes, 16);
0b86a832
CM
1674BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1675BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1676
1677static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1678 int nr)
1679{
1680 unsigned long offset = (unsigned long)c;
1681 offset += offsetof(struct btrfs_chunk, stripe);
1682 offset += nr * sizeof(struct btrfs_stripe);
1683 return (struct btrfs_stripe *)offset;
1684}
1685
a443755f
CM
1686static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1687{
1688 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1689}
1690
0b86a832
CM
1691static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
1692 struct btrfs_chunk *c, int nr)
1693{
1694 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1695}
1696
0b86a832
CM
1697static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
1698 struct btrfs_chunk *c, int nr)
1699{
1700 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1701}
1702
5f39d397
CM
1703/* struct btrfs_block_group_item */
1704BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
1705 used, 64);
1706BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
1707 used, 64);
0b86a832
CM
1708BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
1709 struct btrfs_block_group_item, chunk_objectid, 64);
e17cade2
CM
1710
1711BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
0b86a832
CM
1712 struct btrfs_block_group_item, chunk_objectid, 64);
1713BTRFS_SETGET_FUNCS(disk_block_group_flags,
1714 struct btrfs_block_group_item, flags, 64);
1715BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1716 struct btrfs_block_group_item, flags, 64);
1e1d2701 1717
208acb8c
OS
1718/* struct btrfs_free_space_info */
1719BTRFS_SETGET_FUNCS(free_space_extent_count, struct btrfs_free_space_info,
1720 extent_count, 32);
1721BTRFS_SETGET_FUNCS(free_space_flags, struct btrfs_free_space_info, flags, 32);
1722
3954401f
CM
1723/* struct btrfs_inode_ref */
1724BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
aec7477b 1725BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
3954401f 1726
f186373f
MF
1727/* struct btrfs_inode_extref */
1728BTRFS_SETGET_FUNCS(inode_extref_parent, struct btrfs_inode_extref,
1729 parent_objectid, 64);
1730BTRFS_SETGET_FUNCS(inode_extref_name_len, struct btrfs_inode_extref,
1731 name_len, 16);
1732BTRFS_SETGET_FUNCS(inode_extref_index, struct btrfs_inode_extref, index, 64);
1733
5f39d397
CM
1734/* struct btrfs_inode_item */
1735BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
c3027eb5 1736BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
e02119d5 1737BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
5f39d397 1738BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
a76a3cd4 1739BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
5f39d397
CM
1740BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1741BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1742BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1743BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1744BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
0b86a832 1745BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
f2b636e8 1746BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
3cae210f
QW
1747BTRFS_SETGET_STACK_FUNCS(stack_inode_generation, struct btrfs_inode_item,
1748 generation, 64);
1749BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence, struct btrfs_inode_item,
1750 sequence, 64);
1751BTRFS_SETGET_STACK_FUNCS(stack_inode_transid, struct btrfs_inode_item,
1752 transid, 64);
1753BTRFS_SETGET_STACK_FUNCS(stack_inode_size, struct btrfs_inode_item, size, 64);
1754BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes, struct btrfs_inode_item,
1755 nbytes, 64);
1756BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group, struct btrfs_inode_item,
1757 block_group, 64);
1758BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink, struct btrfs_inode_item, nlink, 32);
1759BTRFS_SETGET_STACK_FUNCS(stack_inode_uid, struct btrfs_inode_item, uid, 32);
1760BTRFS_SETGET_STACK_FUNCS(stack_inode_gid, struct btrfs_inode_item, gid, 32);
1761BTRFS_SETGET_STACK_FUNCS(stack_inode_mode, struct btrfs_inode_item, mode, 32);
1762BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev, struct btrfs_inode_item, rdev, 64);
1763BTRFS_SETGET_STACK_FUNCS(stack_inode_flags, struct btrfs_inode_item, flags, 64);
0b86a832
CM
1764BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1765BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
3cae210f
QW
1766BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec, sec, 64);
1767BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec, nsec, 32);
e20d96d6 1768
0b86a832 1769/* struct btrfs_dev_extent */
e17cade2
CM
1770BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1771 chunk_tree, 64);
1772BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1773 chunk_objectid, 64);
1774BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1775 chunk_offset, 64);
0b86a832
CM
1776BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1777
231e88f4 1778static inline unsigned long btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
e17cade2
CM
1779{
1780 unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
231e88f4 1781 return (unsigned long)dev + ptr;
e17cade2
CM
1782}
1783
5d4f98a2
YZ
1784BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1785BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1786 generation, 64);
1787BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
74493f7a 1788
5d4f98a2
YZ
1789BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
1790
1791
1792BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1793
1794static inline void btrfs_tree_block_key(struct extent_buffer *eb,
1795 struct btrfs_tree_block_info *item,
1796 struct btrfs_disk_key *key)
1797{
1798 read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1799}
1800
1801static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
1802 struct btrfs_tree_block_info *item,
1803 struct btrfs_disk_key *key)
1804{
1805 write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1806}
e20d96d6 1807
5d4f98a2
YZ
1808BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1809 root, 64);
1810BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1811 objectid, 64);
1812BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1813 offset, 64);
1814BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1815 count, 32);
1816
1817BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1818 count, 32);
1819
1820BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1821 type, 8);
1822BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1823 offset, 64);
1824
1825static inline u32 btrfs_extent_inline_ref_size(int type)
1826{
1827 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1828 type == BTRFS_SHARED_BLOCK_REF_KEY)
1829 return sizeof(struct btrfs_extent_inline_ref);
1830 if (type == BTRFS_SHARED_DATA_REF_KEY)
1831 return sizeof(struct btrfs_shared_data_ref) +
1832 sizeof(struct btrfs_extent_inline_ref);
1833 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1834 return sizeof(struct btrfs_extent_data_ref) +
1835 offsetof(struct btrfs_extent_inline_ref, offset);
5d4f98a2
YZ
1836 return 0;
1837}
1838
1839BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
1840BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
1841 generation, 64);
1842BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
1843BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
e20d96d6 1844
5f39d397
CM
1845/* struct btrfs_node */
1846BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
74493f7a 1847BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
3cae210f
QW
1848BTRFS_SETGET_STACK_FUNCS(stack_key_blockptr, struct btrfs_key_ptr,
1849 blockptr, 64);
1850BTRFS_SETGET_STACK_FUNCS(stack_key_generation, struct btrfs_key_ptr,
1851 generation, 64);
e20d96d6 1852
5f39d397 1853static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
cf27e1ee 1854{
5f39d397
CM
1855 unsigned long ptr;
1856 ptr = offsetof(struct btrfs_node, ptrs) +
1857 sizeof(struct btrfs_key_ptr) * nr;
1858 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
cf27e1ee
CM
1859}
1860
5f39d397
CM
1861static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1862 int nr, u64 val)
cf27e1ee 1863{
5f39d397
CM
1864 unsigned long ptr;
1865 ptr = offsetof(struct btrfs_node, ptrs) +
1866 sizeof(struct btrfs_key_ptr) * nr;
1867 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
cf27e1ee
CM
1868}
1869
74493f7a
CM
1870static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1871{
1872 unsigned long ptr;
1873 ptr = offsetof(struct btrfs_node, ptrs) +
1874 sizeof(struct btrfs_key_ptr) * nr;
1875 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1876}
1877
1878static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1879 int nr, u64 val)
1880{
1881 unsigned long ptr;
1882 ptr = offsetof(struct btrfs_node, ptrs) +
1883 sizeof(struct btrfs_key_ptr) * nr;
1884 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1885}
1886
810191ff 1887static inline unsigned long btrfs_node_key_ptr_offset(int nr)
4d775673 1888{
5f39d397
CM
1889 return offsetof(struct btrfs_node, ptrs) +
1890 sizeof(struct btrfs_key_ptr) * nr;
4d775673
CM
1891}
1892
1cbb1f45 1893void btrfs_node_key(const struct extent_buffer *eb,
e644d021
CM
1894 struct btrfs_disk_key *disk_key, int nr);
1895
5f39d397
CM
1896static inline void btrfs_set_node_key(struct extent_buffer *eb,
1897 struct btrfs_disk_key *disk_key, int nr)
1d4f8a0c 1898{
5f39d397
CM
1899 unsigned long ptr;
1900 ptr = btrfs_node_key_ptr_offset(nr);
1901 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1902 struct btrfs_key_ptr, key, disk_key);
1d4f8a0c
CM
1903}
1904
5f39d397
CM
1905/* struct btrfs_item */
1906BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1907BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
3cae210f
QW
1908BTRFS_SETGET_STACK_FUNCS(stack_item_offset, struct btrfs_item, offset, 32);
1909BTRFS_SETGET_STACK_FUNCS(stack_item_size, struct btrfs_item, size, 32);
4d775673 1910
5f39d397 1911static inline unsigned long btrfs_item_nr_offset(int nr)
1d4f8a0c 1912{
5f39d397
CM
1913 return offsetof(struct btrfs_leaf, items) +
1914 sizeof(struct btrfs_item) * nr;
1d4f8a0c
CM
1915}
1916
dd3cc16b 1917static inline struct btrfs_item *btrfs_item_nr(int nr)
0783fcfc 1918{
5f39d397 1919 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
0783fcfc
CM
1920}
1921
1cbb1f45 1922static inline u32 btrfs_item_end(const struct extent_buffer *eb,
5f39d397 1923 struct btrfs_item *item)
0783fcfc 1924{
5f39d397 1925 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
0783fcfc
CM
1926}
1927
1cbb1f45 1928static inline u32 btrfs_item_end_nr(const struct extent_buffer *eb, int nr)
0783fcfc 1929{
dd3cc16b 1930 return btrfs_item_end(eb, btrfs_item_nr(nr));
0783fcfc
CM
1931}
1932
1cbb1f45 1933static inline u32 btrfs_item_offset_nr(const struct extent_buffer *eb, int nr)
0783fcfc 1934{
dd3cc16b 1935 return btrfs_item_offset(eb, btrfs_item_nr(nr));
0783fcfc
CM
1936}
1937
1cbb1f45 1938static inline u32 btrfs_item_size_nr(const struct extent_buffer *eb, int nr)
0783fcfc 1939{
dd3cc16b 1940 return btrfs_item_size(eb, btrfs_item_nr(nr));
0783fcfc
CM
1941}
1942
1cbb1f45 1943static inline void btrfs_item_key(const struct extent_buffer *eb,
5f39d397 1944 struct btrfs_disk_key *disk_key, int nr)
1d4f6404 1945{
dd3cc16b 1946 struct btrfs_item *item = btrfs_item_nr(nr);
5f39d397 1947 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1d4f6404
CM
1948}
1949
5f39d397
CM
1950static inline void btrfs_set_item_key(struct extent_buffer *eb,
1951 struct btrfs_disk_key *disk_key, int nr)
1d4f6404 1952{
dd3cc16b 1953 struct btrfs_item *item = btrfs_item_nr(nr);
5f39d397 1954 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1d4f6404
CM
1955}
1956
e02119d5
CM
1957BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1958
0660b5af
CM
1959/*
1960 * struct btrfs_root_ref
1961 */
1962BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1963BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1964BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1965
5f39d397 1966/* struct btrfs_dir_item */
5103e947 1967BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
5f39d397
CM
1968BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1969BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
e02119d5 1970BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
3cae210f
QW
1971BTRFS_SETGET_STACK_FUNCS(stack_dir_type, struct btrfs_dir_item, type, 8);
1972BTRFS_SETGET_STACK_FUNCS(stack_dir_data_len, struct btrfs_dir_item,
1973 data_len, 16);
1974BTRFS_SETGET_STACK_FUNCS(stack_dir_name_len, struct btrfs_dir_item,
1975 name_len, 16);
1976BTRFS_SETGET_STACK_FUNCS(stack_dir_transid, struct btrfs_dir_item,
1977 transid, 64);
1d4f6404 1978
1cbb1f45
JM
1979static inline void btrfs_dir_item_key(const struct extent_buffer *eb,
1980 const struct btrfs_dir_item *item,
5f39d397 1981 struct btrfs_disk_key *key)
1d4f6404 1982{
5f39d397 1983 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1d4f6404
CM
1984}
1985
5f39d397
CM
1986static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1987 struct btrfs_dir_item *item,
1cbb1f45 1988 const struct btrfs_disk_key *key)
a8a2ee0c 1989{
5f39d397 1990 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
a8a2ee0c
CM
1991}
1992
0af3d00b
JB
1993BTRFS_SETGET_FUNCS(free_space_entries, struct btrfs_free_space_header,
1994 num_entries, 64);
1995BTRFS_SETGET_FUNCS(free_space_bitmaps, struct btrfs_free_space_header,
1996 num_bitmaps, 64);
1997BTRFS_SETGET_FUNCS(free_space_generation, struct btrfs_free_space_header,
1998 generation, 64);
1999
1cbb1f45
JM
2000static inline void btrfs_free_space_key(const struct extent_buffer *eb,
2001 const struct btrfs_free_space_header *h,
0af3d00b
JB
2002 struct btrfs_disk_key *key)
2003{
2004 read_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2005}
2006
2007static inline void btrfs_set_free_space_key(struct extent_buffer *eb,
2008 struct btrfs_free_space_header *h,
1cbb1f45 2009 const struct btrfs_disk_key *key)
0af3d00b
JB
2010{
2011 write_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2012}
2013
5f39d397
CM
2014/* struct btrfs_disk_key */
2015BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
2016 objectid, 64);
2017BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
2018BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1d4f6404 2019
e2fa7227 2020static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
310712b2 2021 const struct btrfs_disk_key *disk)
e2fa7227
CM
2022{
2023 cpu->offset = le64_to_cpu(disk->offset);
5f39d397 2024 cpu->type = disk->type;
e2fa7227
CM
2025 cpu->objectid = le64_to_cpu(disk->objectid);
2026}
2027
2028static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
310712b2 2029 const struct btrfs_key *cpu)
e2fa7227
CM
2030{
2031 disk->offset = cpu_to_le64(cpu->offset);
5f39d397 2032 disk->type = cpu->type;
e2fa7227
CM
2033 disk->objectid = cpu_to_le64(cpu->objectid);
2034}
2035
1cbb1f45
JM
2036static inline void btrfs_node_key_to_cpu(const struct extent_buffer *eb,
2037 struct btrfs_key *key, int nr)
7f5c1516 2038{
5f39d397
CM
2039 struct btrfs_disk_key disk_key;
2040 btrfs_node_key(eb, &disk_key, nr);
2041 btrfs_disk_key_to_cpu(key, &disk_key);
7f5c1516
CM
2042}
2043
1cbb1f45
JM
2044static inline void btrfs_item_key_to_cpu(const struct extent_buffer *eb,
2045 struct btrfs_key *key, int nr)
7f5c1516 2046{
5f39d397
CM
2047 struct btrfs_disk_key disk_key;
2048 btrfs_item_key(eb, &disk_key, nr);
2049 btrfs_disk_key_to_cpu(key, &disk_key);
7f5c1516
CM
2050}
2051
1cbb1f45
JM
2052static inline void btrfs_dir_item_key_to_cpu(const struct extent_buffer *eb,
2053 const struct btrfs_dir_item *item,
2054 struct btrfs_key *key)
4d775673 2055{
5f39d397
CM
2056 struct btrfs_disk_key disk_key;
2057 btrfs_dir_item_key(eb, item, &disk_key);
2058 btrfs_disk_key_to_cpu(key, &disk_key);
4d775673
CM
2059}
2060
310712b2 2061static inline u8 btrfs_key_type(const struct btrfs_key *key)
3768f368 2062{
5f39d397 2063 return key->type;
3768f368
CM
2064}
2065
5f39d397 2066static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
3768f368 2067{
5f39d397 2068 key->type = val;
3768f368
CM
2069}
2070
5f39d397 2071/* struct btrfs_header */
db94535d 2072BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
5f39d397
CM
2073BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
2074 generation, 64);
2075BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
2076BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
63b10fc4 2077BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
5f39d397 2078BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
3cae210f
QW
2079BTRFS_SETGET_STACK_FUNCS(stack_header_generation, struct btrfs_header,
2080 generation, 64);
2081BTRFS_SETGET_STACK_FUNCS(stack_header_owner, struct btrfs_header, owner, 64);
2082BTRFS_SETGET_STACK_FUNCS(stack_header_nritems, struct btrfs_header,
2083 nritems, 32);
2084BTRFS_SETGET_STACK_FUNCS(stack_header_bytenr, struct btrfs_header, bytenr, 64);
0f7d52f4 2085
1cbb1f45 2086static inline int btrfs_header_flag(const struct extent_buffer *eb, u64 flag)
63b10fc4
CM
2087{
2088 return (btrfs_header_flags(eb) & flag) == flag;
2089}
2090
80fbc341 2091static inline void btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
63b10fc4
CM
2092{
2093 u64 flags = btrfs_header_flags(eb);
2094 btrfs_set_header_flags(eb, flags | flag);
63b10fc4
CM
2095}
2096
80fbc341 2097static inline void btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
63b10fc4
CM
2098{
2099 u64 flags = btrfs_header_flags(eb);
2100 btrfs_set_header_flags(eb, flags & ~flag);
63b10fc4
CM
2101}
2102
1cbb1f45 2103static inline int btrfs_header_backref_rev(const struct extent_buffer *eb)
5d4f98a2
YZ
2104{
2105 u64 flags = btrfs_header_flags(eb);
2106 return flags >> BTRFS_BACKREF_REV_SHIFT;
2107}
2108
2109static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
2110 int rev)
2111{
2112 u64 flags = btrfs_header_flags(eb);
2113 flags &= ~BTRFS_BACKREF_REV_MASK;
2114 flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
2115 btrfs_set_header_flags(eb, flags);
2116}
2117
0a4e5586 2118static inline unsigned long btrfs_header_fsid(void)
0f7d52f4 2119{
fba6aa75 2120 return offsetof(struct btrfs_header, fsid);
0f7d52f4
CM
2121}
2122
1cbb1f45 2123static inline unsigned long btrfs_header_chunk_tree_uuid(const struct extent_buffer *eb)
e17cade2 2124{
b308bc2f 2125 return offsetof(struct btrfs_header, chunk_tree_uuid);
e17cade2
CM
2126}
2127
1cbb1f45 2128static inline int btrfs_is_leaf(const struct extent_buffer *eb)
3768f368 2129{
d397712b 2130 return btrfs_header_level(eb) == 0;
3768f368
CM
2131}
2132
5f39d397 2133/* struct btrfs_root_item */
84234f3a
YZ
2134BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
2135 generation, 64);
5f39d397 2136BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
db94535d
CM
2137BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
2138BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
3768f368 2139
84234f3a
YZ
2140BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
2141 generation, 64);
db94535d
CM
2142BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
2143BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
5f39d397
CM
2144BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
2145BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
f2b636e8 2146BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
db94535d
CM
2147BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
2148BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
80ff3856
YZ
2149BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
2150 last_snapshot, 64);
8ea05e3a
AB
2151BTRFS_SETGET_STACK_FUNCS(root_generation_v2, struct btrfs_root_item,
2152 generation_v2, 64);
2153BTRFS_SETGET_STACK_FUNCS(root_ctransid, struct btrfs_root_item,
2154 ctransid, 64);
2155BTRFS_SETGET_STACK_FUNCS(root_otransid, struct btrfs_root_item,
2156 otransid, 64);
2157BTRFS_SETGET_STACK_FUNCS(root_stransid, struct btrfs_root_item,
2158 stransid, 64);
2159BTRFS_SETGET_STACK_FUNCS(root_rtransid, struct btrfs_root_item,
2160 rtransid, 64);
123abc88 2161
1cbb1f45 2162static inline bool btrfs_root_readonly(const struct btrfs_root *root)
b83cc969 2163{
6ed3cf2c 2164 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_RDONLY)) != 0;
b83cc969
LZ
2165}
2166
1cbb1f45 2167static inline bool btrfs_root_dead(const struct btrfs_root *root)
521e0546
DS
2168{
2169 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_DEAD)) != 0;
2170}
2171
af31f5e5
CM
2172/* struct btrfs_root_backup */
2173BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
2174 tree_root, 64);
2175BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
2176 tree_root_gen, 64);
2177BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
2178 tree_root_level, 8);
2179
2180BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
2181 chunk_root, 64);
2182BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
2183 chunk_root_gen, 64);
2184BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
2185 chunk_root_level, 8);
2186
2187BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
2188 extent_root, 64);
2189BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
2190 extent_root_gen, 64);
2191BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
2192 extent_root_level, 8);
2193
2194BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
2195 fs_root, 64);
2196BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
2197 fs_root_gen, 64);
2198BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
2199 fs_root_level, 8);
2200
2201BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
2202 dev_root, 64);
2203BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
2204 dev_root_gen, 64);
2205BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
2206 dev_root_level, 8);
2207
2208BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
2209 csum_root, 64);
2210BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
2211 csum_root_gen, 64);
2212BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
2213 csum_root_level, 8);
2214BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
2215 total_bytes, 64);
2216BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
2217 bytes_used, 64);
2218BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
2219 num_devices, 64);
2220
0940ebf6
ID
2221/* struct btrfs_balance_item */
2222BTRFS_SETGET_FUNCS(balance_flags, struct btrfs_balance_item, flags, 64);
607d432d 2223
1cbb1f45
JM
2224static inline void btrfs_balance_data(const struct extent_buffer *eb,
2225 const struct btrfs_balance_item *bi,
0940ebf6
ID
2226 struct btrfs_disk_balance_args *ba)
2227{
2228 read_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2229}
2230
2231static inline void btrfs_set_balance_data(struct extent_buffer *eb,
1cbb1f45
JM
2232 struct btrfs_balance_item *bi,
2233 const struct btrfs_disk_balance_args *ba)
0940ebf6
ID
2234{
2235 write_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2236}
2237
1cbb1f45
JM
2238static inline void btrfs_balance_meta(const struct extent_buffer *eb,
2239 const struct btrfs_balance_item *bi,
0940ebf6
ID
2240 struct btrfs_disk_balance_args *ba)
2241{
2242 read_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2243}
2244
2245static inline void btrfs_set_balance_meta(struct extent_buffer *eb,
1cbb1f45
JM
2246 struct btrfs_balance_item *bi,
2247 const struct btrfs_disk_balance_args *ba)
0940ebf6
ID
2248{
2249 write_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2250}
2251
1cbb1f45
JM
2252static inline void btrfs_balance_sys(const struct extent_buffer *eb,
2253 const struct btrfs_balance_item *bi,
0940ebf6
ID
2254 struct btrfs_disk_balance_args *ba)
2255{
2256 read_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2257}
2258
2259static inline void btrfs_set_balance_sys(struct extent_buffer *eb,
1cbb1f45
JM
2260 struct btrfs_balance_item *bi,
2261 const struct btrfs_disk_balance_args *ba)
0940ebf6
ID
2262{
2263 write_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2264}
2265
2266static inline void
2267btrfs_disk_balance_args_to_cpu(struct btrfs_balance_args *cpu,
1cbb1f45 2268 const struct btrfs_disk_balance_args *disk)
0940ebf6
ID
2269{
2270 memset(cpu, 0, sizeof(*cpu));
2271
2272 cpu->profiles = le64_to_cpu(disk->profiles);
2273 cpu->usage = le64_to_cpu(disk->usage);
2274 cpu->devid = le64_to_cpu(disk->devid);
2275 cpu->pstart = le64_to_cpu(disk->pstart);
2276 cpu->pend = le64_to_cpu(disk->pend);
2277 cpu->vstart = le64_to_cpu(disk->vstart);
2278 cpu->vend = le64_to_cpu(disk->vend);
2279 cpu->target = le64_to_cpu(disk->target);
2280 cpu->flags = le64_to_cpu(disk->flags);
7d824b6f 2281 cpu->limit = le64_to_cpu(disk->limit);
ed0df618
DS
2282 cpu->stripes_min = le32_to_cpu(disk->stripes_min);
2283 cpu->stripes_max = le32_to_cpu(disk->stripes_max);
0940ebf6
ID
2284}
2285
2286static inline void
2287btrfs_cpu_balance_args_to_disk(struct btrfs_disk_balance_args *disk,
1cbb1f45 2288 const struct btrfs_balance_args *cpu)
0940ebf6
ID
2289{
2290 memset(disk, 0, sizeof(*disk));
2291
2292 disk->profiles = cpu_to_le64(cpu->profiles);
2293 disk->usage = cpu_to_le64(cpu->usage);
2294 disk->devid = cpu_to_le64(cpu->devid);
2295 disk->pstart = cpu_to_le64(cpu->pstart);
2296 disk->pend = cpu_to_le64(cpu->pend);
2297 disk->vstart = cpu_to_le64(cpu->vstart);
2298 disk->vend = cpu_to_le64(cpu->vend);
2299 disk->target = cpu_to_le64(cpu->target);
2300 disk->flags = cpu_to_le64(cpu->flags);
7d824b6f 2301 disk->limit = cpu_to_le64(cpu->limit);
ed0df618
DS
2302 disk->stripes_min = cpu_to_le32(cpu->stripes_min);
2303 disk->stripes_max = cpu_to_le32(cpu->stripes_max);
0940ebf6
ID
2304}
2305
2306/* struct btrfs_super_block */
db94535d 2307BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
a061fc8d 2308BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
5f39d397
CM
2309BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
2310 generation, 64);
2311BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
0b86a832
CM
2312BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
2313 struct btrfs_super_block, sys_chunk_array_size, 32);
84234f3a
YZ
2314BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
2315 struct btrfs_super_block, chunk_root_generation, 64);
db94535d
CM
2316BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
2317 root_level, 8);
0b86a832
CM
2318BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
2319 chunk_root, 64);
2320BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
e02119d5
CM
2321 chunk_root_level, 8);
2322BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
2323 log_root, 64);
c3027eb5
CM
2324BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
2325 log_root_transid, 64);
e02119d5
CM
2326BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
2327 log_root_level, 8);
db94535d
CM
2328BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
2329 total_bytes, 64);
2330BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
2331 bytes_used, 64);
5f39d397
CM
2332BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
2333 sectorsize, 32);
2334BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
2335 nodesize, 32);
87ee04eb
CM
2336BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
2337 stripesize, 32);
5f39d397
CM
2338BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
2339 root_dir_objectid, 64);
8a4b83cc
CM
2340BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
2341 num_devices, 64);
f2b636e8
JB
2342BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
2343 compat_flags, 64);
2344BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
12534832 2345 compat_ro_flags, 64);
f2b636e8
JB
2346BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
2347 incompat_flags, 64);
607d432d
JB
2348BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
2349 csum_type, 16);
0af3d00b
JB
2350BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
2351 cache_generation, 64);
3cae210f 2352BTRFS_SETGET_STACK_FUNCS(super_magic, struct btrfs_super_block, magic, 64);
26432799
SB
2353BTRFS_SETGET_STACK_FUNCS(super_uuid_tree_generation, struct btrfs_super_block,
2354 uuid_tree_generation, 64);
607d432d 2355
1cbb1f45 2356static inline int btrfs_super_csum_size(const struct btrfs_super_block *s)
607d432d 2357{
1104a885
DS
2358 u16 t = btrfs_super_csum_type(s);
2359 /*
2360 * csum type is validated at mount time
2361 */
607d432d
JB
2362 return btrfs_csum_sizes[t];
2363}
2e635a27 2364
6d97c6e3
JT
2365static inline const char *btrfs_super_csum_name(u16 csum_type)
2366{
2367 /* csum type is validated at mount time */
2368 return btrfs_csum_names[csum_type];
2369}
2e635a27 2370
851cd173
LB
2371/*
2372 * The leaf data grows from end-to-front in the node.
2373 * this returns the address of the start of the last item,
2374 * which is the stop of the leaf data stack
2375 */
8f881e8c 2376static inline unsigned int leaf_data_end(const struct extent_buffer *leaf)
851cd173
LB
2377{
2378 u32 nr = btrfs_header_nritems(leaf);
2379
2380 if (nr == 0)
8f881e8c 2381 return BTRFS_LEAF_DATA_SIZE(leaf->fs_info);
851cd173
LB
2382 return btrfs_item_offset_nr(leaf, nr - 1);
2383}
2384
5f39d397
CM
2385/* struct btrfs_file_extent_item */
2386BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
3cae210f
QW
2387BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr,
2388 struct btrfs_file_extent_item, disk_bytenr, 64);
2389BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset,
2390 struct btrfs_file_extent_item, offset, 64);
2391BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation,
2392 struct btrfs_file_extent_item, generation, 64);
2393BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes,
2394 struct btrfs_file_extent_item, num_bytes, 64);
e20d6c5b
JB
2395BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_num_bytes,
2396 struct btrfs_file_extent_item, disk_num_bytes, 64);
2397BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression,
2398 struct btrfs_file_extent_item, compression, 8);
9f5fae2f 2399
d397712b 2400static inline unsigned long
1cbb1f45 2401btrfs_file_extent_inline_start(const struct btrfs_file_extent_item *e)
236454df 2402{
7ec20afb 2403 return (unsigned long)e + BTRFS_FILE_EXTENT_INLINE_DATA_START;
236454df
CM
2404}
2405
2406static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
2407{
7ec20afb 2408 return BTRFS_FILE_EXTENT_INLINE_DATA_START + datasize;
9f5fae2f
CM
2409}
2410
db94535d
CM
2411BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
2412 disk_bytenr, 64);
5f39d397
CM
2413BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
2414 generation, 64);
db94535d
CM
2415BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
2416 disk_num_bytes, 64);
5f39d397
CM
2417BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
2418 offset, 64);
db94535d
CM
2419BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
2420 num_bytes, 64);
c8b97818
CM
2421BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
2422 ram_bytes, 64);
2423BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
2424 compression, 8);
2425BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
2426 encryption, 8);
2427BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
2428 other_encoding, 16);
2429
c8b97818
CM
2430/*
2431 * this returns the number of bytes used by the item on disk, minus the
2432 * size of any extent headers. If a file is compressed on disk, this is
2433 * the compressed size
2434 */
1cbb1f45
JM
2435static inline u32 btrfs_file_extent_inline_item_len(
2436 const struct extent_buffer *eb,
2437 struct btrfs_item *e)
c8b97818 2438{
7ec20afb 2439 return btrfs_item_size(eb, e) - BTRFS_FILE_EXTENT_INLINE_DATA_START;
c8b97818 2440}
9f5fae2f 2441
733f4fbb 2442/* btrfs_dev_stats_item */
1cbb1f45
JM
2443static inline u64 btrfs_dev_stats_value(const struct extent_buffer *eb,
2444 const struct btrfs_dev_stats_item *ptr,
733f4fbb
SB
2445 int index)
2446{
2447 u64 val;
2448
2449 read_extent_buffer(eb, &val,
2450 offsetof(struct btrfs_dev_stats_item, values) +
2451 ((unsigned long)ptr) + (index * sizeof(u64)),
2452 sizeof(val));
2453 return val;
2454}
2455
2456static inline void btrfs_set_dev_stats_value(struct extent_buffer *eb,
2457 struct btrfs_dev_stats_item *ptr,
2458 int index, u64 val)
2459{
2460 write_extent_buffer(eb, &val,
2461 offsetof(struct btrfs_dev_stats_item, values) +
2462 ((unsigned long)ptr) + (index * sizeof(u64)),
2463 sizeof(val));
2464}
2465
630dc772
AJ
2466/* btrfs_qgroup_status_item */
2467BTRFS_SETGET_FUNCS(qgroup_status_generation, struct btrfs_qgroup_status_item,
2468 generation, 64);
2469BTRFS_SETGET_FUNCS(qgroup_status_version, struct btrfs_qgroup_status_item,
2470 version, 64);
2471BTRFS_SETGET_FUNCS(qgroup_status_flags, struct btrfs_qgroup_status_item,
2472 flags, 64);
2f232036
JS
2473BTRFS_SETGET_FUNCS(qgroup_status_rescan, struct btrfs_qgroup_status_item,
2474 rescan, 64);
630dc772
AJ
2475
2476/* btrfs_qgroup_info_item */
2477BTRFS_SETGET_FUNCS(qgroup_info_generation, struct btrfs_qgroup_info_item,
2478 generation, 64);
2479BTRFS_SETGET_FUNCS(qgroup_info_rfer, struct btrfs_qgroup_info_item, rfer, 64);
2480BTRFS_SETGET_FUNCS(qgroup_info_rfer_cmpr, struct btrfs_qgroup_info_item,
2481 rfer_cmpr, 64);
2482BTRFS_SETGET_FUNCS(qgroup_info_excl, struct btrfs_qgroup_info_item, excl, 64);
2483BTRFS_SETGET_FUNCS(qgroup_info_excl_cmpr, struct btrfs_qgroup_info_item,
2484 excl_cmpr, 64);
2485
2486BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_generation,
2487 struct btrfs_qgroup_info_item, generation, 64);
2488BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer, struct btrfs_qgroup_info_item,
2489 rfer, 64);
2490BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer_cmpr,
2491 struct btrfs_qgroup_info_item, rfer_cmpr, 64);
2492BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl, struct btrfs_qgroup_info_item,
2493 excl, 64);
2494BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl_cmpr,
2495 struct btrfs_qgroup_info_item, excl_cmpr, 64);
2496
2497/* btrfs_qgroup_limit_item */
2498BTRFS_SETGET_FUNCS(qgroup_limit_flags, struct btrfs_qgroup_limit_item,
2499 flags, 64);
2500BTRFS_SETGET_FUNCS(qgroup_limit_max_rfer, struct btrfs_qgroup_limit_item,
2501 max_rfer, 64);
2502BTRFS_SETGET_FUNCS(qgroup_limit_max_excl, struct btrfs_qgroup_limit_item,
2503 max_excl, 64);
2504BTRFS_SETGET_FUNCS(qgroup_limit_rsv_rfer, struct btrfs_qgroup_limit_item,
2505 rsv_rfer, 64);
2506BTRFS_SETGET_FUNCS(qgroup_limit_rsv_excl, struct btrfs_qgroup_limit_item,
2507 rsv_excl, 64);
2508
a2bff640
SB
2509/* btrfs_dev_replace_item */
2510BTRFS_SETGET_FUNCS(dev_replace_src_devid,
2511 struct btrfs_dev_replace_item, src_devid, 64);
2512BTRFS_SETGET_FUNCS(dev_replace_cont_reading_from_srcdev_mode,
2513 struct btrfs_dev_replace_item, cont_reading_from_srcdev_mode,
2514 64);
2515BTRFS_SETGET_FUNCS(dev_replace_replace_state, struct btrfs_dev_replace_item,
2516 replace_state, 64);
2517BTRFS_SETGET_FUNCS(dev_replace_time_started, struct btrfs_dev_replace_item,
2518 time_started, 64);
2519BTRFS_SETGET_FUNCS(dev_replace_time_stopped, struct btrfs_dev_replace_item,
2520 time_stopped, 64);
2521BTRFS_SETGET_FUNCS(dev_replace_num_write_errors, struct btrfs_dev_replace_item,
2522 num_write_errors, 64);
2523BTRFS_SETGET_FUNCS(dev_replace_num_uncorrectable_read_errors,
2524 struct btrfs_dev_replace_item, num_uncorrectable_read_errors,
2525 64);
2526BTRFS_SETGET_FUNCS(dev_replace_cursor_left, struct btrfs_dev_replace_item,
2527 cursor_left, 64);
2528BTRFS_SETGET_FUNCS(dev_replace_cursor_right, struct btrfs_dev_replace_item,
2529 cursor_right, 64);
2530
2531BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_src_devid,
2532 struct btrfs_dev_replace_item, src_devid, 64);
2533BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cont_reading_from_srcdev_mode,
2534 struct btrfs_dev_replace_item,
2535 cont_reading_from_srcdev_mode, 64);
2536BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_replace_state,
2537 struct btrfs_dev_replace_item, replace_state, 64);
2538BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_started,
2539 struct btrfs_dev_replace_item, time_started, 64);
2540BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_stopped,
2541 struct btrfs_dev_replace_item, time_stopped, 64);
2542BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_write_errors,
2543 struct btrfs_dev_replace_item, num_write_errors, 64);
2544BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_uncorrectable_read_errors,
2545 struct btrfs_dev_replace_item,
2546 num_uncorrectable_read_errors, 64);
2547BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_left,
2548 struct btrfs_dev_replace_item, cursor_left, 64);
2549BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_right,
2550 struct btrfs_dev_replace_item, cursor_right, 64);
2551
4beb1b8b
CM
2552/* helper function to cast into the data area of the leaf. */
2553#define btrfs_item_ptr(leaf, slot, type) \
3d9ec8c4 2554 ((type *)(BTRFS_LEAF_DATA_OFFSET + \
5f39d397
CM
2555 btrfs_item_offset_nr(leaf, slot)))
2556
2557#define btrfs_item_ptr_offset(leaf, slot) \
3d9ec8c4 2558 ((unsigned long)(BTRFS_LEAF_DATA_OFFSET + \
5f39d397 2559 btrfs_item_offset_nr(leaf, slot)))
4beb1b8b 2560
65019df8
JT
2561static inline u32 btrfs_crc32c(u32 crc, const void *address, unsigned length)
2562{
2563 return crc32c(crc, address, length);
2564}
2565
2566static inline void btrfs_crc32c_final(u32 crc, u8 *result)
2567{
2568 put_unaligned_le32(~crc, result);
2569}
2570
9678c543
NB
2571static inline u64 btrfs_name_hash(const char *name, int len)
2572{
2573 return crc32c((u32)~1, name, len);
2574}
2575
2576/*
2577 * Figure the key offset of an extended inode ref
2578 */
2579static inline u64 btrfs_extref_hash(u64 parent_objectid, const char *name,
2580 int len)
2581{
2582 return (u64) crc32c(parent_objectid, name, len);
2583}
2584
3b16a4e3
JB
2585static inline gfp_t btrfs_alloc_write_mask(struct address_space *mapping)
2586{
c62d2555 2587 return mapping_gfp_constraint(mapping, ~__GFP_FS);
3b16a4e3
JB
2588}
2589
b18c6685 2590/* extent-tree.c */
28f75a0e 2591
167ce953 2592enum btrfs_inline_ref_type {
bbe339cc
DS
2593 BTRFS_REF_TYPE_INVALID,
2594 BTRFS_REF_TYPE_BLOCK,
2595 BTRFS_REF_TYPE_DATA,
2596 BTRFS_REF_TYPE_ANY,
167ce953
LB
2597};
2598
2599int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
2600 struct btrfs_extent_inline_ref *iref,
2601 enum btrfs_inline_ref_type is_data);
2602
2ff7e61e 2603u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes);
28f75a0e 2604
27965b6c 2605static inline u64 btrfs_calc_trans_metadata_size(struct btrfs_fs_info *fs_info,
9e0baf60 2606 unsigned num_items)
16cdcec7 2607{
70e7af24 2608 return (u64)fs_info->nodesize * BTRFS_MAX_LEVEL * 2 * num_items;
07127184
JB
2609}
2610
2611/*
2612 * Doing a truncate won't result in new nodes or leaves, just what we need for
2613 * COW.
2614 */
27965b6c 2615static inline u64 btrfs_calc_trunc_metadata_size(struct btrfs_fs_info *fs_info,
07127184
JB
2616 unsigned num_items)
2617{
70e7af24 2618 return (u64)fs_info->nodesize * BTRFS_MAX_LEVEL * num_items;
16cdcec7
MX
2619}
2620
9cfa3e34
FM
2621void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
2622 const u64 start);
2623void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg);
f78c436c
FM
2624bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr);
2625void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr);
2626void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg);
fa9c0d79 2627void btrfs_put_block_group(struct btrfs_block_group_cache *cache);
56bec294 2628int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
c79a70b1 2629 unsigned long count);
31890da0
JB
2630void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2631 struct btrfs_delayed_ref_root *delayed_refs,
2632 struct btrfs_delayed_ref_head *head);
2ff7e61e 2633int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len);
a22285a6 2634int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
2ff7e61e 2635 struct btrfs_fs_info *fs_info, u64 bytenr,
3173a18f 2636 u64 offset, int metadata, u64 *refs, u64 *flags);
2ff7e61e 2637int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
11833d66 2638 u64 bytenr, u64 num, int reserved);
2ff7e61e 2639int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
e688b725 2640 u64 bytenr, u64 num_bytes);
bcdc428c 2641int btrfs_exclude_logged_extents(struct extent_buffer *eb);
e4c3b2dc 2642int btrfs_cross_ref_exist(struct btrfs_root *root,
5d4f98a2 2643 u64 objectid, u64 offset, u64 bytenr);
d397712b
CM
2644struct btrfs_block_group_cache *btrfs_lookup_block_group(
2645 struct btrfs_fs_info *info,
2646 u64 bytenr);
758f2dfc 2647void btrfs_get_block_group(struct btrfs_block_group_cache *cache);
5d4f98a2 2648void btrfs_put_block_group(struct btrfs_block_group_cache *cache);
4d75f8a9 2649struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
310712b2
OS
2650 struct btrfs_root *root,
2651 u64 parent, u64 root_objectid,
2652 const struct btrfs_disk_key *key,
2653 int level, u64 hint,
2654 u64 empty_size);
f0486c68
YZ
2655void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
2656 struct btrfs_root *root,
2657 struct extent_buffer *buf,
5581a51a 2658 u64 parent, int last_ref);
5d4f98a2 2659int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
84f7d8e6 2660 struct btrfs_root *root, u64 owner,
5846a3c2
QW
2661 u64 offset, u64 ram_bytes,
2662 struct btrfs_key *ins);
5d4f98a2 2663int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
2664 u64 root_objectid, u64 owner, u64 offset,
2665 struct btrfs_key *ins);
18513091 2666int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, u64 num_bytes,
00361589 2667 u64 min_alloc_size, u64 empty_size, u64 hint_byte,
e570fd27 2668 struct btrfs_key *ins, int is_data, int delalloc);
e089f05c 2669int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 2670 struct extent_buffer *buf, int full_backref);
5d4f98a2 2671int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 2672 struct extent_buffer *buf, int full_backref);
5d4f98a2 2673int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
5d4f98a2 2674 u64 bytenr, u64 num_bytes, u64 flags,
b1c79e09 2675 int level, int is_data);
ffd4bb2a 2676int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref);
5d4f98a2 2677
2ff7e61e
JM
2678int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
2679 u64 start, u64 len, int delalloc);
2680int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
e688b725 2681 u64 start, u64 len);
8b74c03e 2682void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info);
5ead2dd0 2683int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans);
b18c6685 2684int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
82fa113f 2685 struct btrfs_ref *generic_ref);
5d4f98a2 2686
21217054 2687int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans);
5742d15f 2688int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans);
bbebb3e0 2689int btrfs_setup_space_cache(struct btrfs_trans_handle *trans);
2ff7e61e 2690int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr);
9078a3e1 2691int btrfs_free_block_groups(struct btrfs_fs_info *info);
5b4aacef 2692int btrfs_read_block_groups(struct btrfs_fs_info *info);
6bccf3ab 2693int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr);
0b86a832 2694int btrfs_make_block_group(struct btrfs_trans_handle *trans,
e7e02096
NB
2695 u64 bytes_used, u64 type, u64 chunk_offset,
2696 u64 size);
8eab77ff 2697struct btrfs_trans_handle *btrfs_start_trans_remove_block_group(
7fd01182
FM
2698 struct btrfs_fs_info *fs_info,
2699 const u64 chunk_offset);
1a40e23b 2700int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
5a98ec01 2701 u64 group_start, struct extent_map *em);
47ab2a6c 2702void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info);
e33e17ee
JM
2703void btrfs_get_block_group_trimming(struct btrfs_block_group_cache *cache);
2704void btrfs_put_block_group_trimming(struct btrfs_block_group_cache *cache);
6c686b35 2705void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans);
1b86826d
JM
2706u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info);
2707u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info);
2708u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info);
4184ea7f 2709void btrfs_clear_space_info_full(struct btrfs_fs_info *info);
08e007d2
MX
2710
2711enum btrfs_reserve_flush_enum {
2712 /* If we are in the transaction, we can't flush anything.*/
2713 BTRFS_RESERVE_NO_FLUSH,
2714 /*
2715 * Flushing delalloc may cause deadlock somewhere, in this
2716 * case, use FLUSH LIMIT
2717 */
2718 BTRFS_RESERVE_FLUSH_LIMIT,
2719 BTRFS_RESERVE_FLUSH_ALL,
2720};
2721
f376df2b
JB
2722enum btrfs_flush_state {
2723 FLUSH_DELAYED_ITEMS_NR = 1,
2724 FLUSH_DELAYED_ITEMS = 2,
413df725
JB
2725 FLUSH_DELAYED_REFS_NR = 3,
2726 FLUSH_DELAYED_REFS = 4,
2727 FLUSH_DELALLOC = 5,
2728 FLUSH_DELALLOC_WAIT = 6,
2729 ALLOC_CHUNK = 7,
450114fc
JB
2730 ALLOC_CHUNK_FORCE = 8,
2731 COMMIT_TRANS = 9,
f376df2b
JB
2732};
2733
fc471cb0
JB
2734/*
2735 * control flags for do_chunk_alloc's force field
2736 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
2737 * if we really need one.
2738 *
2739 * CHUNK_ALLOC_LIMITED means to only try and allocate one
2740 * if we have very few chunks already allocated. This is
2741 * used as part of the clustering code to help make sure
2742 * we have a good pool of storage to cluster in, without
2743 * filling the FS with empty chunks
2744 *
2745 * CHUNK_ALLOC_FORCE means it must try to allocate one
2746 *
2747 */
2748enum btrfs_chunk_alloc_enum {
2749 CHUNK_ALLOC_NO_FORCE,
2750 CHUNK_ALLOC_LIMITED,
2751 CHUNK_ALLOC_FORCE,
2752};
2753
2754int btrfs_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
2755 enum btrfs_chunk_alloc_enum force);
d5c12070
MX
2756int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
2757 struct btrfs_block_rsv *rsv,
c4c129db 2758 int nitems, bool use_global_rsv);
2ff7e61e 2759void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
7775c818 2760 struct btrfs_block_rsv *rsv);
ccfa4269 2761void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes);
8b62f87b 2762
9f3db423 2763int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes);
c83488af 2764int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache);
2ff7e61e 2765void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache);
0af3d00b 2766void btrfs_put_block_group_cache(struct btrfs_fs_info *info);
6d07bcec 2767u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo);
2ff7e61e 2768int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
acce952b 2769 u64 start, u64 end);
2ff7e61e 2770int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
1edb647b 2771 u64 num_bytes, u64 *actual_bytes);
43a7e99d 2772int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type);
2ff7e61e 2773int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range);
acce952b 2774
c59021f8 2775int btrfs_init_space_info(struct btrfs_fs_info *fs_info);
bed92eae
AJ
2776int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2777 struct btrfs_fs_info *fs_info);
ea14b57f
DS
2778int btrfs_start_write_no_snapshotting(struct btrfs_root *root);
2779void btrfs_end_write_no_snapshotting(struct btrfs_root *root);
0bc19f90 2780void btrfs_wait_for_snapshot_creation(struct btrfs_root *root);
451a2c13 2781void check_system_chunk(struct btrfs_trans_handle *trans, const u64 type);
a5ed9182 2782u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
4457c1c7 2783 u64 start, u64 end);
031f24da 2784void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg);
a5ed9182 2785
dee26a9f 2786/* ctree.c */
310712b2 2787int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
5d4f98a2 2788 int level, int *slot);
310712b2 2789int btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2);
0b86a832
CM
2790int btrfs_previous_item(struct btrfs_root *root,
2791 struct btrfs_path *path, u64 min_objectid,
2792 int type);
ade2e0b3
WS
2793int btrfs_previous_extent_item(struct btrfs_root *root,
2794 struct btrfs_path *path, u64 min_objectid);
b7a0365e
DD
2795void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
2796 struct btrfs_path *path,
310712b2 2797 const struct btrfs_key *new_key);
925baedd
CM
2798struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
2799struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root);
84f7d8e6 2800struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root);
e7a84565 2801int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
3f157a2f 2802 struct btrfs_key *key, int lowest_level,
de78b51a 2803 u64 min_trans);
3f157a2f 2804int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
de78b51a 2805 struct btrfs_path *path,
3f157a2f 2806 u64 min_trans);
7069830a
AB
2807enum btrfs_compare_tree_result {
2808 BTRFS_COMPARE_TREE_NEW,
2809 BTRFS_COMPARE_TREE_DELETED,
2810 BTRFS_COMPARE_TREE_CHANGED,
ba5e8f2e 2811 BTRFS_COMPARE_TREE_SAME,
7069830a 2812};
ee8c494f 2813typedef int (*btrfs_changed_cb_t)(struct btrfs_path *left_path,
7069830a
AB
2814 struct btrfs_path *right_path,
2815 struct btrfs_key *key,
2816 enum btrfs_compare_tree_result result,
2817 void *ctx);
2818int btrfs_compare_trees(struct btrfs_root *left_root,
2819 struct btrfs_root *right_root,
2820 btrfs_changed_cb_t cb, void *ctx);
5f39d397
CM
2821int btrfs_cow_block(struct btrfs_trans_handle *trans,
2822 struct btrfs_root *root, struct extent_buffer *buf,
2823 struct extent_buffer *parent, int parent_slot,
9fa8cfe7 2824 struct extent_buffer **cow_ret);
be20aa9d
CM
2825int btrfs_copy_root(struct btrfs_trans_handle *trans,
2826 struct btrfs_root *root,
2827 struct extent_buffer *buf,
2828 struct extent_buffer **cow_ret, u64 new_root_objectid);
5d4f98a2
YZ
2829int btrfs_block_can_be_shared(struct btrfs_root *root,
2830 struct extent_buffer *buf);
c71dd880 2831void btrfs_extend_item(struct btrfs_path *path, u32 data_size);
78ac4f9e 2832void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end);
459931ec
CM
2833int btrfs_split_item(struct btrfs_trans_handle *trans,
2834 struct btrfs_root *root,
2835 struct btrfs_path *path,
310712b2 2836 const struct btrfs_key *new_key,
459931ec 2837 unsigned long split_offset);
ad48fd75
YZ
2838int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
2839 struct btrfs_root *root,
2840 struct btrfs_path *path,
310712b2 2841 const struct btrfs_key *new_key);
e33d5c3d
KN
2842int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
2843 u64 inum, u64 ioff, u8 key_type, struct btrfs_key *found_key);
310712b2
OS
2844int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2845 const struct btrfs_key *key, struct btrfs_path *p,
2846 int ins_len, int cow);
2847int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
5d9e75c4 2848 struct btrfs_path *p, u64 time_seq);
2f38b3e1 2849int btrfs_search_slot_for_read(struct btrfs_root *root,
310712b2
OS
2850 const struct btrfs_key *key,
2851 struct btrfs_path *p, int find_higher,
2852 int return_any);
6702ed49 2853int btrfs_realloc_node(struct btrfs_trans_handle *trans,
5f39d397 2854 struct btrfs_root *root, struct extent_buffer *parent,
de78b51a 2855 int start_slot, u64 *last_ret,
a6b6e75e 2856 struct btrfs_key *progress);
b3b4aa74 2857void btrfs_release_path(struct btrfs_path *p);
2c90e5d6
CM
2858struct btrfs_path *btrfs_alloc_path(void);
2859void btrfs_free_path(struct btrfs_path *p);
b4ce94de 2860void btrfs_set_path_blocking(struct btrfs_path *p);
b4ce94de
CM
2861void btrfs_unlock_up_safe(struct btrfs_path *p, int level);
2862
85e21bac
CM
2863int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2864 struct btrfs_path *path, int slot, int nr);
85e21bac
CM
2865static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
2866 struct btrfs_root *root,
2867 struct btrfs_path *path)
2868{
2869 return btrfs_del_items(trans, root, path, path->slots[0], 1);
2870}
2871
afe5fea7 2872void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
310712b2 2873 const struct btrfs_key *cpu_key, u32 *data_size,
143bede5 2874 u32 total_data, u32 total_size, int nr);
310712b2
OS
2875int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2876 const struct btrfs_key *key, void *data, u32 data_size);
9c58309d
CM
2877int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
2878 struct btrfs_root *root,
2879 struct btrfs_path *path,
310712b2
OS
2880 const struct btrfs_key *cpu_key, u32 *data_size,
2881 int nr);
9c58309d
CM
2882
2883static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
2884 struct btrfs_root *root,
2885 struct btrfs_path *path,
310712b2 2886 const struct btrfs_key *key,
9c58309d
CM
2887 u32 data_size)
2888{
2889 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
2890}
2891
234b63a0 2892int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
16e7549f 2893int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
3d7806ec
JS
2894int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
2895 u64 time_seq);
1c8f52a5
AB
2896static inline int btrfs_next_old_item(struct btrfs_root *root,
2897 struct btrfs_path *p, u64 time_seq)
c7d22a3c
JS
2898{
2899 ++p->slots[0];
2900 if (p->slots[0] >= btrfs_header_nritems(p->nodes[0]))
1c8f52a5 2901 return btrfs_next_old_leaf(root, p, time_seq);
c7d22a3c
JS
2902 return 0;
2903}
1c8f52a5
AB
2904static inline int btrfs_next_item(struct btrfs_root *root, struct btrfs_path *p)
2905{
2906 return btrfs_next_old_item(root, p, 0);
2907}
e902baac 2908int btrfs_leaf_free_space(struct extent_buffer *leaf);
2c536799
JM
2909int __must_check btrfs_drop_snapshot(struct btrfs_root *root,
2910 struct btrfs_block_rsv *block_rsv,
2911 int update_ref, int for_reloc);
f82d02d9
YZ
2912int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
2913 struct btrfs_root *root,
2914 struct extent_buffer *node,
2915 struct extent_buffer *parent);
7841cb28
DS
2916static inline int btrfs_fs_closing(struct btrfs_fs_info *fs_info)
2917{
2918 /*
afcdd129 2919 * Do it this way so we only ever do one test_bit in the normal case.
7841cb28 2920 */
afcdd129
JB
2921 if (test_bit(BTRFS_FS_CLOSING_START, &fs_info->flags)) {
2922 if (test_bit(BTRFS_FS_CLOSING_DONE, &fs_info->flags))
2923 return 2;
2924 return 1;
2925 }
2926 return 0;
7841cb28 2927}
babbf170
MX
2928
2929/*
2930 * If we remount the fs to be R/O or umount the fs, the cleaner needn't do
2931 * anything except sleeping. This function is used to check the status of
2932 * the fs.
2933 */
2ff7e61e 2934static inline int btrfs_need_cleaner_sleep(struct btrfs_fs_info *fs_info)
babbf170 2935{
1751e8a6 2936 return fs_info->sb->s_flags & SB_RDONLY || btrfs_fs_closing(fs_info);
babbf170
MX
2937}
2938
6c41761f
DS
2939static inline void free_fs_info(struct btrfs_fs_info *fs_info)
2940{
837d5b6e 2941 kfree(fs_info->balance_ctl);
6c41761f
DS
2942 kfree(fs_info->delayed_root);
2943 kfree(fs_info->extent_root);
2944 kfree(fs_info->tree_root);
2945 kfree(fs_info->chunk_root);
2946 kfree(fs_info->dev_root);
2947 kfree(fs_info->csum_root);
bcef60f2 2948 kfree(fs_info->quota_root);
d8f98039 2949 kfree(fs_info->uuid_root);
70f6d82e 2950 kfree(fs_info->free_space_root);
6c41761f
DS
2951 kfree(fs_info->super_copy);
2952 kfree(fs_info->super_for_commit);
a8fd1f71 2953 kvfree(fs_info);
6c41761f 2954}
7841cb28 2955
097b8a7c
JS
2956/* tree mod log functions from ctree.c */
2957u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
2958 struct seq_list *elem);
2959void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
2960 struct seq_list *elem);
5b6602e7 2961int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq);
097b8a7c 2962
dee26a9f 2963/* root-item.c */
6025c19f
LF
2964int btrfs_add_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
2965 u64 ref_id, u64 dirid, u64 sequence, const char *name,
2966 int name_len);
3ee1c553
LF
2967int btrfs_del_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
2968 u64 ref_id, u64 dirid, u64 *sequence, const char *name,
2969 int name_len);
1cd5447e 2970int btrfs_del_root(struct btrfs_trans_handle *trans,
ab9ce7d4 2971 const struct btrfs_key *key);
310712b2
OS
2972int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2973 const struct btrfs_key *key,
2974 struct btrfs_root_item *item);
b45a9d8b
JM
2975int __must_check btrfs_update_root(struct btrfs_trans_handle *trans,
2976 struct btrfs_root *root,
2977 struct btrfs_key *key,
2978 struct btrfs_root_item *item);
310712b2 2979int btrfs_find_root(struct btrfs_root *root, const struct btrfs_key *search_key,
cb517eab
MX
2980 struct btrfs_path *path, struct btrfs_root_item *root_item,
2981 struct btrfs_key *root_key);
6bccf3ab 2982int btrfs_find_orphan_roots(struct btrfs_fs_info *fs_info);
bf5f32ec
MF
2983void btrfs_set_root_node(struct btrfs_root_item *item,
2984 struct extent_buffer *node);
08fe4db1 2985void btrfs_check_and_init_root_item(struct btrfs_root_item *item);
8ea05e3a
AB
2986void btrfs_update_root_times(struct btrfs_trans_handle *trans,
2987 struct btrfs_root *root);
08fe4db1 2988
07b30a49 2989/* uuid-tree.c */
cdb345a8 2990int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
07b30a49 2991 u64 subid);
d1957791 2992int btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
07b30a49 2993 u64 subid);
70f80175
SB
2994int btrfs_uuid_tree_iterate(struct btrfs_fs_info *fs_info,
2995 int (*check_func)(struct btrfs_fs_info *, u8 *, u8,
2996 u64));
07b30a49 2997
dee26a9f 2998/* dir-item.c */
9c52057c
CM
2999int btrfs_check_dir_item_collision(struct btrfs_root *root, u64 dir,
3000 const char *name, int name_len);
684572df 3001int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, const char *name,
8e7611cf 3002 int name_len, struct btrfs_inode *dir,
aec7477b 3003 struct btrfs_key *location, u8 type, u64 index);
7e38180e
CM
3004struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
3005 struct btrfs_root *root,
3006 struct btrfs_path *path, u64 dir,
3007 const char *name, int name_len,
3008 int mod);
3009struct btrfs_dir_item *
3010btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
3011 struct btrfs_root *root,
3012 struct btrfs_path *path, u64 dir,
3013 u64 objectid, const char *name, int name_len,
3014 int mod);
4df27c4d
YZ
3015struct btrfs_dir_item *
3016btrfs_search_dir_index_item(struct btrfs_root *root,
3017 struct btrfs_path *path, u64 dirid,
3018 const char *name, int name_len);
7e38180e
CM
3019int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
3020 struct btrfs_root *root,
3021 struct btrfs_path *path,
3022 struct btrfs_dir_item *di);
5103e947 3023int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
f34f57a3
YZ
3024 struct btrfs_root *root,
3025 struct btrfs_path *path, u64 objectid,
3026 const char *name, u16 name_len,
3027 const void *data, u16 data_len);
5103e947
JB
3028struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
3029 struct btrfs_root *root,
3030 struct btrfs_path *path, u64 dir,
3031 const char *name, u16 name_len,
3032 int mod);
2ff7e61e 3033struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_fs_info *fs_info,
5f5bc6b1
FM
3034 struct btrfs_path *path,
3035 const char *name,
3036 int name_len);
7b128766
JB
3037
3038/* orphan.c */
3039int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
3040 struct btrfs_root *root, u64 offset);
3041int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
3042 struct btrfs_root *root, u64 offset);
4df27c4d 3043int btrfs_find_orphan_item(struct btrfs_root *root, u64 offset);
7b128766 3044
dee26a9f 3045/* inode-item.c */
3954401f
CM
3046int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
3047 struct btrfs_root *root,
3048 const char *name, int name_len,
aec7477b 3049 u64 inode_objectid, u64 ref_objectid, u64 index);
3954401f
CM
3050int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
3051 struct btrfs_root *root,
3052 const char *name, int name_len,
aec7477b 3053 u64 inode_objectid, u64 ref_objectid, u64 *index);
5f39d397
CM
3054int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
3055 struct btrfs_root *root,
3056 struct btrfs_path *path, u64 objectid);
293ffd5f 3057int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
d6e4a428
CM
3058 *root, struct btrfs_path *path,
3059 struct btrfs_key *location, int mod);
dee26a9f 3060
f186373f
MF
3061struct btrfs_inode_extref *
3062btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
3063 struct btrfs_root *root,
3064 struct btrfs_path *path,
3065 const char *name, int name_len,
3066 u64 inode_objectid, u64 ref_objectid, int ins_len,
3067 int cow);
3068
1f250e92
FM
3069int btrfs_find_name_in_backref(struct extent_buffer *leaf, int slot,
3070 const char *name,
3071 int name_len, struct btrfs_inode_ref **ref_ret);
3072int btrfs_find_name_in_ext_backref(struct extent_buffer *leaf, int slot,
f186373f
MF
3073 u64 ref_objectid, const char *name,
3074 int name_len,
3075 struct btrfs_inode_extref **extref_ret);
3076
dee26a9f 3077/* file-item.c */
facc8a22 3078struct btrfs_dio_private;
459931ec 3079int btrfs_del_csums(struct btrfs_trans_handle *trans,
5b4aacef 3080 struct btrfs_fs_info *fs_info, u64 bytenr, u64 len);
1e25a2e3
JT
3081blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio,
3082 u8 *dst);
4e4cbee9 3083blk_status_t btrfs_lookup_bio_sums_dio(struct inode *inode, struct bio *bio,
2ff7e61e 3084 u64 logical_offset);
b18c6685 3085int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
c8b97818
CM
3086 struct btrfs_root *root,
3087 u64 objectid, u64 pos,
3088 u64 disk_offset, u64 disk_num_bytes,
3089 u64 num_bytes, u64 offset, u64 ram_bytes,
3090 u8 compression, u8 encryption, u16 other_encoding);
dee26a9f
CM
3091int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
3092 struct btrfs_root *root,
3093 struct btrfs_path *path, u64 objectid,
db94535d 3094 u64 bytenr, int mod);
065631f6 3095int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
d20f7043 3096 struct btrfs_root *root,
e6dcd2dc 3097 struct btrfs_ordered_sum *sums);
4e4cbee9 3098blk_status_t btrfs_csum_one_bio(struct inode *inode, struct bio *bio,
2ff7e61e 3099 u64 file_start, int contig);
a2de733c
AJ
3100int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
3101 struct list_head *list, int search_commit);
9cdc5124 3102void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
7ffbb598
FM
3103 const struct btrfs_path *path,
3104 struct btrfs_file_extent_item *fi,
3105 const bool new_inline,
3106 struct extent_map *em);
3107
39279cc3 3108/* inode.c */
fc4f21b1 3109struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
4ab47a8d 3110 u64 start, u64 len);
00361589 3111noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
7ee9e440
JB
3112 u64 *orig_start, u64 *orig_block_len,
3113 u64 *ram_bytes);
4881ee5a 3114
2b877331
NB
3115void __btrfs_del_delalloc_inode(struct btrfs_root *root,
3116 struct btrfs_inode *inode);
3de4586c 3117struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry);
70ddc553 3118int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index);
e02119d5
CM
3119int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3120 struct btrfs_root *root,
4ec5934e 3121 struct btrfs_inode *dir, struct btrfs_inode *inode,
e02119d5
CM
3122 const char *name, int name_len);
3123int btrfs_add_link(struct btrfs_trans_handle *trans,
db0a669f 3124 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
e02119d5 3125 const char *name, int name_len, int add_backref, u64 index);
f60a2364 3126int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry);
9703fefe 3127int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
2aaa6655 3128 int front);
e02119d5
CM
3129int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3130 struct btrfs_root *root,
3131 struct inode *inode, u64 new_size,
3132 u32 min_type);
3133
3cd24c69 3134int btrfs_start_delalloc_snapshot(struct btrfs_root *root);
82b3e53b 3135int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr);
2ac55d41 3136int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
e3b8a485 3137 unsigned int extra_bits,
ba8b04c1 3138 struct extent_state **cached_state, int dedupe);
d2fb3437 3139int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
63541927
FDBM
3140 struct btrfs_root *new_root,
3141 struct btrfs_root *parent_root,
3142 u64 new_dirid);
c629732d 3143 void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
e06a1fc9 3144 unsigned *bits);
a36bb5f9
NB
3145void btrfs_clear_delalloc_extent(struct inode *inode,
3146 struct extent_state *state, unsigned *bits);
5c848198
NB
3147void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
3148 struct extent_state *other);
abbb55f4
NB
3149void btrfs_split_delalloc_extent(struct inode *inode,
3150 struct extent_state *orig, u64 split);
da12fe54
NB
3151int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
3152 unsigned long bio_flags);
5cdc84bf 3153void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end);
a528a241 3154vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf);
9ebefb18 3155int btrfs_readpage(struct file *file, struct page *page);
bd555975 3156void btrfs_evict_inode(struct inode *inode);
a9185b41 3157int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc);
39279cc3
CM
3158struct inode *btrfs_alloc_inode(struct super_block *sb);
3159void btrfs_destroy_inode(struct inode *inode);
26602cab 3160void btrfs_free_inode(struct inode *inode);
45321ac5 3161int btrfs_drop_inode(struct inode *inode);
f5c29bd9 3162int __init btrfs_init_cachep(void);
e67c718b 3163void __cold btrfs_destroy_cachep(void);
4222ea71
FM
3164struct inode *btrfs_iget_path(struct super_block *s, struct btrfs_key *location,
3165 struct btrfs_root *root, int *new,
3166 struct btrfs_path *path);
1a54ef8c 3167struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
73f73415 3168 struct btrfs_root *root, int *was_new);
fc4f21b1 3169struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
de2c6615
LB
3170 struct page *page, size_t pg_offset,
3171 u64 start, u64 end, int create);
a52d9a80
CM
3172int btrfs_update_inode(struct btrfs_trans_handle *trans,
3173 struct btrfs_root *root,
3174 struct inode *inode);
be6aef60
JB
3175int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3176 struct btrfs_root *root, struct inode *inode);
73f2e545
NB
3177int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3178 struct btrfs_inode *inode);
66b4ffd1 3179int btrfs_orphan_cleanup(struct btrfs_root *root);
a41ad394 3180int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size);
24bbcf04 3181void btrfs_add_delayed_iput(struct inode *inode);
2ff7e61e 3182void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info);
034f784d 3183int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info);
efa56464
YZ
3184int btrfs_prealloc_file_range(struct inode *inode, int mode,
3185 u64 start, u64 num_bytes, u64 min_size,
3186 loff_t actual_len, u64 *alloc_hint);
0af3d00b
JB
3187int btrfs_prealloc_file_range_trans(struct inode *inode,
3188 struct btrfs_trans_handle *trans, int mode,
3189 u64 start, u64 num_bytes, u64 min_size,
3190 loff_t actual_len, u64 *alloc_hint);
bc9a8bf7 3191int btrfs_run_delalloc_range(struct inode *inode, struct page *locked_page,
5eaad97a
NB
3192 u64 start, u64 end, int *page_started, unsigned long *nr_written,
3193 struct writeback_control *wbc);
d75855b4 3194int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end);
7087a9d8 3195void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start,
c629732d 3196 u64 end, int uptodate);
82d339d9 3197extern const struct dentry_operations btrfs_dentry_operations;
f46b5a66
CH
3198
3199/* ioctl.c */
3200long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
4c63c245 3201long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
d5131b65 3202int btrfs_ioctl_get_supported_features(void __user *arg);
7b6a221e 3203void btrfs_sync_inode_flags_to_i_flags(struct inode *inode);
dd5f9615 3204int btrfs_is_empty_uuid(u8 *uuid);
4cb5300b
CM
3205int btrfs_defrag_file(struct inode *inode, struct file *file,
3206 struct btrfs_ioctl_defrag_range_args *range,
3207 u64 newer_than, unsigned long max_pages);
008ef096
DS
3208void btrfs_get_block_group_info(struct list_head *groups_list,
3209 struct btrfs_ioctl_space_info *space);
3210void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
35a3621b
SB
3211 struct btrfs_ioctl_balance_args *bargs);
3212
39279cc3 3213/* file.c */
f5c29bd9 3214int __init btrfs_auto_defrag_init(void);
e67c718b 3215void __cold btrfs_auto_defrag_exit(void);
4cb5300b 3216int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
6158e1ce 3217 struct btrfs_inode *inode);
4cb5300b 3218int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info);
26176e7c 3219void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info);
02c24a82 3220int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
dcdbc059 3221void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
7014cdb4 3222 int skip_pinned);
828c0950 3223extern const struct file_operations btrfs_file_operations;
5dc562c5
JB
3224int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
3225 struct btrfs_root *root, struct inode *inode,
3226 struct btrfs_path *path, u64 start, u64 end,
1acae57b
FDBM
3227 u64 *drop_end, int drop_cache,
3228 int replace_extent,
3229 u32 extent_item_size,
3230 int *key_inserted);
5dc562c5
JB
3231int btrfs_drop_extents(struct btrfs_trans_handle *trans,
3232 struct btrfs_root *root, struct inode *inode, u64 start,
2671485d 3233 u64 end, int drop_cache);
d899e052 3234int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
7a6d7067 3235 struct btrfs_inode *inode, u64 start, u64 end);
6bf13c0c 3236int btrfs_release_file(struct inode *inode, struct file *file);
2ff7e61e
JM
3237int btrfs_dirty_pages(struct inode *inode, struct page **pages,
3238 size_t num_pages, loff_t pos, size_t write_bytes,
be1a12a0 3239 struct extent_state **cached);
728404da 3240int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end);
42ec3d4c
DW
3241loff_t btrfs_remap_file_range(struct file *file_in, loff_t pos_in,
3242 struct file *file_out, loff_t pos_out,
3243 loff_t len, unsigned int remap_flags);
6bf13c0c 3244
6702ed49
CM
3245/* tree-defrag.c */
3246int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
de78b51a 3247 struct btrfs_root *root);
58176a96
JB
3248
3249/* sysfs.c */
f5c29bd9 3250int __init btrfs_init_sysfs(void);
e67c718b 3251void __cold btrfs_exit_sysfs(void);
96f3136e 3252int btrfs_sysfs_add_mounted(struct btrfs_fs_info *fs_info);
6618a59b 3253void btrfs_sysfs_remove_mounted(struct btrfs_fs_info *fs_info);
58176a96 3254
edbd8d4e 3255/* super.c */
2ff7e61e 3256int btrfs_parse_options(struct btrfs_fs_info *info, char *options,
96da0919 3257 unsigned long new_flags);
6bf13c0c 3258int btrfs_sync_fs(struct super_block *sb, int wait);
533574c6 3259
e67c718b 3260static inline __printf(2, 3) __cold
2fd57fcb
AB
3261void btrfs_no_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...)
3262{
3263}
3264
533574c6
JP
3265#ifdef CONFIG_PRINTK
3266__printf(2, 3)
e67c718b 3267__cold
c2cf52eb 3268void btrfs_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...);
533574c6 3269#else
2fd57fcb
AB
3270#define btrfs_printk(fs_info, fmt, args...) \
3271 btrfs_no_printk(fs_info, fmt, ##args)
533574c6
JP
3272#endif
3273
c2cf52eb
SK
3274#define btrfs_emerg(fs_info, fmt, args...) \
3275 btrfs_printk(fs_info, KERN_EMERG fmt, ##args)
3276#define btrfs_alert(fs_info, fmt, args...) \
3277 btrfs_printk(fs_info, KERN_ALERT fmt, ##args)
3278#define btrfs_crit(fs_info, fmt, args...) \
3279 btrfs_printk(fs_info, KERN_CRIT fmt, ##args)
3280#define btrfs_err(fs_info, fmt, args...) \
3281 btrfs_printk(fs_info, KERN_ERR fmt, ##args)
3282#define btrfs_warn(fs_info, fmt, args...) \
3283 btrfs_printk(fs_info, KERN_WARNING fmt, ##args)
3284#define btrfs_notice(fs_info, fmt, args...) \
3285 btrfs_printk(fs_info, KERN_NOTICE fmt, ##args)
3286#define btrfs_info(fs_info, fmt, args...) \
3287 btrfs_printk(fs_info, KERN_INFO fmt, ##args)
27a0dd61 3288
08a84e25
DS
3289/*
3290 * Wrappers that use printk_in_rcu
3291 */
3292#define btrfs_emerg_in_rcu(fs_info, fmt, args...) \
3293 btrfs_printk_in_rcu(fs_info, KERN_EMERG fmt, ##args)
3294#define btrfs_alert_in_rcu(fs_info, fmt, args...) \
3295 btrfs_printk_in_rcu(fs_info, KERN_ALERT fmt, ##args)
3296#define btrfs_crit_in_rcu(fs_info, fmt, args...) \
3297 btrfs_printk_in_rcu(fs_info, KERN_CRIT fmt, ##args)
3298#define btrfs_err_in_rcu(fs_info, fmt, args...) \
3299 btrfs_printk_in_rcu(fs_info, KERN_ERR fmt, ##args)
3300#define btrfs_warn_in_rcu(fs_info, fmt, args...) \
3301 btrfs_printk_in_rcu(fs_info, KERN_WARNING fmt, ##args)
3302#define btrfs_notice_in_rcu(fs_info, fmt, args...) \
3303 btrfs_printk_in_rcu(fs_info, KERN_NOTICE fmt, ##args)
3304#define btrfs_info_in_rcu(fs_info, fmt, args...) \
3305 btrfs_printk_in_rcu(fs_info, KERN_INFO fmt, ##args)
3306
24aa6b41
DS
3307/*
3308 * Wrappers that use a ratelimited printk_in_rcu
3309 */
3310#define btrfs_emerg_rl_in_rcu(fs_info, fmt, args...) \
3311 btrfs_printk_rl_in_rcu(fs_info, KERN_EMERG fmt, ##args)
3312#define btrfs_alert_rl_in_rcu(fs_info, fmt, args...) \
3313 btrfs_printk_rl_in_rcu(fs_info, KERN_ALERT fmt, ##args)
3314#define btrfs_crit_rl_in_rcu(fs_info, fmt, args...) \
3315 btrfs_printk_rl_in_rcu(fs_info, KERN_CRIT fmt, ##args)
3316#define btrfs_err_rl_in_rcu(fs_info, fmt, args...) \
3317 btrfs_printk_rl_in_rcu(fs_info, KERN_ERR fmt, ##args)
3318#define btrfs_warn_rl_in_rcu(fs_info, fmt, args...) \
3319 btrfs_printk_rl_in_rcu(fs_info, KERN_WARNING fmt, ##args)
3320#define btrfs_notice_rl_in_rcu(fs_info, fmt, args...) \
3321 btrfs_printk_rl_in_rcu(fs_info, KERN_NOTICE fmt, ##args)
3322#define btrfs_info_rl_in_rcu(fs_info, fmt, args...) \
3323 btrfs_printk_rl_in_rcu(fs_info, KERN_INFO fmt, ##args)
3324
1dd6d7ca
DS
3325/*
3326 * Wrappers that use a ratelimited printk
3327 */
3328#define btrfs_emerg_rl(fs_info, fmt, args...) \
3329 btrfs_printk_ratelimited(fs_info, KERN_EMERG fmt, ##args)
3330#define btrfs_alert_rl(fs_info, fmt, args...) \
3331 btrfs_printk_ratelimited(fs_info, KERN_ALERT fmt, ##args)
3332#define btrfs_crit_rl(fs_info, fmt, args...) \
3333 btrfs_printk_ratelimited(fs_info, KERN_CRIT fmt, ##args)
3334#define btrfs_err_rl(fs_info, fmt, args...) \
3335 btrfs_printk_ratelimited(fs_info, KERN_ERR fmt, ##args)
3336#define btrfs_warn_rl(fs_info, fmt, args...) \
3337 btrfs_printk_ratelimited(fs_info, KERN_WARNING fmt, ##args)
3338#define btrfs_notice_rl(fs_info, fmt, args...) \
3339 btrfs_printk_ratelimited(fs_info, KERN_NOTICE fmt, ##args)
3340#define btrfs_info_rl(fs_info, fmt, args...) \
3341 btrfs_printk_ratelimited(fs_info, KERN_INFO fmt, ##args)
897a41b1
JM
3342
3343#if defined(CONFIG_DYNAMIC_DEBUG)
3344#define btrfs_debug(fs_info, fmt, args...) \
afe1a715
RV
3345 _dynamic_func_call_no_desc(fmt, btrfs_printk, \
3346 fs_info, KERN_DEBUG fmt, ##args)
3347#define btrfs_debug_in_rcu(fs_info, fmt, args...) \
3348 _dynamic_func_call_no_desc(fmt, btrfs_printk_in_rcu, \
3349 fs_info, KERN_DEBUG fmt, ##args)
897a41b1 3350#define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
afe1a715
RV
3351 _dynamic_func_call_no_desc(fmt, btrfs_printk_rl_in_rcu, \
3352 fs_info, KERN_DEBUG fmt, ##args)
3353#define btrfs_debug_rl(fs_info, fmt, args...) \
3354 _dynamic_func_call_no_desc(fmt, btrfs_printk_ratelimited, \
3355 fs_info, KERN_DEBUG fmt, ##args)
897a41b1 3356#elif defined(DEBUG)
c2cf52eb
SK
3357#define btrfs_debug(fs_info, fmt, args...) \
3358 btrfs_printk(fs_info, KERN_DEBUG fmt, ##args)
08a84e25
DS
3359#define btrfs_debug_in_rcu(fs_info, fmt, args...) \
3360 btrfs_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
24aa6b41
DS
3361#define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
3362 btrfs_printk_rl_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
1dd6d7ca
DS
3363#define btrfs_debug_rl(fs_info, fmt, args...) \
3364 btrfs_printk_ratelimited(fs_info, KERN_DEBUG fmt, ##args)
27a0dd61
FH
3365#else
3366#define btrfs_debug(fs_info, fmt, args...) \
c01f5f96 3367 btrfs_no_printk(fs_info, KERN_DEBUG fmt, ##args)
08a84e25 3368#define btrfs_debug_in_rcu(fs_info, fmt, args...) \
b6fdfbff 3369 btrfs_no_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
24aa6b41 3370#define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
b6fdfbff 3371 btrfs_no_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
1dd6d7ca 3372#define btrfs_debug_rl(fs_info, fmt, args...) \
c01f5f96 3373 btrfs_no_printk(fs_info, KERN_DEBUG fmt, ##args)
27a0dd61 3374#endif
c2cf52eb 3375
08a84e25
DS
3376#define btrfs_printk_in_rcu(fs_info, fmt, args...) \
3377do { \
3378 rcu_read_lock(); \
3379 btrfs_printk(fs_info, fmt, ##args); \
b6fdfbff
MT
3380 rcu_read_unlock(); \
3381} while (0)
3382
3383#define btrfs_no_printk_in_rcu(fs_info, fmt, args...) \
3384do { \
3385 rcu_read_lock(); \
3386 btrfs_no_printk(fs_info, fmt, ##args); \
08a84e25
DS
3387 rcu_read_unlock(); \
3388} while (0)
3389
24aa6b41
DS
3390#define btrfs_printk_ratelimited(fs_info, fmt, args...) \
3391do { \
3392 static DEFINE_RATELIMIT_STATE(_rs, \
3393 DEFAULT_RATELIMIT_INTERVAL, \
3394 DEFAULT_RATELIMIT_BURST); \
3395 if (__ratelimit(&_rs)) \
3396 btrfs_printk(fs_info, fmt, ##args); \
3397} while (0)
3398
3399#define btrfs_printk_rl_in_rcu(fs_info, fmt, args...) \
3400do { \
3401 rcu_read_lock(); \
3402 btrfs_printk_ratelimited(fs_info, fmt, ##args); \
3403 rcu_read_unlock(); \
3404} while (0)
3405
c0d19e2b 3406__cold
2ffad70e 3407static inline void assfail(const char *expr, const char *file, int line)
2e17c7c6 3408{
2eec5f00 3409 if (IS_ENABLED(CONFIG_BTRFS_ASSERT)) {
6f8e4fd4 3410 pr_err("assertion failed: %s, in %s:%d\n", expr, file, line);
2eec5f00
AR
3411 BUG();
3412 }
2e17c7c6
JB
3413}
3414
3415#define ASSERT(expr) \
3416 (likely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
2e17c7c6 3417
f8f591df
JT
3418/*
3419 * Use that for functions that are conditionally exported for sanity tests but
3420 * otherwise static
3421 */
3422#ifndef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3423#define EXPORT_FOR_TESTS static
3424#else
3425#define EXPORT_FOR_TESTS
3426#endif
3427
ba3c2b19
NB
3428__cold
3429static inline void btrfs_print_v0_err(struct btrfs_fs_info *fs_info)
3430{
3431 btrfs_err(fs_info,
3432"Unsupported V0 extent filesystem detected. Aborting. Please re-create your filesystem with a newer kernel");
3433}
3434
533574c6 3435__printf(5, 6)
c0d19e2b 3436__cold
34d97007 3437void __btrfs_handle_fs_error(struct btrfs_fs_info *fs_info, const char *function,
4da35113 3438 unsigned int line, int errno, const char *fmt, ...);
acce952b 3439
e33e17ee 3440const char *btrfs_decode_error(int errno);
533574c6 3441
c0d19e2b 3442__cold
49b25e05 3443void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
66642832 3444 const char *function,
49b25e05
JM
3445 unsigned int line, int errno);
3446
c5f4ccb2
AJ
3447/*
3448 * Call btrfs_abort_transaction as early as possible when an error condition is
3449 * detected, that way the exact line number is reported.
3450 */
66642832 3451#define btrfs_abort_transaction(trans, errno) \
c5f4ccb2
AJ
3452do { \
3453 /* Report first abort since mount */ \
3454 if (!test_and_set_bit(BTRFS_FS_STATE_TRANS_ABORTED, \
66642832 3455 &((trans)->fs_info->fs_state))) { \
e5d6b12f
CM
3456 if ((errno) != -EIO) { \
3457 WARN(1, KERN_DEBUG \
3458 "BTRFS: Transaction aborted (error %d)\n", \
3459 (errno)); \
3460 } else { \
71367b3f
JM
3461 btrfs_debug((trans)->fs_info, \
3462 "Transaction aborted (error %d)", \
e5d6b12f
CM
3463 (errno)); \
3464 } \
c5f4ccb2 3465 } \
66642832 3466 __btrfs_abort_transaction((trans), __func__, \
c5f4ccb2
AJ
3467 __LINE__, (errno)); \
3468} while (0)
3469
3470#define btrfs_handle_fs_error(fs_info, errno, fmt, args...) \
3471do { \
3472 __btrfs_handle_fs_error((fs_info), __func__, __LINE__, \
3473 (errno), fmt, ##args); \
3474} while (0)
3475
3476__printf(5, 6)
3477__cold
3478void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
3479 unsigned int line, int errno, const char *fmt, ...);
3480/*
3481 * If BTRFS_MOUNT_PANIC_ON_FATAL_ERROR is in mount_opt, __btrfs_panic
3482 * will panic(). Otherwise we BUG() here.
3483 */
3484#define btrfs_panic(fs_info, errno, fmt, args...) \
3485do { \
3486 __btrfs_panic(fs_info, __func__, __LINE__, errno, fmt, ##args); \
3487 BUG(); \
3488} while (0)
3489
3490
3491/* compatibility and incompatibility defines */
3492
2b0ce2c2 3493#define btrfs_set_fs_incompat(__fs_info, opt) \
c9d713d5
DS
3494 __btrfs_set_fs_incompat((__fs_info), BTRFS_FEATURE_INCOMPAT_##opt, \
3495 #opt)
2b0ce2c2
MH
3496
3497static inline void __btrfs_set_fs_incompat(struct btrfs_fs_info *fs_info,
c9d713d5 3498 u64 flag, const char* name)
2b0ce2c2
MH
3499{
3500 struct btrfs_super_block *disk_super;
3501 u64 features;
3502
3503 disk_super = fs_info->super_copy;
3504 features = btrfs_super_incompat_flags(disk_super);
3505 if (!(features & flag)) {
ceda0864
MX
3506 spin_lock(&fs_info->super_lock);
3507 features = btrfs_super_incompat_flags(disk_super);
3508 if (!(features & flag)) {
3509 features |= flag;
3510 btrfs_set_super_incompat_flags(disk_super, features);
c9d713d5
DS
3511 btrfs_info(fs_info,
3512 "setting incompat feature flag for %s (0x%llx)",
3513 name, flag);
ceda0864
MX
3514 }
3515 spin_unlock(&fs_info->super_lock);
2b0ce2c2
MH
3516 }
3517}
3518
1abfbcdf 3519#define btrfs_clear_fs_incompat(__fs_info, opt) \
c9d713d5
DS
3520 __btrfs_clear_fs_incompat((__fs_info), BTRFS_FEATURE_INCOMPAT_##opt, \
3521 #opt)
1abfbcdf
OS
3522
3523static inline void __btrfs_clear_fs_incompat(struct btrfs_fs_info *fs_info,
c9d713d5 3524 u64 flag, const char* name)
1abfbcdf
OS
3525{
3526 struct btrfs_super_block *disk_super;
3527 u64 features;
3528
3529 disk_super = fs_info->super_copy;
3530 features = btrfs_super_incompat_flags(disk_super);
3531 if (features & flag) {
3532 spin_lock(&fs_info->super_lock);
3533 features = btrfs_super_incompat_flags(disk_super);
3534 if (features & flag) {
3535 features &= ~flag;
3536 btrfs_set_super_incompat_flags(disk_super, features);
c9d713d5
DS
3537 btrfs_info(fs_info,
3538 "clearing incompat feature flag for %s (0x%llx)",
3539 name, flag);
1abfbcdf
OS
3540 }
3541 spin_unlock(&fs_info->super_lock);
3542 }
3543}
3544
3173a18f
JB
3545#define btrfs_fs_incompat(fs_info, opt) \
3546 __btrfs_fs_incompat((fs_info), BTRFS_FEATURE_INCOMPAT_##opt)
3547
9780c497 3548static inline bool __btrfs_fs_incompat(struct btrfs_fs_info *fs_info, u64 flag)
3173a18f
JB
3549{
3550 struct btrfs_super_block *disk_super;
3551 disk_super = fs_info->super_copy;
3552 return !!(btrfs_super_incompat_flags(disk_super) & flag);
3553}
3554
1abfbcdf 3555#define btrfs_set_fs_compat_ro(__fs_info, opt) \
c9d713d5
DS
3556 __btrfs_set_fs_compat_ro((__fs_info), BTRFS_FEATURE_COMPAT_RO_##opt, \
3557 #opt)
1abfbcdf
OS
3558
3559static inline void __btrfs_set_fs_compat_ro(struct btrfs_fs_info *fs_info,
c9d713d5 3560 u64 flag, const char *name)
1abfbcdf
OS
3561{
3562 struct btrfs_super_block *disk_super;
3563 u64 features;
3564
3565 disk_super = fs_info->super_copy;
3566 features = btrfs_super_compat_ro_flags(disk_super);
3567 if (!(features & flag)) {
3568 spin_lock(&fs_info->super_lock);
3569 features = btrfs_super_compat_ro_flags(disk_super);
3570 if (!(features & flag)) {
3571 features |= flag;
3572 btrfs_set_super_compat_ro_flags(disk_super, features);
c9d713d5
DS
3573 btrfs_info(fs_info,
3574 "setting compat-ro feature flag for %s (0x%llx)",
3575 name, flag);
1abfbcdf
OS
3576 }
3577 spin_unlock(&fs_info->super_lock);
3578 }
3579}
3580
3581#define btrfs_clear_fs_compat_ro(__fs_info, opt) \
c9d713d5
DS
3582 __btrfs_clear_fs_compat_ro((__fs_info), BTRFS_FEATURE_COMPAT_RO_##opt, \
3583 #opt)
1abfbcdf
OS
3584
3585static inline void __btrfs_clear_fs_compat_ro(struct btrfs_fs_info *fs_info,
c9d713d5 3586 u64 flag, const char *name)
1abfbcdf
OS
3587{
3588 struct btrfs_super_block *disk_super;
3589 u64 features;
3590
3591 disk_super = fs_info->super_copy;
3592 features = btrfs_super_compat_ro_flags(disk_super);
3593 if (features & flag) {
3594 spin_lock(&fs_info->super_lock);
3595 features = btrfs_super_compat_ro_flags(disk_super);
3596 if (features & flag) {
3597 features &= ~flag;
3598 btrfs_set_super_compat_ro_flags(disk_super, features);
c9d713d5
DS
3599 btrfs_info(fs_info,
3600 "clearing compat-ro feature flag for %s (0x%llx)",
3601 name, flag);
1abfbcdf
OS
3602 }
3603 spin_unlock(&fs_info->super_lock);
3604 }
3605}
3606
3607#define btrfs_fs_compat_ro(fs_info, opt) \
3608 __btrfs_fs_compat_ro((fs_info), BTRFS_FEATURE_COMPAT_RO_##opt)
3609
3610static inline int __btrfs_fs_compat_ro(struct btrfs_fs_info *fs_info, u64 flag)
3611{
3612 struct btrfs_super_block *disk_super;
3613 disk_super = fs_info->super_copy;
3614 return !!(btrfs_super_compat_ro_flags(disk_super) & flag);
3615}
3616
33268eaf 3617/* acl.c */
0eda294d 3618#ifdef CONFIG_BTRFS_FS_POSIX_ACL
4e34e719 3619struct posix_acl *btrfs_get_acl(struct inode *inode, int type);
996a710d 3620int btrfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
f34f57a3
YZ
3621int btrfs_init_acl(struct btrfs_trans_handle *trans,
3622 struct inode *inode, struct inode *dir);
9b89d95a 3623#else
ed8f3737 3624#define btrfs_get_acl NULL
996a710d 3625#define btrfs_set_acl NULL
9b89d95a
LZ
3626static inline int btrfs_init_acl(struct btrfs_trans_handle *trans,
3627 struct inode *inode, struct inode *dir)
3628{
3629 return 0;
3630}
9b89d95a 3631#endif
0f9dd46c 3632
5d4f98a2 3633/* relocation.c */
6bccf3ab 3634int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start);
5d4f98a2
YZ
3635int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
3636 struct btrfs_root *root);
3637int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
3638 struct btrfs_root *root);
3639int btrfs_recover_relocation(struct btrfs_root *root);
3640int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len);
83d4cfd4
JB
3641int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
3642 struct btrfs_root *root, struct extent_buffer *buf,
3643 struct extent_buffer *cow);
147d256e 3644void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
3fd0a558 3645 u64 *bytes_to_reserve);
49b25e05 3646int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
3fd0a558 3647 struct btrfs_pending_snapshot *pending);
a2de733c
AJ
3648
3649/* scrub.c */
aa1b8cd4
SB
3650int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3651 u64 end, struct btrfs_scrub_progress *progress,
63a212ab 3652 int readonly, int is_dev_replace);
2ff7e61e
JM
3653void btrfs_scrub_pause(struct btrfs_fs_info *fs_info);
3654void btrfs_scrub_continue(struct btrfs_fs_info *fs_info);
aa1b8cd4 3655int btrfs_scrub_cancel(struct btrfs_fs_info *info);
163e97ee 3656int btrfs_scrub_cancel_dev(struct btrfs_device *dev);
2ff7e61e 3657int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
a2de733c 3658 struct btrfs_scrub_progress *progress);
0966a7b1
QW
3659static inline void btrfs_init_full_stripe_locks_tree(
3660 struct btrfs_full_stripe_locks_tree *locks_root)
3661{
3662 locks_root->root = RB_ROOT;
3663 mutex_init(&locks_root->lock);
3664}
c404e0dc
MX
3665
3666/* dev-replace.c */
3667void btrfs_bio_counter_inc_blocked(struct btrfs_fs_info *fs_info);
3668void btrfs_bio_counter_inc_noblocked(struct btrfs_fs_info *fs_info);
4245215d
MX
3669void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount);
3670
3671static inline void btrfs_bio_counter_dec(struct btrfs_fs_info *fs_info)
3672{
3673 btrfs_bio_counter_sub(fs_info, 1);
3674}
a2de733c 3675
7414a03f
AJ
3676/* reada.c */
3677struct reada_control {
c28f158e 3678 struct btrfs_fs_info *fs_info; /* tree to prefetch */
7414a03f
AJ
3679 struct btrfs_key key_start;
3680 struct btrfs_key key_end; /* exclusive */
3681 atomic_t elems;
3682 struct kref refcnt;
3683 wait_queue_head_t wait;
3684};
3685struct reada_control *btrfs_reada_add(struct btrfs_root *root,
3686 struct btrfs_key *start, struct btrfs_key *end);
3687int btrfs_reada_wait(void *handle);
3688void btrfs_reada_detach(void *handle);
d48d71aa 3689int btree_readahead_hook(struct extent_buffer *eb, int err);
7414a03f 3690
95a06077
JS
3691static inline int is_fstree(u64 rootid)
3692{
3693 if (rootid == BTRFS_FS_TREE_OBJECTID ||
e09fe2d2
QW
3694 ((s64)rootid >= (s64)BTRFS_FIRST_FREE_OBJECTID &&
3695 !btrfs_qgroup_level(rootid)))
95a06077
JS
3696 return 1;
3697 return 0;
3698}
210549eb
DS
3699
3700static inline int btrfs_defrag_cancelled(struct btrfs_fs_info *fs_info)
3701{
3702 return signal_pending(current);
3703}
3704
e74e3993
NB
3705#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
3706
aaedb55b
JB
3707/* Sanity test specific functions */
3708#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
a654666a 3709void btrfs_test_inode_set_ops(struct inode *inode);
aaedb55b 3710void btrfs_test_destroy_inode(struct inode *inode);
210549eb 3711
f5ee5c9a 3712static inline int btrfs_is_testing(struct btrfs_fs_info *fs_info)
fccb84c9 3713{
b2fa1154
DS
3714 return test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state);
3715}
3716#else
3717static inline int btrfs_is_testing(struct btrfs_fs_info *fs_info)
3718{
fccb84c9
DS
3719 return 0;
3720}
b2fa1154 3721#endif
9888c340 3722
110a21fe
DS
3723static inline void cond_wake_up(struct wait_queue_head *wq)
3724{
3725 /*
3726 * This implies a full smp_mb barrier, see comments for
3727 * waitqueue_active why.
3728 */
3729 if (wq_has_sleeper(wq))
3730 wake_up(wq);
3731}
3732
3733static inline void cond_wake_up_nomb(struct wait_queue_head *wq)
3734{
3735 /*
3736 * Special case for conditional wakeup where the barrier required for
3737 * waitqueue_active is implied by some of the preceding code. Eg. one
3738 * of such atomic operations (atomic_dec_and_return, ...), or a
3739 * unlock/lock sequence, etc.
3740 */
3741 if (waitqueue_active(wq))
3742 wake_up(wq);
3743}
3744
eb60ceac 3745#endif