]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/btrfs/ctree.h
Btrfs: use the inode own lock to protect its delalloc_bytes
[mirror_ubuntu-hirsute-kernel.git] / fs / btrfs / ctree.h
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
dc17ff8f
CM
19#ifndef __BTRFS_CTREE__
20#define __BTRFS_CTREE__
eb60ceac 21
810191ff
CM
22#include <linux/mm.h>
23#include <linux/highmem.h>
e20d96d6 24#include <linux/fs.h>
a2de733c 25#include <linux/rwsem.h>
58176a96 26#include <linux/completion.h>
04160088 27#include <linux/backing-dev.h>
e6dcd2dc 28#include <linux/wait.h>
5a0e3ad6 29#include <linux/slab.h>
f8b18087 30#include <linux/kobject.h>
1abe9b8a 31#include <trace/events/btrfs.h>
479965d6 32#include <asm/kmap_types.h>
3b16a4e3 33#include <linux/pagemap.h>
55e301fd 34#include <linux/btrfs.h>
d1310b2e 35#include "extent_io.h"
5f39d397 36#include "extent_map.h"
8b712842 37#include "async-thread.h"
e20d96d6 38
e089f05c 39struct btrfs_trans_handle;
79154b1b 40struct btrfs_transaction;
a22285a6 41struct btrfs_pending_snapshot;
35b7e476
CM
42extern struct kmem_cache *btrfs_trans_handle_cachep;
43extern struct kmem_cache *btrfs_transaction_cachep;
44extern struct kmem_cache *btrfs_bit_radix_cachep;
2c90e5d6 45extern struct kmem_cache *btrfs_path_cachep;
dc89e982 46extern struct kmem_cache *btrfs_free_space_cachep;
e6dcd2dc 47struct btrfs_ordered_sum;
e089f05c 48
2a7108ad 49#define BTRFS_MAGIC "_BHRfS_M"
eb60ceac 50
72d7aefc 51#define BTRFS_MAX_MIRRORS 3
94598ba8 52
4008c04a 53#define BTRFS_MAX_LEVEL 8
0b86a832 54
5d4f98a2
YZ
55#define BTRFS_COMPAT_EXTENT_TREE_V0
56
5a3f23d5
CM
57/*
58 * files bigger than this get some pre-flushing when they are added
59 * to the ordered operations list. That way we limit the total
60 * work done by the commit
61 */
62#define BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT (8 * 1024 * 1024)
63
0b86a832 64/* holds pointers to all of the tree roots */
6407bf6d 65#define BTRFS_ROOT_TREE_OBJECTID 1ULL
0b86a832
CM
66
67/* stores information about which extents are in use, and reference counts */
0cf6c620 68#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
0b86a832 69
0b86a832
CM
70/*
71 * chunk tree stores translations from logical -> physical block numbering
72 * the super block points to the chunk tree
73 */
e085def2 74#define BTRFS_CHUNK_TREE_OBJECTID 3ULL
0b86a832
CM
75
76/*
77 * stores information about which areas of a given device are in use.
78 * one per device. The tree of tree roots points to the device tree
79 */
e085def2
CM
80#define BTRFS_DEV_TREE_OBJECTID 4ULL
81
82/* one per subvolume, storing files and directories */
83#define BTRFS_FS_TREE_OBJECTID 5ULL
84
85/* directory objectid inside the root tree */
86#define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
0b86a832 87
d20f7043
CM
88/* holds checksums of all the data extents */
89#define BTRFS_CSUM_TREE_OBJECTID 7ULL
90
0940ebf6
ID
91/* for storing balance parameters in the root tree */
92#define BTRFS_BALANCE_OBJECTID -4ULL
93
630dc772
AJ
94/* holds quota configuration and tracking */
95#define BTRFS_QUOTA_TREE_OBJECTID 8ULL
96
7b128766
JB
97/* orhpan objectid for tracking unlinked/truncated files */
98#define BTRFS_ORPHAN_OBJECTID -5ULL
99
e02119d5
CM
100/* does write ahead logging to speed up fsyncs */
101#define BTRFS_TREE_LOG_OBJECTID -6ULL
102#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
103
e4657689
ZY
104/* for space balancing */
105#define BTRFS_TREE_RELOC_OBJECTID -8ULL
106#define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
107
d20f7043
CM
108/*
109 * extent checksums all have this objectid
110 * this allows them to share the logging tree
111 * for fsyncs
112 */
113#define BTRFS_EXTENT_CSUM_OBJECTID -10ULL
114
0af3d00b
JB
115/* For storing free space cache */
116#define BTRFS_FREE_SPACE_OBJECTID -11ULL
117
82d5902d 118/*
527a1361 119 * The inode number assigned to the special inode for storing
82d5902d
LZ
120 * free ino cache
121 */
122#define BTRFS_FREE_INO_OBJECTID -12ULL
123
31840ae1
ZY
124/* dummy objectid represents multiple objectids */
125#define BTRFS_MULTIPLE_OBJECTIDS -255ULL
126
0b86a832 127/*
6527cdbe 128 * All files have objectids in this range.
0b86a832 129 */
f6dbff55 130#define BTRFS_FIRST_FREE_OBJECTID 256ULL
6527cdbe 131#define BTRFS_LAST_FREE_OBJECTID -256ULL
e17cade2 132#define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
3768f368 133
0b86a832
CM
134
135/*
136 * the device items go into the chunk tree. The key is in the form
137 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
138 */
139#define BTRFS_DEV_ITEMS_OBJECTID 1ULL
140
4df27c4d
YZ
141#define BTRFS_BTREE_INODE_OBJECTID 1
142
143#define BTRFS_EMPTY_SUBVOL_DIR_OBJECTID 2
144
e93c89c1
SB
145#define BTRFS_DEV_REPLACE_DEVID 0
146
727011e0
CM
147/*
148 * the max metadata block size. This limit is somewhat artificial,
149 * but the memmove costs go through the roof for larger blocks.
150 */
151#define BTRFS_MAX_METADATA_BLOCKSIZE 65536
152
e20d96d6
CM
153/*
154 * we can actually store much bigger names, but lets not confuse the rest
155 * of linux
156 */
157#define BTRFS_NAME_LEN 255
158
f186373f
MF
159/*
160 * Theoretical limit is larger, but we keep this down to a sane
161 * value. That should limit greatly the possibility of collisions on
162 * inode ref items.
163 */
164#define BTRFS_LINK_MAX 65535U
165
f254e52c
CM
166/* 32 bytes in various csum fields */
167#define BTRFS_CSUM_SIZE 32
607d432d
JB
168
169/* csum types */
170#define BTRFS_CSUM_TYPE_CRC32 0
171
172static int btrfs_csum_sizes[] = { 4, 0 };
173
509659cd 174/* four bytes for CRC32 */
3954401f 175#define BTRFS_EMPTY_DIR_SIZE 0
f254e52c 176
29a8d9a0
SB
177/* spefic to btrfs_map_block(), therefore not in include/linux/blk_types.h */
178#define REQ_GET_READ_MIRRORS (1 << 30)
179
fabb5681
CM
180#define BTRFS_FT_UNKNOWN 0
181#define BTRFS_FT_REG_FILE 1
182#define BTRFS_FT_DIR 2
183#define BTRFS_FT_CHRDEV 3
184#define BTRFS_FT_BLKDEV 4
185#define BTRFS_FT_FIFO 5
186#define BTRFS_FT_SOCK 6
187#define BTRFS_FT_SYMLINK 7
5103e947
JB
188#define BTRFS_FT_XATTR 8
189#define BTRFS_FT_MAX 9
fabb5681 190
3d136a11
SB
191/* ioprio of readahead is set to idle */
192#define BTRFS_IOPRIO_READA (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0))
193
e2d84521
MX
194#define BTRFS_DIRTY_METADATA_THRESH (32 * 1024 * 1024)
195
fec577fb 196/*
d4a78947
WF
197 * The key defines the order in the tree, and so it also defines (optimal)
198 * block layout.
199 *
200 * objectid corresponds to the inode number.
201 *
202 * type tells us things about the object, and is a kind of stream selector.
203 * so for a given inode, keys with type of 1 might refer to the inode data,
204 * type of 2 may point to file data in the btree and type == 3 may point to
205 * extents.
fec577fb
CM
206 *
207 * offset is the starting byte offset for this key in the stream.
e2fa7227
CM
208 *
209 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
210 * in cpu native order. Otherwise they are identical and their sizes
211 * should be the same (ie both packed)
fec577fb 212 */
e2fa7227
CM
213struct btrfs_disk_key {
214 __le64 objectid;
5f39d397 215 u8 type;
70b2befd 216 __le64 offset;
e2fa7227
CM
217} __attribute__ ((__packed__));
218
219struct btrfs_key {
eb60ceac 220 u64 objectid;
5f39d397 221 u8 type;
70b2befd 222 u64 offset;
eb60ceac
CM
223} __attribute__ ((__packed__));
224
0b86a832
CM
225struct btrfs_mapping_tree {
226 struct extent_map_tree map_tree;
227};
228
0b86a832
CM
229struct btrfs_dev_item {
230 /* the internal btrfs device id */
231 __le64 devid;
232
233 /* size of the device */
234 __le64 total_bytes;
235
236 /* bytes used */
237 __le64 bytes_used;
238
239 /* optimal io alignment for this device */
240 __le32 io_align;
241
242 /* optimal io width for this device */
243 __le32 io_width;
244
245 /* minimal io size for this device */
246 __le32 sector_size;
247
0b86a832
CM
248 /* type and info about this device */
249 __le64 type;
250
2b82032c
YZ
251 /* expected generation for this device */
252 __le64 generation;
253
c3027eb5
CM
254 /*
255 * starting byte of this partition on the device,
d4a78947 256 * to allow for stripe alignment in the future
c3027eb5
CM
257 */
258 __le64 start_offset;
259
e17cade2
CM
260 /* grouping information for allocation decisions */
261 __le32 dev_group;
262
263 /* seek speed 0-100 where 100 is fastest */
264 u8 seek_speed;
265
266 /* bandwidth 0-100 where 100 is fastest */
267 u8 bandwidth;
268
0d81ba5d 269 /* btrfs generated uuid for this device */
e17cade2 270 u8 uuid[BTRFS_UUID_SIZE];
2b82032c
YZ
271
272 /* uuid of FS who owns this device */
273 u8 fsid[BTRFS_UUID_SIZE];
0b86a832
CM
274} __attribute__ ((__packed__));
275
276struct btrfs_stripe {
277 __le64 devid;
278 __le64 offset;
e17cade2 279 u8 dev_uuid[BTRFS_UUID_SIZE];
0b86a832
CM
280} __attribute__ ((__packed__));
281
282struct btrfs_chunk {
e17cade2
CM
283 /* size of this chunk in bytes */
284 __le64 length;
285
286 /* objectid of the root referencing this chunk */
0b86a832 287 __le64 owner;
e17cade2 288
0b86a832
CM
289 __le64 stripe_len;
290 __le64 type;
291
292 /* optimal io alignment for this chunk */
293 __le32 io_align;
294
295 /* optimal io width for this chunk */
296 __le32 io_width;
297
298 /* minimal io size for this chunk */
299 __le32 sector_size;
300
301 /* 2^16 stripes is quite a lot, a second limit is the size of a single
302 * item in the btree
303 */
304 __le16 num_stripes;
321aecc6
CM
305
306 /* sub stripes only matter for raid10 */
307 __le16 sub_stripes;
0b86a832
CM
308 struct btrfs_stripe stripe;
309 /* additional stripes go here */
310} __attribute__ ((__packed__));
311
0af3d00b
JB
312#define BTRFS_FREE_SPACE_EXTENT 1
313#define BTRFS_FREE_SPACE_BITMAP 2
314
315struct btrfs_free_space_entry {
316 __le64 offset;
317 __le64 bytes;
318 u8 type;
319} __attribute__ ((__packed__));
320
321struct btrfs_free_space_header {
322 struct btrfs_disk_key location;
323 __le64 generation;
324 __le64 num_entries;
325 __le64 num_bitmaps;
326} __attribute__ ((__packed__));
327
0b86a832
CM
328static inline unsigned long btrfs_chunk_item_size(int num_stripes)
329{
330 BUG_ON(num_stripes == 0);
331 return sizeof(struct btrfs_chunk) +
332 sizeof(struct btrfs_stripe) * (num_stripes - 1);
333}
334
5d4f98a2
YZ
335#define BTRFS_HEADER_FLAG_WRITTEN (1ULL << 0)
336#define BTRFS_HEADER_FLAG_RELOC (1ULL << 1)
acce952b 337
338/*
339 * File system states
340 */
341
342/* Errors detected */
343#define BTRFS_SUPER_FLAG_ERROR (1ULL << 2)
344
5d4f98a2
YZ
345#define BTRFS_SUPER_FLAG_SEEDING (1ULL << 32)
346#define BTRFS_SUPER_FLAG_METADUMP (1ULL << 33)
347
348#define BTRFS_BACKREF_REV_MAX 256
349#define BTRFS_BACKREF_REV_SHIFT 56
350#define BTRFS_BACKREF_REV_MASK (((u64)BTRFS_BACKREF_REV_MAX - 1) << \
351 BTRFS_BACKREF_REV_SHIFT)
352
353#define BTRFS_OLD_BACKREF_REV 0
354#define BTRFS_MIXED_BACKREF_REV 1
63b10fc4 355
fec577fb
CM
356/*
357 * every tree block (leaf or node) starts with this header.
358 */
bb492bb0 359struct btrfs_header {
e17cade2 360 /* these first four must match the super block */
f254e52c 361 u8 csum[BTRFS_CSUM_SIZE];
5f39d397 362 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
db94535d 363 __le64 bytenr; /* which block this node is supposed to live in */
63b10fc4 364 __le64 flags;
e17cade2
CM
365
366 /* allowed to be different from the super from here on down */
367 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
7f5c1516 368 __le64 generation;
4d775673 369 __le64 owner;
5f39d397 370 __le32 nritems;
9a6f11ed 371 u8 level;
eb60ceac
CM
372} __attribute__ ((__packed__));
373
5f39d397 374#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
d397712b
CM
375 sizeof(struct btrfs_header)) / \
376 sizeof(struct btrfs_key_ptr))
123abc88 377#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
5f39d397 378#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
236454df
CM
379#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
380 sizeof(struct btrfs_item) - \
381 sizeof(struct btrfs_file_extent_item))
f34f57a3
YZ
382#define BTRFS_MAX_XATTR_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
383 sizeof(struct btrfs_item) -\
384 sizeof(struct btrfs_dir_item))
eb60ceac 385
0b86a832
CM
386
387/*
388 * this is a very generous portion of the super block, giving us
389 * room to translate 14 chunks with 3 stripes each.
390 */
391#define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
7ae9c09d 392#define BTRFS_LABEL_SIZE 256
0b86a832 393
af31f5e5
CM
394/*
395 * just in case we somehow lose the roots and are not able to mount,
396 * we store an array of the roots from previous transactions
397 * in the super.
398 */
399#define BTRFS_NUM_BACKUP_ROOTS 4
400struct btrfs_root_backup {
401 __le64 tree_root;
402 __le64 tree_root_gen;
403
404 __le64 chunk_root;
405 __le64 chunk_root_gen;
406
407 __le64 extent_root;
408 __le64 extent_root_gen;
409
410 __le64 fs_root;
411 __le64 fs_root_gen;
412
413 __le64 dev_root;
414 __le64 dev_root_gen;
415
416 __le64 csum_root;
417 __le64 csum_root_gen;
418
419 __le64 total_bytes;
420 __le64 bytes_used;
421 __le64 num_devices;
422 /* future */
d1423248 423 __le64 unused_64[4];
af31f5e5
CM
424
425 u8 tree_root_level;
426 u8 chunk_root_level;
427 u8 extent_root_level;
428 u8 fs_root_level;
429 u8 dev_root_level;
430 u8 csum_root_level;
431 /* future and to align */
432 u8 unused_8[10];
433} __attribute__ ((__packed__));
434
fec577fb
CM
435/*
436 * the super block basically lists the main trees of the FS
437 * it currently lacks any block count etc etc
438 */
234b63a0 439struct btrfs_super_block {
f254e52c 440 u8 csum[BTRFS_CSUM_SIZE];
63b10fc4 441 /* the first 4 fields must match struct btrfs_header */
2b82032c 442 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
db94535d 443 __le64 bytenr; /* this block number */
63b10fc4 444 __le64 flags;
e17cade2
CM
445
446 /* allowed to be different from the btrfs_header from here own down */
3768f368 447 __le64 magic;
3768f368
CM
448 __le64 generation;
449 __le64 root;
0b86a832 450 __le64 chunk_root;
e02119d5 451 __le64 log_root;
c3027eb5
CM
452
453 /* this will help find the new super based on the log root */
454 __le64 log_root_transid;
db94535d
CM
455 __le64 total_bytes;
456 __le64 bytes_used;
2e635a27 457 __le64 root_dir_objectid;
8a4b83cc 458 __le64 num_devices;
5f39d397
CM
459 __le32 sectorsize;
460 __le32 nodesize;
461 __le32 leafsize;
87ee04eb 462 __le32 stripesize;
0b86a832 463 __le32 sys_chunk_array_size;
84234f3a 464 __le64 chunk_root_generation;
f2b636e8
JB
465 __le64 compat_flags;
466 __le64 compat_ro_flags;
467 __le64 incompat_flags;
607d432d 468 __le16 csum_type;
db94535d 469 u8 root_level;
0b86a832 470 u8 chunk_root_level;
e02119d5 471 u8 log_root_level;
0d81ba5d 472 struct btrfs_dev_item dev_item;
c3027eb5 473
7ae9c09d 474 char label[BTRFS_LABEL_SIZE];
c3027eb5 475
0af3d00b
JB
476 __le64 cache_generation;
477
c3027eb5 478 /* future expansion */
0af3d00b 479 __le64 reserved[31];
0b86a832 480 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
af31f5e5 481 struct btrfs_root_backup super_roots[BTRFS_NUM_BACKUP_ROOTS];
cfaa7295
CM
482} __attribute__ ((__packed__));
483
f2b636e8
JB
484/*
485 * Compat flags that we support. If any incompat flags are set other than the
486 * ones specified below then we will fail to mount
487 */
5d4f98a2 488#define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF (1ULL << 0)
0af3d00b 489#define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL (1ULL << 1)
67377734 490#define BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS (1ULL << 2)
a6fa6fae 491#define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO (1ULL << 3)
727011e0
CM
492/*
493 * some patches floated around with a second compression method
494 * lets save that incompat here for when they do get in
495 * Note we don't actually support it, we're just reserving the
496 * number
497 */
498#define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZOv2 (1ULL << 4)
499
500/*
501 * older kernels tried to do bigger metadata blocks, but the
502 * code was pretty buggy. Lets not let them try anymore.
503 */
504#define BTRFS_FEATURE_INCOMPAT_BIG_METADATA (1ULL << 5)
5d4f98a2 505
f186373f
MF
506#define BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF (1ULL << 6)
507
5d4f98a2
YZ
508#define BTRFS_FEATURE_COMPAT_SUPP 0ULL
509#define BTRFS_FEATURE_COMPAT_RO_SUPP 0ULL
0af3d00b
JB
510#define BTRFS_FEATURE_INCOMPAT_SUPP \
511 (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \
67377734 512 BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \
a6fa6fae 513 BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \
727011e0 514 BTRFS_FEATURE_INCOMPAT_BIG_METADATA | \
f186373f
MF
515 BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \
516 BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
f2b636e8 517
fec577fb 518/*
62e2749e 519 * A leaf is full of items. offset and size tell us where to find
fec577fb
CM
520 * the item in the leaf (relative to the start of the data area)
521 */
0783fcfc 522struct btrfs_item {
e2fa7227 523 struct btrfs_disk_key key;
123abc88 524 __le32 offset;
5f39d397 525 __le32 size;
eb60ceac
CM
526} __attribute__ ((__packed__));
527
fec577fb
CM
528/*
529 * leaves have an item area and a data area:
530 * [item0, item1....itemN] [free space] [dataN...data1, data0]
531 *
532 * The data is separate from the items to get the keys closer together
533 * during searches.
534 */
234b63a0 535struct btrfs_leaf {
bb492bb0 536 struct btrfs_header header;
123abc88 537 struct btrfs_item items[];
eb60ceac
CM
538} __attribute__ ((__packed__));
539
fec577fb
CM
540/*
541 * all non-leaf blocks are nodes, they hold only keys and pointers to
542 * other blocks
543 */
123abc88
CM
544struct btrfs_key_ptr {
545 struct btrfs_disk_key key;
546 __le64 blockptr;
74493f7a 547 __le64 generation;
123abc88
CM
548} __attribute__ ((__packed__));
549
234b63a0 550struct btrfs_node {
bb492bb0 551 struct btrfs_header header;
123abc88 552 struct btrfs_key_ptr ptrs[];
eb60ceac
CM
553} __attribute__ ((__packed__));
554
fec577fb 555/*
234b63a0
CM
556 * btrfs_paths remember the path taken from the root down to the leaf.
557 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
fec577fb
CM
558 * to any other levels that are present.
559 *
560 * The slots array records the index of the item or block pointer
561 * used while walking the tree.
562 */
234b63a0 563struct btrfs_path {
5f39d397 564 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
234b63a0 565 int slots[BTRFS_MAX_LEVEL];
925baedd
CM
566 /* if there is real range locking, this locks field will change */
567 int locks[BTRFS_MAX_LEVEL];
3c69faec 568 int reada;
925baedd 569 /* keep some upper locks as we walk down */
6702ed49 570 int lowest_level;
459931ec
CM
571
572 /*
573 * set by btrfs_split_item, tells search_slot to keep all locks
574 * and to force calls to keep space in the nodes
575 */
b9473439
CM
576 unsigned int search_for_split:1;
577 unsigned int keep_locks:1;
578 unsigned int skip_locking:1;
579 unsigned int leave_spinning:1;
5d4f98a2 580 unsigned int search_commit_root:1;
d6393786 581 unsigned int really_keep_locks:1;
eb60ceac 582};
5de08d7d 583
62e2749e
CM
584/*
585 * items in the extent btree are used to record the objectid of the
586 * owner of the block and the number of references
587 */
5d4f98a2 588
62e2749e 589struct btrfs_extent_item {
5d4f98a2
YZ
590 __le64 refs;
591 __le64 generation;
592 __le64 flags;
593} __attribute__ ((__packed__));
594
595struct btrfs_extent_item_v0 {
62e2749e 596 __le32 refs;
74493f7a
CM
597} __attribute__ ((__packed__));
598
5d4f98a2
YZ
599#define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r) >> 4) - \
600 sizeof(struct btrfs_item))
601
602#define BTRFS_EXTENT_FLAG_DATA (1ULL << 0)
603#define BTRFS_EXTENT_FLAG_TREE_BLOCK (1ULL << 1)
604
605/* following flags only apply to tree blocks */
606
607/* use full backrefs for extent pointers in the block */
608#define BTRFS_BLOCK_FLAG_FULL_BACKREF (1ULL << 8)
609
a2de733c
AJ
610/*
611 * this flag is only used internally by scrub and may be changed at any time
612 * it is only declared here to avoid collisions
613 */
614#define BTRFS_EXTENT_FLAG_SUPER (1ULL << 48)
615
5d4f98a2
YZ
616struct btrfs_tree_block_info {
617 struct btrfs_disk_key key;
618 u8 level;
619} __attribute__ ((__packed__));
620
621struct btrfs_extent_data_ref {
622 __le64 root;
623 __le64 objectid;
624 __le64 offset;
625 __le32 count;
626} __attribute__ ((__packed__));
627
628struct btrfs_shared_data_ref {
629 __le32 count;
630} __attribute__ ((__packed__));
631
632struct btrfs_extent_inline_ref {
633 u8 type;
1bec1aed 634 __le64 offset;
5d4f98a2
YZ
635} __attribute__ ((__packed__));
636
637/* old style backrefs item */
638struct btrfs_extent_ref_v0 {
74493f7a
CM
639 __le64 root;
640 __le64 generation;
641 __le64 objectid;
5d4f98a2 642 __le32 count;
62e2749e
CM
643} __attribute__ ((__packed__));
644
5d4f98a2 645
0b86a832
CM
646/* dev extents record free space on individual devices. The owner
647 * field points back to the chunk allocation mapping tree that allocated
e17cade2 648 * the extent. The chunk tree uuid field is a way to double check the owner
0b86a832
CM
649 */
650struct btrfs_dev_extent {
e17cade2
CM
651 __le64 chunk_tree;
652 __le64 chunk_objectid;
653 __le64 chunk_offset;
0b86a832 654 __le64 length;
e17cade2 655 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
0b86a832
CM
656} __attribute__ ((__packed__));
657
3954401f 658struct btrfs_inode_ref {
aec7477b 659 __le64 index;
3954401f
CM
660 __le16 name_len;
661 /* name goes here */
662} __attribute__ ((__packed__));
663
f186373f
MF
664struct btrfs_inode_extref {
665 __le64 parent_objectid;
666 __le64 index;
667 __le16 name_len;
668 __u8 name[0];
669 /* name goes here */
670} __attribute__ ((__packed__));
671
0b86a832 672struct btrfs_timespec {
f254e52c 673 __le64 sec;
1e1d2701
CM
674 __le32 nsec;
675} __attribute__ ((__packed__));
676
95029d7d 677enum btrfs_compression_type {
261507a0
LZ
678 BTRFS_COMPRESS_NONE = 0,
679 BTRFS_COMPRESS_ZLIB = 1,
a6fa6fae
LZ
680 BTRFS_COMPRESS_LZO = 2,
681 BTRFS_COMPRESS_TYPES = 2,
682 BTRFS_COMPRESS_LAST = 3,
95029d7d 683};
c8b97818 684
1e1d2701 685struct btrfs_inode_item {
e02119d5 686 /* nfs style generation number */
1e1d2701 687 __le64 generation;
e02119d5
CM
688 /* transid that last touched this inode */
689 __le64 transid;
1e1d2701 690 __le64 size;
a76a3cd4 691 __le64 nbytes;
31f3c99b 692 __le64 block_group;
1e1d2701
CM
693 __le32 nlink;
694 __le32 uid;
695 __le32 gid;
696 __le32 mode;
0b86a832 697 __le64 rdev;
f2b636e8 698 __le64 flags;
c8b97818 699
c3027eb5
CM
700 /* modification sequence number for NFS */
701 __le64 sequence;
702
703 /*
704 * a little future expansion, for more than this we can
705 * just grow the inode item and version it
706 */
707 __le64 reserved[4];
0b86a832
CM
708 struct btrfs_timespec atime;
709 struct btrfs_timespec ctime;
710 struct btrfs_timespec mtime;
711 struct btrfs_timespec otime;
1e1d2701
CM
712} __attribute__ ((__packed__));
713
e02119d5
CM
714struct btrfs_dir_log_item {
715 __le64 end;
716} __attribute__ ((__packed__));
717
62e2749e 718struct btrfs_dir_item {
d6e4a428 719 struct btrfs_disk_key location;
e02119d5 720 __le64 transid;
5103e947 721 __le16 data_len;
a8a2ee0c 722 __le16 name_len;
62e2749e
CM
723 u8 type;
724} __attribute__ ((__packed__));
725
b83cc969
LZ
726#define BTRFS_ROOT_SUBVOL_RDONLY (1ULL << 0)
727
62e2749e 728struct btrfs_root_item {
d6e4a428 729 struct btrfs_inode_item inode;
84234f3a 730 __le64 generation;
d6e4a428 731 __le64 root_dirid;
db94535d
CM
732 __le64 bytenr;
733 __le64 byte_limit;
734 __le64 bytes_used;
80ff3856 735 __le64 last_snapshot;
f2b636e8 736 __le64 flags;
62e2749e 737 __le32 refs;
5eda7b5e
CM
738 struct btrfs_disk_key drop_progress;
739 u8 drop_level;
db94535d 740 u8 level;
8ea05e3a
AB
741
742 /*
743 * The following fields appear after subvol_uuids+subvol_times
744 * were introduced.
745 */
746
747 /*
748 * This generation number is used to test if the new fields are valid
749 * and up to date while reading the root item. Everytime the root item
750 * is written out, the "generation" field is copied into this field. If
751 * anyone ever mounted the fs with an older kernel, we will have
752 * mismatching generation values here and thus must invalidate the
753 * new fields. See btrfs_update_root and btrfs_find_last_root for
754 * details.
755 * the offset of generation_v2 is also used as the start for the memset
756 * when invalidating the fields.
757 */
758 __le64 generation_v2;
759 u8 uuid[BTRFS_UUID_SIZE];
760 u8 parent_uuid[BTRFS_UUID_SIZE];
761 u8 received_uuid[BTRFS_UUID_SIZE];
762 __le64 ctransid; /* updated when an inode changes */
763 __le64 otransid; /* trans when created */
764 __le64 stransid; /* trans when sent. non-zero for received subvol */
765 __le64 rtransid; /* trans when received. non-zero for received subvol */
766 struct btrfs_timespec ctime;
767 struct btrfs_timespec otime;
768 struct btrfs_timespec stime;
769 struct btrfs_timespec rtime;
770 __le64 reserved[8]; /* for future */
9f5fae2f 771} __attribute__ ((__packed__));
62e2749e 772
0660b5af
CM
773/*
774 * this is used for both forward and backward root refs
775 */
776struct btrfs_root_ref {
777 __le64 dirid;
778 __le64 sequence;
779 __le16 name_len;
780} __attribute__ ((__packed__));
781
0940ebf6
ID
782struct btrfs_disk_balance_args {
783 /*
784 * profiles to operate on, single is denoted by
785 * BTRFS_AVAIL_ALLOC_BIT_SINGLE
786 */
787 __le64 profiles;
788
789 /* usage filter */
790 __le64 usage;
791
792 /* devid filter */
793 __le64 devid;
794
795 /* devid subset filter [pstart..pend) */
796 __le64 pstart;
797 __le64 pend;
798
799 /* btrfs virtual address space subset filter [vstart..vend) */
800 __le64 vstart;
801 __le64 vend;
802
803 /*
804 * profile to convert to, single is denoted by
805 * BTRFS_AVAIL_ALLOC_BIT_SINGLE
806 */
807 __le64 target;
808
809 /* BTRFS_BALANCE_ARGS_* */
810 __le64 flags;
811
812 __le64 unused[8];
813} __attribute__ ((__packed__));
814
815/*
816 * store balance parameters to disk so that balance can be properly
817 * resumed after crash or unmount
818 */
819struct btrfs_balance_item {
820 /* BTRFS_BALANCE_* */
821 __le64 flags;
822
823 struct btrfs_disk_balance_args data;
824 struct btrfs_disk_balance_args meta;
825 struct btrfs_disk_balance_args sys;
826
827 __le64 unused[4];
828} __attribute__ ((__packed__));
829
d899e052
YZ
830#define BTRFS_FILE_EXTENT_INLINE 0
831#define BTRFS_FILE_EXTENT_REG 1
832#define BTRFS_FILE_EXTENT_PREALLOC 2
236454df 833
9f5fae2f 834struct btrfs_file_extent_item {
c8b97818
CM
835 /*
836 * transaction id that created this extent
837 */
71951f35 838 __le64 generation;
c8b97818
CM
839 /*
840 * max number of bytes to hold this extent in ram
841 * when we split a compressed extent we can't know how big
842 * each of the resulting pieces will be. So, this is
843 * an upper limit on the size of the extent in ram instead of
844 * an exact limit.
845 */
846 __le64 ram_bytes;
847
848 /*
849 * 32 bits for the various ways we might encode the data,
850 * including compression and encryption. If any of these
851 * are set to something a given disk format doesn't understand
852 * it is treated like an incompat flag for reading and writing,
853 * but not for stat.
854 */
855 u8 compression;
856 u8 encryption;
857 __le16 other_encoding; /* spare for later use */
858
859 /* are we inline data or a real extent? */
236454df 860 u8 type;
c8b97818 861
9f5fae2f
CM
862 /*
863 * disk space consumed by the extent, checksum blocks are included
864 * in these numbers
865 */
db94535d
CM
866 __le64 disk_bytenr;
867 __le64 disk_num_bytes;
9f5fae2f 868 /*
dee26a9f 869 * the logical offset in file blocks (no csums)
9f5fae2f
CM
870 * this extent record is for. This allows a file extent to point
871 * into the middle of an existing extent on disk, sharing it
872 * between two snapshots (useful if some bytes in the middle of the
873 * extent have changed
874 */
875 __le64 offset;
876 /*
c8b97818
CM
877 * the logical number of file blocks (no csums included). This
878 * always reflects the size uncompressed and without encoding.
9f5fae2f 879 */
db94535d 880 __le64 num_bytes;
c8b97818 881
9f5fae2f
CM
882} __attribute__ ((__packed__));
883
f254e52c 884struct btrfs_csum_item {
509659cd 885 u8 csum;
f254e52c
CM
886} __attribute__ ((__packed__));
887
733f4fbb
SB
888struct btrfs_dev_stats_item {
889 /*
890 * grow this item struct at the end for future enhancements and keep
891 * the existing values unchanged
892 */
893 __le64 values[BTRFS_DEV_STAT_VALUES_MAX];
894} __attribute__ ((__packed__));
895
e922e087
SB
896#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_ALWAYS 0
897#define BTRFS_DEV_REPLACE_ITEM_CONT_READING_FROM_SRCDEV_MODE_AVOID 1
898#define BTRFS_DEV_REPLACE_ITEM_STATE_NEVER_STARTED 0
899#define BTRFS_DEV_REPLACE_ITEM_STATE_STARTED 1
900#define BTRFS_DEV_REPLACE_ITEM_STATE_SUSPENDED 2
901#define BTRFS_DEV_REPLACE_ITEM_STATE_FINISHED 3
902#define BTRFS_DEV_REPLACE_ITEM_STATE_CANCELED 4
903
904struct btrfs_dev_replace {
905 u64 replace_state; /* see #define above */
906 u64 time_started; /* seconds since 1-Jan-1970 */
907 u64 time_stopped; /* seconds since 1-Jan-1970 */
908 atomic64_t num_write_errors;
909 atomic64_t num_uncorrectable_read_errors;
910
911 u64 cursor_left;
912 u64 committed_cursor_left;
913 u64 cursor_left_last_write_of_item;
914 u64 cursor_right;
915
916 u64 cont_reading_from_srcdev_mode; /* see #define above */
917
918 int is_valid;
919 int item_needs_writeback;
920 struct btrfs_device *srcdev;
921 struct btrfs_device *tgtdev;
922
923 pid_t lock_owner;
924 atomic_t nesting_level;
925 struct mutex lock_finishing_cancel_unmount;
926 struct mutex lock_management_lock;
927 struct mutex lock;
928
929 struct btrfs_scrub_progress scrub_progress;
930};
931
a2bff640
SB
932struct btrfs_dev_replace_item {
933 /*
934 * grow this item struct at the end for future enhancements and keep
935 * the existing values unchanged
936 */
937 __le64 src_devid;
938 __le64 cursor_left;
939 __le64 cursor_right;
940 __le64 cont_reading_from_srcdev_mode;
941
942 __le64 replace_state;
943 __le64 time_started;
944 __le64 time_stopped;
945 __le64 num_write_errors;
946 __le64 num_uncorrectable_read_errors;
947} __attribute__ ((__packed__));
948
0b86a832 949/* different types of block groups (and chunks) */
52ba6929
ID
950#define BTRFS_BLOCK_GROUP_DATA (1ULL << 0)
951#define BTRFS_BLOCK_GROUP_SYSTEM (1ULL << 1)
952#define BTRFS_BLOCK_GROUP_METADATA (1ULL << 2)
953#define BTRFS_BLOCK_GROUP_RAID0 (1ULL << 3)
954#define BTRFS_BLOCK_GROUP_RAID1 (1ULL << 4)
955#define BTRFS_BLOCK_GROUP_DUP (1ULL << 5)
956#define BTRFS_BLOCK_GROUP_RAID10 (1ULL << 6)
a46d11a8 957#define BTRFS_BLOCK_GROUP_RESERVED BTRFS_AVAIL_ALLOC_BIT_SINGLE
e6ec716f
MX
958
959enum btrfs_raid_types {
960 BTRFS_RAID_RAID10,
961 BTRFS_RAID_RAID1,
962 BTRFS_RAID_DUP,
963 BTRFS_RAID_RAID0,
964 BTRFS_RAID_SINGLE,
965 BTRFS_NR_RAID_TYPES
966};
52ba6929
ID
967
968#define BTRFS_BLOCK_GROUP_TYPE_MASK (BTRFS_BLOCK_GROUP_DATA | \
969 BTRFS_BLOCK_GROUP_SYSTEM | \
970 BTRFS_BLOCK_GROUP_METADATA)
971
972#define BTRFS_BLOCK_GROUP_PROFILE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
973 BTRFS_BLOCK_GROUP_RAID1 | \
974 BTRFS_BLOCK_GROUP_DUP | \
975 BTRFS_BLOCK_GROUP_RAID10)
a46d11a8
ID
976/*
977 * We need a bit for restriper to be able to tell when chunks of type
978 * SINGLE are available. This "extended" profile format is used in
979 * fs_info->avail_*_alloc_bits (in-memory) and balance item fields
980 * (on-disk). The corresponding on-disk bit in chunk.type is reserved
981 * to avoid remappings between two formats in future.
982 */
983#define BTRFS_AVAIL_ALLOC_BIT_SINGLE (1ULL << 48)
984
899c81ea
ID
985#define BTRFS_EXTENDED_PROFILE_MASK (BTRFS_BLOCK_GROUP_PROFILE_MASK | \
986 BTRFS_AVAIL_ALLOC_BIT_SINGLE)
987
988static inline u64 chunk_to_extended(u64 flags)
989{
990 if ((flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0)
991 flags |= BTRFS_AVAIL_ALLOC_BIT_SINGLE;
992
993 return flags;
994}
995static inline u64 extended_to_chunk(u64 flags)
996{
997 return flags & ~BTRFS_AVAIL_ALLOC_BIT_SINGLE;
998}
999
9078a3e1
CM
1000struct btrfs_block_group_item {
1001 __le64 used;
0b86a832
CM
1002 __le64 chunk_objectid;
1003 __le64 flags;
9078a3e1
CM
1004} __attribute__ ((__packed__));
1005
630dc772
AJ
1006/*
1007 * is subvolume quota turned on?
1008 */
1009#define BTRFS_QGROUP_STATUS_FLAG_ON (1ULL << 0)
1010/*
1011 * SCANNING is set during the initialization phase
1012 */
1013#define BTRFS_QGROUP_STATUS_FLAG_SCANNING (1ULL << 1)
1014/*
1015 * Some qgroup entries are known to be out of date,
1016 * either because the configuration has changed in a way that
1017 * makes a rescan necessary, or because the fs has been mounted
1018 * with a non-qgroup-aware version.
1019 * Turning qouta off and on again makes it inconsistent, too.
1020 */
1021#define BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT (1ULL << 2)
1022
1023#define BTRFS_QGROUP_STATUS_VERSION 1
1024
1025struct btrfs_qgroup_status_item {
1026 __le64 version;
1027 /*
1028 * the generation is updated during every commit. As older
1029 * versions of btrfs are not aware of qgroups, it will be
1030 * possible to detect inconsistencies by checking the
1031 * generation on mount time
1032 */
1033 __le64 generation;
1034
1035 /* flag definitions see above */
1036 __le64 flags;
1037
1038 /*
1039 * only used during scanning to record the progress
1040 * of the scan. It contains a logical address
1041 */
1042 __le64 scan;
1043} __attribute__ ((__packed__));
1044
1045struct btrfs_qgroup_info_item {
1046 __le64 generation;
1047 __le64 rfer;
1048 __le64 rfer_cmpr;
1049 __le64 excl;
1050 __le64 excl_cmpr;
1051} __attribute__ ((__packed__));
1052
1053/* flags definition for qgroup limits */
1054#define BTRFS_QGROUP_LIMIT_MAX_RFER (1ULL << 0)
1055#define BTRFS_QGROUP_LIMIT_MAX_EXCL (1ULL << 1)
1056#define BTRFS_QGROUP_LIMIT_RSV_RFER (1ULL << 2)
1057#define BTRFS_QGROUP_LIMIT_RSV_EXCL (1ULL << 3)
1058#define BTRFS_QGROUP_LIMIT_RFER_CMPR (1ULL << 4)
1059#define BTRFS_QGROUP_LIMIT_EXCL_CMPR (1ULL << 5)
1060
1061struct btrfs_qgroup_limit_item {
1062 /*
1063 * only updated when any of the other values change
1064 */
1065 __le64 flags;
1066 __le64 max_rfer;
1067 __le64 max_excl;
1068 __le64 rsv_rfer;
1069 __le64 rsv_excl;
1070} __attribute__ ((__packed__));
1071
6324fbf3
CM
1072struct btrfs_space_info {
1073 u64 flags;
6a63209f 1074
89a55897
JB
1075 u64 total_bytes; /* total bytes in the space,
1076 this doesn't take mirrors into account */
b742bb82 1077 u64 bytes_used; /* total bytes used,
e9c54999 1078 this doesn't take mirrors into account */
6a63209f
JB
1079 u64 bytes_pinned; /* total bytes pinned, will be freed when the
1080 transaction finishes */
1081 u64 bytes_reserved; /* total bytes the allocator has reserved for
1082 current allocations */
1083 u64 bytes_readonly; /* total bytes that are read only */
8929ecfa 1084
6a63209f 1085 u64 bytes_may_use; /* number of bytes that may be used for
9ed74f2d 1086 delalloc/allocations */
b742bb82 1087 u64 disk_used; /* total bytes used on disk */
89a55897
JB
1088 u64 disk_total; /* total bytes on disk, takes mirrors into
1089 account */
6a63209f 1090
36e39c40
CM
1091 /*
1092 * we bump reservation progress every time we decrement
1093 * bytes_reserved. This way people waiting for reservations
1094 * know something good has happened and they can check
1095 * for progress. The number here isn't to be trusted, it
1096 * just shows reclaim activity
1097 */
1098 unsigned long reservation_progress;
1099
4ea02885 1100 unsigned int full:1; /* indicates that we cannot allocate any more
6a63209f 1101 chunks for this space */
4ea02885 1102 unsigned int chunk_alloc:1; /* set if we are allocating a chunk */
6d74119f 1103
fdb5effd
JB
1104 unsigned int flush:1; /* set if we are trying to make space */
1105
4ea02885
DS
1106 unsigned int force_alloc; /* set if we need to force a chunk
1107 alloc for this space */
6a63209f 1108
6324fbf3 1109 struct list_head list;
0f9dd46c
JB
1110
1111 /* for block groups in our same type */
b742bb82 1112 struct list_head block_groups[BTRFS_NR_RAID_TYPES];
0f9dd46c 1113 spinlock_t lock;
80eb234a 1114 struct rw_semaphore groups_sem;
fdb5effd 1115 wait_queue_head_t wait;
0f9dd46c
JB
1116};
1117
66d8f3dd
MX
1118#define BTRFS_BLOCK_RSV_GLOBAL 1
1119#define BTRFS_BLOCK_RSV_DELALLOC 2
1120#define BTRFS_BLOCK_RSV_TRANS 3
1121#define BTRFS_BLOCK_RSV_CHUNK 4
1122#define BTRFS_BLOCK_RSV_DELOPS 5
1123#define BTRFS_BLOCK_RSV_EMPTY 6
1124#define BTRFS_BLOCK_RSV_TEMP 7
1125
f0486c68
YZ
1126struct btrfs_block_rsv {
1127 u64 size;
1128 u64 reserved;
f0486c68 1129 struct btrfs_space_info *space_info;
f0486c68 1130 spinlock_t lock;
66d8f3dd
MX
1131 unsigned short full;
1132 unsigned short type;
1133 unsigned short failfast;
f0486c68
YZ
1134};
1135
fa9c0d79
CM
1136/*
1137 * free clusters are used to claim free space in relatively large chunks,
1138 * allowing us to do less seeky writes. They are used for all metadata
1139 * allocations and data allocations in ssd mode.
1140 */
1141struct btrfs_free_cluster {
1142 spinlock_t lock;
1143 spinlock_t refill_lock;
1144 struct rb_root root;
1145
1146 /* largest extent in this cluster */
1147 u64 max_size;
1148
1149 /* first extent starting offset */
1150 u64 window_start;
1151
1152 struct btrfs_block_group_cache *block_group;
1153 /*
1154 * when a cluster is allocated from a block group, we put the
1155 * cluster onto a list in the block group so that it can
1156 * be freed before the block group is freed.
1157 */
1158 struct list_head block_group_list;
6324fbf3
CM
1159};
1160
817d52f8
JB
1161enum btrfs_caching_type {
1162 BTRFS_CACHE_NO = 0,
1163 BTRFS_CACHE_STARTED = 1,
291c7d2f
JB
1164 BTRFS_CACHE_FAST = 2,
1165 BTRFS_CACHE_FINISHED = 3,
817d52f8
JB
1166};
1167
0af3d00b
JB
1168enum btrfs_disk_cache_state {
1169 BTRFS_DC_WRITTEN = 0,
1170 BTRFS_DC_ERROR = 1,
1171 BTRFS_DC_CLEAR = 2,
1172 BTRFS_DC_SETUP = 3,
1173 BTRFS_DC_NEED_WRITE = 4,
1174};
1175
11833d66
YZ
1176struct btrfs_caching_control {
1177 struct list_head list;
1178 struct mutex mutex;
1179 wait_queue_head_t wait;
bab39bf9 1180 struct btrfs_work work;
11833d66
YZ
1181 struct btrfs_block_group_cache *block_group;
1182 u64 progress;
1183 atomic_t count;
1184};
1185
9078a3e1
CM
1186struct btrfs_block_group_cache {
1187 struct btrfs_key key;
1188 struct btrfs_block_group_item item;
817d52f8 1189 struct btrfs_fs_info *fs_info;
0af3d00b 1190 struct inode *inode;
c286ac48 1191 spinlock_t lock;
324ae4df 1192 u64 pinned;
e8569813 1193 u64 reserved;
1b2da372 1194 u64 bytes_super;
0b86a832 1195 u64 flags;
96303081 1196 u64 sectorsize;
5b0e95bf 1197 u64 cache_generation;
0410c94a
MK
1198 unsigned int ro:1;
1199 unsigned int dirty:1;
1200 unsigned int iref:1;
0af3d00b
JB
1201
1202 int disk_cache_state;
0f9dd46c 1203
817d52f8 1204 /* cache tracking stuff */
817d52f8 1205 int cached;
11833d66
YZ
1206 struct btrfs_caching_control *caching_ctl;
1207 u64 last_byte_to_unpin;
817d52f8 1208
0f9dd46c
JB
1209 struct btrfs_space_info *space_info;
1210
1211 /* free space cache stuff */
34d52cb6 1212 struct btrfs_free_space_ctl *free_space_ctl;
0f9dd46c
JB
1213
1214 /* block group cache stuff */
1215 struct rb_node cache_node;
1216
1217 /* for block groups in the same raid type */
1218 struct list_head list;
d2fb3437
YZ
1219
1220 /* usage count */
1221 atomic_t count;
fa9c0d79
CM
1222
1223 /* List of struct btrfs_free_clusters for this block group.
1224 * Today it will only have one thing on it, but that may change
1225 */
1226 struct list_head cluster_list;
ea658bad
JB
1227
1228 /* For delayed block group creation */
1229 struct list_head new_bg_list;
9078a3e1 1230};
0b86a832 1231
097b8a7c
JS
1232/* delayed seq elem */
1233struct seq_list {
1234 struct list_head list;
1235 u64 seq;
1236};
1237
1238/* fs_info */
5d4f98a2 1239struct reloc_control;
0b86a832 1240struct btrfs_device;
8a4b83cc 1241struct btrfs_fs_devices;
c9e9f97b 1242struct btrfs_balance_control;
16cdcec7 1243struct btrfs_delayed_root;
9f5fae2f 1244struct btrfs_fs_info {
5f39d397 1245 u8 fsid[BTRFS_FSID_SIZE];
e17cade2 1246 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
62e2749e
CM
1247 struct btrfs_root *extent_root;
1248 struct btrfs_root *tree_root;
0b86a832
CM
1249 struct btrfs_root *chunk_root;
1250 struct btrfs_root *dev_root;
3de4586c 1251 struct btrfs_root *fs_root;
d20f7043 1252 struct btrfs_root *csum_root;
416ac51d 1253 struct btrfs_root *quota_root;
e02119d5
CM
1254
1255 /* the log root tree is a directory of all the other log roots */
1256 struct btrfs_root *log_root_tree;
4df27c4d
YZ
1257
1258 spinlock_t fs_roots_radix_lock;
0f7d52f4 1259 struct radix_tree_root fs_roots_radix;
1a5bc167 1260
0f9dd46c
JB
1261 /* block group cache stuff */
1262 spinlock_t block_group_cache_lock;
a1897fdd 1263 u64 first_logical_byte;
0f9dd46c
JB
1264 struct rb_root block_group_cache_tree;
1265
2bf64758
JB
1266 /* keep track of unallocated space */
1267 spinlock_t free_chunk_lock;
1268 u64 free_chunk_space;
1269
11833d66
YZ
1270 struct extent_io_tree freed_extents[2];
1271 struct extent_io_tree *pinned_extents;
1a5bc167 1272
0b86a832
CM
1273 /* logical->physical extent mapping */
1274 struct btrfs_mapping_tree mapping_tree;
1275
16cdcec7
MX
1276 /*
1277 * block reservation for extent, checksum, root tree and
1278 * delayed dir index item
1279 */
f0486c68
YZ
1280 struct btrfs_block_rsv global_block_rsv;
1281 /* block reservation for delay allocation */
1282 struct btrfs_block_rsv delalloc_block_rsv;
1283 /* block reservation for metadata operations */
1284 struct btrfs_block_rsv trans_block_rsv;
1285 /* block reservation for chunk tree */
1286 struct btrfs_block_rsv chunk_block_rsv;
6d668dda
JB
1287 /* block reservation for delayed operations */
1288 struct btrfs_block_rsv delayed_block_rsv;
f0486c68
YZ
1289
1290 struct btrfs_block_rsv empty_block_rsv;
1291
293ffd5f 1292 u64 generation;
15ee9bc7 1293 u64 last_trans_committed;
12fcfd22
CM
1294
1295 /*
1296 * this is updated to the current trans every time a full commit
1297 * is required instead of the faster short fsync log commits
1298 */
1299 u64 last_trans_log_full_commit;
25cd999e 1300 unsigned long mount_opt;
261507a0 1301 unsigned long compress_type:4;
8c6a3ee6
MX
1302 /*
1303 * It is a suggestive number, the read side is safe even it gets a
1304 * wrong number because we will write out the data into a regular
1305 * extent. The write side(mount/remount) is under ->s_umount lock,
1306 * so it is also safe.
1307 */
6f568d35 1308 u64 max_inline;
c018daec
MX
1309 /*
1310 * Protected by ->chunk_mutex and sb->s_umount.
1311 *
1312 * The reason that we use two lock to protect it is because only
1313 * remount and mount operations can change it and these two operations
1314 * are under sb->s_umount, but the read side (chunk allocation) can not
1315 * acquire sb->s_umount or the deadlock would happen. So we use two
1316 * locks to protect it. On the write side, we must acquire two locks,
1317 * and on the read side, we just need acquire one of them.
1318 */
8f662a76 1319 u64 alloc_start;
79154b1b 1320 struct btrfs_transaction *running_transaction;
e6dcd2dc 1321 wait_queue_head_t transaction_throttle;
f9295749 1322 wait_queue_head_t transaction_wait;
bb9c12c9 1323 wait_queue_head_t transaction_blocked_wait;
771ed689 1324 wait_queue_head_t async_submit_wait;
e02119d5 1325
6c41761f
DS
1326 struct btrfs_super_block *super_copy;
1327 struct btrfs_super_block *super_for_commit;
0b86a832 1328 struct block_device *__bdev;
e20d96d6 1329 struct super_block *sb;
d98237b3 1330 struct inode *btree_inode;
04160088 1331 struct backing_dev_info bdi;
e02119d5 1332 struct mutex tree_log_mutex;
a74a4b97
CM
1333 struct mutex transaction_kthread_mutex;
1334 struct mutex cleaner_mutex;
925baedd 1335 struct mutex chunk_mutex;
7d9eb12c 1336 struct mutex volume_mutex;
5a3f23d5
CM
1337 /*
1338 * this protects the ordered operations list only while we are
1339 * processing all of the entries on it. This way we make
1340 * sure the commit code doesn't find the list temporarily empty
1341 * because another function happens to be doing non-waiting preflush
1342 * before jumping into the main commit.
1343 */
1344 struct mutex ordered_operations_mutex;
11833d66 1345 struct rw_semaphore extent_commit_sem;
5a3f23d5 1346
c71bf099 1347 struct rw_semaphore cleanup_work_sem;
76dda93c 1348
c71bf099 1349 struct rw_semaphore subvol_sem;
76dda93c
YZ
1350 struct srcu_struct subvol_srcu;
1351
a4abeea4 1352 spinlock_t trans_lock;
7585717f
CM
1353 /*
1354 * the reloc mutex goes with the trans lock, it is taken
1355 * during commit to protect us from the relocation code
1356 */
1357 struct mutex reloc_mutex;
1358
8fd17795 1359 struct list_head trans_list;
facda1e7 1360 struct list_head dead_roots;
11833d66 1361 struct list_head caching_block_groups;
e02119d5 1362
24bbcf04
YZ
1363 spinlock_t delayed_iput_lock;
1364 struct list_head delayed_iputs;
1365
f29021b2
JS
1366 /* this protects tree_mod_seq_list */
1367 spinlock_t tree_mod_seq_lock;
1368 atomic_t tree_mod_seq;
1369 struct list_head tree_mod_seq_list;
097b8a7c 1370 struct seq_list tree_mod_seq_elem;
f29021b2
JS
1371
1372 /* this protects tree_mod_log */
1373 rwlock_t tree_mod_log_lock;
1374 struct rb_root tree_mod_log;
1375
cb03c743 1376 atomic_t nr_async_submits;
8c8bee1d 1377 atomic_t async_submit_draining;
0986fe9e 1378 atomic_t nr_async_bios;
771ed689 1379 atomic_t async_delalloc_pages;
a4abeea4 1380 atomic_t open_ioctl_trans;
ce9adaa5 1381
3eaa2885
CM
1382 /*
1383 * this is used by the balancing code to wait for all the pending
1384 * ordered extents
1385 */
1386 spinlock_t ordered_extent_lock;
5a3f23d5
CM
1387
1388 /*
1389 * all of the data=ordered extents pending writeback
1390 * these can span multiple transactions and basically include
1391 * every dirty data page that isn't from nodatacow
1392 */
3eaa2885 1393 struct list_head ordered_extents;
5a3f23d5 1394
963d678b 1395 spinlock_t delalloc_lock;
5a3f23d5
CM
1396 /*
1397 * all of the inodes that have delalloc bytes. It is possible for
1398 * this list to be empty even when there is still dirty data=ordered
1399 * extents waiting to finish IO.
1400 */
ea8c2819 1401 struct list_head delalloc_inodes;
3eaa2885 1402
5a3f23d5
CM
1403 /*
1404 * special rename and truncate targets that must be on disk before
1405 * we're allowed to commit. This is basically the ext3 style
1406 * data=ordered list.
1407 */
1408 struct list_head ordered_operations;
1409
8b712842
CM
1410 /*
1411 * there is a pool of worker threads for checksumming during writes
1412 * and a pool for checksumming after reads. This is because readers
1413 * can run with FS locks held, and the writers may be waiting for
1414 * those locks. We don't want ordering in the pending list to cause
1415 * deadlocks, and so the two are serviced separately.
1cc127b5
CM
1416 *
1417 * A third pool does submit_bio to avoid deadlocking with the other
1418 * two
8b712842 1419 */
61d92c32 1420 struct btrfs_workers generic_worker;
8b712842 1421 struct btrfs_workers workers;
771ed689 1422 struct btrfs_workers delalloc_workers;
8ccf6f19 1423 struct btrfs_workers flush_workers;
8b712842 1424 struct btrfs_workers endio_workers;
d20f7043 1425 struct btrfs_workers endio_meta_workers;
cad321ad 1426 struct btrfs_workers endio_meta_write_workers;
e6dcd2dc 1427 struct btrfs_workers endio_write_workers;
0cb59c99 1428 struct btrfs_workers endio_freespace_worker;
1cc127b5 1429 struct btrfs_workers submit_workers;
bab39bf9 1430 struct btrfs_workers caching_workers;
90519d66 1431 struct btrfs_workers readahead_workers;
bab39bf9 1432
247e743c
CM
1433 /*
1434 * fixup workers take dirty pages that didn't properly go through
1435 * the cow mechanism and make them safe to write. It happens
1436 * for the sys_munmap function call path
1437 */
1438 struct btrfs_workers fixup_workers;
16cdcec7 1439 struct btrfs_workers delayed_workers;
a74a4b97
CM
1440 struct task_struct *transaction_kthread;
1441 struct task_struct *cleaner_kthread;
4543df7e 1442 int thread_pool_size;
8b712842 1443
58176a96
JB
1444 struct kobject super_kobj;
1445 struct completion kobj_unregister;
e66f709b 1446 int do_barriers;
facda1e7 1447 int closing;
e02119d5 1448 int log_root_recovering;
a22285a6 1449 int enospc_unlink;
a4abeea4 1450 int trans_no_join;
9f5fae2f 1451
324ae4df 1452 u64 total_pinned;
b9473439 1453
e2d84521
MX
1454 /* used to keep from writing metadata until there is a nice batch */
1455 struct percpu_counter dirty_metadata_bytes;
963d678b 1456 struct percpu_counter delalloc_bytes;
e2d84521 1457 s32 dirty_metadata_batch;
963d678b
MX
1458 s32 delalloc_batch;
1459
0b86a832
CM
1460 struct list_head dirty_cowonly_roots;
1461
8a4b83cc 1462 struct btrfs_fs_devices *fs_devices;
4184ea7f
CM
1463
1464 /*
1465 * the space_info list is almost entirely read only. It only changes
1466 * when we add a new raid type to the FS, and that happens
1467 * very rarely. RCU is used to protect it.
1468 */
6324fbf3 1469 struct list_head space_info;
4184ea7f 1470
b4d7c3c9
LZ
1471 struct btrfs_space_info *data_sinfo;
1472
5d4f98a2
YZ
1473 struct reloc_control *reloc_ctl;
1474
fa9c0d79
CM
1475 /* data_alloc_cluster is only used in ssd mode */
1476 struct btrfs_free_cluster data_alloc_cluster;
1477
1478 /* all metadata allocations go through this cluster */
1479 struct btrfs_free_cluster meta_alloc_cluster;
d18a2c44 1480
4cb5300b
CM
1481 /* auto defrag inodes go here */
1482 spinlock_t defrag_inodes_lock;
1483 struct rb_root defrag_inodes;
1484 atomic_t defrag_running;
1485
a46d11a8
ID
1486 /*
1487 * these three are in extended format (availability of single
1488 * chunks is denoted by BTRFS_AVAIL_ALLOC_BIT_SINGLE bit, other
1489 * types are denoted by corresponding BTRFS_BLOCK_GROUP_* bits)
1490 */
d18a2c44
CM
1491 u64 avail_data_alloc_bits;
1492 u64 avail_metadata_alloc_bits;
1493 u64 avail_system_alloc_bits;
788f20eb 1494
c9e9f97b
ID
1495 /* restriper state */
1496 spinlock_t balance_lock;
1497 struct mutex balance_mutex;
837d5b6e
ID
1498 atomic_t balance_running;
1499 atomic_t balance_pause_req;
a7e99c69 1500 atomic_t balance_cancel_req;
c9e9f97b 1501 struct btrfs_balance_control *balance_ctl;
837d5b6e 1502 wait_queue_head_t balance_wait_q;
c9e9f97b 1503
97e728d4
JB
1504 unsigned data_chunk_allocations;
1505 unsigned metadata_ratio;
1506
788f20eb 1507 void *bdev_holder;
acce952b 1508
a2de733c
AJ
1509 /* private scrub information */
1510 struct mutex scrub_lock;
1511 atomic_t scrubs_running;
1512 atomic_t scrub_pause_req;
1513 atomic_t scrubs_paused;
1514 atomic_t scrub_cancel_req;
1515 wait_queue_head_t scrub_pause_wait;
1516 struct rw_semaphore scrub_super_lock;
1517 int scrub_workers_refcnt;
1518 struct btrfs_workers scrub_workers;
ff023aac
SB
1519 struct btrfs_workers scrub_wr_completion_workers;
1520 struct btrfs_workers scrub_nocow_workers;
a2de733c 1521
21adbd5c
SB
1522#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
1523 u32 check_integrity_print_mask;
1524#endif
416ac51d
AJ
1525 /*
1526 * quota information
1527 */
1528 unsigned int quota_enabled:1;
1529
1530 /*
1531 * quota_enabled only changes state after a commit. This holds the
1532 * next state.
1533 */
1534 unsigned int pending_quota_state:1;
1535
1536 /* is qgroup tracking in a consistent state? */
1537 u64 qgroup_flags;
1538
1539 /* holds configuration and tracking. Protected by qgroup_lock */
1540 struct rb_root qgroup_tree;
1541 spinlock_t qgroup_lock;
1542
1543 /* list of dirty qgroups to be written at next commit */
1544 struct list_head dirty_qgroups;
1545
1546 /* used by btrfs_qgroup_record_ref for an efficient tree traversal */
1547 u64 qgroup_seq;
21adbd5c 1548
acce952b 1549 /* filesystem state */
1550 u64 fs_state;
16cdcec7
MX
1551
1552 struct btrfs_delayed_root *delayed_root;
af31f5e5 1553
90519d66
AJ
1554 /* readahead tree */
1555 spinlock_t reada_lock;
1556 struct radix_tree_root reada_tree;
531f4b1a 1557
af31f5e5
CM
1558 /* next backup root to be overwritten */
1559 int backup_root_index;
5af3e8cc
SB
1560
1561 int num_tolerated_disk_barrier_failures;
e922e087
SB
1562
1563 /* device replace state */
1564 struct btrfs_dev_replace dev_replace;
5ac00add
SB
1565
1566 atomic_t mutually_exclusive_operation_running;
324ae4df 1567};
0b86a832 1568
9f5fae2f
CM
1569/*
1570 * in ram representation of the tree. extent_root is used for all allocations
f2458e1d 1571 * and for the extent tree extent_root root.
9f5fae2f
CM
1572 */
1573struct btrfs_root {
5f39d397 1574 struct extent_buffer *node;
925baedd 1575
5f39d397 1576 struct extent_buffer *commit_root;
e02119d5 1577 struct btrfs_root *log_root;
1a40e23b 1578 struct btrfs_root *reloc_root;
31153d81 1579
62e2749e
CM
1580 struct btrfs_root_item root_item;
1581 struct btrfs_key root_key;
9f5fae2f 1582 struct btrfs_fs_info *fs_info;
d0c803c4
CM
1583 struct extent_io_tree dirty_log_pages;
1584
58176a96
JB
1585 struct kobject root_kobj;
1586 struct completion kobj_unregister;
a2135011 1587 struct mutex objectid_mutex;
7237f183 1588
f0486c68
YZ
1589 spinlock_t accounting_lock;
1590 struct btrfs_block_rsv *block_rsv;
1591
581bb050
LZ
1592 /* free ino cache stuff */
1593 struct mutex fs_commit_mutex;
1594 struct btrfs_free_space_ctl *free_ino_ctl;
1595 enum btrfs_caching_type cached;
1596 spinlock_t cache_lock;
1597 wait_queue_head_t cache_wait;
1598 struct btrfs_free_space_ctl *free_ino_pinned;
1599 u64 cache_progress;
82d5902d 1600 struct inode *cache_inode;
581bb050 1601
e02119d5 1602 struct mutex log_mutex;
7237f183
YZ
1603 wait_queue_head_t log_writer_wait;
1604 wait_queue_head_t log_commit_wait[2];
1605 atomic_t log_writers;
1606 atomic_t log_commit[2];
2ecb7923 1607 atomic_t log_batch;
7237f183 1608 unsigned long log_transid;
257c62e1 1609 unsigned long last_log_commit;
ff782e0a
JB
1610 pid_t log_start_pid;
1611 bool log_multiple_pids;
ea8c2819 1612
0f7d52f4
CM
1613 u64 objectid;
1614 u64 last_trans;
5f39d397
CM
1615
1616 /* data allocations are done in sectorsize units */
1617 u32 sectorsize;
1618
1619 /* node allocations are done in nodesize units */
1620 u32 nodesize;
1621
1622 /* leaf allocations are done in leafsize units */
1623 u32 leafsize;
1624
87ee04eb
CM
1625 u32 stripesize;
1626
9f5fae2f 1627 u32 type;
13a8a7c8
YZ
1628
1629 u64 highest_objectid;
7585717f
CM
1630
1631 /* btrfs_record_root_in_trans is a multi-step process,
1632 * and it can race with the balancing code. But the
1633 * race is very small, and only the first time the root
1634 * is added to each transaction. So in_trans_setup
1635 * is used to tell us when more checks are required
1636 */
1637 unsigned long in_trans_setup;
9f3a7427 1638 int ref_cows;
0b86a832 1639 int track_dirty;
4df27c4d
YZ
1640 int in_radix;
1641
3f157a2f 1642 u64 defrag_trans_start;
6702ed49 1643 struct btrfs_key defrag_progress;
0ef3e66b 1644 struct btrfs_key defrag_max;
6702ed49 1645 int defrag_running;
58176a96 1646 char *name;
0b86a832
CM
1647
1648 /* the dirty list is only used by non-reference counted roots */
1649 struct list_head dirty_list;
7b128766 1650
5d4f98a2
YZ
1651 struct list_head root_list;
1652
2ab28f32
JB
1653 spinlock_t log_extents_lock[2];
1654 struct list_head logged_list[2];
1655
d68fc57b 1656 spinlock_t orphan_lock;
8a35d95f 1657 atomic_t orphan_inodes;
d68fc57b
YZ
1658 struct btrfs_block_rsv *orphan_block_rsv;
1659 int orphan_item_inserted;
1660 int orphan_cleanup_state;
3394e160 1661
5d4f98a2
YZ
1662 spinlock_t inode_lock;
1663 /* red-black tree that keeps track of in-memory inodes */
1664 struct rb_root inode_tree;
1665
16cdcec7
MX
1666 /*
1667 * radix tree that keeps track of delayed nodes of every inode,
1668 * protected by inode_lock
1669 */
1670 struct radix_tree_root delayed_nodes_tree;
3394e160
CM
1671 /*
1672 * right now this just gets used so that a root has its own devid
1673 * for stat. It may be used for more later
1674 */
0ee5dc67 1675 dev_t anon_dev;
f1ebcc74
LB
1676
1677 int force_cow;
8ea05e3a 1678
5f3ab90a 1679 spinlock_t root_item_lock;
62e2749e
CM
1680};
1681
4cb5300b
CM
1682struct btrfs_ioctl_defrag_range_args {
1683 /* start of the defrag operation */
1684 __u64 start;
1685
1686 /* number of bytes to defrag, use (u64)-1 to say all */
1687 __u64 len;
1688
1689 /*
1690 * flags for the operation, which can include turning
1691 * on compression for this one defrag
1692 */
1693 __u64 flags;
1694
1695 /*
1696 * any extent bigger than this will be considered
1697 * already defragged. Use 0 to take the kernel default
1698 * Use 1 to say every single extent must be rewritten
1699 */
1700 __u32 extent_thresh;
1701
1702 /*
1703 * which compression method to use if turning on compression
1704 * for this defrag operation. If unspecified, zlib will
1705 * be used
1706 */
1707 __u32 compress_type;
1708
1709 /* spare for later */
1710 __u32 unused[4];
1711};
1712
1713
1e1d2701
CM
1714/*
1715 * inode items have the data typically returned from stat and store other
1716 * info about object characteristics. There is one for every file and dir in
1717 * the FS
1718 */
9078a3e1 1719#define BTRFS_INODE_ITEM_KEY 1
0660b5af 1720#define BTRFS_INODE_REF_KEY 12
f186373f 1721#define BTRFS_INODE_EXTREF_KEY 13
0660b5af
CM
1722#define BTRFS_XATTR_ITEM_KEY 24
1723#define BTRFS_ORPHAN_ITEM_KEY 48
9078a3e1 1724/* reserve 2-15 close to the inode for later flexibility */
1e1d2701
CM
1725
1726/*
1727 * dir items are the name -> inode pointers in a directory. There is one
1728 * for every name in a directory.
1729 */
0660b5af
CM
1730#define BTRFS_DIR_LOG_ITEM_KEY 60
1731#define BTRFS_DIR_LOG_INDEX_KEY 72
1732#define BTRFS_DIR_ITEM_KEY 84
1733#define BTRFS_DIR_INDEX_KEY 96
1e1d2701 1734/*
9078a3e1 1735 * extent data is for file data
1e1d2701 1736 */
0660b5af 1737#define BTRFS_EXTENT_DATA_KEY 108
d20f7043 1738
f254e52c 1739/*
d20f7043
CM
1740 * extent csums are stored in a separate tree and hold csums for
1741 * an entire extent on disk.
f254e52c 1742 */
d20f7043 1743#define BTRFS_EXTENT_CSUM_KEY 128
f254e52c 1744
1e1d2701 1745/*
d4a78947 1746 * root items point to tree roots. They are typically in the root
1e1d2701
CM
1747 * tree used by the super block to find all the other trees
1748 */
0660b5af
CM
1749#define BTRFS_ROOT_ITEM_KEY 132
1750
1751/*
1752 * root backrefs tie subvols and snapshots to the directory entries that
1753 * reference them
1754 */
1755#define BTRFS_ROOT_BACKREF_KEY 144
1756
1757/*
1758 * root refs make a fast index for listing all of the snapshots and
1759 * subvolumes referenced by a given root. They point directly to the
1760 * directory item in the root that references the subvol
1761 */
1762#define BTRFS_ROOT_REF_KEY 156
1763
1e1d2701
CM
1764/*
1765 * extent items are in the extent map tree. These record which blocks
1766 * are used, and how many references there are to each block
1767 */
0660b5af 1768#define BTRFS_EXTENT_ITEM_KEY 168
5d4f98a2
YZ
1769
1770#define BTRFS_TREE_BLOCK_REF_KEY 176
1771
1772#define BTRFS_EXTENT_DATA_REF_KEY 178
1773
1774#define BTRFS_EXTENT_REF_V0_KEY 180
1775
1776#define BTRFS_SHARED_BLOCK_REF_KEY 182
1777
1778#define BTRFS_SHARED_DATA_REF_KEY 184
9078a3e1
CM
1779
1780/*
1781 * block groups give us hints into the extent allocation trees. Which
1782 * blocks are free etc etc
1783 */
0660b5af 1784#define BTRFS_BLOCK_GROUP_ITEM_KEY 192
9f5fae2f 1785
0660b5af
CM
1786#define BTRFS_DEV_EXTENT_KEY 204
1787#define BTRFS_DEV_ITEM_KEY 216
1788#define BTRFS_CHUNK_ITEM_KEY 228
0b86a832 1789
630dc772
AJ
1790/*
1791 * Records the overall state of the qgroups.
1792 * There's only one instance of this key present,
1793 * (0, BTRFS_QGROUP_STATUS_KEY, 0)
1794 */
1795#define BTRFS_QGROUP_STATUS_KEY 240
1796/*
1797 * Records the currently used space of the qgroup.
1798 * One key per qgroup, (0, BTRFS_QGROUP_INFO_KEY, qgroupid).
1799 */
1800#define BTRFS_QGROUP_INFO_KEY 242
1801/*
1802 * Contains the user configured limits for the qgroup.
1803 * One key per qgroup, (0, BTRFS_QGROUP_LIMIT_KEY, qgroupid).
1804 */
1805#define BTRFS_QGROUP_LIMIT_KEY 244
1806/*
1807 * Records the child-parent relationship of qgroups. For
1808 * each relation, 2 keys are present:
1809 * (childid, BTRFS_QGROUP_RELATION_KEY, parentid)
1810 * (parentid, BTRFS_QGROUP_RELATION_KEY, childid)
1811 */
1812#define BTRFS_QGROUP_RELATION_KEY 246
1813
0940ebf6
ID
1814#define BTRFS_BALANCE_ITEM_KEY 248
1815
733f4fbb
SB
1816/*
1817 * Persistantly stores the io stats in the device tree.
1818 * One key for all stats, (0, BTRFS_DEV_STATS_KEY, devid).
1819 */
1820#define BTRFS_DEV_STATS_KEY 249
1821
a2bff640
SB
1822/*
1823 * Persistantly stores the device replace state in the device tree.
1824 * The key is built like this: (0, BTRFS_DEV_REPLACE_KEY, 0).
1825 */
1826#define BTRFS_DEV_REPLACE_KEY 250
1827
1e1d2701
CM
1828/*
1829 * string items are for debugging. They just store a short string of
1830 * data in the FS
1831 */
9078a3e1
CM
1832#define BTRFS_STRING_ITEM_KEY 253
1833
0942caa3
DS
1834/*
1835 * Flags for mount options.
1836 *
1837 * Note: don't forget to add new options to btrfs_show_options()
1838 */
21ad10cf
CM
1839#define BTRFS_MOUNT_NODATASUM (1 << 0)
1840#define BTRFS_MOUNT_NODATACOW (1 << 1)
1841#define BTRFS_MOUNT_NOBARRIER (1 << 2)
e18e4809 1842#define BTRFS_MOUNT_SSD (1 << 3)
dfe25020 1843#define BTRFS_MOUNT_DEGRADED (1 << 4)
c8b97818 1844#define BTRFS_MOUNT_COMPRESS (1 << 5)
3a5e1404 1845#define BTRFS_MOUNT_NOTREELOG (1 << 6)
dccae999 1846#define BTRFS_MOUNT_FLUSHONCOMMIT (1 << 7)
451d7585 1847#define BTRFS_MOUNT_SSD_SPREAD (1 << 8)
c289811c 1848#define BTRFS_MOUNT_NOSSD (1 << 9)
e244a0ae 1849#define BTRFS_MOUNT_DISCARD (1 << 10)
a555f810 1850#define BTRFS_MOUNT_FORCE_COMPRESS (1 << 11)
0af3d00b 1851#define BTRFS_MOUNT_SPACE_CACHE (1 << 12)
88c2ba3b 1852#define BTRFS_MOUNT_CLEAR_CACHE (1 << 13)
4260f7c7 1853#define BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED (1 << 14)
91435650 1854#define BTRFS_MOUNT_ENOSPC_DEBUG (1 << 15)
4cb5300b 1855#define BTRFS_MOUNT_AUTO_DEFRAG (1 << 16)
4b9465cb 1856#define BTRFS_MOUNT_INODE_MAP_CACHE (1 << 17)
af31f5e5 1857#define BTRFS_MOUNT_RECOVERY (1 << 18)
9555c6c1 1858#define BTRFS_MOUNT_SKIP_BALANCE (1 << 19)
c126dea7
CM
1859#define BTRFS_MOUNT_CHECK_INTEGRITY (1 << 20)
1860#define BTRFS_MOUNT_CHECK_INTEGRITY_INCLUDING_EXTENT_DATA (1 << 21)
8c342930 1861#define BTRFS_MOUNT_PANIC_ON_FATAL_ERROR (1 << 22)
b6cda9bc
CM
1862
1863#define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
1864#define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
1865#define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
1866 BTRFS_MOUNT_##opt)
b98b6767
Y
1867/*
1868 * Inode flags
1869 */
fdebe2bd
Y
1870#define BTRFS_INODE_NODATASUM (1 << 0)
1871#define BTRFS_INODE_NODATACOW (1 << 1)
1872#define BTRFS_INODE_READONLY (1 << 2)
c8b97818 1873#define BTRFS_INODE_NOCOMPRESS (1 << 3)
d899e052 1874#define BTRFS_INODE_PREALLOC (1 << 4)
6cbff00f
CH
1875#define BTRFS_INODE_SYNC (1 << 5)
1876#define BTRFS_INODE_IMMUTABLE (1 << 6)
1877#define BTRFS_INODE_APPEND (1 << 7)
1878#define BTRFS_INODE_NODUMP (1 << 8)
1879#define BTRFS_INODE_NOATIME (1 << 9)
1880#define BTRFS_INODE_DIRSYNC (1 << 10)
75e7cb7f 1881#define BTRFS_INODE_COMPRESS (1 << 11)
6cbff00f 1882
08fe4db1
LZ
1883#define BTRFS_INODE_ROOT_ITEM_INIT (1 << 31)
1884
cfed81a0
CM
1885struct btrfs_map_token {
1886 struct extent_buffer *eb;
1887 char *kaddr;
1888 unsigned long offset;
1889};
1890
1891static inline void btrfs_init_map_token (struct btrfs_map_token *token)
1892{
ad914559 1893 token->kaddr = NULL;
cfed81a0
CM
1894}
1895
5f39d397
CM
1896/* some macros to generate set/get funcs for the struct fields. This
1897 * assumes there is a lefoo_to_cpu for every type, so lets make a simple
1898 * one for u8:
1899 */
1900#define le8_to_cpu(v) (v)
1901#define cpu_to_le8(v) (v)
1902#define __le8 u8
1903
1904#define read_eb_member(eb, ptr, type, member, result) ( \
1905 read_extent_buffer(eb, (char *)(result), \
1906 ((unsigned long)(ptr)) + \
1907 offsetof(type, member), \
1908 sizeof(((type *)0)->member)))
1909
1910#define write_eb_member(eb, ptr, type, member, result) ( \
1911 write_extent_buffer(eb, (char *)(result), \
1912 ((unsigned long)(ptr)) + \
1913 offsetof(type, member), \
1914 sizeof(((type *)0)->member)))
1915
18077bb4
LZ
1916#define DECLARE_BTRFS_SETGET_BITS(bits) \
1917u##bits btrfs_get_token_##bits(struct extent_buffer *eb, void *ptr, \
1918 unsigned long off, \
1919 struct btrfs_map_token *token); \
1920void btrfs_set_token_##bits(struct extent_buffer *eb, void *ptr, \
1921 unsigned long off, u##bits val, \
1922 struct btrfs_map_token *token); \
1923static inline u##bits btrfs_get_##bits(struct extent_buffer *eb, void *ptr, \
1924 unsigned long off) \
1925{ \
1926 return btrfs_get_token_##bits(eb, ptr, off, NULL); \
1927} \
1928static inline void btrfs_set_##bits(struct extent_buffer *eb, void *ptr, \
1929 unsigned long off, u##bits val) \
1930{ \
1931 btrfs_set_token_##bits(eb, ptr, off, val, NULL); \
1932}
1933
1934DECLARE_BTRFS_SETGET_BITS(8)
1935DECLARE_BTRFS_SETGET_BITS(16)
1936DECLARE_BTRFS_SETGET_BITS(32)
1937DECLARE_BTRFS_SETGET_BITS(64)
1938
5f39d397 1939#define BTRFS_SETGET_FUNCS(name, type, member, bits) \
18077bb4
LZ
1940static inline u##bits btrfs_##name(struct extent_buffer *eb, type *s) \
1941{ \
1942 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1943 return btrfs_get_##bits(eb, s, offsetof(type, member)); \
1944} \
1945static inline void btrfs_set_##name(struct extent_buffer *eb, type *s, \
1946 u##bits val) \
1947{ \
1948 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1949 btrfs_set_##bits(eb, s, offsetof(type, member), val); \
1950} \
1951static inline u##bits btrfs_token_##name(struct extent_buffer *eb, type *s, \
1952 struct btrfs_map_token *token) \
1953{ \
1954 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1955 return btrfs_get_token_##bits(eb, s, offsetof(type, member), token); \
1956} \
1957static inline void btrfs_set_token_##name(struct extent_buffer *eb, \
1958 type *s, u##bits val, \
1959 struct btrfs_map_token *token) \
1960{ \
1961 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1962 btrfs_set_token_##bits(eb, s, offsetof(type, member), val, token); \
1963}
5f39d397
CM
1964
1965#define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
1966static inline u##bits btrfs_##name(struct extent_buffer *eb) \
1967{ \
727011e0 1968 type *p = page_address(eb->pages[0]); \
df68b8a7 1969 u##bits res = le##bits##_to_cpu(p->member); \
810191ff 1970 return res; \
5f39d397
CM
1971} \
1972static inline void btrfs_set_##name(struct extent_buffer *eb, \
1973 u##bits val) \
1974{ \
727011e0 1975 type *p = page_address(eb->pages[0]); \
df68b8a7 1976 p->member = cpu_to_le##bits(val); \
5f39d397 1977}
9078a3e1 1978
5f39d397
CM
1979#define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
1980static inline u##bits btrfs_##name(type *s) \
1981{ \
1982 return le##bits##_to_cpu(s->member); \
1983} \
1984static inline void btrfs_set_##name(type *s, u##bits val) \
1985{ \
1986 s->member = cpu_to_le##bits(val); \
1e1d2701
CM
1987}
1988
0b86a832
CM
1989BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
1990BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
1991BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1992BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1993BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
c3027eb5
CM
1994BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1995 start_offset, 64);
0b86a832
CM
1996BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1997BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
e17cade2
CM
1998BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1999BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
2000BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
2b82032c 2001BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
0b86a832 2002
8a4b83cc
CM
2003BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
2004BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
2005 total_bytes, 64);
2006BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
2007 bytes_used, 64);
2008BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
2009 io_align, 32);
2010BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
2011 io_width, 32);
2012BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
2013 sector_size, 32);
2014BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
e17cade2
CM
2015BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
2016 dev_group, 32);
2017BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
2018 seek_speed, 8);
2019BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
2020 bandwidth, 8);
2b82032c
YZ
2021BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
2022 generation, 64);
8a4b83cc 2023
0b86a832
CM
2024static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
2025{
2026 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
2027}
2028
2b82032c
YZ
2029static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
2030{
2031 return (char *)d + offsetof(struct btrfs_dev_item, fsid);
2032}
2033
e17cade2 2034BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
0b86a832
CM
2035BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
2036BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
2037BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
2038BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
2039BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
2040BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
2041BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
321aecc6 2042BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
0b86a832
CM
2043BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
2044BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
2045
e17cade2
CM
2046static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
2047{
2048 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
2049}
2050
2051BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
0b86a832
CM
2052BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
2053BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
2054 stripe_len, 64);
2055BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
2056 io_align, 32);
2057BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
2058 io_width, 32);
2059BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
2060 sector_size, 32);
2061BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
2062BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
2063 num_stripes, 16);
321aecc6
CM
2064BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
2065 sub_stripes, 16);
0b86a832
CM
2066BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
2067BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
2068
2069static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
2070 int nr)
2071{
2072 unsigned long offset = (unsigned long)c;
2073 offset += offsetof(struct btrfs_chunk, stripe);
2074 offset += nr * sizeof(struct btrfs_stripe);
2075 return (struct btrfs_stripe *)offset;
2076}
2077
a443755f
CM
2078static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
2079{
2080 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
2081}
2082
0b86a832
CM
2083static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
2084 struct btrfs_chunk *c, int nr)
2085{
2086 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
2087}
2088
0b86a832
CM
2089static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
2090 struct btrfs_chunk *c, int nr)
2091{
2092 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
2093}
2094
5f39d397
CM
2095/* struct btrfs_block_group_item */
2096BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
2097 used, 64);
2098BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
2099 used, 64);
0b86a832
CM
2100BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
2101 struct btrfs_block_group_item, chunk_objectid, 64);
e17cade2
CM
2102
2103BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
0b86a832
CM
2104 struct btrfs_block_group_item, chunk_objectid, 64);
2105BTRFS_SETGET_FUNCS(disk_block_group_flags,
2106 struct btrfs_block_group_item, flags, 64);
2107BTRFS_SETGET_STACK_FUNCS(block_group_flags,
2108 struct btrfs_block_group_item, flags, 64);
1e1d2701 2109
3954401f
CM
2110/* struct btrfs_inode_ref */
2111BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
aec7477b 2112BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
3954401f 2113
f186373f
MF
2114/* struct btrfs_inode_extref */
2115BTRFS_SETGET_FUNCS(inode_extref_parent, struct btrfs_inode_extref,
2116 parent_objectid, 64);
2117BTRFS_SETGET_FUNCS(inode_extref_name_len, struct btrfs_inode_extref,
2118 name_len, 16);
2119BTRFS_SETGET_FUNCS(inode_extref_index, struct btrfs_inode_extref, index, 64);
2120
5f39d397
CM
2121/* struct btrfs_inode_item */
2122BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
c3027eb5 2123BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
e02119d5 2124BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
5f39d397 2125BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
a76a3cd4 2126BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
5f39d397
CM
2127BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
2128BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
2129BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
2130BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
2131BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
0b86a832 2132BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
f2b636e8 2133BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1e1d2701 2134
0b86a832 2135static inline struct btrfs_timespec *
5f39d397 2136btrfs_inode_atime(struct btrfs_inode_item *inode_item)
1e1d2701 2137{
5f39d397
CM
2138 unsigned long ptr = (unsigned long)inode_item;
2139 ptr += offsetof(struct btrfs_inode_item, atime);
0b86a832 2140 return (struct btrfs_timespec *)ptr;
1e1d2701
CM
2141}
2142
0b86a832 2143static inline struct btrfs_timespec *
5f39d397 2144btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
1e1d2701 2145{
5f39d397
CM
2146 unsigned long ptr = (unsigned long)inode_item;
2147 ptr += offsetof(struct btrfs_inode_item, mtime);
0b86a832 2148 return (struct btrfs_timespec *)ptr;
1e1d2701
CM
2149}
2150
0b86a832 2151static inline struct btrfs_timespec *
5f39d397 2152btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
1e1d2701 2153{
5f39d397
CM
2154 unsigned long ptr = (unsigned long)inode_item;
2155 ptr += offsetof(struct btrfs_inode_item, ctime);
0b86a832 2156 return (struct btrfs_timespec *)ptr;
1e1d2701
CM
2157}
2158
0b86a832
CM
2159BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
2160BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
e20d96d6 2161
0b86a832 2162/* struct btrfs_dev_extent */
e17cade2
CM
2163BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
2164 chunk_tree, 64);
2165BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
2166 chunk_objectid, 64);
2167BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
2168 chunk_offset, 64);
0b86a832
CM
2169BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
2170
e17cade2
CM
2171static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
2172{
2173 unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
2174 return (u8 *)((unsigned long)dev + ptr);
2175}
2176
5d4f98a2
YZ
2177BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
2178BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
2179 generation, 64);
2180BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
74493f7a 2181
5d4f98a2
YZ
2182BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
2183
2184
2185BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
2186
2187static inline void btrfs_tree_block_key(struct extent_buffer *eb,
2188 struct btrfs_tree_block_info *item,
2189 struct btrfs_disk_key *key)
2190{
2191 read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
2192}
2193
2194static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
2195 struct btrfs_tree_block_info *item,
2196 struct btrfs_disk_key *key)
2197{
2198 write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
2199}
e20d96d6 2200
5d4f98a2
YZ
2201BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
2202 root, 64);
2203BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
2204 objectid, 64);
2205BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
2206 offset, 64);
2207BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
2208 count, 32);
2209
2210BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
2211 count, 32);
2212
2213BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
2214 type, 8);
2215BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
2216 offset, 64);
2217
2218static inline u32 btrfs_extent_inline_ref_size(int type)
2219{
2220 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
2221 type == BTRFS_SHARED_BLOCK_REF_KEY)
2222 return sizeof(struct btrfs_extent_inline_ref);
2223 if (type == BTRFS_SHARED_DATA_REF_KEY)
2224 return sizeof(struct btrfs_shared_data_ref) +
2225 sizeof(struct btrfs_extent_inline_ref);
2226 if (type == BTRFS_EXTENT_DATA_REF_KEY)
2227 return sizeof(struct btrfs_extent_data_ref) +
2228 offsetof(struct btrfs_extent_inline_ref, offset);
2229 BUG();
2230 return 0;
2231}
2232
2233BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
2234BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
2235 generation, 64);
2236BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
2237BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
e20d96d6 2238
5f39d397
CM
2239/* struct btrfs_node */
2240BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
74493f7a 2241BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
e20d96d6 2242
5f39d397 2243static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
cf27e1ee 2244{
5f39d397
CM
2245 unsigned long ptr;
2246 ptr = offsetof(struct btrfs_node, ptrs) +
2247 sizeof(struct btrfs_key_ptr) * nr;
2248 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
cf27e1ee
CM
2249}
2250
5f39d397
CM
2251static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
2252 int nr, u64 val)
cf27e1ee 2253{
5f39d397
CM
2254 unsigned long ptr;
2255 ptr = offsetof(struct btrfs_node, ptrs) +
2256 sizeof(struct btrfs_key_ptr) * nr;
2257 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
cf27e1ee
CM
2258}
2259
74493f7a
CM
2260static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
2261{
2262 unsigned long ptr;
2263 ptr = offsetof(struct btrfs_node, ptrs) +
2264 sizeof(struct btrfs_key_ptr) * nr;
2265 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
2266}
2267
2268static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
2269 int nr, u64 val)
2270{
2271 unsigned long ptr;
2272 ptr = offsetof(struct btrfs_node, ptrs) +
2273 sizeof(struct btrfs_key_ptr) * nr;
2274 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
2275}
2276
810191ff 2277static inline unsigned long btrfs_node_key_ptr_offset(int nr)
4d775673 2278{
5f39d397
CM
2279 return offsetof(struct btrfs_node, ptrs) +
2280 sizeof(struct btrfs_key_ptr) * nr;
4d775673
CM
2281}
2282
e644d021
CM
2283void btrfs_node_key(struct extent_buffer *eb,
2284 struct btrfs_disk_key *disk_key, int nr);
2285
5f39d397
CM
2286static inline void btrfs_set_node_key(struct extent_buffer *eb,
2287 struct btrfs_disk_key *disk_key, int nr)
1d4f8a0c 2288{
5f39d397
CM
2289 unsigned long ptr;
2290 ptr = btrfs_node_key_ptr_offset(nr);
2291 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
2292 struct btrfs_key_ptr, key, disk_key);
1d4f8a0c
CM
2293}
2294
5f39d397
CM
2295/* struct btrfs_item */
2296BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
2297BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
4d775673 2298
5f39d397 2299static inline unsigned long btrfs_item_nr_offset(int nr)
1d4f8a0c 2300{
5f39d397
CM
2301 return offsetof(struct btrfs_leaf, items) +
2302 sizeof(struct btrfs_item) * nr;
1d4f8a0c
CM
2303}
2304
5f39d397
CM
2305static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
2306 int nr)
0783fcfc 2307{
5f39d397 2308 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
0783fcfc
CM
2309}
2310
5f39d397
CM
2311static inline u32 btrfs_item_end(struct extent_buffer *eb,
2312 struct btrfs_item *item)
0783fcfc 2313{
5f39d397 2314 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
0783fcfc
CM
2315}
2316
5f39d397 2317static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
0783fcfc 2318{
5f39d397 2319 return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
0783fcfc
CM
2320}
2321
5f39d397 2322static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
0783fcfc 2323{
5f39d397 2324 return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
0783fcfc
CM
2325}
2326
5f39d397 2327static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
0783fcfc 2328{
5f39d397 2329 return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
0783fcfc
CM
2330}
2331
5f39d397
CM
2332static inline void btrfs_item_key(struct extent_buffer *eb,
2333 struct btrfs_disk_key *disk_key, int nr)
1d4f6404 2334{
5f39d397
CM
2335 struct btrfs_item *item = btrfs_item_nr(eb, nr);
2336 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1d4f6404
CM
2337}
2338
5f39d397
CM
2339static inline void btrfs_set_item_key(struct extent_buffer *eb,
2340 struct btrfs_disk_key *disk_key, int nr)
1d4f6404 2341{
5f39d397
CM
2342 struct btrfs_item *item = btrfs_item_nr(eb, nr);
2343 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1d4f6404
CM
2344}
2345
e02119d5
CM
2346BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
2347
0660b5af
CM
2348/*
2349 * struct btrfs_root_ref
2350 */
2351BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
2352BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
2353BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
2354
5f39d397 2355/* struct btrfs_dir_item */
5103e947 2356BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
5f39d397
CM
2357BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
2358BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
e02119d5 2359BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1d4f6404 2360
5f39d397
CM
2361static inline void btrfs_dir_item_key(struct extent_buffer *eb,
2362 struct btrfs_dir_item *item,
2363 struct btrfs_disk_key *key)
1d4f6404 2364{
5f39d397 2365 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1d4f6404
CM
2366}
2367
5f39d397
CM
2368static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
2369 struct btrfs_dir_item *item,
2370 struct btrfs_disk_key *key)
a8a2ee0c 2371{
5f39d397 2372 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
a8a2ee0c
CM
2373}
2374
0af3d00b
JB
2375BTRFS_SETGET_FUNCS(free_space_entries, struct btrfs_free_space_header,
2376 num_entries, 64);
2377BTRFS_SETGET_FUNCS(free_space_bitmaps, struct btrfs_free_space_header,
2378 num_bitmaps, 64);
2379BTRFS_SETGET_FUNCS(free_space_generation, struct btrfs_free_space_header,
2380 generation, 64);
2381
2382static inline void btrfs_free_space_key(struct extent_buffer *eb,
2383 struct btrfs_free_space_header *h,
2384 struct btrfs_disk_key *key)
2385{
2386 read_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2387}
2388
2389static inline void btrfs_set_free_space_key(struct extent_buffer *eb,
2390 struct btrfs_free_space_header *h,
2391 struct btrfs_disk_key *key)
2392{
2393 write_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2394}
2395
5f39d397
CM
2396/* struct btrfs_disk_key */
2397BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
2398 objectid, 64);
2399BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
2400BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1d4f6404 2401
e2fa7227
CM
2402static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
2403 struct btrfs_disk_key *disk)
2404{
2405 cpu->offset = le64_to_cpu(disk->offset);
5f39d397 2406 cpu->type = disk->type;
e2fa7227
CM
2407 cpu->objectid = le64_to_cpu(disk->objectid);
2408}
2409
2410static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
2411 struct btrfs_key *cpu)
2412{
2413 disk->offset = cpu_to_le64(cpu->offset);
5f39d397 2414 disk->type = cpu->type;
e2fa7227
CM
2415 disk->objectid = cpu_to_le64(cpu->objectid);
2416}
2417
5f39d397
CM
2418static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
2419 struct btrfs_key *key, int nr)
7f5c1516 2420{
5f39d397
CM
2421 struct btrfs_disk_key disk_key;
2422 btrfs_node_key(eb, &disk_key, nr);
2423 btrfs_disk_key_to_cpu(key, &disk_key);
7f5c1516
CM
2424}
2425
5f39d397
CM
2426static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
2427 struct btrfs_key *key, int nr)
7f5c1516 2428{
5f39d397
CM
2429 struct btrfs_disk_key disk_key;
2430 btrfs_item_key(eb, &disk_key, nr);
2431 btrfs_disk_key_to_cpu(key, &disk_key);
7f5c1516
CM
2432}
2433
5f39d397
CM
2434static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
2435 struct btrfs_dir_item *item,
2436 struct btrfs_key *key)
4d775673 2437{
5f39d397
CM
2438 struct btrfs_disk_key disk_key;
2439 btrfs_dir_item_key(eb, item, &disk_key);
2440 btrfs_disk_key_to_cpu(key, &disk_key);
4d775673
CM
2441}
2442
58176a96 2443
5f39d397 2444static inline u8 btrfs_key_type(struct btrfs_key *key)
3768f368 2445{
5f39d397 2446 return key->type;
3768f368
CM
2447}
2448
5f39d397 2449static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
3768f368 2450{
5f39d397 2451 key->type = val;
3768f368
CM
2452}
2453
5f39d397 2454/* struct btrfs_header */
db94535d 2455BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
5f39d397
CM
2456BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
2457 generation, 64);
2458BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
2459BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
63b10fc4 2460BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
5f39d397 2461BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
0f7d52f4 2462
63b10fc4
CM
2463static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
2464{
2465 return (btrfs_header_flags(eb) & flag) == flag;
2466}
2467
2468static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
2469{
2470 u64 flags = btrfs_header_flags(eb);
2471 btrfs_set_header_flags(eb, flags | flag);
2472 return (flags & flag) == flag;
2473}
2474
2475static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
2476{
2477 u64 flags = btrfs_header_flags(eb);
2478 btrfs_set_header_flags(eb, flags & ~flag);
2479 return (flags & flag) == flag;
2480}
2481
5d4f98a2
YZ
2482static inline int btrfs_header_backref_rev(struct extent_buffer *eb)
2483{
2484 u64 flags = btrfs_header_flags(eb);
2485 return flags >> BTRFS_BACKREF_REV_SHIFT;
2486}
2487
2488static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
2489 int rev)
2490{
2491 u64 flags = btrfs_header_flags(eb);
2492 flags &= ~BTRFS_BACKREF_REV_MASK;
2493 flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
2494 btrfs_set_header_flags(eb, flags);
2495}
2496
5f39d397 2497static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
0f7d52f4 2498{
5f39d397
CM
2499 unsigned long ptr = offsetof(struct btrfs_header, fsid);
2500 return (u8 *)ptr;
0f7d52f4
CM
2501}
2502
e17cade2
CM
2503static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
2504{
2505 unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
2506 return (u8 *)ptr;
2507}
2508
5f39d397 2509static inline int btrfs_is_leaf(struct extent_buffer *eb)
3768f368 2510{
d397712b 2511 return btrfs_header_level(eb) == 0;
3768f368
CM
2512}
2513
5f39d397 2514/* struct btrfs_root_item */
84234f3a
YZ
2515BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
2516 generation, 64);
5f39d397 2517BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
db94535d
CM
2518BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
2519BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
3768f368 2520
84234f3a
YZ
2521BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
2522 generation, 64);
db94535d
CM
2523BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
2524BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
5f39d397
CM
2525BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
2526BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
f2b636e8 2527BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
db94535d
CM
2528BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
2529BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
80ff3856
YZ
2530BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
2531 last_snapshot, 64);
8ea05e3a
AB
2532BTRFS_SETGET_STACK_FUNCS(root_generation_v2, struct btrfs_root_item,
2533 generation_v2, 64);
2534BTRFS_SETGET_STACK_FUNCS(root_ctransid, struct btrfs_root_item,
2535 ctransid, 64);
2536BTRFS_SETGET_STACK_FUNCS(root_otransid, struct btrfs_root_item,
2537 otransid, 64);
2538BTRFS_SETGET_STACK_FUNCS(root_stransid, struct btrfs_root_item,
2539 stransid, 64);
2540BTRFS_SETGET_STACK_FUNCS(root_rtransid, struct btrfs_root_item,
2541 rtransid, 64);
123abc88 2542
b83cc969
LZ
2543static inline bool btrfs_root_readonly(struct btrfs_root *root)
2544{
6ed3cf2c 2545 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_RDONLY)) != 0;
b83cc969
LZ
2546}
2547
af31f5e5
CM
2548/* struct btrfs_root_backup */
2549BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
2550 tree_root, 64);
2551BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
2552 tree_root_gen, 64);
2553BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
2554 tree_root_level, 8);
2555
2556BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
2557 chunk_root, 64);
2558BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
2559 chunk_root_gen, 64);
2560BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
2561 chunk_root_level, 8);
2562
2563BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
2564 extent_root, 64);
2565BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
2566 extent_root_gen, 64);
2567BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
2568 extent_root_level, 8);
2569
2570BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
2571 fs_root, 64);
2572BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
2573 fs_root_gen, 64);
2574BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
2575 fs_root_level, 8);
2576
2577BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
2578 dev_root, 64);
2579BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
2580 dev_root_gen, 64);
2581BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
2582 dev_root_level, 8);
2583
2584BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
2585 csum_root, 64);
2586BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
2587 csum_root_gen, 64);
2588BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
2589 csum_root_level, 8);
2590BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
2591 total_bytes, 64);
2592BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
2593 bytes_used, 64);
2594BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
2595 num_devices, 64);
2596
0940ebf6
ID
2597/* struct btrfs_balance_item */
2598BTRFS_SETGET_FUNCS(balance_flags, struct btrfs_balance_item, flags, 64);
607d432d 2599
0940ebf6
ID
2600static inline void btrfs_balance_data(struct extent_buffer *eb,
2601 struct btrfs_balance_item *bi,
2602 struct btrfs_disk_balance_args *ba)
2603{
2604 read_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2605}
2606
2607static inline void btrfs_set_balance_data(struct extent_buffer *eb,
2608 struct btrfs_balance_item *bi,
2609 struct btrfs_disk_balance_args *ba)
2610{
2611 write_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2612}
2613
2614static inline void btrfs_balance_meta(struct extent_buffer *eb,
2615 struct btrfs_balance_item *bi,
2616 struct btrfs_disk_balance_args *ba)
2617{
2618 read_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2619}
2620
2621static inline void btrfs_set_balance_meta(struct extent_buffer *eb,
2622 struct btrfs_balance_item *bi,
2623 struct btrfs_disk_balance_args *ba)
2624{
2625 write_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2626}
2627
2628static inline void btrfs_balance_sys(struct extent_buffer *eb,
2629 struct btrfs_balance_item *bi,
2630 struct btrfs_disk_balance_args *ba)
2631{
2632 read_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2633}
2634
2635static inline void btrfs_set_balance_sys(struct extent_buffer *eb,
2636 struct btrfs_balance_item *bi,
2637 struct btrfs_disk_balance_args *ba)
2638{
2639 write_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2640}
2641
2642static inline void
2643btrfs_disk_balance_args_to_cpu(struct btrfs_balance_args *cpu,
2644 struct btrfs_disk_balance_args *disk)
2645{
2646 memset(cpu, 0, sizeof(*cpu));
2647
2648 cpu->profiles = le64_to_cpu(disk->profiles);
2649 cpu->usage = le64_to_cpu(disk->usage);
2650 cpu->devid = le64_to_cpu(disk->devid);
2651 cpu->pstart = le64_to_cpu(disk->pstart);
2652 cpu->pend = le64_to_cpu(disk->pend);
2653 cpu->vstart = le64_to_cpu(disk->vstart);
2654 cpu->vend = le64_to_cpu(disk->vend);
2655 cpu->target = le64_to_cpu(disk->target);
2656 cpu->flags = le64_to_cpu(disk->flags);
2657}
2658
2659static inline void
2660btrfs_cpu_balance_args_to_disk(struct btrfs_disk_balance_args *disk,
2661 struct btrfs_balance_args *cpu)
2662{
2663 memset(disk, 0, sizeof(*disk));
2664
2665 disk->profiles = cpu_to_le64(cpu->profiles);
2666 disk->usage = cpu_to_le64(cpu->usage);
2667 disk->devid = cpu_to_le64(cpu->devid);
2668 disk->pstart = cpu_to_le64(cpu->pstart);
2669 disk->pend = cpu_to_le64(cpu->pend);
2670 disk->vstart = cpu_to_le64(cpu->vstart);
2671 disk->vend = cpu_to_le64(cpu->vend);
2672 disk->target = cpu_to_le64(cpu->target);
2673 disk->flags = cpu_to_le64(cpu->flags);
2674}
2675
2676/* struct btrfs_super_block */
db94535d 2677BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
a061fc8d 2678BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
5f39d397
CM
2679BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
2680 generation, 64);
2681BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
0b86a832
CM
2682BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
2683 struct btrfs_super_block, sys_chunk_array_size, 32);
84234f3a
YZ
2684BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
2685 struct btrfs_super_block, chunk_root_generation, 64);
db94535d
CM
2686BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
2687 root_level, 8);
0b86a832
CM
2688BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
2689 chunk_root, 64);
2690BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
e02119d5
CM
2691 chunk_root_level, 8);
2692BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
2693 log_root, 64);
c3027eb5
CM
2694BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
2695 log_root_transid, 64);
e02119d5
CM
2696BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
2697 log_root_level, 8);
db94535d
CM
2698BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
2699 total_bytes, 64);
2700BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
2701 bytes_used, 64);
5f39d397
CM
2702BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
2703 sectorsize, 32);
2704BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
2705 nodesize, 32);
2706BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
2707 leafsize, 32);
87ee04eb
CM
2708BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
2709 stripesize, 32);
5f39d397
CM
2710BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
2711 root_dir_objectid, 64);
8a4b83cc
CM
2712BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
2713 num_devices, 64);
f2b636e8
JB
2714BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
2715 compat_flags, 64);
2716BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
12534832 2717 compat_ro_flags, 64);
f2b636e8
JB
2718BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
2719 incompat_flags, 64);
607d432d
JB
2720BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
2721 csum_type, 16);
0af3d00b
JB
2722BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
2723 cache_generation, 64);
607d432d
JB
2724
2725static inline int btrfs_super_csum_size(struct btrfs_super_block *s)
2726{
2727 int t = btrfs_super_csum_type(s);
2728 BUG_ON(t >= ARRAY_SIZE(btrfs_csum_sizes));
2729 return btrfs_csum_sizes[t];
2730}
2e635a27 2731
5f39d397 2732static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
2e635a27 2733{
5f39d397 2734 return offsetof(struct btrfs_leaf, items);
2e635a27
CM
2735}
2736
5f39d397
CM
2737/* struct btrfs_file_extent_item */
2738BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
9f5fae2f 2739
d397712b
CM
2740static inline unsigned long
2741btrfs_file_extent_inline_start(struct btrfs_file_extent_item *e)
236454df 2742{
5f39d397 2743 unsigned long offset = (unsigned long)e;
db94535d 2744 offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
5f39d397 2745 return offset;
236454df
CM
2746}
2747
2748static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
2749{
db94535d 2750 return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
9f5fae2f
CM
2751}
2752
db94535d
CM
2753BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
2754 disk_bytenr, 64);
5f39d397
CM
2755BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
2756 generation, 64);
db94535d
CM
2757BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
2758 disk_num_bytes, 64);
5f39d397
CM
2759BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
2760 offset, 64);
db94535d
CM
2761BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
2762 num_bytes, 64);
c8b97818
CM
2763BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
2764 ram_bytes, 64);
2765BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
2766 compression, 8);
2767BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
2768 encryption, 8);
2769BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
2770 other_encoding, 16);
2771
2772/* this returns the number of file bytes represented by the inline item.
2773 * If an item is compressed, this is the uncompressed size
2774 */
2775static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
2776 struct btrfs_file_extent_item *e)
2777{
2778 return btrfs_file_extent_ram_bytes(eb, e);
2779}
2780
2781/*
2782 * this returns the number of bytes used by the item on disk, minus the
2783 * size of any extent headers. If a file is compressed on disk, this is
2784 * the compressed size
2785 */
2786static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
2787 struct btrfs_item *e)
2788{
2789 unsigned long offset;
2790 offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
2791 return btrfs_item_size(eb, e) - offset;
2792}
9f5fae2f 2793
733f4fbb
SB
2794/* btrfs_dev_stats_item */
2795static inline u64 btrfs_dev_stats_value(struct extent_buffer *eb,
2796 struct btrfs_dev_stats_item *ptr,
2797 int index)
2798{
2799 u64 val;
2800
2801 read_extent_buffer(eb, &val,
2802 offsetof(struct btrfs_dev_stats_item, values) +
2803 ((unsigned long)ptr) + (index * sizeof(u64)),
2804 sizeof(val));
2805 return val;
2806}
2807
2808static inline void btrfs_set_dev_stats_value(struct extent_buffer *eb,
2809 struct btrfs_dev_stats_item *ptr,
2810 int index, u64 val)
2811{
2812 write_extent_buffer(eb, &val,
2813 offsetof(struct btrfs_dev_stats_item, values) +
2814 ((unsigned long)ptr) + (index * sizeof(u64)),
2815 sizeof(val));
2816}
2817
630dc772
AJ
2818/* btrfs_qgroup_status_item */
2819BTRFS_SETGET_FUNCS(qgroup_status_generation, struct btrfs_qgroup_status_item,
2820 generation, 64);
2821BTRFS_SETGET_FUNCS(qgroup_status_version, struct btrfs_qgroup_status_item,
2822 version, 64);
2823BTRFS_SETGET_FUNCS(qgroup_status_flags, struct btrfs_qgroup_status_item,
2824 flags, 64);
2825BTRFS_SETGET_FUNCS(qgroup_status_scan, struct btrfs_qgroup_status_item,
2826 scan, 64);
2827
2828/* btrfs_qgroup_info_item */
2829BTRFS_SETGET_FUNCS(qgroup_info_generation, struct btrfs_qgroup_info_item,
2830 generation, 64);
2831BTRFS_SETGET_FUNCS(qgroup_info_rfer, struct btrfs_qgroup_info_item, rfer, 64);
2832BTRFS_SETGET_FUNCS(qgroup_info_rfer_cmpr, struct btrfs_qgroup_info_item,
2833 rfer_cmpr, 64);
2834BTRFS_SETGET_FUNCS(qgroup_info_excl, struct btrfs_qgroup_info_item, excl, 64);
2835BTRFS_SETGET_FUNCS(qgroup_info_excl_cmpr, struct btrfs_qgroup_info_item,
2836 excl_cmpr, 64);
2837
2838BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_generation,
2839 struct btrfs_qgroup_info_item, generation, 64);
2840BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer, struct btrfs_qgroup_info_item,
2841 rfer, 64);
2842BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer_cmpr,
2843 struct btrfs_qgroup_info_item, rfer_cmpr, 64);
2844BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl, struct btrfs_qgroup_info_item,
2845 excl, 64);
2846BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl_cmpr,
2847 struct btrfs_qgroup_info_item, excl_cmpr, 64);
2848
2849/* btrfs_qgroup_limit_item */
2850BTRFS_SETGET_FUNCS(qgroup_limit_flags, struct btrfs_qgroup_limit_item,
2851 flags, 64);
2852BTRFS_SETGET_FUNCS(qgroup_limit_max_rfer, struct btrfs_qgroup_limit_item,
2853 max_rfer, 64);
2854BTRFS_SETGET_FUNCS(qgroup_limit_max_excl, struct btrfs_qgroup_limit_item,
2855 max_excl, 64);
2856BTRFS_SETGET_FUNCS(qgroup_limit_rsv_rfer, struct btrfs_qgroup_limit_item,
2857 rsv_rfer, 64);
2858BTRFS_SETGET_FUNCS(qgroup_limit_rsv_excl, struct btrfs_qgroup_limit_item,
2859 rsv_excl, 64);
2860
a2bff640
SB
2861/* btrfs_dev_replace_item */
2862BTRFS_SETGET_FUNCS(dev_replace_src_devid,
2863 struct btrfs_dev_replace_item, src_devid, 64);
2864BTRFS_SETGET_FUNCS(dev_replace_cont_reading_from_srcdev_mode,
2865 struct btrfs_dev_replace_item, cont_reading_from_srcdev_mode,
2866 64);
2867BTRFS_SETGET_FUNCS(dev_replace_replace_state, struct btrfs_dev_replace_item,
2868 replace_state, 64);
2869BTRFS_SETGET_FUNCS(dev_replace_time_started, struct btrfs_dev_replace_item,
2870 time_started, 64);
2871BTRFS_SETGET_FUNCS(dev_replace_time_stopped, struct btrfs_dev_replace_item,
2872 time_stopped, 64);
2873BTRFS_SETGET_FUNCS(dev_replace_num_write_errors, struct btrfs_dev_replace_item,
2874 num_write_errors, 64);
2875BTRFS_SETGET_FUNCS(dev_replace_num_uncorrectable_read_errors,
2876 struct btrfs_dev_replace_item, num_uncorrectable_read_errors,
2877 64);
2878BTRFS_SETGET_FUNCS(dev_replace_cursor_left, struct btrfs_dev_replace_item,
2879 cursor_left, 64);
2880BTRFS_SETGET_FUNCS(dev_replace_cursor_right, struct btrfs_dev_replace_item,
2881 cursor_right, 64);
2882
2883BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_src_devid,
2884 struct btrfs_dev_replace_item, src_devid, 64);
2885BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cont_reading_from_srcdev_mode,
2886 struct btrfs_dev_replace_item,
2887 cont_reading_from_srcdev_mode, 64);
2888BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_replace_state,
2889 struct btrfs_dev_replace_item, replace_state, 64);
2890BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_started,
2891 struct btrfs_dev_replace_item, time_started, 64);
2892BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_stopped,
2893 struct btrfs_dev_replace_item, time_stopped, 64);
2894BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_write_errors,
2895 struct btrfs_dev_replace_item, num_write_errors, 64);
2896BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_uncorrectable_read_errors,
2897 struct btrfs_dev_replace_item,
2898 num_uncorrectable_read_errors, 64);
2899BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_left,
2900 struct btrfs_dev_replace_item, cursor_left, 64);
2901BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_right,
2902 struct btrfs_dev_replace_item, cursor_right, 64);
2903
815745cf 2904static inline struct btrfs_fs_info *btrfs_sb(struct super_block *sb)
e20d96d6
CM
2905{
2906 return sb->s_fs_info;
2907}
2908
d397712b
CM
2909static inline u32 btrfs_level_size(struct btrfs_root *root, int level)
2910{
db94535d
CM
2911 if (level == 0)
2912 return root->leafsize;
2913 return root->nodesize;
2914}
2915
4beb1b8b
CM
2916/* helper function to cast into the data area of the leaf. */
2917#define btrfs_item_ptr(leaf, slot, type) \
123abc88 2918 ((type *)(btrfs_leaf_data(leaf) + \
5f39d397
CM
2919 btrfs_item_offset_nr(leaf, slot)))
2920
2921#define btrfs_item_ptr_offset(leaf, slot) \
2922 ((unsigned long)(btrfs_leaf_data(leaf) + \
2923 btrfs_item_offset_nr(leaf, slot)))
4beb1b8b 2924
2b1f55b0
CM
2925static inline struct dentry *fdentry(struct file *file)
2926{
6da6abae 2927 return file->f_path.dentry;
6da6abae
CM
2928}
2929
67377734
JB
2930static inline bool btrfs_mixed_space_info(struct btrfs_space_info *space_info)
2931{
2932 return ((space_info->flags & BTRFS_BLOCK_GROUP_METADATA) &&
2933 (space_info->flags & BTRFS_BLOCK_GROUP_DATA));
2934}
2935
3b16a4e3
JB
2936static inline gfp_t btrfs_alloc_write_mask(struct address_space *mapping)
2937{
2938 return mapping_gfp_mask(mapping) & ~__GFP_FS;
2939}
2940
b18c6685 2941/* extent-tree.c */
16cdcec7 2942static inline u64 btrfs_calc_trans_metadata_size(struct btrfs_root *root,
9e0baf60 2943 unsigned num_items)
16cdcec7
MX
2944{
2945 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
2946 3 * num_items;
07127184
JB
2947}
2948
2949/*
2950 * Doing a truncate won't result in new nodes or leaves, just what we need for
2951 * COW.
2952 */
2953static inline u64 btrfs_calc_trunc_metadata_size(struct btrfs_root *root,
2954 unsigned num_items)
2955{
2956 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
2957 num_items;
16cdcec7
MX
2958}
2959
fa9c0d79 2960void btrfs_put_block_group(struct btrfs_block_group_cache *cache);
56bec294
CM
2961int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2962 struct btrfs_root *root, unsigned long count);
31840ae1 2963int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len);
a22285a6
YZ
2964int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
2965 struct btrfs_root *root, u64 bytenr,
2966 u64 num_bytes, u64 *refs, u64 *flags);
11833d66
YZ
2967int btrfs_pin_extent(struct btrfs_root *root,
2968 u64 bytenr, u64 num, int reserved);
dcfac415 2969int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
e688b725 2970 u64 bytenr, u64 num_bytes);
80ff3856 2971int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
2972 struct btrfs_root *root,
2973 u64 objectid, u64 offset, u64 bytenr);
d397712b
CM
2974struct btrfs_block_group_cache *btrfs_lookup_block_group(
2975 struct btrfs_fs_info *info,
2976 u64 bytenr);
5d4f98a2 2977void btrfs_put_block_group(struct btrfs_block_group_cache *cache);
d2fb3437
YZ
2978u64 btrfs_find_block_group(struct btrfs_root *root,
2979 u64 search_start, u64 search_hint, int owner);
5f39d397 2980struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
2981 struct btrfs_root *root, u32 blocksize,
2982 u64 parent, u64 root_objectid,
2983 struct btrfs_disk_key *key, int level,
5581a51a 2984 u64 hint, u64 empty_size);
f0486c68
YZ
2985void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
2986 struct btrfs_root *root,
2987 struct extent_buffer *buf,
5581a51a 2988 u64 parent, int last_ref);
65b51a00
CM
2989struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
2990 struct btrfs_root *root,
4008c04a
CM
2991 u64 bytenr, u32 blocksize,
2992 int level);
5d4f98a2
YZ
2993int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
2994 struct btrfs_root *root,
2995 u64 root_objectid, u64 owner,
2996 u64 offset, struct btrfs_key *ins);
2997int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
2998 struct btrfs_root *root,
2999 u64 root_objectid, u64 owner, u64 offset,
3000 struct btrfs_key *ins);
e6dcd2dc
CM
3001int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
3002 struct btrfs_root *root,
3003 u64 num_bytes, u64 min_alloc_size,
3004 u64 empty_size, u64 hint_byte,
81c9ad23 3005 struct btrfs_key *ins, u64 data);
e089f05c 3006int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
66d7e7f0 3007 struct extent_buffer *buf, int full_backref, int for_cow);
5d4f98a2 3008int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
66d7e7f0 3009 struct extent_buffer *buf, int full_backref, int for_cow);
5d4f98a2
YZ
3010int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3011 struct btrfs_root *root,
3012 u64 bytenr, u64 num_bytes, u64 flags,
3013 int is_data);
31840ae1
ZY
3014int btrfs_free_extent(struct btrfs_trans_handle *trans,
3015 struct btrfs_root *root,
66d7e7f0
AJ
3016 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
3017 u64 owner, u64 offset, int for_cow);
5d4f98a2 3018
65b51a00 3019int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len);
e688b725
CM
3020int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
3021 u64 start, u64 len);
143bede5
JM
3022void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
3023 struct btrfs_root *root);
ccd467d6 3024int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
11833d66 3025 struct btrfs_root *root);
b18c6685 3026int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
31840ae1
ZY
3027 struct btrfs_root *root,
3028 u64 bytenr, u64 num_bytes, u64 parent,
66d7e7f0 3029 u64 root_objectid, u64 owner, u64 offset, int for_cow);
5d4f98a2 3030
9078a3e1
CM
3031int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3032 struct btrfs_root *root);
d2fb3437 3033int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr);
9078a3e1
CM
3034int btrfs_free_block_groups(struct btrfs_fs_info *info);
3035int btrfs_read_block_groups(struct btrfs_root *root);
ba1bf481 3036int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr);
0b86a832
CM
3037int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3038 struct btrfs_root *root, u64 bytes_used,
e17cade2 3039 u64 type, u64 chunk_objectid, u64 chunk_offset,
0b86a832 3040 u64 size);
1a40e23b
ZY
3041int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
3042 struct btrfs_root *root, u64 group_start);
ea658bad
JB
3043void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
3044 struct btrfs_root *root);
2b82032c 3045u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags);
6d07bcec 3046u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data);
4184ea7f 3047void btrfs_clear_space_info_full(struct btrfs_fs_info *info);
08e007d2
MX
3048
3049enum btrfs_reserve_flush_enum {
3050 /* If we are in the transaction, we can't flush anything.*/
3051 BTRFS_RESERVE_NO_FLUSH,
3052 /*
3053 * Flushing delalloc may cause deadlock somewhere, in this
3054 * case, use FLUSH LIMIT
3055 */
3056 BTRFS_RESERVE_FLUSH_LIMIT,
3057 BTRFS_RESERVE_FLUSH_ALL,
3058};
3059
0ca1f7ce
YZ
3060int btrfs_check_data_free_space(struct inode *inode, u64 bytes);
3061void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes);
a22285a6
YZ
3062void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3063 struct btrfs_root *root);
d68fc57b
YZ
3064int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3065 struct inode *inode);
3066void btrfs_orphan_release_metadata(struct inode *inode);
a22285a6
YZ
3067int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3068 struct btrfs_pending_snapshot *pending);
0ca1f7ce
YZ
3069int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes);
3070void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes);
3071int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes);
3072void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes);
66d8f3dd
MX
3073void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type);
3074struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
3075 unsigned short type);
f0486c68
YZ
3076void btrfs_free_block_rsv(struct btrfs_root *root,
3077 struct btrfs_block_rsv *rsv);
4a92b1b8 3078int btrfs_block_rsv_add(struct btrfs_root *root,
08e007d2
MX
3079 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
3080 enum btrfs_reserve_flush_enum flush);
4a92b1b8 3081int btrfs_block_rsv_check(struct btrfs_root *root,
36ba022a
JB
3082 struct btrfs_block_rsv *block_rsv, int min_factor);
3083int btrfs_block_rsv_refill(struct btrfs_root *root,
08e007d2
MX
3084 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
3085 enum btrfs_reserve_flush_enum flush);
f0486c68
YZ
3086int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3087 struct btrfs_block_rsv *dst_rsv,
3088 u64 num_bytes);
3089void btrfs_block_rsv_release(struct btrfs_root *root,
3090 struct btrfs_block_rsv *block_rsv,
3091 u64 num_bytes);
3092int btrfs_set_block_group_ro(struct btrfs_root *root,
3093 struct btrfs_block_group_cache *cache);
143bede5
JM
3094void btrfs_set_block_group_rw(struct btrfs_root *root,
3095 struct btrfs_block_group_cache *cache);
0af3d00b 3096void btrfs_put_block_group_cache(struct btrfs_fs_info *info);
6d07bcec 3097u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo);
acce952b 3098int btrfs_error_unpin_extent_range(struct btrfs_root *root,
3099 u64 start, u64 end);
3100int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
5378e607 3101 u64 num_bytes, u64 *actual_bytes);
c87f08ca
CM
3102int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
3103 struct btrfs_root *root, u64 type);
f7039b1d 3104int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range);
acce952b 3105
c59021f8 3106int btrfs_init_space_info(struct btrfs_fs_info *fs_info);
bed92eae
AJ
3107int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
3108 struct btrfs_fs_info *fs_info);
31e50229 3109int __get_raid_index(u64 flags);
dee26a9f 3110/* ctree.c */
5d4f98a2
YZ
3111int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
3112 int level, int *slot);
3113int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2);
0b86a832
CM
3114int btrfs_previous_item(struct btrfs_root *root,
3115 struct btrfs_path *path, u64 min_objectid,
3116 int type);
143bede5
JM
3117void btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
3118 struct btrfs_root *root, struct btrfs_path *path,
3119 struct btrfs_key *new_key);
925baedd
CM
3120struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
3121struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root);
e7a84565 3122int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
3f157a2f
CM
3123 struct btrfs_key *key, int lowest_level,
3124 int cache_only, u64 min_trans);
3125int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
e02119d5 3126 struct btrfs_key *max_key,
3f157a2f
CM
3127 struct btrfs_path *path, int cache_only,
3128 u64 min_trans);
7069830a
AB
3129enum btrfs_compare_tree_result {
3130 BTRFS_COMPARE_TREE_NEW,
3131 BTRFS_COMPARE_TREE_DELETED,
3132 BTRFS_COMPARE_TREE_CHANGED,
3133};
3134typedef int (*btrfs_changed_cb_t)(struct btrfs_root *left_root,
3135 struct btrfs_root *right_root,
3136 struct btrfs_path *left_path,
3137 struct btrfs_path *right_path,
3138 struct btrfs_key *key,
3139 enum btrfs_compare_tree_result result,
3140 void *ctx);
3141int btrfs_compare_trees(struct btrfs_root *left_root,
3142 struct btrfs_root *right_root,
3143 btrfs_changed_cb_t cb, void *ctx);
5f39d397
CM
3144int btrfs_cow_block(struct btrfs_trans_handle *trans,
3145 struct btrfs_root *root, struct extent_buffer *buf,
3146 struct extent_buffer *parent, int parent_slot,
9fa8cfe7 3147 struct extent_buffer **cow_ret);
be20aa9d
CM
3148int btrfs_copy_root(struct btrfs_trans_handle *trans,
3149 struct btrfs_root *root,
3150 struct extent_buffer *buf,
3151 struct extent_buffer **cow_ret, u64 new_root_objectid);
5d4f98a2
YZ
3152int btrfs_block_can_be_shared(struct btrfs_root *root,
3153 struct extent_buffer *buf);
143bede5
JM
3154void btrfs_extend_item(struct btrfs_trans_handle *trans,
3155 struct btrfs_root *root, struct btrfs_path *path,
3156 u32 data_size);
3157void btrfs_truncate_item(struct btrfs_trans_handle *trans,
3158 struct btrfs_root *root,
3159 struct btrfs_path *path,
3160 u32 new_size, int from_end);
459931ec
CM
3161int btrfs_split_item(struct btrfs_trans_handle *trans,
3162 struct btrfs_root *root,
3163 struct btrfs_path *path,
3164 struct btrfs_key *new_key,
3165 unsigned long split_offset);
ad48fd75
YZ
3166int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
3167 struct btrfs_root *root,
3168 struct btrfs_path *path,
3169 struct btrfs_key *new_key);
e089f05c
CM
3170int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
3171 *root, struct btrfs_key *key, struct btrfs_path *p, int
3172 ins_len, int cow);
5d9e75c4
JS
3173int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
3174 struct btrfs_path *p, u64 time_seq);
2f38b3e1
AJ
3175int btrfs_search_slot_for_read(struct btrfs_root *root,
3176 struct btrfs_key *key, struct btrfs_path *p,
3177 int find_higher, int return_any);
6702ed49 3178int btrfs_realloc_node(struct btrfs_trans_handle *trans,
5f39d397 3179 struct btrfs_root *root, struct extent_buffer *parent,
a6b6e75e
CM
3180 int start_slot, int cache_only, u64 *last_ret,
3181 struct btrfs_key *progress);
b3b4aa74 3182void btrfs_release_path(struct btrfs_path *p);
2c90e5d6
CM
3183struct btrfs_path *btrfs_alloc_path(void);
3184void btrfs_free_path(struct btrfs_path *p);
b4ce94de 3185void btrfs_set_path_blocking(struct btrfs_path *p);
16cdcec7 3186void btrfs_clear_path_blocking(struct btrfs_path *p,
bd681513 3187 struct extent_buffer *held, int held_rw);
b4ce94de
CM
3188void btrfs_unlock_up_safe(struct btrfs_path *p, int level);
3189
85e21bac
CM
3190int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3191 struct btrfs_path *path, int slot, int nr);
85e21bac
CM
3192static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
3193 struct btrfs_root *root,
3194 struct btrfs_path *path)
3195{
3196 return btrfs_del_items(trans, root, path, path->slots[0], 1);
3197}
3198
143bede5
JM
3199void setup_items_for_insert(struct btrfs_trans_handle *trans,
3200 struct btrfs_root *root, struct btrfs_path *path,
3201 struct btrfs_key *cpu_key, u32 *data_size,
3202 u32 total_data, u32 total_size, int nr);
e089f05c
CM
3203int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3204 *root, struct btrfs_key *key, void *data, u32 data_size);
9c58309d
CM
3205int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3206 struct btrfs_root *root,
3207 struct btrfs_path *path,
3208 struct btrfs_key *cpu_key, u32 *data_size, int nr);
3209
3210static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
3211 struct btrfs_root *root,
3212 struct btrfs_path *path,
3213 struct btrfs_key *key,
3214 u32 data_size)
3215{
3216 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
3217}
3218
234b63a0 3219int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
70c8a91c
JB
3220int btrfs_next_leaf_write(struct btrfs_trans_handle *trans,
3221 struct btrfs_root *root, struct btrfs_path *path,
3222 int del);
3d7806ec
JS
3223int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
3224 u64 time_seq);
1c8f52a5
AB
3225static inline int btrfs_next_old_item(struct btrfs_root *root,
3226 struct btrfs_path *p, u64 time_seq)
c7d22a3c
JS
3227{
3228 ++p->slots[0];
3229 if (p->slots[0] >= btrfs_header_nritems(p->nodes[0]))
1c8f52a5 3230 return btrfs_next_old_leaf(root, p, time_seq);
c7d22a3c
JS
3231 return 0;
3232}
1c8f52a5
AB
3233static inline int btrfs_next_item(struct btrfs_root *root, struct btrfs_path *p)
3234{
3235 return btrfs_next_old_item(root, p, 0);
3236}
7bb86316 3237int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
5f39d397 3238int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
2c536799
JM
3239int __must_check btrfs_drop_snapshot(struct btrfs_root *root,
3240 struct btrfs_block_rsv *block_rsv,
3241 int update_ref, int for_reloc);
f82d02d9
YZ
3242int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
3243 struct btrfs_root *root,
3244 struct extent_buffer *node,
3245 struct extent_buffer *parent);
7841cb28
DS
3246static inline int btrfs_fs_closing(struct btrfs_fs_info *fs_info)
3247{
3248 /*
3249 * Get synced with close_ctree()
3250 */
3251 smp_mb();
3252 return fs_info->closing;
3253}
6c41761f
DS
3254static inline void free_fs_info(struct btrfs_fs_info *fs_info)
3255{
837d5b6e 3256 kfree(fs_info->balance_ctl);
6c41761f
DS
3257 kfree(fs_info->delayed_root);
3258 kfree(fs_info->extent_root);
3259 kfree(fs_info->tree_root);
3260 kfree(fs_info->chunk_root);
3261 kfree(fs_info->dev_root);
3262 kfree(fs_info->csum_root);
bcef60f2 3263 kfree(fs_info->quota_root);
6c41761f
DS
3264 kfree(fs_info->super_copy);
3265 kfree(fs_info->super_for_commit);
3266 kfree(fs_info);
3267}
7841cb28 3268
097b8a7c
JS
3269/* tree mod log functions from ctree.c */
3270u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
3271 struct seq_list *elem);
3272void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
3273 struct seq_list *elem);
3274static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
3275{
3276 return atomic_inc_return(&fs_info->tree_mod_seq);
3277}
5b6602e7 3278int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq);
097b8a7c 3279
dee26a9f 3280/* root-item.c */
ea9e8b11 3281int btrfs_find_root_ref(struct btrfs_root *tree_root,
4df27c4d
YZ
3282 struct btrfs_path *path,
3283 u64 root_id, u64 ref_id);
0660b5af
CM
3284int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
3285 struct btrfs_root *tree_root,
4df27c4d
YZ
3286 u64 root_id, u64 ref_id, u64 dirid, u64 sequence,
3287 const char *name, int name_len);
3288int btrfs_del_root_ref(struct btrfs_trans_handle *trans,
3289 struct btrfs_root *tree_root,
3290 u64 root_id, u64 ref_id, u64 dirid, u64 *sequence,
0660b5af 3291 const char *name, int name_len);
e089f05c
CM
3292int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3293 struct btrfs_key *key);
3294int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
3295 *root, struct btrfs_key *key, struct btrfs_root_item
3296 *item);
b45a9d8b
JM
3297int __must_check btrfs_update_root(struct btrfs_trans_handle *trans,
3298 struct btrfs_root *root,
3299 struct btrfs_key *key,
3300 struct btrfs_root_item *item);
8ea05e3a
AB
3301void btrfs_read_root_item(struct btrfs_root *root,
3302 struct extent_buffer *eb, int slot,
3303 struct btrfs_root_item *item);
e089f05c
CM
3304int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
3305 btrfs_root_item *item, struct btrfs_key *key);
5d4f98a2 3306int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid);
76dda93c 3307int btrfs_find_orphan_roots(struct btrfs_root *tree_root);
bf5f32ec
MF
3308void btrfs_set_root_node(struct btrfs_root_item *item,
3309 struct extent_buffer *node);
08fe4db1 3310void btrfs_check_and_init_root_item(struct btrfs_root_item *item);
8ea05e3a
AB
3311void btrfs_update_root_times(struct btrfs_trans_handle *trans,
3312 struct btrfs_root *root);
08fe4db1 3313
dee26a9f 3314/* dir-item.c */
9c52057c
CM
3315int btrfs_check_dir_item_collision(struct btrfs_root *root, u64 dir,
3316 const char *name, int name_len);
d397712b
CM
3317int btrfs_insert_dir_item(struct btrfs_trans_handle *trans,
3318 struct btrfs_root *root, const char *name,
16cdcec7 3319 int name_len, struct inode *dir,
aec7477b 3320 struct btrfs_key *location, u8 type, u64 index);
7e38180e
CM
3321struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
3322 struct btrfs_root *root,
3323 struct btrfs_path *path, u64 dir,
3324 const char *name, int name_len,
3325 int mod);
3326struct btrfs_dir_item *
3327btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
3328 struct btrfs_root *root,
3329 struct btrfs_path *path, u64 dir,
3330 u64 objectid, const char *name, int name_len,
3331 int mod);
4df27c4d
YZ
3332struct btrfs_dir_item *
3333btrfs_search_dir_index_item(struct btrfs_root *root,
3334 struct btrfs_path *path, u64 dirid,
3335 const char *name, int name_len);
7e38180e
CM
3336struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
3337 struct btrfs_path *path,
7f5c1516 3338 const char *name, int name_len);
7e38180e
CM
3339int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
3340 struct btrfs_root *root,
3341 struct btrfs_path *path,
3342 struct btrfs_dir_item *di);
5103e947 3343int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
f34f57a3
YZ
3344 struct btrfs_root *root,
3345 struct btrfs_path *path, u64 objectid,
3346 const char *name, u16 name_len,
3347 const void *data, u16 data_len);
5103e947
JB
3348struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
3349 struct btrfs_root *root,
3350 struct btrfs_path *path, u64 dir,
3351 const char *name, u16 name_len,
3352 int mod);
22a94d44
JB
3353int verify_dir_item(struct btrfs_root *root,
3354 struct extent_buffer *leaf,
3355 struct btrfs_dir_item *dir_item);
7b128766
JB
3356
3357/* orphan.c */
3358int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
3359 struct btrfs_root *root, u64 offset);
3360int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
3361 struct btrfs_root *root, u64 offset);
4df27c4d 3362int btrfs_find_orphan_item(struct btrfs_root *root, u64 offset);
7b128766 3363
dee26a9f 3364/* inode-item.c */
3954401f
CM
3365int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
3366 struct btrfs_root *root,
3367 const char *name, int name_len,
aec7477b 3368 u64 inode_objectid, u64 ref_objectid, u64 index);
3954401f
CM
3369int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
3370 struct btrfs_root *root,
3371 const char *name, int name_len,
aec7477b 3372 u64 inode_objectid, u64 ref_objectid, u64 *index);
f186373f
MF
3373int btrfs_get_inode_ref_index(struct btrfs_trans_handle *trans,
3374 struct btrfs_root *root,
3375 struct btrfs_path *path,
3376 const char *name, int name_len,
3377 u64 inode_objectid, u64 ref_objectid, int mod,
3378 u64 *ret_index);
5f39d397
CM
3379int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
3380 struct btrfs_root *root,
3381 struct btrfs_path *path, u64 objectid);
293ffd5f 3382int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
d6e4a428
CM
3383 *root, struct btrfs_path *path,
3384 struct btrfs_key *location, int mod);
dee26a9f 3385
f186373f
MF
3386struct btrfs_inode_extref *
3387btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
3388 struct btrfs_root *root,
3389 struct btrfs_path *path,
3390 const char *name, int name_len,
3391 u64 inode_objectid, u64 ref_objectid, int ins_len,
3392 int cow);
3393
3394int btrfs_find_name_in_ext_backref(struct btrfs_path *path,
3395 u64 ref_objectid, const char *name,
3396 int name_len,
3397 struct btrfs_inode_extref **extref_ret);
3398
dee26a9f 3399/* file-item.c */
459931ec
CM
3400int btrfs_del_csums(struct btrfs_trans_handle *trans,
3401 struct btrfs_root *root, u64 bytenr, u64 len);
61b49440 3402int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
d20f7043 3403 struct bio *bio, u32 *dst);
4b46fce2 3404int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
c329861d 3405 struct bio *bio, u64 logical_offset);
b18c6685 3406int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
c8b97818
CM
3407 struct btrfs_root *root,
3408 u64 objectid, u64 pos,
3409 u64 disk_offset, u64 disk_num_bytes,
3410 u64 num_bytes, u64 offset, u64 ram_bytes,
3411 u8 compression, u8 encryption, u16 other_encoding);
dee26a9f
CM
3412int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
3413 struct btrfs_root *root,
3414 struct btrfs_path *path, u64 objectid,
db94535d 3415 u64 bytenr, int mod);
315a9850 3416u64 btrfs_file_extent_length(struct btrfs_path *path);
065631f6 3417int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
d20f7043 3418 struct btrfs_root *root,
e6dcd2dc 3419 struct btrfs_ordered_sum *sums);
3edf7d33 3420int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
d20f7043 3421 struct bio *bio, u64 file_start, int contig);
b18c6685
CM
3422struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
3423 struct btrfs_root *root,
3424 struct btrfs_path *path,
d20f7043 3425 u64 bytenr, int cow);
1de037a4
CM
3426int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
3427 struct btrfs_root *root, struct btrfs_path *path,
3428 u64 isize);
a2de733c
AJ
3429int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
3430 struct list_head *list, int search_commit);
39279cc3 3431/* inode.c */
8ccf6f19
MX
3432struct btrfs_delalloc_work {
3433 struct inode *inode;
3434 int wait;
3435 int delay_iput;
3436 struct completion completion;
3437 struct list_head list;
3438 struct btrfs_work work;
3439};
3440
3441struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
3442 int wait, int delay_iput);
3443void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work);
3444
b2675157
JB
3445struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
3446 size_t pg_offset, u64 start, u64 len,
3447 int create);
4881ee5a
CM
3448
3449/* RHEL and EL kernels have a patch that renames PG_checked to FsMisc */
5036f538 3450#if defined(ClearPageFsMisc) && !defined(ClearPageChecked)
4881ee5a
CM
3451#define ClearPageChecked ClearPageFsMisc
3452#define SetPageChecked SetPageFsMisc
3453#define PageChecked PageFsMisc
3454#endif
3455
b6973aa6
LZ
3456/* This forces readahead on a given range of bytes in an inode */
3457static inline void btrfs_force_ra(struct address_space *mapping,
3458 struct file_ra_state *ra, struct file *file,
3459 pgoff_t offset, unsigned long req_size)
3460{
3461 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
3462}
3463
3de4586c
CM
3464struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry);
3465int btrfs_set_inode_index(struct inode *dir, u64 *index);
e02119d5
CM
3466int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3467 struct btrfs_root *root,
3468 struct inode *dir, struct inode *inode,
3469 const char *name, int name_len);
3470int btrfs_add_link(struct btrfs_trans_handle *trans,
3471 struct inode *parent_inode, struct inode *inode,
3472 const char *name, int name_len, int add_backref, u64 index);
4df27c4d
YZ
3473int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3474 struct btrfs_root *root,
3475 struct inode *dir, u64 objectid,
3476 const char *name, int name_len);
2aaa6655
JB
3477int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3478 int front);
e02119d5
CM
3479int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3480 struct btrfs_root *root,
3481 struct inode *inode, u64 new_size,
3482 u32 min_type);
3483
24bbcf04 3484int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput);
2ac55d41
JB
3485int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
3486 struct extent_state **cached_state);
f421950f
CM
3487int btrfs_writepages(struct address_space *mapping,
3488 struct writeback_control *wbc);
d2fb3437 3489int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
d82a6f1d 3490 struct btrfs_root *new_root, u64 new_dirid);
239b14b3 3491int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
c8b97818 3492 size_t size, struct bio *bio, unsigned long bio_flags);
239b14b3 3493
c2ec175c 3494int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf);
9ebefb18 3495int btrfs_readpage(struct file *file, struct page *page);
bd555975 3496void btrfs_evict_inode(struct inode *inode);
a9185b41 3497int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc);
22c44fe6 3498int btrfs_dirty_inode(struct inode *inode);
39279cc3
CM
3499struct inode *btrfs_alloc_inode(struct super_block *sb);
3500void btrfs_destroy_inode(struct inode *inode);
45321ac5 3501int btrfs_drop_inode(struct inode *inode);
39279cc3
CM
3502int btrfs_init_cachep(void);
3503void btrfs_destroy_cachep(void);
6bf13c0c 3504long btrfs_ioctl_trans_end(struct file *file);
1a54ef8c 3505struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
73f73415 3506 struct btrfs_root *root, int *was_new);
a52d9a80 3507struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
306e16ce 3508 size_t pg_offset, u64 start, u64 end,
a52d9a80
CM
3509 int create);
3510int btrfs_update_inode(struct btrfs_trans_handle *trans,
3511 struct btrfs_root *root,
3512 struct inode *inode);
be6aef60
JB
3513int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3514 struct btrfs_root *root, struct inode *inode);
5b21f2ed
ZY
3515int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode);
3516int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode);
66b4ffd1 3517int btrfs_orphan_cleanup(struct btrfs_root *root);
d68fc57b
YZ
3518void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3519 struct btrfs_root *root);
a41ad394 3520int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size);
143bede5 3521void btrfs_invalidate_inodes(struct btrfs_root *root);
24bbcf04
YZ
3522void btrfs_add_delayed_iput(struct inode *inode);
3523void btrfs_run_delayed_iputs(struct btrfs_root *root);
efa56464
YZ
3524int btrfs_prealloc_file_range(struct inode *inode, int mode,
3525 u64 start, u64 num_bytes, u64 min_size,
3526 loff_t actual_len, u64 *alloc_hint);
0af3d00b
JB
3527int btrfs_prealloc_file_range_trans(struct inode *inode,
3528 struct btrfs_trans_handle *trans, int mode,
3529 u64 start, u64 num_bytes, u64 min_size,
3530 loff_t actual_len, u64 *alloc_hint);
82d339d9 3531extern const struct dentry_operations btrfs_dentry_operations;
f46b5a66
CH
3532
3533/* ioctl.c */
3534long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
6cbff00f
CH
3535void btrfs_update_iflags(struct inode *inode);
3536void btrfs_inherit_iflags(struct inode *inode, struct inode *dir);
4cb5300b
CM
3537int btrfs_defrag_file(struct inode *inode, struct file *file,
3538 struct btrfs_ioctl_defrag_range_args *range,
3539 u64 newer_than, unsigned long max_pages);
5af3e8cc
SB
3540void btrfs_get_block_group_info(struct list_head *groups_list,
3541 struct btrfs_ioctl_space_info *space);
3542
39279cc3 3543/* file.c */
9247f317
MX
3544int btrfs_auto_defrag_init(void);
3545void btrfs_auto_defrag_exit(void);
4cb5300b
CM
3546int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
3547 struct inode *inode);
3548int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info);
26176e7c 3549void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info);
02c24a82 3550int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
7014cdb4
JB
3551void btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
3552 int skip_pinned);
5dc562c5
JB
3553int btrfs_replace_extent_cache(struct inode *inode, struct extent_map *replace,
3554 u64 start, u64 end, int skip_pinned,
3555 int modified);
828c0950 3556extern const struct file_operations btrfs_file_operations;
5dc562c5
JB
3557int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
3558 struct btrfs_root *root, struct inode *inode,
3559 struct btrfs_path *path, u64 start, u64 end,
2aaa6655 3560 u64 *drop_end, int drop_cache);
5dc562c5
JB
3561int btrfs_drop_extents(struct btrfs_trans_handle *trans,
3562 struct btrfs_root *root, struct inode *inode, u64 start,
2671485d 3563 u64 end, int drop_cache);
d899e052 3564int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
d899e052 3565 struct inode *inode, u64 start, u64 end);
6bf13c0c 3566int btrfs_release_file(struct inode *inode, struct file *file);
be1a12a0
JB
3567void btrfs_drop_pages(struct page **pages, size_t num_pages);
3568int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
3569 struct page **pages, size_t num_pages,
3570 loff_t pos, size_t write_bytes,
3571 struct extent_state **cached);
6bf13c0c 3572
6702ed49
CM
3573/* tree-defrag.c */
3574int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
3575 struct btrfs_root *root, int cache_only);
58176a96
JB
3576
3577/* sysfs.c */
3578int btrfs_init_sysfs(void);
3579void btrfs_exit_sysfs(void);
58176a96 3580
5103e947
JB
3581/* xattr.c */
3582ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
6099afe8 3583
edbd8d4e 3584/* super.c */
edf24abe 3585int btrfs_parse_options(struct btrfs_root *root, char *options);
6bf13c0c 3586int btrfs_sync_fs(struct super_block *sb, int wait);
533574c6
JP
3587
3588#ifdef CONFIG_PRINTK
3589__printf(2, 3)
4da35113 3590void btrfs_printk(struct btrfs_fs_info *fs_info, const char *fmt, ...);
533574c6
JP
3591#else
3592static inline __printf(2, 3)
3593void btrfs_printk(struct btrfs_fs_info *fs_info, const char *fmt, ...)
3594{
3595}
3596#endif
3597
3598__printf(5, 6)
acce952b 3599void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
4da35113 3600 unsigned int line, int errno, const char *fmt, ...);
acce952b 3601
533574c6 3602
49b25e05
JM
3603void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
3604 struct btrfs_root *root, const char *function,
3605 unsigned int line, int errno);
3606
2b0ce2c2
MH
3607#define btrfs_set_fs_incompat(__fs_info, opt) \
3608 __btrfs_set_fs_incompat((__fs_info), BTRFS_FEATURE_INCOMPAT_##opt)
3609
3610static inline void __btrfs_set_fs_incompat(struct btrfs_fs_info *fs_info,
3611 u64 flag)
3612{
3613 struct btrfs_super_block *disk_super;
3614 u64 features;
3615
3616 disk_super = fs_info->super_copy;
3617 features = btrfs_super_incompat_flags(disk_super);
3618 if (!(features & flag)) {
3619 features |= flag;
3620 btrfs_set_super_incompat_flags(disk_super, features);
3621 }
3622}
3623
005d6427
DS
3624/*
3625 * Call btrfs_abort_transaction as early as possible when an error condition is
3626 * detected, that way the exact line number is reported.
3627 */
3628
49b25e05
JM
3629#define btrfs_abort_transaction(trans, root, errno) \
3630do { \
3631 __btrfs_abort_transaction(trans, root, __func__, \
3632 __LINE__, errno); \
3633} while (0)
acce952b 3634
3635#define btrfs_std_error(fs_info, errno) \
3636do { \
3637 if ((errno)) \
4da35113
JM
3638 __btrfs_std_error((fs_info), __func__, \
3639 __LINE__, (errno), NULL); \
3640} while (0)
3641
3642#define btrfs_error(fs_info, errno, fmt, args...) \
3643do { \
3644 __btrfs_std_error((fs_info), __func__, __LINE__, \
3645 (errno), fmt, ##args); \
acce952b 3646} while (0)
33268eaf 3647
533574c6 3648__printf(5, 6)
8c342930
JM
3649void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
3650 unsigned int line, int errno, const char *fmt, ...);
3651
3652#define btrfs_panic(fs_info, errno, fmt, args...) \
3653do { \
3654 struct btrfs_fs_info *_i = (fs_info); \
3655 __btrfs_panic(_i, __func__, __LINE__, errno, fmt, ##args); \
3656 BUG_ON(!(_i->mount_opt & BTRFS_MOUNT_PANIC_ON_FATAL_ERROR)); \
acce952b 3657} while (0)
33268eaf
JB
3658
3659/* acl.c */
0eda294d 3660#ifdef CONFIG_BTRFS_FS_POSIX_ACL
4e34e719 3661struct posix_acl *btrfs_get_acl(struct inode *inode, int type);
f34f57a3
YZ
3662int btrfs_init_acl(struct btrfs_trans_handle *trans,
3663 struct inode *inode, struct inode *dir);
33268eaf 3664int btrfs_acl_chmod(struct inode *inode);
9b89d95a 3665#else
ed8f3737 3666#define btrfs_get_acl NULL
9b89d95a
LZ
3667static inline int btrfs_init_acl(struct btrfs_trans_handle *trans,
3668 struct inode *inode, struct inode *dir)
3669{
3670 return 0;
3671}
3672static inline int btrfs_acl_chmod(struct inode *inode)
3673{
3674 return 0;
3675}
3676#endif
0f9dd46c 3677
5d4f98a2
YZ
3678/* relocation.c */
3679int btrfs_relocate_block_group(struct btrfs_root *root, u64 group_start);
3680int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
3681 struct btrfs_root *root);
3682int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
3683 struct btrfs_root *root);
3684int btrfs_recover_relocation(struct btrfs_root *root);
3685int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len);
3fd0a558
YZ
3686void btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
3687 struct btrfs_root *root, struct extent_buffer *buf,
3688 struct extent_buffer *cow);
3689void btrfs_reloc_pre_snapshot(struct btrfs_trans_handle *trans,
3690 struct btrfs_pending_snapshot *pending,
3691 u64 *bytes_to_reserve);
49b25e05 3692int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
3fd0a558 3693 struct btrfs_pending_snapshot *pending);
a2de733c
AJ
3694
3695/* scrub.c */
aa1b8cd4
SB
3696int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3697 u64 end, struct btrfs_scrub_progress *progress,
63a212ab 3698 int readonly, int is_dev_replace);
143bede5
JM
3699void btrfs_scrub_pause(struct btrfs_root *root);
3700void btrfs_scrub_pause_super(struct btrfs_root *root);
3701void btrfs_scrub_continue(struct btrfs_root *root);
3702void btrfs_scrub_continue_super(struct btrfs_root *root);
aa1b8cd4
SB
3703int btrfs_scrub_cancel(struct btrfs_fs_info *info);
3704int btrfs_scrub_cancel_dev(struct btrfs_fs_info *info,
3705 struct btrfs_device *dev);
a2de733c
AJ
3706int btrfs_scrub_cancel_devid(struct btrfs_root *root, u64 devid);
3707int btrfs_scrub_progress(struct btrfs_root *root, u64 devid,
3708 struct btrfs_scrub_progress *progress);
3709
7414a03f
AJ
3710/* reada.c */
3711struct reada_control {
3712 struct btrfs_root *root; /* tree to prefetch */
3713 struct btrfs_key key_start;
3714 struct btrfs_key key_end; /* exclusive */
3715 atomic_t elems;
3716 struct kref refcnt;
3717 wait_queue_head_t wait;
3718};
3719struct reada_control *btrfs_reada_add(struct btrfs_root *root,
3720 struct btrfs_key *start, struct btrfs_key *end);
3721int btrfs_reada_wait(void *handle);
3722void btrfs_reada_detach(void *handle);
3723int btree_readahead_hook(struct btrfs_root *root, struct extent_buffer *eb,
3724 u64 start, int err);
3725
bed92eae
AJ
3726/* qgroup.c */
3727struct qgroup_update {
64947ec0 3728 struct list_head list;
bed92eae
AJ
3729 struct btrfs_delayed_ref_node *node;
3730 struct btrfs_delayed_extent_op *extent_op;
64947ec0
JS
3731};
3732
bed92eae
AJ
3733int btrfs_quota_enable(struct btrfs_trans_handle *trans,
3734 struct btrfs_fs_info *fs_info);
3735int btrfs_quota_disable(struct btrfs_trans_handle *trans,
3736 struct btrfs_fs_info *fs_info);
3737int btrfs_quota_rescan(struct btrfs_fs_info *fs_info);
3738int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans,
3739 struct btrfs_fs_info *fs_info, u64 src, u64 dst);
3740int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans,
3741 struct btrfs_fs_info *fs_info, u64 src, u64 dst);
3742int btrfs_create_qgroup(struct btrfs_trans_handle *trans,
3743 struct btrfs_fs_info *fs_info, u64 qgroupid,
3744 char *name);
3745int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
3746 struct btrfs_fs_info *fs_info, u64 qgroupid);
3747int btrfs_limit_qgroup(struct btrfs_trans_handle *trans,
3748 struct btrfs_fs_info *fs_info, u64 qgroupid,
3749 struct btrfs_qgroup_limit *limit);
3750int btrfs_read_qgroup_config(struct btrfs_fs_info *fs_info);
3751void btrfs_free_qgroup_config(struct btrfs_fs_info *fs_info);
3752struct btrfs_delayed_extent_op;
3753int btrfs_qgroup_record_ref(struct btrfs_trans_handle *trans,
3754 struct btrfs_delayed_ref_node *node,
3755 struct btrfs_delayed_extent_op *extent_op);
3756int btrfs_qgroup_account_ref(struct btrfs_trans_handle *trans,
3757 struct btrfs_fs_info *fs_info,
3758 struct btrfs_delayed_ref_node *node,
3759 struct btrfs_delayed_extent_op *extent_op);
3760int btrfs_run_qgroups(struct btrfs_trans_handle *trans,
3761 struct btrfs_fs_info *fs_info);
3762int btrfs_qgroup_inherit(struct btrfs_trans_handle *trans,
3763 struct btrfs_fs_info *fs_info, u64 srcid, u64 objectid,
3764 struct btrfs_qgroup_inherit *inherit);
3765int btrfs_qgroup_reserve(struct btrfs_root *root, u64 num_bytes);
3766void btrfs_qgroup_free(struct btrfs_root *root, u64 num_bytes);
3767
3768void assert_qgroups_uptodate(struct btrfs_trans_handle *trans);
bd989ba3 3769
95a06077
JS
3770static inline int is_fstree(u64 rootid)
3771{
3772 if (rootid == BTRFS_FS_TREE_OBJECTID ||
3773 (s64)rootid >= (s64)BTRFS_FIRST_FREE_OBJECTID)
3774 return 1;
3775 return 0;
3776}
eb60ceac 3777#endif