Btrfs-progs: fall back to the v1 ioctl if the new balance ioctl fails
[btrfs-progs-unstable/devel.git] / ctree.h
blob1c3740cf06a974fba180f5202b455baa9bb5e5f0
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #ifndef __BTRFS__
20 #define __BTRFS__
22 #include "list.h"
23 #include "kerncompat.h"
24 #include "radix-tree.h"
25 #include "extent-cache.h"
26 #include "extent_io.h"
27 #include "ioctl.h"
29 struct btrfs_root;
30 struct btrfs_trans_handle;
31 #define BTRFS_MAGIC "_BHRfS_M"
33 #define BTRFS_MAX_LEVEL 8
35 #define BTRFS_COMPAT_EXTENT_TREE_V0
37 /* holds pointers to all of the tree roots */
38 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
40 /* stores information about which extents are in use, and reference counts */
41 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
44 * chunk tree stores translations from logical -> physical block numbering
45 * the super block points to the chunk tree
47 #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
50 * stores information about which areas of a given device are in use.
51 * one per device. The tree of tree roots points to the device tree
53 #define BTRFS_DEV_TREE_OBJECTID 4ULL
55 /* one per subvolume, storing files and directories */
56 #define BTRFS_FS_TREE_OBJECTID 5ULL
58 /* directory objectid inside the root tree */
59 #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
60 /* holds checksums of all the data extents */
61 #define BTRFS_CSUM_TREE_OBJECTID 7ULL
64 /* for storing balance parameters in the root tree */
65 #define BTRFS_BALANCE_OBJECTID -4ULL
67 /* oprhan objectid for tracking unlinked/truncated files */
68 #define BTRFS_ORPHAN_OBJECTID -5ULL
70 /* does write ahead logging to speed up fsyncs */
71 #define BTRFS_TREE_LOG_OBJECTID -6ULL
72 #define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
74 /* space balancing */
75 #define BTRFS_TREE_RELOC_OBJECTID -8ULL
76 #define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
79 * extent checksums all have this objectid
80 * this allows them to share the logging tree
81 * for fsyncs
83 #define BTRFS_EXTENT_CSUM_OBJECTID -10ULL
85 /* For storing free space cache */
86 #define BTRFS_FREE_SPACE_OBJECTID -11ULL
89 * The inode number assigned to the special inode for sotring
90 * free ino cache
92 #define BTRFS_FREE_INO_OBJECTID -12ULL
94 /* dummy objectid represents multiple objectids */
95 #define BTRFS_MULTIPLE_OBJECTIDS -255ULL
98 * All files have objectids in this range.
100 #define BTRFS_FIRST_FREE_OBJECTID 256ULL
101 #define BTRFS_LAST_FREE_OBJECTID -256ULL
102 #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
107 * the device items go into the chunk tree. The key is in the form
108 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
110 #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
113 * we can actually store much bigger names, but lets not confuse the rest
114 * of linux
116 #define BTRFS_NAME_LEN 255
118 /* 32 bytes in various csum fields */
119 #define BTRFS_CSUM_SIZE 32
121 /* csum types */
122 #define BTRFS_CSUM_TYPE_CRC32 0
125 /* csum types */
126 #define BTRFS_CSUM_TYPE_CRC32 0
128 static int btrfs_csum_sizes[] = { 4, 0 };
130 /* four bytes for CRC32 */
131 #define BTRFS_CRC32_SIZE 4
132 #define BTRFS_EMPTY_DIR_SIZE 0
134 #define BTRFS_FT_UNKNOWN 0
135 #define BTRFS_FT_REG_FILE 1
136 #define BTRFS_FT_DIR 2
137 #define BTRFS_FT_CHRDEV 3
138 #define BTRFS_FT_BLKDEV 4
139 #define BTRFS_FT_FIFO 5
140 #define BTRFS_FT_SOCK 6
141 #define BTRFS_FT_SYMLINK 7
142 #define BTRFS_FT_XATTR 8
143 #define BTRFS_FT_MAX 9
146 * the key defines the order in the tree, and so it also defines (optimal)
147 * block layout. objectid corresonds to the inode number. The flags
148 * tells us things about the object, and is a kind of stream selector.
149 * so for a given inode, keys with flags of 1 might refer to the inode
150 * data, flags of 2 may point to file data in the btree and flags == 3
151 * may point to extents.
153 * offset is the starting byte offset for this key in the stream.
155 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
156 * in cpu native order. Otherwise they are identical and their sizes
157 * should be the same (ie both packed)
159 struct btrfs_disk_key {
160 __le64 objectid;
161 u8 type;
162 __le64 offset;
163 } __attribute__ ((__packed__));
165 struct btrfs_key {
166 u64 objectid;
167 u8 type;
168 u64 offset;
169 } __attribute__ ((__packed__));
171 struct btrfs_mapping_tree {
172 struct cache_tree cache_tree;
175 #define BTRFS_UUID_SIZE 16
176 struct btrfs_dev_item {
177 /* the internal btrfs device id */
178 __le64 devid;
180 /* size of the device */
181 __le64 total_bytes;
183 /* bytes used */
184 __le64 bytes_used;
186 /* optimal io alignment for this device */
187 __le32 io_align;
189 /* optimal io width for this device */
190 __le32 io_width;
192 /* minimal io size for this device */
193 __le32 sector_size;
195 /* type and info about this device */
196 __le64 type;
198 /* expected generation for this device */
199 __le64 generation;
202 * starting byte of this partition on the device,
203 * to allowr for stripe alignment in the future
205 __le64 start_offset;
207 /* grouping information for allocation decisions */
208 __le32 dev_group;
210 /* seek speed 0-100 where 100 is fastest */
211 u8 seek_speed;
213 /* bandwidth 0-100 where 100 is fastest */
214 u8 bandwidth;
216 /* btrfs generated uuid for this device */
217 u8 uuid[BTRFS_UUID_SIZE];
219 /* uuid of FS who owns this device */
220 u8 fsid[BTRFS_UUID_SIZE];
221 } __attribute__ ((__packed__));
223 struct btrfs_stripe {
224 __le64 devid;
225 __le64 offset;
226 u8 dev_uuid[BTRFS_UUID_SIZE];
227 } __attribute__ ((__packed__));
229 struct btrfs_chunk {
230 /* size of this chunk in bytes */
231 __le64 length;
233 /* objectid of the root referencing this chunk */
234 __le64 owner;
236 __le64 stripe_len;
237 __le64 type;
239 /* optimal io alignment for this chunk */
240 __le32 io_align;
242 /* optimal io width for this chunk */
243 __le32 io_width;
245 /* minimal io size for this chunk */
246 __le32 sector_size;
248 /* 2^16 stripes is quite a lot, a second limit is the size of a single
249 * item in the btree
251 __le16 num_stripes;
253 /* sub stripes only matter for raid10 */
254 __le16 sub_stripes;
255 struct btrfs_stripe stripe;
256 /* additional stripes go here */
257 } __attribute__ ((__packed__));
259 static inline unsigned long btrfs_chunk_item_size(int num_stripes)
261 BUG_ON(num_stripes == 0);
262 return sizeof(struct btrfs_chunk) +
263 sizeof(struct btrfs_stripe) * (num_stripes - 1);
266 #define BTRFS_HEADER_FLAG_WRITTEN (1ULL << 0)
267 #define BTRFS_HEADER_FLAG_RELOC (1ULL << 1)
268 #define BTRFS_SUPER_FLAG_SEEDING (1ULL << 32)
269 #define BTRFS_SUPER_FLAG_METADUMP (1ULL << 33)
271 #define BTRFS_BACKREF_REV_MAX 256
272 #define BTRFS_BACKREF_REV_SHIFT 56
273 #define BTRFS_BACKREF_REV_MASK (((u64)BTRFS_BACKREF_REV_MAX - 1) << \
274 BTRFS_BACKREF_REV_SHIFT)
276 #define BTRFS_OLD_BACKREF_REV 0
277 #define BTRFS_MIXED_BACKREF_REV 1
280 * every tree block (leaf or node) starts with this header.
282 struct btrfs_header {
283 /* these first four must match the super block */
284 u8 csum[BTRFS_CSUM_SIZE];
285 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
286 __le64 bytenr; /* which block this node is supposed to live in */
287 __le64 flags;
289 /* allowed to be different from the super from here on down */
290 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
291 __le64 generation;
292 __le64 owner;
293 __le32 nritems;
294 u8 level;
295 } __attribute__ ((__packed__));
297 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
298 sizeof(struct btrfs_header)) / \
299 sizeof(struct btrfs_key_ptr))
300 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
301 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
302 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
303 sizeof(struct btrfs_item) - \
304 sizeof(struct btrfs_file_extent_item))
305 #define BTRFS_MAX_XATTR_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
306 sizeof(struct btrfs_item) -\
307 sizeof(struct btrfs_dir_item))
311 * this is a very generous portion of the super block, giving us
312 * room to translate 14 chunks with 3 stripes each.
314 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
315 #define BTRFS_LABEL_SIZE 256
318 * just in case we somehow lose the roots and are not able to mount,
319 * we store an array of the roots from previous transactions
320 * in the super.
322 #define BTRFS_NUM_BACKUP_ROOTS 4
323 struct btrfs_root_backup {
324 __le64 tree_root;
325 __le64 tree_root_gen;
327 __le64 chunk_root;
328 __le64 chunk_root_gen;
330 __le64 extent_root;
331 __le64 extent_root_gen;
333 __le64 fs_root;
334 __le64 fs_root_gen;
336 __le64 dev_root;
337 __le64 dev_root_gen;
339 __le64 csum_root;
340 __le64 csum_root_gen;
342 __le64 total_bytes;
343 __le64 bytes_used;
344 __le64 num_devices;
345 /* future */
346 __le64 unsed_64[4];
348 u8 tree_root_level;
349 u8 chunk_root_level;
350 u8 extent_root_level;
351 u8 fs_root_level;
352 u8 dev_root_level;
353 u8 csum_root_level;
354 /* future and to align */
355 u8 unused_8[10];
356 } __attribute__ ((__packed__));
359 * the super block basically lists the main trees of the FS
360 * it currently lacks any block count etc etc
362 struct btrfs_super_block {
363 u8 csum[BTRFS_CSUM_SIZE];
364 /* the first 3 fields must match struct btrfs_header */
365 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
366 __le64 bytenr; /* this block number */
367 __le64 flags;
369 /* allowed to be different from the btrfs_header from here own down */
370 __le64 magic;
371 __le64 generation;
372 __le64 root;
373 __le64 chunk_root;
374 __le64 log_root;
376 /* this will help find the new super based on the log root */
377 __le64 log_root_transid;
378 __le64 total_bytes;
379 __le64 bytes_used;
380 __le64 root_dir_objectid;
381 __le64 num_devices;
382 __le32 sectorsize;
383 __le32 nodesize;
384 __le32 leafsize;
385 __le32 stripesize;
386 __le32 sys_chunk_array_size;
387 __le64 chunk_root_generation;
388 __le64 compat_flags;
389 __le64 compat_ro_flags;
390 __le64 incompat_flags;
391 __le16 csum_type;
392 u8 root_level;
393 u8 chunk_root_level;
394 u8 log_root_level;
395 struct btrfs_dev_item dev_item;
397 char label[BTRFS_LABEL_SIZE];
399 __le64 cache_generation;
401 /* future expansion */
402 __le64 reserved[31];
403 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
404 struct btrfs_root_backup super_roots[BTRFS_NUM_BACKUP_ROOTS];
405 } __attribute__ ((__packed__));
408 * Compat flags that we support. If any incompat flags are set other than the
409 * ones specified below then we will fail to mount
411 #define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF (1ULL << 0)
412 #define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL (1ULL << 1)
413 #define BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS (1ULL << 2)
414 #define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO (1ULL << 3)
416 #define BTRFS_FEATURE_COMPAT_SUPP 0ULL
417 #define BTRFS_FEATURE_COMPAT_RO_SUPP 0ULL
418 #define BTRFS_FEATURE_INCOMPAT_SUPP \
419 (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \
420 BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \
421 BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \
422 BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
425 * A leaf is full of items. offset and size tell us where to find
426 * the item in the leaf (relative to the start of the data area)
428 struct btrfs_item {
429 struct btrfs_disk_key key;
430 __le32 offset;
431 __le32 size;
432 } __attribute__ ((__packed__));
435 * leaves have an item area and a data area:
436 * [item0, item1....itemN] [free space] [dataN...data1, data0]
438 * The data is separate from the items to get the keys closer together
439 * during searches.
441 struct btrfs_leaf {
442 struct btrfs_header header;
443 struct btrfs_item items[];
444 } __attribute__ ((__packed__));
447 * all non-leaf blocks are nodes, they hold only keys and pointers to
448 * other blocks
450 struct btrfs_key_ptr {
451 struct btrfs_disk_key key;
452 __le64 blockptr;
453 __le64 generation;
454 } __attribute__ ((__packed__));
456 struct btrfs_node {
457 struct btrfs_header header;
458 struct btrfs_key_ptr ptrs[];
459 } __attribute__ ((__packed__));
462 * btrfs_paths remember the path taken from the root down to the leaf.
463 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
464 * to any other levels that are present.
466 * The slots array records the index of the item or block pointer
467 * used while walking the tree.
470 struct btrfs_path {
471 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
472 int slots[BTRFS_MAX_LEVEL];
473 /* if there is real range locking, this locks field will change */
474 int locks[BTRFS_MAX_LEVEL];
475 int reada;
476 /* keep some upper locks as we walk down */
477 int lowest_level;
480 * set by btrfs_split_item, tells search_slot to keep all locks
481 * and to force calls to keep space in the nodes
483 unsigned int search_for_split:1;
484 unsigned int keep_locks:1;
485 unsigned int skip_locking:1;
486 unsigned int leave_spinning:1;
490 * items in the extent btree are used to record the objectid of the
491 * owner of the block and the number of references
494 struct btrfs_extent_item {
495 __le64 refs;
496 __le64 generation;
497 __le64 flags;
498 } __attribute__ ((__packed__));
500 struct btrfs_extent_item_v0 {
501 __le32 refs;
502 } __attribute__ ((__packed__));
504 #define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r) >> 4) - \
505 sizeof(struct btrfs_item))
507 #define BTRFS_EXTENT_FLAG_DATA (1ULL << 0)
508 #define BTRFS_EXTENT_FLAG_TREE_BLOCK (1ULL << 1)
510 /* following flags only apply to tree blocks */
512 /* use full backrefs for extent pointers in the block*/
513 #define BTRFS_BLOCK_FLAG_FULL_BACKREF (1ULL << 8)
515 struct btrfs_tree_block_info {
516 struct btrfs_disk_key key;
517 u8 level;
518 } __attribute__ ((__packed__));
520 struct btrfs_extent_data_ref {
521 __le64 root;
522 __le64 objectid;
523 __le64 offset;
524 __le32 count;
525 } __attribute__ ((__packed__));
527 struct btrfs_shared_data_ref {
528 __le32 count;
529 } __attribute__ ((__packed__));
531 struct btrfs_extent_inline_ref {
532 u8 type;
533 u64 offset;
534 } __attribute__ ((__packed__));
536 struct btrfs_extent_ref_v0 {
537 __le64 root;
538 __le64 generation;
539 __le64 objectid;
540 __le32 count;
541 } __attribute__ ((__packed__));
543 /* dev extents record free space on individual devices. The owner
544 * field points back to the chunk allocation mapping tree that allocated
545 * the extent. The chunk tree uuid field is a way to double check the owner
547 struct btrfs_dev_extent {
548 __le64 chunk_tree;
549 __le64 chunk_objectid;
550 __le64 chunk_offset;
551 __le64 length;
552 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
553 } __attribute__ ((__packed__));
555 struct btrfs_inode_ref {
556 __le64 index;
557 __le16 name_len;
558 /* name goes here */
559 } __attribute__ ((__packed__));
561 struct btrfs_timespec {
562 __le64 sec;
563 __le32 nsec;
564 } __attribute__ ((__packed__));
566 typedef enum {
567 BTRFS_COMPRESS_NONE = 0,
568 BTRFS_COMPRESS_ZLIB = 1,
569 BTRFS_COMPRESS_LZO = 2,
570 BTRFS_COMPRESS_TYPES = 2,
571 BTRFS_COMPRESS_LAST = 3,
572 } btrfs_compression_type;
574 /* we don't understand any encryption methods right now */
575 typedef enum {
576 BTRFS_ENCRYPTION_NONE = 0,
577 BTRFS_ENCRYPTION_LAST = 1,
578 } btrfs_encryption_type;
580 struct btrfs_inode_item {
581 /* nfs style generation number */
582 __le64 generation;
583 /* transid that last touched this inode */
584 __le64 transid;
585 __le64 size;
586 __le64 nbytes;
587 __le64 block_group;
588 __le32 nlink;
589 __le32 uid;
590 __le32 gid;
591 __le32 mode;
592 __le64 rdev;
593 __le64 flags;
595 /* modification sequence number for NFS */
596 __le64 sequence;
599 * a little future expansion, for more than this we can
600 * just grow the inode item and version it
602 __le64 reserved[4];
603 struct btrfs_timespec atime;
604 struct btrfs_timespec ctime;
605 struct btrfs_timespec mtime;
606 struct btrfs_timespec otime;
607 } __attribute__ ((__packed__));
609 struct btrfs_dir_log_item {
610 __le64 end;
611 } __attribute__ ((__packed__));
613 struct btrfs_dir_item {
614 struct btrfs_disk_key location;
615 __le64 transid;
616 __le16 data_len;
617 __le16 name_len;
618 u8 type;
619 } __attribute__ ((__packed__));
621 struct btrfs_root_item {
622 struct btrfs_inode_item inode;
623 __le64 generation;
624 __le64 root_dirid;
625 __le64 bytenr;
626 __le64 byte_limit;
627 __le64 bytes_used;
628 __le64 last_snapshot;
629 __le64 flags;
630 __le32 refs;
631 struct btrfs_disk_key drop_progress;
632 u8 drop_level;
633 u8 level;
634 } __attribute__ ((__packed__));
637 * this is used for both forward and backward root refs
639 struct btrfs_root_ref {
640 __le64 dirid;
641 __le64 sequence;
642 __le16 name_len;
643 } __attribute__ ((__packed__));
645 #define BTRFS_FILE_EXTENT_INLINE 0
646 #define BTRFS_FILE_EXTENT_REG 1
647 #define BTRFS_FILE_EXTENT_PREALLOC 2
649 struct btrfs_file_extent_item {
651 * transaction id that created this extent
653 __le64 generation;
655 * max number of bytes to hold this extent in ram
656 * when we split a compressed extent we can't know how big
657 * each of the resulting pieces will be. So, this is
658 * an upper limit on the size of the extent in ram instead of
659 * an exact limit.
661 __le64 ram_bytes;
664 * 32 bits for the various ways we might encode the data,
665 * including compression and encryption. If any of these
666 * are set to something a given disk format doesn't understand
667 * it is treated like an incompat flag for reading and writing,
668 * but not for stat.
670 u8 compression;
671 u8 encryption;
672 __le16 other_encoding; /* spare for later use */
674 /* are we inline data or a real extent? */
675 u8 type;
678 * disk space consumed by the extent, checksum blocks are included
679 * in these numbers
681 __le64 disk_bytenr;
682 __le64 disk_num_bytes;
684 * the logical offset in file blocks (no csums)
685 * this extent record is for. This allows a file extent to point
686 * into the middle of an existing extent on disk, sharing it
687 * between two snapshots (useful if some bytes in the middle of the
688 * extent have changed
690 __le64 offset;
692 * the logical number of file blocks (no csums included)
694 __le64 num_bytes;
696 } __attribute__ ((__packed__));
698 struct btrfs_csum_item {
699 u8 csum;
700 } __attribute__ ((__packed__));
702 /* tag for the radix tree of block groups in ram */
703 #define BTRFS_BLOCK_GROUP_DATA (1ULL << 0)
704 #define BTRFS_BLOCK_GROUP_SYSTEM (1ULL << 1)
705 #define BTRFS_BLOCK_GROUP_METADATA (1ULL << 2)
706 #define BTRFS_BLOCK_GROUP_RAID0 (1ULL << 3)
707 #define BTRFS_BLOCK_GROUP_RAID1 (1ULL << 4)
708 #define BTRFS_BLOCK_GROUP_DUP (1ULL << 5)
709 #define BTRFS_BLOCK_GROUP_RAID10 (1ULL << 6)
710 #define BTRFS_BLOCK_GROUP_RESERVED BTRFS_AVAIL_ALLOC_BIT_SINGLE
712 /* used in struct btrfs_balance_args fields */
713 #define BTRFS_AVAIL_ALLOC_BIT_SINGLE (1ULL << 48)
715 struct btrfs_block_group_item {
716 __le64 used;
717 __le64 chunk_objectid;
718 __le64 flags;
719 } __attribute__ ((__packed__));
721 struct btrfs_space_info {
722 u64 flags;
723 u64 total_bytes;
724 u64 bytes_used;
725 u64 bytes_pinned;
726 int full;
727 struct list_head list;
730 struct btrfs_block_group_cache {
731 struct cache_extent cache;
732 struct btrfs_key key;
733 struct btrfs_block_group_item item;
734 struct btrfs_space_info *space_info;
735 u64 pinned;
736 u64 flags;
737 int cached;
738 int ro;
741 struct btrfs_extent_ops {
742 int (*alloc_extent)(struct btrfs_root *root, u64 num_bytes,
743 u64 hint_byte, struct btrfs_key *ins);
744 int (*free_extent)(struct btrfs_root *root, u64 bytenr,
745 u64 num_bytes);
748 struct btrfs_device;
749 struct btrfs_fs_devices;
750 struct btrfs_fs_info {
751 u8 fsid[BTRFS_FSID_SIZE];
752 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
753 struct btrfs_root *fs_root;
754 struct btrfs_root *extent_root;
755 struct btrfs_root *tree_root;
756 struct btrfs_root *chunk_root;
757 struct btrfs_root *dev_root;
758 struct btrfs_root *csum_root;
760 struct cache_tree fs_root_cache;
762 /* the log root tree is a directory of all the other log roots */
763 struct btrfs_root *log_root_tree;
765 struct extent_io_tree extent_cache;
766 struct extent_io_tree free_space_cache;
767 struct extent_io_tree block_group_cache;
768 struct extent_io_tree pinned_extents;
769 struct extent_io_tree pending_del;
770 struct extent_io_tree extent_ins;
772 /* logical->physical extent mapping */
773 struct btrfs_mapping_tree mapping_tree;
775 u64 generation;
776 u64 last_trans_committed;
778 u64 avail_data_alloc_bits;
779 u64 avail_metadata_alloc_bits;
780 u64 avail_system_alloc_bits;
781 u64 data_alloc_profile;
782 u64 metadata_alloc_profile;
783 u64 system_alloc_profile;
784 u64 alloc_start;
786 struct btrfs_trans_handle *running_transaction;
787 struct btrfs_super_block super_copy;
788 struct mutex fs_mutex;
790 u64 super_bytenr;
791 u64 total_pinned;
793 struct btrfs_extent_ops *extent_ops;
794 struct list_head dirty_cowonly_roots;
796 struct btrfs_fs_devices *fs_devices;
797 struct list_head space_info;
798 int system_allocs;
799 int readonly;
803 * in ram representation of the tree. extent_root is used for all allocations
804 * and for the extent tree extent_root root.
806 struct btrfs_root {
807 struct extent_buffer *node;
808 struct extent_buffer *commit_root;
809 struct btrfs_root_item root_item;
810 struct btrfs_key root_key;
811 struct btrfs_fs_info *fs_info;
812 u64 objectid;
813 u64 last_trans;
815 /* data allocations are done in sectorsize units */
816 u32 sectorsize;
818 /* node allocations are done in nodesize units */
819 u32 nodesize;
821 /* leaf allocations are done in leafsize units */
822 u32 leafsize;
824 /* leaf allocations are done in leafsize units */
825 u32 stripesize;
827 int ref_cows;
828 int track_dirty;
831 u32 type;
832 u64 highest_inode;
833 u64 last_inode_alloc;
835 /* the dirty list is only used by non-reference counted roots */
836 struct list_head dirty_list;
837 struct cache_extent cache;
841 * inode items have the data typically returned from stat and store other
842 * info about object characteristics. There is one for every file and dir in
843 * the FS
845 #define BTRFS_INODE_ITEM_KEY 1
846 #define BTRFS_INODE_REF_KEY 12
847 #define BTRFS_XATTR_ITEM_KEY 24
848 #define BTRFS_ORPHAN_ITEM_KEY 48
850 #define BTRFS_DIR_LOG_ITEM_KEY 60
851 #define BTRFS_DIR_LOG_INDEX_KEY 72
853 * dir items are the name -> inode pointers in a directory. There is one
854 * for every name in a directory.
856 #define BTRFS_DIR_ITEM_KEY 84
857 #define BTRFS_DIR_INDEX_KEY 96
860 * extent data is for file data
862 #define BTRFS_EXTENT_DATA_KEY 108
865 * csum items have the checksums for data in the extents
867 #define BTRFS_CSUM_ITEM_KEY 120
869 * extent csums are stored in a separate tree and hold csums for
870 * an entire extent on disk.
872 #define BTRFS_EXTENT_CSUM_KEY 128
875 * root items point to tree roots. There are typically in the root
876 * tree used by the super block to find all the other trees
878 #define BTRFS_ROOT_ITEM_KEY 132
881 * root backrefs tie subvols and snapshots to the directory entries that
882 * reference them
884 #define BTRFS_ROOT_BACKREF_KEY 144
887 * root refs make a fast index for listing all of the snapshots and
888 * subvolumes referenced by a given root. They point directly to the
889 * directory item in the root that references the subvol
891 #define BTRFS_ROOT_REF_KEY 156
894 * extent items are in the extent map tree. These record which blocks
895 * are used, and how many references there are to each block
897 #define BTRFS_EXTENT_ITEM_KEY 168
899 #define BTRFS_TREE_BLOCK_REF_KEY 176
901 #define BTRFS_EXTENT_DATA_REF_KEY 178
903 /* old style extent backrefs */
904 #define BTRFS_EXTENT_REF_V0_KEY 180
906 #define BTRFS_SHARED_BLOCK_REF_KEY 182
908 #define BTRFS_SHARED_DATA_REF_KEY 184
912 * block groups give us hints into the extent allocation trees. Which
913 * blocks are free etc etc
915 #define BTRFS_BLOCK_GROUP_ITEM_KEY 192
917 #define BTRFS_DEV_EXTENT_KEY 204
918 #define BTRFS_DEV_ITEM_KEY 216
919 #define BTRFS_CHUNK_ITEM_KEY 228
921 #define BTRFS_BALANCE_ITEM_KEY 248
924 * string items are for debugging. They just store a short string of
925 * data in the FS
927 #define BTRFS_STRING_ITEM_KEY 253
929 * Inode flags
931 #define BTRFS_INODE_NODATASUM (1 << 0)
932 #define BTRFS_INODE_NODATACOW (1 << 1)
933 #define BTRFS_INODE_READONLY (1 << 2)
935 #define read_eb_member(eb, ptr, type, member, result) ( \
936 read_extent_buffer(eb, (char *)(result), \
937 ((unsigned long)(ptr)) + \
938 offsetof(type, member), \
939 sizeof(((type *)0)->member)))
941 #define write_eb_member(eb, ptr, type, member, result) ( \
942 write_extent_buffer(eb, (char *)(result), \
943 ((unsigned long)(ptr)) + \
944 offsetof(type, member), \
945 sizeof(((type *)0)->member)))
947 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
948 static inline u##bits btrfs_##name(struct extent_buffer *eb) \
950 struct btrfs_header *h = (struct btrfs_header *)eb->data; \
951 return le##bits##_to_cpu(h->member); \
953 static inline void btrfs_set_##name(struct extent_buffer *eb, \
954 u##bits val) \
956 struct btrfs_header *h = (struct btrfs_header *)eb->data; \
957 h->member = cpu_to_le##bits(val); \
960 #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
961 static inline u##bits btrfs_##name(struct extent_buffer *eb, \
962 type *s) \
964 unsigned long offset = (unsigned long)s; \
965 type *p = (type *) (eb->data + offset); \
966 return le##bits##_to_cpu(p->member); \
968 static inline void btrfs_set_##name(struct extent_buffer *eb, \
969 type *s, u##bits val) \
971 unsigned long offset = (unsigned long)s; \
972 type *p = (type *) (eb->data + offset); \
973 p->member = cpu_to_le##bits(val); \
976 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
977 static inline u##bits btrfs_##name(type *s) \
979 return le##bits##_to_cpu(s->member); \
981 static inline void btrfs_set_##name(type *s, u##bits val) \
983 s->member = cpu_to_le##bits(val); \
986 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
987 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
988 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
989 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
990 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
991 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
992 start_offset, 64);
993 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
994 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
995 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
996 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
997 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
998 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
1000 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1001 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1002 total_bytes, 64);
1003 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1004 bytes_used, 64);
1005 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1006 io_align, 32);
1007 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1008 io_width, 32);
1009 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1010 sector_size, 32);
1011 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1012 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1013 dev_group, 32);
1014 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1015 seek_speed, 8);
1016 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1017 bandwidth, 8);
1018 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1019 generation, 64);
1021 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
1023 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
1026 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
1028 return (char *)d + offsetof(struct btrfs_dev_item, fsid);
1031 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
1032 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1033 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1034 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1035 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1036 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1037 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1038 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
1039 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
1040 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1041 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1043 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1045 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1048 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
1049 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1050 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1051 stripe_len, 64);
1052 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1053 io_align, 32);
1054 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1055 io_width, 32);
1056 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1057 sector_size, 32);
1058 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1059 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1060 num_stripes, 16);
1061 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1062 sub_stripes, 16);
1063 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1064 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1066 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1067 int nr)
1069 unsigned long offset = (unsigned long)c;
1070 offset += offsetof(struct btrfs_chunk, stripe);
1071 offset += nr * sizeof(struct btrfs_stripe);
1072 return (struct btrfs_stripe *)offset;
1075 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1077 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1080 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
1081 struct btrfs_chunk *c, int nr)
1083 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1086 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
1087 struct btrfs_chunk *c, int nr,
1088 u64 val)
1090 btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
1093 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
1094 struct btrfs_chunk *c, int nr)
1096 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1099 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
1100 struct btrfs_chunk *c, int nr,
1101 u64 val)
1103 btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
1106 /* struct btrfs_block_group_item */
1107 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
1108 used, 64);
1109 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
1110 used, 64);
1111 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
1112 struct btrfs_block_group_item, chunk_objectid, 64);
1114 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
1115 struct btrfs_block_group_item, chunk_objectid, 64);
1116 BTRFS_SETGET_FUNCS(disk_block_group_flags,
1117 struct btrfs_block_group_item, flags, 64);
1118 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1119 struct btrfs_block_group_item, flags, 64);
1121 /* struct btrfs_inode_ref */
1122 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1123 BTRFS_SETGET_STACK_FUNCS(stack_inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1124 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
1126 /* struct btrfs_inode_item */
1127 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
1128 BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
1129 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
1130 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1131 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
1132 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1133 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1134 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1135 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1136 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1137 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1138 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1140 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
1141 struct btrfs_inode_item, generation, 64);
1142 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence,
1143 struct btrfs_inode_item, generation, 64);
1144 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
1145 struct btrfs_inode_item, size, 64);
1146 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
1147 struct btrfs_inode_item, nbytes, 64);
1148 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
1149 struct btrfs_inode_item, block_group, 64);
1150 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
1151 struct btrfs_inode_item, nlink, 32);
1152 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
1153 struct btrfs_inode_item, uid, 32);
1154 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
1155 struct btrfs_inode_item, gid, 32);
1156 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
1157 struct btrfs_inode_item, mode, 32);
1158 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
1159 struct btrfs_inode_item, rdev, 64);
1160 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
1161 struct btrfs_inode_item, flags, 64);
1163 static inline struct btrfs_timespec *
1164 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
1166 unsigned long ptr = (unsigned long)inode_item;
1167 ptr += offsetof(struct btrfs_inode_item, atime);
1168 return (struct btrfs_timespec *)ptr;
1171 static inline struct btrfs_timespec *
1172 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
1174 unsigned long ptr = (unsigned long)inode_item;
1175 ptr += offsetof(struct btrfs_inode_item, mtime);
1176 return (struct btrfs_timespec *)ptr;
1179 static inline struct btrfs_timespec *
1180 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
1182 unsigned long ptr = (unsigned long)inode_item;
1183 ptr += offsetof(struct btrfs_inode_item, ctime);
1184 return (struct btrfs_timespec *)ptr;
1187 static inline struct btrfs_timespec *
1188 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
1190 unsigned long ptr = (unsigned long)inode_item;
1191 ptr += offsetof(struct btrfs_inode_item, otime);
1192 return (struct btrfs_timespec *)ptr;
1195 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1196 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
1197 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
1198 sec, 64);
1199 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
1200 nsec, 32);
1202 /* struct btrfs_dev_extent */
1203 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1204 chunk_tree, 64);
1205 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1206 chunk_objectid, 64);
1207 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1208 chunk_offset, 64);
1209 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1211 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
1213 unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
1214 return (u8 *)((unsigned long)dev + ptr);
1218 /* struct btrfs_extent_item */
1219 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1220 BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1221 generation, 64);
1222 BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
1224 BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
1226 BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1228 static inline void btrfs_tree_block_key(struct extent_buffer *eb,
1229 struct btrfs_tree_block_info *item,
1230 struct btrfs_disk_key *key)
1232 read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1235 static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
1236 struct btrfs_tree_block_info *item,
1237 struct btrfs_disk_key *key)
1239 write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1242 BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1243 root, 64);
1244 BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1245 objectid, 64);
1246 BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1247 offset, 64);
1248 BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1249 count, 32);
1251 BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1252 count, 32);
1254 BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1255 type, 8);
1256 BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1257 offset, 64);
1259 static inline u32 btrfs_extent_inline_ref_size(int type)
1261 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1262 type == BTRFS_SHARED_BLOCK_REF_KEY)
1263 return sizeof(struct btrfs_extent_inline_ref);
1264 if (type == BTRFS_SHARED_DATA_REF_KEY)
1265 return sizeof(struct btrfs_shared_data_ref) +
1266 sizeof(struct btrfs_extent_inline_ref);
1267 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1268 return sizeof(struct btrfs_extent_data_ref) +
1269 offsetof(struct btrfs_extent_inline_ref, offset);
1270 BUG();
1271 return 0;
1274 BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
1275 BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
1276 generation, 64);
1277 BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
1278 BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
1280 /* struct btrfs_node */
1281 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1282 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1284 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
1286 unsigned long ptr;
1287 ptr = offsetof(struct btrfs_node, ptrs) +
1288 sizeof(struct btrfs_key_ptr) * nr;
1289 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1292 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1293 int nr, u64 val)
1295 unsigned long ptr;
1296 ptr = offsetof(struct btrfs_node, ptrs) +
1297 sizeof(struct btrfs_key_ptr) * nr;
1298 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1301 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1303 unsigned long ptr;
1304 ptr = offsetof(struct btrfs_node, ptrs) +
1305 sizeof(struct btrfs_key_ptr) * nr;
1306 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1309 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1310 int nr, u64 val)
1312 unsigned long ptr;
1313 ptr = offsetof(struct btrfs_node, ptrs) +
1314 sizeof(struct btrfs_key_ptr) * nr;
1315 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1318 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1320 return offsetof(struct btrfs_node, ptrs) +
1321 sizeof(struct btrfs_key_ptr) * nr;
1324 static inline void btrfs_node_key(struct extent_buffer *eb,
1325 struct btrfs_disk_key *disk_key, int nr)
1327 unsigned long ptr;
1328 ptr = btrfs_node_key_ptr_offset(nr);
1329 read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1330 struct btrfs_key_ptr, key, disk_key);
1333 static inline void btrfs_set_node_key(struct extent_buffer *eb,
1334 struct btrfs_disk_key *disk_key, int nr)
1336 unsigned long ptr;
1337 ptr = btrfs_node_key_ptr_offset(nr);
1338 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1339 struct btrfs_key_ptr, key, disk_key);
1342 /* struct btrfs_item */
1343 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1344 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1346 static inline unsigned long btrfs_item_nr_offset(int nr)
1348 return offsetof(struct btrfs_leaf, items) +
1349 sizeof(struct btrfs_item) * nr;
1352 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1353 int nr)
1355 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1358 static inline u32 btrfs_item_end(struct extent_buffer *eb,
1359 struct btrfs_item *item)
1361 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
1364 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
1366 return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
1369 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
1371 return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1374 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1376 return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1379 static inline void btrfs_item_key(struct extent_buffer *eb,
1380 struct btrfs_disk_key *disk_key, int nr)
1382 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1383 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1386 static inline void btrfs_set_item_key(struct extent_buffer *eb,
1387 struct btrfs_disk_key *disk_key, int nr)
1389 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1390 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1393 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1396 * struct btrfs_root_ref
1398 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1399 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1400 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1402 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1403 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1404 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1406 /* struct btrfs_dir_item */
1407 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1408 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1409 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1410 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1412 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1413 struct btrfs_dir_item *item,
1414 struct btrfs_disk_key *key)
1416 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1419 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1420 struct btrfs_dir_item *item,
1421 struct btrfs_disk_key *key)
1423 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1426 /* struct btrfs_disk_key */
1427 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1428 objectid, 64);
1429 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1430 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1432 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1433 struct btrfs_disk_key *disk)
1435 cpu->offset = le64_to_cpu(disk->offset);
1436 cpu->type = disk->type;
1437 cpu->objectid = le64_to_cpu(disk->objectid);
1440 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1441 struct btrfs_key *cpu)
1443 disk->offset = cpu_to_le64(cpu->offset);
1444 disk->type = cpu->type;
1445 disk->objectid = cpu_to_le64(cpu->objectid);
1448 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1449 struct btrfs_key *key, int nr)
1451 struct btrfs_disk_key disk_key;
1452 btrfs_node_key(eb, &disk_key, nr);
1453 btrfs_disk_key_to_cpu(key, &disk_key);
1456 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1457 struct btrfs_key *key, int nr)
1459 struct btrfs_disk_key disk_key;
1460 btrfs_item_key(eb, &disk_key, nr);
1461 btrfs_disk_key_to_cpu(key, &disk_key);
1464 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1465 struct btrfs_dir_item *item,
1466 struct btrfs_key *key)
1468 struct btrfs_disk_key disk_key;
1469 btrfs_dir_item_key(eb, item, &disk_key);
1470 btrfs_disk_key_to_cpu(key, &disk_key);
1474 static inline u8 btrfs_key_type(struct btrfs_key *key)
1476 return key->type;
1479 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1481 key->type = val;
1484 /* struct btrfs_header */
1485 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1486 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1487 generation, 64);
1488 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1489 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1490 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1491 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1493 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1495 return (btrfs_header_flags(eb) & flag) == flag;
1498 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1500 u64 flags = btrfs_header_flags(eb);
1501 btrfs_set_header_flags(eb, flags | flag);
1502 return (flags & flag) == flag;
1505 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1507 u64 flags = btrfs_header_flags(eb);
1508 btrfs_set_header_flags(eb, flags & ~flag);
1509 return (flags & flag) == flag;
1512 static inline int btrfs_header_backref_rev(struct extent_buffer *eb)
1514 u64 flags = btrfs_header_flags(eb);
1515 return flags >> BTRFS_BACKREF_REV_SHIFT;
1518 static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
1519 int rev)
1521 u64 flags = btrfs_header_flags(eb);
1522 flags &= ~BTRFS_BACKREF_REV_MASK;
1523 flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
1524 btrfs_set_header_flags(eb, flags);
1527 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1529 unsigned long ptr = offsetof(struct btrfs_header, fsid);
1530 return (u8 *)ptr;
1533 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1535 unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1536 return (u8 *)ptr;
1539 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1541 unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1542 return (u8 *)ptr;
1545 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1547 unsigned long ptr = offsetof(struct btrfs_header, csum);
1548 return (u8 *)ptr;
1551 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1553 return NULL;
1556 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1558 return NULL;
1561 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1563 return NULL;
1566 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1568 return (btrfs_header_level(eb) == 0);
1571 /* struct btrfs_root_item */
1572 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
1573 generation, 64);
1574 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1575 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1576 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1578 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
1579 generation, 64);
1580 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1581 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1582 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1583 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1584 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
1585 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1586 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1587 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
1588 last_snapshot, 64);
1591 /* struct btrfs_root_backup */
1592 BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
1593 tree_root, 64);
1594 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
1595 tree_root_gen, 64);
1596 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
1597 tree_root_level, 8);
1599 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
1600 chunk_root, 64);
1601 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
1602 chunk_root_gen, 64);
1603 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
1604 chunk_root_level, 8);
1606 BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
1607 extent_root, 64);
1608 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
1609 extent_root_gen, 64);
1610 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
1611 extent_root_level, 8);
1613 BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
1614 fs_root, 64);
1615 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
1616 fs_root_gen, 64);
1617 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
1618 fs_root_level, 8);
1620 BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
1621 dev_root, 64);
1622 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
1623 dev_root_gen, 64);
1624 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
1625 dev_root_level, 8);
1627 BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
1628 csum_root, 64);
1629 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
1630 csum_root_gen, 64);
1631 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
1632 csum_root_level, 8);
1633 BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
1634 total_bytes, 64);
1635 BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
1636 bytes_used, 64);
1637 BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
1638 num_devices, 64);
1640 /* struct btrfs_super_block */
1642 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1643 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
1644 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1645 generation, 64);
1646 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1647 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1648 struct btrfs_super_block, sys_chunk_array_size, 32);
1649 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
1650 struct btrfs_super_block, chunk_root_generation, 64);
1651 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1652 root_level, 8);
1653 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1654 chunk_root, 64);
1655 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1656 chunk_root_level, 8);
1657 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1658 log_root, 64);
1659 BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
1660 log_root_transid, 64);
1661 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1662 log_root_level, 8);
1663 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1664 total_bytes, 64);
1665 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1666 bytes_used, 64);
1667 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1668 sectorsize, 32);
1669 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1670 nodesize, 32);
1671 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1672 leafsize, 32);
1673 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1674 stripesize, 32);
1675 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1676 root_dir_objectid, 64);
1677 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1678 num_devices, 64);
1679 BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
1680 compat_flags, 64);
1681 BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
1682 compat_flags, 64);
1683 BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
1684 incompat_flags, 64);
1685 BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
1686 csum_type, 16);
1687 BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
1688 cache_generation, 64);
1690 static inline int btrfs_super_csum_size(struct btrfs_super_block *s)
1692 int t = btrfs_super_csum_type(s);
1693 BUG_ON(t >= ARRAY_SIZE(btrfs_csum_sizes));
1694 return btrfs_csum_sizes[t];
1697 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1699 return offsetof(struct btrfs_leaf, items);
1702 /* struct btrfs_file_extent_item */
1703 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1704 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_type, struct btrfs_file_extent_item, type, 8);
1706 static inline unsigned long btrfs_file_extent_inline_start(struct
1707 btrfs_file_extent_item *e)
1709 unsigned long offset = (unsigned long)e;
1710 offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1711 return offset;
1714 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1716 return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1719 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1720 disk_bytenr, 64);
1721 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr, struct btrfs_file_extent_item,
1722 disk_bytenr, 64);
1723 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1724 generation, 64);
1725 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation, struct btrfs_file_extent_item,
1726 generation, 64);
1727 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1728 disk_num_bytes, 64);
1729 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1730 offset, 64);
1731 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset, struct btrfs_file_extent_item,
1732 offset, 64);
1733 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1734 num_bytes, 64);
1735 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes, struct btrfs_file_extent_item,
1736 num_bytes, 64);
1737 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
1738 ram_bytes, 64);
1739 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_ram_bytes, struct btrfs_file_extent_item,
1740 ram_bytes, 64);
1741 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
1742 compression, 8);
1743 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression, struct btrfs_file_extent_item,
1744 compression, 8);
1745 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
1746 encryption, 8);
1747 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
1748 other_encoding, 16);
1750 /* this returns the number of file bytes represented by the inline item.
1751 * If an item is compressed, this is the uncompressed size
1753 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1754 struct btrfs_file_extent_item *e)
1756 return btrfs_file_extent_ram_bytes(eb, e);
1760 * this returns the number of bytes used by the item on disk, minus the
1761 * size of any extent headers. If a file is compressed on disk, this is
1762 * the compressed size
1764 static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
1765 struct btrfs_item *e)
1767 unsigned long offset;
1768 offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1769 return btrfs_item_size(eb, e) - offset;
1772 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1773 if (level == 0)
1774 return root->leafsize;
1775 return root->nodesize;
1778 /* helper function to cast into the data area of the leaf. */
1779 #define btrfs_item_ptr(leaf, slot, type) \
1780 ((type *)(btrfs_leaf_data(leaf) + \
1781 btrfs_item_offset_nr(leaf, slot)))
1783 #define btrfs_item_ptr_offset(leaf, slot) \
1784 ((unsigned long)(btrfs_leaf_data(leaf) + \
1785 btrfs_item_offset_nr(leaf, slot)))
1787 /* extent-tree.c */
1788 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1789 struct btrfs_root *root);
1790 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1791 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1792 btrfs_fs_info *info,
1793 u64 bytenr);
1794 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1795 struct btrfs_block_group_cache
1796 *hint, u64 search_start,
1797 int data, int owner);
1798 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1799 struct btrfs_root *root,
1800 u32 blocksize, u64 root_objectid,
1801 struct btrfs_disk_key *key, int level,
1802 u64 hint, u64 empty_size);
1803 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1804 struct btrfs_root *root,
1805 u64 num_bytes, u64 parent,
1806 u64 root_objectid, u64 ref_generation,
1807 u64 owner, u64 empty_size, u64 hint_byte,
1808 u64 search_end, struct btrfs_key *ins, int data);
1809 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
1810 struct btrfs_root *root, u64 bytenr,
1811 u64 num_bytes, u64 *refs, u64 *flags);
1812 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
1813 struct btrfs_root *root,
1814 u64 bytenr, u64 num_bytes, u64 flags);
1815 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1816 struct extent_buffer *buf, int record_parent);
1817 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1818 struct extent_buffer *buf, int record_parent);
1819 int btrfs_free_extent(struct btrfs_trans_handle *trans,
1820 struct btrfs_root *root,
1821 u64 bytenr, u64 num_bytes, u64 parent,
1822 u64 root_objectid, u64 owner, u64 offset);
1823 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1824 struct btrfs_root *root,
1825 struct extent_io_tree *unpin);
1826 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1827 struct btrfs_root *root,
1828 u64 bytenr, u64 num_bytes, u64 parent,
1829 u64 root_objectid, u64 ref_generation,
1830 u64 owner_objectid);
1831 int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1832 struct btrfs_root *root, u64 bytenr,
1833 u64 orig_parent, u64 parent,
1834 u64 root_objectid, u64 ref_generation,
1835 u64 owner_objectid);
1836 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1837 struct btrfs_root *root);
1838 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1839 int btrfs_read_block_groups(struct btrfs_root *root);
1840 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1841 struct btrfs_root *root, u64 bytes_used,
1842 u64 type, u64 chunk_objectid, u64 chunk_offset,
1843 u64 size);
1844 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
1845 struct btrfs_root *root);
1846 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
1847 struct btrfs_root *root, u64 bytenr, u64 num,
1848 int alloc, int mark_free);
1849 /* ctree.c */
1850 void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
1851 int level, int slot, u64 objectid);
1852 struct extent_buffer *read_node_slot(struct btrfs_root *root,
1853 struct extent_buffer *parent, int slot);
1854 int btrfs_previous_item(struct btrfs_root *root,
1855 struct btrfs_path *path, u64 min_objectid,
1856 int type);
1857 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1858 int btrfs_cow_block(struct btrfs_trans_handle *trans,
1859 struct btrfs_root *root, struct extent_buffer *buf,
1860 struct extent_buffer *parent, int parent_slot,
1861 struct extent_buffer **cow_ret);
1862 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
1863 struct btrfs_root *root,
1864 struct extent_buffer *buf,
1865 struct extent_buffer *parent, int parent_slot,
1866 struct extent_buffer **cow_ret,
1867 u64 search_start, u64 empty_size);
1868 int btrfs_copy_root(struct btrfs_trans_handle *trans,
1869 struct btrfs_root *root,
1870 struct extent_buffer *buf,
1871 struct extent_buffer **cow_ret, u64 new_root_objectid);
1872 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1873 *root, struct btrfs_path *path, u32 data_size);
1874 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1875 struct btrfs_root *root,
1876 struct btrfs_path *path,
1877 u32 new_size, int from_end);
1878 int btrfs_split_item(struct btrfs_trans_handle *trans,
1879 struct btrfs_root *root,
1880 struct btrfs_path *path,
1881 struct btrfs_key *new_key,
1882 unsigned long split_offset);
1883 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1884 *root, struct btrfs_key *key, struct btrfs_path *p, int
1885 ins_len, int cow);
1886 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1887 struct btrfs_root *root, struct extent_buffer *parent,
1888 int start_slot, int cache_only, u64 *last_ret,
1889 struct btrfs_key *progress);
1890 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1891 struct btrfs_path *btrfs_alloc_path(void);
1892 void btrfs_free_path(struct btrfs_path *p);
1893 void btrfs_init_path(struct btrfs_path *p);
1894 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1895 struct btrfs_path *path, int slot, int nr);
1897 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1898 struct btrfs_root *root,
1899 struct btrfs_path *path)
1901 return btrfs_del_items(trans, root, path, path->slots[0], 1);
1904 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1905 *root, struct btrfs_key *key, void *data, u32 data_size);
1906 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1907 struct btrfs_root *root,
1908 struct btrfs_path *path,
1909 struct btrfs_key *cpu_key, u32 *data_size, int nr);
1911 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1912 struct btrfs_root *root,
1913 struct btrfs_path *path,
1914 struct btrfs_key *key,
1915 u32 data_size)
1917 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1920 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1921 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
1922 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
1923 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1924 *root);
1925 int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1926 struct btrfs_root *root, struct btrfs_path *path,
1927 struct btrfs_key *new_key);
1929 /* root-item.c */
1930 int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
1931 struct btrfs_root *tree_root,
1932 u64 root_id, u8 type, u64 ref_id,
1933 u64 dirid, u64 sequence,
1934 const char *name, int name_len);
1935 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1936 struct btrfs_key *key);
1937 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1938 *root, struct btrfs_key *key, struct btrfs_root_item
1939 *item);
1940 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1941 *root, struct btrfs_key *key, struct btrfs_root_item
1942 *item);
1943 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1944 btrfs_root_item *item, struct btrfs_key *key);
1945 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1946 struct btrfs_root *latest_root);
1947 /* dir-item.c */
1948 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1949 *root, const char *name, int name_len, u64 dir,
1950 struct btrfs_key *location, u8 type, u64 index);
1951 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1952 struct btrfs_root *root,
1953 struct btrfs_path *path, u64 dir,
1954 const char *name, int name_len,
1955 int mod);
1956 struct btrfs_dir_item *
1957 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1958 struct btrfs_root *root,
1959 struct btrfs_path *path, u64 dir,
1960 u64 objectid, const char *name, int name_len,
1961 int mod);
1962 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1963 struct btrfs_path *path,
1964 const char *name, int name_len);
1965 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1966 struct btrfs_root *root,
1967 struct btrfs_path *path,
1968 struct btrfs_dir_item *di);
1969 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1970 struct btrfs_root *root, const char *name,
1971 u16 name_len, const void *data, u16 data_len,
1972 u64 dir);
1973 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1974 struct btrfs_root *root,
1975 struct btrfs_path *path, u64 dir,
1976 const char *name, u16 name_len,
1977 int mod);
1978 /* inode-map.c */
1979 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1980 struct btrfs_root *fs_root,
1981 u64 dirid, u64 *objectid);
1982 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1984 /* inode-item.c */
1985 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1986 struct btrfs_root *root,
1987 const char *name, int name_len,
1988 u64 inode_objectid, u64 ref_objectid, u64 index);
1989 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1990 struct btrfs_root *root,
1991 const char *name, int name_len,
1992 u64 inode_objectid, u64 ref_objectid);
1993 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1994 struct btrfs_root *root,
1995 struct btrfs_path *path, u64 objectid);
1996 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1997 *root, u64 objectid, struct btrfs_inode_item
1998 *inode_item);
1999 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2000 *root, struct btrfs_path *path,
2001 struct btrfs_key *location, int mod);
2003 /* file-item.c */
2004 int btrfs_del_csums(struct btrfs_trans_handle *trans,
2005 struct btrfs_root *root, u64 bytenr, u64 len);
2006 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
2007 struct btrfs_root *root,
2008 u64 objectid, u64 pos, u64 offset,
2009 u64 disk_num_bytes,
2010 u64 num_bytes);
2011 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
2012 struct btrfs_root *root, u64 objectid,
2013 u64 offset, char *buffer, size_t size);
2014 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
2015 struct btrfs_root *root,
2016 struct btrfs_path *path, u64 objectid,
2017 u64 bytenr, int mod);
2018 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
2019 struct btrfs_root *root, u64 alloc_end,
2020 u64 bytenr, char *data, size_t len);
2021 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
2022 struct btrfs_root *root,
2023 struct btrfs_path *path,
2024 u64 bytenr, int cow);
2025 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
2026 struct btrfs_root *root, struct btrfs_path *path,
2027 u64 isize);
2028 #endif