Btrfs-progs: use rb-tree instead of extent cache tree for fs/file roots
[platform/upstream/btrfs-progs.git] / ctree.h
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
19 #ifndef __BTRFS__
20 #define __BTRFS__
21
22 #if BTRFS_FLAT_INCLUDES
23 #include "list.h"
24 #include "kerncompat.h"
25 #include "radix-tree.h"
26 #include "extent-cache.h"
27 #include "extent_io.h"
28 #include "ioctl.h"
29 #else
30 #include <btrfs/list.h>
31 #include <btrfs/kerncompat.h>
32 #include <btrfs/radix-tree.h>
33 #include <btrfs/extent-cache.h>
34 #include <btrfs/extent_io.h>
35 #include <btrfs/ioctl.h>
36 #endif /* BTRFS_FLAT_INCLUDES */
37
38 struct btrfs_root;
39 struct btrfs_trans_handle;
40 struct btrfs_free_space_ctl;
41 #define BTRFS_MAGIC 0x4D5F53665248425F /* ascii _BHRfS_M, no null */
42
43 #define BTRFS_MAX_LEVEL 8
44
45 #define BTRFS_COMPAT_EXTENT_TREE_V0
46
47 /* holds pointers to all of the tree roots */
48 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
49
50 /* stores information about which extents are in use, and reference counts */
51 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
52
53 /*
54  * chunk tree stores translations from logical -> physical block numbering
55  * the super block points to the chunk tree
56  */
57 #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
58
59 /*
60  * stores information about which areas of a given device are in use.
61  * one per device.  The tree of tree roots points to the device tree
62  */
63 #define BTRFS_DEV_TREE_OBJECTID 4ULL
64
65 /* one per subvolume, storing files and directories */
66 #define BTRFS_FS_TREE_OBJECTID 5ULL
67
68 /* directory objectid inside the root tree */
69 #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
70 /* holds checksums of all the data extents */
71 #define BTRFS_CSUM_TREE_OBJECTID 7ULL
72 #define BTRFS_QUOTA_TREE_OBJECTID 8ULL
73
74
75 /* for storing balance parameters in the root tree */
76 #define BTRFS_BALANCE_OBJECTID -4ULL
77
78 /* oprhan objectid for tracking unlinked/truncated files */
79 #define BTRFS_ORPHAN_OBJECTID -5ULL
80
81 /* does write ahead logging to speed up fsyncs */
82 #define BTRFS_TREE_LOG_OBJECTID -6ULL
83 #define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
84
85 /* space balancing */
86 #define BTRFS_TREE_RELOC_OBJECTID -8ULL
87 #define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
88
89 /*
90  * extent checksums all have this objectid
91  * this allows them to share the logging tree
92  * for fsyncs
93  */
94 #define BTRFS_EXTENT_CSUM_OBJECTID -10ULL
95
96 /* For storing free space cache */
97 #define BTRFS_FREE_SPACE_OBJECTID -11ULL
98
99 /*
100  * The inode number assigned to the special inode for sotring
101  * free ino cache
102  */
103 #define BTRFS_FREE_INO_OBJECTID -12ULL
104
105 /* dummy objectid represents multiple objectids */
106 #define BTRFS_MULTIPLE_OBJECTIDS -255ULL
107
108 /*
109  * All files have objectids in this range.
110  */
111 #define BTRFS_FIRST_FREE_OBJECTID 256ULL
112 #define BTRFS_LAST_FREE_OBJECTID -256ULL
113 #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
114
115
116
117 /*
118  * the device items go into the chunk tree.  The key is in the form
119  * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
120  */
121 #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
122
123 /*
124  * the max metadata block size.  This limit is somewhat artificial,
125  * but the memmove costs go through the roof for larger blocks.
126  */
127 #define BTRFS_MAX_METADATA_BLOCKSIZE 65536
128
129 /*
130  * we can actually store much bigger names, but lets not confuse the rest
131  * of linux
132  */
133 #define BTRFS_NAME_LEN 255
134
135 /*
136  * Theoretical limit is larger, but we keep this down to a sane
137  * value. That should limit greatly the possibility of collisions on
138  * inode ref items.
139  */
140 #define BTRFS_LINK_MAX  65535U
141
142 /* 32 bytes in various csum fields */
143 #define BTRFS_CSUM_SIZE 32
144
145 /* csum types */
146 #define BTRFS_CSUM_TYPE_CRC32   0
147
148 static int btrfs_csum_sizes[] = { 4, 0 };
149
150 /* four bytes for CRC32 */
151 #define BTRFS_CRC32_SIZE 4
152 #define BTRFS_EMPTY_DIR_SIZE 0
153
154 #define BTRFS_FT_UNKNOWN        0
155 #define BTRFS_FT_REG_FILE       1
156 #define BTRFS_FT_DIR            2
157 #define BTRFS_FT_CHRDEV         3
158 #define BTRFS_FT_BLKDEV         4
159 #define BTRFS_FT_FIFO           5
160 #define BTRFS_FT_SOCK           6
161 #define BTRFS_FT_SYMLINK        7
162 #define BTRFS_FT_XATTR          8
163 #define BTRFS_FT_MAX            9
164
165 #define BTRFS_ROOT_SUBVOL_RDONLY        (1ULL << 0)
166
167 /*
168  * the key defines the order in the tree, and so it also defines (optimal)
169  * block layout.  objectid corresonds to the inode number.  The flags
170  * tells us things about the object, and is a kind of stream selector.
171  * so for a given inode, keys with flags of 1 might refer to the inode
172  * data, flags of 2 may point to file data in the btree and flags == 3
173  * may point to extents.
174  *
175  * offset is the starting byte offset for this key in the stream.
176  *
177  * btrfs_disk_key is in disk byte order.  struct btrfs_key is always
178  * in cpu native order.  Otherwise they are identical and their sizes
179  * should be the same (ie both packed)
180  */
181 struct btrfs_disk_key {
182         __le64 objectid;
183         u8 type;
184         __le64 offset;
185 } __attribute__ ((__packed__));
186
187 struct btrfs_key {
188         u64 objectid;
189         u8 type;
190         u64 offset;
191 } __attribute__ ((__packed__));
192
193 struct btrfs_mapping_tree {
194         struct cache_tree cache_tree;
195 };
196
197 #define BTRFS_UUID_SIZE 16
198 struct btrfs_dev_item {
199         /* the internal btrfs device id */
200         __le64 devid;
201
202         /* size of the device */
203         __le64 total_bytes;
204
205         /* bytes used */
206         __le64 bytes_used;
207
208         /* optimal io alignment for this device */
209         __le32 io_align;
210
211         /* optimal io width for this device */
212         __le32 io_width;
213
214         /* minimal io size for this device */
215         __le32 sector_size;
216
217         /* type and info about this device */
218         __le64 type;
219
220         /* expected generation for this device */
221         __le64 generation;
222
223         /*
224          * starting byte of this partition on the device,
225          * to allowr for stripe alignment in the future
226          */
227         __le64 start_offset;
228
229         /* grouping information for allocation decisions */
230         __le32 dev_group;
231
232         /* seek speed 0-100 where 100 is fastest */
233         u8 seek_speed;
234
235         /* bandwidth 0-100 where 100 is fastest */
236         u8 bandwidth;
237
238         /* btrfs generated uuid for this device */
239         u8 uuid[BTRFS_UUID_SIZE];
240
241         /* uuid of FS who owns this device */
242         u8 fsid[BTRFS_UUID_SIZE];
243 } __attribute__ ((__packed__));
244
245 struct btrfs_stripe {
246         __le64 devid;
247         __le64 offset;
248         u8 dev_uuid[BTRFS_UUID_SIZE];
249 } __attribute__ ((__packed__));
250
251 struct btrfs_chunk {
252         /* size of this chunk in bytes */
253         __le64 length;
254
255         /* objectid of the root referencing this chunk */
256         __le64 owner;
257
258         __le64 stripe_len;
259         __le64 type;
260
261         /* optimal io alignment for this chunk */
262         __le32 io_align;
263
264         /* optimal io width for this chunk */
265         __le32 io_width;
266
267         /* minimal io size for this chunk */
268         __le32 sector_size;
269
270         /* 2^16 stripes is quite a lot, a second limit is the size of a single
271          * item in the btree
272          */
273         __le16 num_stripes;
274
275         /* sub stripes only matter for raid10 */
276         __le16 sub_stripes;
277         struct btrfs_stripe stripe;
278         /* additional stripes go here */
279 } __attribute__ ((__packed__));
280
281 #define BTRFS_FREE_SPACE_EXTENT 1
282 #define BTRFS_FREE_SPACE_BITMAP 2
283
284 struct btrfs_free_space_entry {
285         __le64 offset;
286         __le64 bytes;
287         u8 type;
288 } __attribute__ ((__packed__));
289
290 struct btrfs_free_space_header {
291         struct btrfs_disk_key location;
292         __le64 generation;
293         __le64 num_entries;
294         __le64 num_bitmaps;
295 } __attribute__ ((__packed__));
296
297 static inline unsigned long btrfs_chunk_item_size(int num_stripes)
298 {
299         BUG_ON(num_stripes == 0);
300         return sizeof(struct btrfs_chunk) +
301                 sizeof(struct btrfs_stripe) * (num_stripes - 1);
302 }
303
304 #define BTRFS_HEADER_FLAG_WRITTEN               (1ULL << 0)
305 #define BTRFS_HEADER_FLAG_RELOC                 (1ULL << 1)
306 #define BTRFS_SUPER_FLAG_SEEDING                (1ULL << 32)
307 #define BTRFS_SUPER_FLAG_METADUMP               (1ULL << 33)
308
309 #define BTRFS_BACKREF_REV_MAX           256
310 #define BTRFS_BACKREF_REV_SHIFT         56
311 #define BTRFS_BACKREF_REV_MASK          (((u64)BTRFS_BACKREF_REV_MAX - 1) << \
312                                          BTRFS_BACKREF_REV_SHIFT)
313
314 #define BTRFS_OLD_BACKREF_REV           0
315 #define BTRFS_MIXED_BACKREF_REV         1
316
317 /*
318  * every tree block (leaf or node) starts with this header.
319  */
320 struct btrfs_header {
321         /* these first four must match the super block */
322         u8 csum[BTRFS_CSUM_SIZE];
323         u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
324         __le64 bytenr; /* which block this node is supposed to live in */
325         __le64 flags;
326
327         /* allowed to be different from the super from here on down */
328         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
329         __le64 generation;
330         __le64 owner;
331         __le32 nritems;
332         u8 level;
333 } __attribute__ ((__packed__));
334
335 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
336                                 sizeof(struct btrfs_header)) / \
337                                 sizeof(struct btrfs_key_ptr))
338 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
339 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
340 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
341                                         sizeof(struct btrfs_item) - \
342                                         sizeof(struct btrfs_file_extent_item))
343 #define BTRFS_MAX_XATTR_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
344                                  sizeof(struct btrfs_item) -\
345                                  sizeof(struct btrfs_dir_item))
346
347
348 /*
349  * this is a very generous portion of the super block, giving us
350  * room to translate 14 chunks with 3 stripes each.
351  */
352 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
353 #define BTRFS_LABEL_SIZE 256
354
355 /*
356  * just in case we somehow lose the roots and are not able to mount,
357  * we store an array of the roots from previous transactions
358  * in the super.
359  */
360 #define BTRFS_NUM_BACKUP_ROOTS 4
361 struct btrfs_root_backup {
362         __le64 tree_root;
363         __le64 tree_root_gen;
364
365         __le64 chunk_root;
366         __le64 chunk_root_gen;
367
368         __le64 extent_root;
369         __le64 extent_root_gen;
370
371         __le64 fs_root;
372         __le64 fs_root_gen;
373
374         __le64 dev_root;
375         __le64 dev_root_gen;
376
377         __le64 csum_root;
378         __le64 csum_root_gen;
379
380         __le64 total_bytes;
381         __le64 bytes_used;
382         __le64 num_devices;
383         /* future */
384         __le64 unsed_64[4];
385
386         u8 tree_root_level;
387         u8 chunk_root_level;
388         u8 extent_root_level;
389         u8 fs_root_level;
390         u8 dev_root_level;
391         u8 csum_root_level;
392         /* future and to align */
393         u8 unused_8[10];
394 } __attribute__ ((__packed__));
395
396 /*
397  * the super block basically lists the main trees of the FS
398  * it currently lacks any block count etc etc
399  */
400 struct btrfs_super_block {
401         u8 csum[BTRFS_CSUM_SIZE];
402         /* the first 3 fields must match struct btrfs_header */
403         u8 fsid[BTRFS_FSID_SIZE];    /* FS specific uuid */
404         __le64 bytenr; /* this block number */
405         __le64 flags;
406
407         /* allowed to be different from the btrfs_header from here own down */
408         __le64 magic;
409         __le64 generation;
410         __le64 root;
411         __le64 chunk_root;
412         __le64 log_root;
413
414         /* this will help find the new super based on the log root */
415         __le64 log_root_transid;
416         __le64 total_bytes;
417         __le64 bytes_used;
418         __le64 root_dir_objectid;
419         __le64 num_devices;
420         __le32 sectorsize;
421         __le32 nodesize;
422         __le32 leafsize;
423         __le32 stripesize;
424         __le32 sys_chunk_array_size;
425         __le64 chunk_root_generation;
426         __le64 compat_flags;
427         __le64 compat_ro_flags;
428         __le64 incompat_flags;
429         __le16 csum_type;
430         u8 root_level;
431         u8 chunk_root_level;
432         u8 log_root_level;
433         struct btrfs_dev_item dev_item;
434
435         char label[BTRFS_LABEL_SIZE];
436
437         __le64 cache_generation;
438
439         /* future expansion */
440         __le64 reserved[31];
441         u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
442         struct btrfs_root_backup super_roots[BTRFS_NUM_BACKUP_ROOTS];
443 } __attribute__ ((__packed__));
444
445 /*
446  * Compat flags that we support.  If any incompat flags are set other than the
447  * ones specified below then we will fail to mount
448  */
449 #define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF    (1ULL << 0)
450 #define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL   (1ULL << 1)
451 #define BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS     (1ULL << 2)
452 #define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO     (1ULL << 3)
453
454 /*
455  * some patches floated around with a second compression method
456  * lets save that incompat here for when they do get in
457  * Note we don't actually support it, we're just reserving the
458  * number
459  */
460 #define BTRFS_FEATURE_INCOMPAT_COMPRESS_LZOv2   (1ULL << 4)
461
462 /*
463  * older kernels tried to do bigger metadata blocks, but the
464  * code was pretty buggy.  Lets not let them try anymore.
465  */
466 #define BTRFS_FEATURE_INCOMPAT_BIG_METADATA     (1ULL << 5)
467 #define BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF    (1ULL << 6)
468 #define BTRFS_FEATURE_INCOMPAT_RAID56           (1ULL << 7)
469 #define BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA  (1ULL << 8)
470
471
472 #define BTRFS_FEATURE_COMPAT_SUPP               0ULL
473 #define BTRFS_FEATURE_COMPAT_RO_SUPP            0ULL
474 #define BTRFS_FEATURE_INCOMPAT_SUPP                     \
475         (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF |         \
476          BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL |        \
477          BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO |          \
478          BTRFS_FEATURE_INCOMPAT_BIG_METADATA |          \
479          BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF |         \
480          BTRFS_FEATURE_INCOMPAT_RAID56 |                \
481          BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS |          \
482          BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA)
483
484 /*
485  * A leaf is full of items. offset and size tell us where to find
486  * the item in the leaf (relative to the start of the data area)
487  */
488 struct btrfs_item {
489         struct btrfs_disk_key key;
490         __le32 offset;
491         __le32 size;
492 } __attribute__ ((__packed__));
493
494 /*
495  * leaves have an item area and a data area:
496  * [item0, item1....itemN] [free space] [dataN...data1, data0]
497  *
498  * The data is separate from the items to get the keys closer together
499  * during searches.
500  */
501 struct btrfs_leaf {
502         struct btrfs_header header;
503         struct btrfs_item items[];
504 } __attribute__ ((__packed__));
505
506 /*
507  * all non-leaf blocks are nodes, they hold only keys and pointers to
508  * other blocks
509  */
510 struct btrfs_key_ptr {
511         struct btrfs_disk_key key;
512         __le64 blockptr;
513         __le64 generation;
514 } __attribute__ ((__packed__));
515
516 struct btrfs_node {
517         struct btrfs_header header;
518         struct btrfs_key_ptr ptrs[];
519 } __attribute__ ((__packed__));
520
521 /*
522  * btrfs_paths remember the path taken from the root down to the leaf.
523  * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
524  * to any other levels that are present.
525  *
526  * The slots array records the index of the item or block pointer
527  * used while walking the tree.
528  */
529
530 struct btrfs_path {
531         struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
532         int slots[BTRFS_MAX_LEVEL];
533         /* if there is real range locking, this locks field will change */
534         int locks[BTRFS_MAX_LEVEL];
535         int reada;
536         /* keep some upper locks as we walk down */
537         int lowest_level;
538
539         /*
540          * set by btrfs_split_item, tells search_slot to keep all locks
541          * and to force calls to keep space in the nodes
542          */
543         unsigned int search_for_split:1;
544         unsigned int keep_locks:1;
545         unsigned int skip_locking:1;
546         unsigned int leave_spinning:1;
547 };
548
549 /*
550  * items in the extent btree are used to record the objectid of the
551  * owner of the block and the number of references
552  */
553
554 struct btrfs_extent_item {
555         __le64 refs;
556         __le64 generation;
557         __le64 flags;
558 } __attribute__ ((__packed__));
559
560 struct btrfs_extent_item_v0 {
561         __le32 refs;
562 } __attribute__ ((__packed__));
563
564 #define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r) >> 4) - \
565                                         sizeof(struct btrfs_item))
566
567 #define BTRFS_EXTENT_FLAG_DATA          (1ULL << 0)
568 #define BTRFS_EXTENT_FLAG_TREE_BLOCK    (1ULL << 1)
569
570 /* following flags only apply to tree blocks */
571
572 /* use full backrefs for extent pointers in the block*/
573 #define BTRFS_BLOCK_FLAG_FULL_BACKREF   (1ULL << 8)
574
575 struct btrfs_tree_block_info {
576         struct btrfs_disk_key key;
577         u8 level;
578 } __attribute__ ((__packed__));
579
580 struct btrfs_extent_data_ref {
581         __le64 root;
582         __le64 objectid;
583         __le64 offset;
584         __le32 count;
585 } __attribute__ ((__packed__));
586
587 struct btrfs_shared_data_ref {
588         __le32 count;
589 } __attribute__ ((__packed__));
590
591 struct btrfs_extent_inline_ref {
592         u8 type;
593         u64 offset;
594 } __attribute__ ((__packed__));
595
596 struct btrfs_extent_ref_v0 {
597         __le64 root;
598         __le64 generation;
599         __le64 objectid;
600         __le32 count;
601 } __attribute__ ((__packed__));
602
603 /* dev extents record free space on individual devices.  The owner
604  * field points back to the chunk allocation mapping tree that allocated
605  * the extent.  The chunk tree uuid field is a way to double check the owner
606  */
607 struct btrfs_dev_extent {
608         __le64 chunk_tree;
609         __le64 chunk_objectid;
610         __le64 chunk_offset;
611         __le64 length;
612         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
613 } __attribute__ ((__packed__));
614
615 struct btrfs_inode_ref {
616         __le64 index;
617         __le16 name_len;
618         /* name goes here */
619 } __attribute__ ((__packed__));
620
621 struct btrfs_inode_extref {
622         __le64 parent_objectid;
623         __le64 index;
624         __le16 name_len;
625         __u8   name[0]; /* name goes here */
626 } __attribute__ ((__packed__));
627
628 struct btrfs_timespec {
629         __le64 sec;
630         __le32 nsec;
631 } __attribute__ ((__packed__));
632
633 typedef enum {
634         BTRFS_COMPRESS_NONE  = 0,
635         BTRFS_COMPRESS_ZLIB  = 1,
636         BTRFS_COMPRESS_LZO   = 2,
637         BTRFS_COMPRESS_TYPES = 2,
638         BTRFS_COMPRESS_LAST  = 3,
639 } btrfs_compression_type;
640
641 /* we don't understand any encryption methods right now */
642 typedef enum {
643         BTRFS_ENCRYPTION_NONE = 0,
644         BTRFS_ENCRYPTION_LAST = 1,
645 } btrfs_encryption_type;
646
647 struct btrfs_inode_item {
648         /* nfs style generation number */
649         __le64 generation;
650         /* transid that last touched this inode */
651         __le64 transid;
652         __le64 size;
653         __le64 nbytes;
654         __le64 block_group;
655         __le32 nlink;
656         __le32 uid;
657         __le32 gid;
658         __le32 mode;
659         __le64 rdev;
660         __le64 flags;
661
662         /* modification sequence number for NFS */
663         __le64 sequence;
664
665         /*
666          * a little future expansion, for more than this we can
667          * just grow the inode item and version it
668          */
669         __le64 reserved[4];
670         struct btrfs_timespec atime;
671         struct btrfs_timespec ctime;
672         struct btrfs_timespec mtime;
673         struct btrfs_timespec otime;
674 } __attribute__ ((__packed__));
675
676 struct btrfs_dir_log_item {
677         __le64 end;
678 } __attribute__ ((__packed__));
679
680 struct btrfs_dir_item {
681         struct btrfs_disk_key location;
682         __le64 transid;
683         __le16 data_len;
684         __le16 name_len;
685         u8 type;
686 } __attribute__ ((__packed__));
687
688 struct btrfs_root_item_v0 {
689         struct btrfs_inode_item inode;
690         __le64 generation;
691         __le64 root_dirid;
692         __le64 bytenr;
693         __le64 byte_limit;
694         __le64 bytes_used;
695         __le64 last_snapshot;
696         __le64 flags;
697         __le32 refs;
698         struct btrfs_disk_key drop_progress;
699         u8 drop_level;
700         u8 level;
701 } __attribute__ ((__packed__));
702
703 struct btrfs_root_item {
704         struct btrfs_inode_item inode;
705         __le64 generation;
706         __le64 root_dirid;
707         __le64 bytenr;
708         __le64 byte_limit;
709         __le64 bytes_used;
710         __le64 last_snapshot;
711         __le64 flags;
712         __le32 refs;
713         struct btrfs_disk_key drop_progress;
714         u8 drop_level;
715         u8 level;
716
717         /*
718          * The following fields appear after subvol_uuids+subvol_times
719          * were introduced.
720          */
721
722         /*
723          * This generation number is used to test if the new fields are valid
724          * and up to date while reading the root item. Everytime the root item
725          * is written out, the "generation" field is copied into this field. If
726          * anyone ever mounted the fs with an older kernel, we will have
727          * mismatching generation values here and thus must invalidate the
728          * new fields. See btrfs_update_root and btrfs_find_last_root for
729          * details.
730          * the offset of generation_v2 is also used as the start for the memset
731          * when invalidating the fields.
732          */
733         __le64 generation_v2;
734         u8 uuid[BTRFS_UUID_SIZE];
735         u8 parent_uuid[BTRFS_UUID_SIZE];
736         u8 received_uuid[BTRFS_UUID_SIZE];
737         __le64 ctransid; /* updated when an inode changes */
738         __le64 otransid; /* trans when created */
739         __le64 stransid; /* trans when sent. non-zero for received subvol */
740         __le64 rtransid; /* trans when received. non-zero for received subvol */
741         struct btrfs_timespec ctime;
742         struct btrfs_timespec otime;
743         struct btrfs_timespec stime;
744         struct btrfs_timespec rtime;
745         __le64 reserved[8]; /* for future */
746 } __attribute__ ((__packed__));
747
748 /*
749  * this is used for both forward and backward root refs
750  */
751 struct btrfs_root_ref {
752         __le64 dirid;
753         __le64 sequence;
754         __le16 name_len;
755 } __attribute__ ((__packed__));
756
757 #define BTRFS_FILE_EXTENT_INLINE 0
758 #define BTRFS_FILE_EXTENT_REG 1
759 #define BTRFS_FILE_EXTENT_PREALLOC 2
760
761 struct btrfs_file_extent_item {
762         /*
763          * transaction id that created this extent
764          */
765         __le64 generation;
766         /*
767          * max number of bytes to hold this extent in ram
768          * when we split a compressed extent we can't know how big
769          * each of the resulting pieces will be.  So, this is
770          * an upper limit on the size of the extent in ram instead of
771          * an exact limit.
772          */
773         __le64 ram_bytes;
774
775         /*
776          * 32 bits for the various ways we might encode the data,
777          * including compression and encryption.  If any of these
778          * are set to something a given disk format doesn't understand
779          * it is treated like an incompat flag for reading and writing,
780          * but not for stat.
781          */
782         u8 compression;
783         u8 encryption;
784         __le16 other_encoding; /* spare for later use */
785
786         /* are we inline data or a real extent? */
787         u8 type;
788
789         /*
790          * disk space consumed by the extent, checksum blocks are included
791          * in these numbers
792          */
793         __le64 disk_bytenr;
794         __le64 disk_num_bytes;
795         /*
796          * the logical offset in file blocks (no csums)
797          * this extent record is for.  This allows a file extent to point
798          * into the middle of an existing extent on disk, sharing it
799          * between two snapshots (useful if some bytes in the middle of the
800          * extent have changed
801          */
802         __le64 offset;
803         /*
804          * the logical number of file blocks (no csums included)
805          */
806         __le64 num_bytes;
807
808 } __attribute__ ((__packed__));
809
810 struct btrfs_csum_item {
811         u8 csum;
812 } __attribute__ ((__packed__));
813
814 /* tag for the radix tree of block groups in ram */
815 #define BTRFS_BLOCK_GROUP_DATA          (1ULL << 0)
816 #define BTRFS_BLOCK_GROUP_SYSTEM        (1ULL << 1)
817 #define BTRFS_BLOCK_GROUP_METADATA      (1ULL << 2)
818 #define BTRFS_BLOCK_GROUP_RAID0         (1ULL << 3)
819 #define BTRFS_BLOCK_GROUP_RAID1         (1ULL << 4)
820 #define BTRFS_BLOCK_GROUP_DUP           (1ULL << 5)
821 #define BTRFS_BLOCK_GROUP_RAID10        (1ULL << 6)
822 #define BTRFS_BLOCK_GROUP_RAID5    (1ULL << 7)
823 #define BTRFS_BLOCK_GROUP_RAID6    (1ULL << 8)
824 #define BTRFS_BLOCK_GROUP_RESERVED      BTRFS_AVAIL_ALLOC_BIT_SINGLE
825
826 /* used in struct btrfs_balance_args fields */
827 #define BTRFS_AVAIL_ALLOC_BIT_SINGLE    (1ULL << 48)
828
829 #define BTRFS_QGROUP_STATUS_OFF                 0
830 #define BTRFS_QGROUP_STATUS_ON                  1
831 #define BTRFS_QGROUP_STATUS_SCANNING            2
832
833 #define BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT   (1 << 0)
834
835 struct btrfs_qgroup_status_item {
836         __le64 version;
837         __le64 generation;
838         __le64 flags;
839         __le64 scan;            /* progress during scanning */
840 } __attribute__ ((__packed__));
841
842 struct btrfs_block_group_item {
843         __le64 used;
844         __le64 chunk_objectid;
845         __le64 flags;
846 } __attribute__ ((__packed__));
847
848 struct btrfs_qgroup_info_item {
849         __le64 generation;
850         __le64 referenced;
851         __le64 referenced_compressed;
852         __le64 exclusive;
853         __le64 exclusive_compressed;
854 } __attribute__ ((__packed__));
855
856 /* flags definition for qgroup limits */
857 #define BTRFS_QGROUP_LIMIT_MAX_RFER     (1ULL << 0)
858 #define BTRFS_QGROUP_LIMIT_MAX_EXCL     (1ULL << 1)
859 #define BTRFS_QGROUP_LIMIT_RSV_RFER     (1ULL << 2)
860 #define BTRFS_QGROUP_LIMIT_RSV_EXCL     (1ULL << 3)
861 #define BTRFS_QGROUP_LIMIT_RFER_CMPR    (1ULL << 4)
862 #define BTRFS_QGROUP_LIMIT_EXCL_CMPR    (1ULL << 5)
863
864 struct btrfs_qgroup_limit_item {
865         __le64 flags;
866         __le64 max_referenced;
867         __le64 max_exclusive;
868         __le64 rsv_referenced;
869         __le64 rsv_exclusive;
870 } __attribute__ ((__packed__));
871
872 struct btrfs_space_info {
873         u64 flags;
874         u64 total_bytes;
875         u64 bytes_used;
876         u64 bytes_pinned;
877         int full;
878         struct list_head list;
879 };
880
881 struct btrfs_block_group_cache {
882         struct cache_extent cache;
883         struct btrfs_key key;
884         struct btrfs_block_group_item item;
885         struct btrfs_space_info *space_info;
886         struct btrfs_free_space_ctl *free_space_ctl;
887         u64 pinned;
888         u64 flags;
889         int cached;
890         int ro;
891 };
892
893 struct btrfs_extent_ops {
894        int (*alloc_extent)(struct btrfs_root *root, u64 num_bytes,
895                            u64 hint_byte, struct btrfs_key *ins);
896        int (*free_extent)(struct btrfs_root *root, u64 bytenr,
897                           u64 num_bytes);
898 };
899
900 struct btrfs_device;
901 struct btrfs_fs_devices;
902 struct btrfs_fs_info {
903         u8 fsid[BTRFS_FSID_SIZE];
904         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
905         struct btrfs_root *fs_root;
906         struct btrfs_root *extent_root;
907         struct btrfs_root *tree_root;
908         struct btrfs_root *chunk_root;
909         struct btrfs_root *dev_root;
910         struct btrfs_root *csum_root;
911
912         struct rb_root fs_root_tree;
913
914         /* the log root tree is a directory of all the other log roots */
915         struct btrfs_root *log_root_tree;
916
917         struct extent_io_tree extent_cache;
918         struct extent_io_tree free_space_cache;
919         struct extent_io_tree block_group_cache;
920         struct extent_io_tree pinned_extents;
921         struct extent_io_tree pending_del;
922         struct extent_io_tree extent_ins;
923
924         /* logical->physical extent mapping */
925         struct btrfs_mapping_tree mapping_tree;
926
927         u64 generation;
928         u64 last_trans_committed;
929
930         u64 avail_data_alloc_bits;
931         u64 avail_metadata_alloc_bits;
932         u64 avail_system_alloc_bits;
933         u64 data_alloc_profile;
934         u64 metadata_alloc_profile;
935         u64 system_alloc_profile;
936         u64 alloc_start;
937
938         struct btrfs_trans_handle *running_transaction;
939         struct btrfs_super_block *super_copy;
940         struct mutex fs_mutex;
941
942         u64 super_bytenr;
943         u64 total_pinned;
944
945         struct btrfs_extent_ops *extent_ops;
946         struct list_head dirty_cowonly_roots;
947
948         struct btrfs_fs_devices *fs_devices;
949         struct list_head space_info;
950         int system_allocs;
951         int readonly;
952         int (*free_extent_hook)(struct btrfs_trans_handle *trans,
953                                 struct btrfs_root *root,
954                                 u64 bytenr, u64 num_bytes, u64 parent,
955                                 u64 root_objectid, u64 owner, u64 offset,
956                                 int refs_to_drop);
957         struct cache_tree *fsck_extent_cache;
958         struct cache_tree *corrupt_blocks;
959 };
960
961 /*
962  * in ram representation of the tree.  extent_root is used for all allocations
963  * and for the extent tree extent_root root.
964  */
965 struct btrfs_root {
966         struct extent_buffer *node;
967         struct extent_buffer *commit_root;
968         struct btrfs_root_item root_item;
969         struct btrfs_key root_key;
970         struct btrfs_fs_info *fs_info;
971         u64 objectid;
972         u64 last_trans;
973
974         /* data allocations are done in sectorsize units */
975         u32 sectorsize;
976
977         /* node allocations are done in nodesize units */
978         u32 nodesize;
979
980         /* leaf allocations are done in leafsize units */
981         u32 leafsize;
982
983         /* leaf allocations are done in leafsize units */
984         u32 stripesize;
985
986         int ref_cows;
987         int track_dirty;
988
989
990         u32 type;
991         u64 highest_inode;
992         u64 last_inode_alloc;
993
994         /* the dirty list is only used by non-reference counted roots */
995         struct list_head dirty_list;
996         struct rb_node rb_node;
997 };
998
999 /*
1000  * inode items have the data typically returned from stat and store other
1001  * info about object characteristics.  There is one for every file and dir in
1002  * the FS
1003  */
1004 #define BTRFS_INODE_ITEM_KEY            1
1005 #define BTRFS_INODE_REF_KEY             12
1006 #define BTRFS_INODE_EXTREF_KEY          13
1007 #define BTRFS_XATTR_ITEM_KEY            24
1008 #define BTRFS_ORPHAN_ITEM_KEY           48
1009
1010 #define BTRFS_DIR_LOG_ITEM_KEY  60
1011 #define BTRFS_DIR_LOG_INDEX_KEY 72
1012 /*
1013  * dir items are the name -> inode pointers in a directory.  There is one
1014  * for every name in a directory.
1015  */
1016 #define BTRFS_DIR_ITEM_KEY      84
1017 #define BTRFS_DIR_INDEX_KEY     96
1018
1019 /*
1020  * extent data is for file data
1021  */
1022 #define BTRFS_EXTENT_DATA_KEY   108
1023
1024 /*
1025  * csum items have the checksums for data in the extents
1026  */
1027 #define BTRFS_CSUM_ITEM_KEY     120
1028 /*
1029  * extent csums are stored in a separate tree and hold csums for
1030  * an entire extent on disk.
1031  */
1032 #define BTRFS_EXTENT_CSUM_KEY   128
1033
1034 /*
1035  * root items point to tree roots.  There are typically in the root
1036  * tree used by the super block to find all the other trees
1037  */
1038 #define BTRFS_ROOT_ITEM_KEY     132
1039
1040 /*
1041  * root backrefs tie subvols and snapshots to the directory entries that
1042  * reference them
1043  */
1044 #define BTRFS_ROOT_BACKREF_KEY  144
1045
1046 /*
1047  * root refs make a fast index for listing all of the snapshots and
1048  * subvolumes referenced by a given root.  They point directly to the
1049  * directory item in the root that references the subvol
1050  */
1051 #define BTRFS_ROOT_REF_KEY      156
1052
1053 /*
1054  * extent items are in the extent map tree.  These record which blocks
1055  * are used, and how many references there are to each block
1056  */
1057 #define BTRFS_EXTENT_ITEM_KEY   168
1058
1059 /*
1060  * The same as the BTRFS_EXTENT_ITEM_KEY, except it's metadata we already know
1061  * the length, so we save the level in key->offset instead of the length.
1062  */
1063 #define BTRFS_METADATA_ITEM_KEY 169
1064
1065 #define BTRFS_TREE_BLOCK_REF_KEY        176
1066
1067 #define BTRFS_EXTENT_DATA_REF_KEY       178
1068
1069 /* old style extent backrefs */
1070 #define BTRFS_EXTENT_REF_V0_KEY         180
1071
1072 #define BTRFS_SHARED_BLOCK_REF_KEY      182
1073
1074 #define BTRFS_SHARED_DATA_REF_KEY       184
1075
1076
1077 /*
1078  * block groups give us hints into the extent allocation trees.  Which
1079  * blocks are free etc etc
1080  */
1081 #define BTRFS_BLOCK_GROUP_ITEM_KEY 192
1082
1083 #define BTRFS_DEV_EXTENT_KEY    204
1084 #define BTRFS_DEV_ITEM_KEY      216
1085 #define BTRFS_CHUNK_ITEM_KEY    228
1086
1087 #define BTRFS_BALANCE_ITEM_KEY  248
1088
1089 /*
1090  * quota groups
1091  */
1092 #define BTRFS_QGROUP_STATUS_KEY         240
1093 #define BTRFS_QGROUP_INFO_KEY           242
1094 #define BTRFS_QGROUP_LIMIT_KEY          244
1095 #define BTRFS_QGROUP_RELATION_KEY       246
1096
1097 /*
1098  * Persistently stores the io stats in the device tree.
1099  * One key for all stats, (0, BTRFS_DEV_STATS_KEY, devid).
1100  */
1101 #define BTRFS_DEV_STATS_KEY     249
1102
1103 /*
1104  * Persistently stores the device replace state in the device tree.
1105  * The key is built like this: (0, BTRFS_DEV_REPLACE_KEY, 0).
1106  */
1107 #define BTRFS_DEV_REPLACE_KEY   250
1108
1109 /*
1110  * string items are for debugging.  They just store a short string of
1111  * data in the FS
1112  */
1113 #define BTRFS_STRING_ITEM_KEY   253
1114 /*
1115  * Inode flags
1116  */
1117 #define BTRFS_INODE_NODATASUM           (1 << 0)
1118 #define BTRFS_INODE_NODATACOW           (1 << 1)
1119 #define BTRFS_INODE_READONLY            (1 << 2)
1120
1121 #define read_eb_member(eb, ptr, type, member, result) (                 \
1122         read_extent_buffer(eb, (char *)(result),                        \
1123                            ((unsigned long)(ptr)) +                     \
1124                             offsetof(type, member),                     \
1125                            sizeof(((type *)0)->member)))
1126
1127 #define write_eb_member(eb, ptr, type, member, result) (                \
1128         write_extent_buffer(eb, (char *)(result),                       \
1129                            ((unsigned long)(ptr)) +                     \
1130                             offsetof(type, member),                     \
1131                            sizeof(((type *)0)->member)))
1132
1133 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits)             \
1134 static inline u##bits btrfs_##name(struct extent_buffer *eb)            \
1135 {                                                                       \
1136         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
1137         return le##bits##_to_cpu(h->member);                            \
1138 }                                                                       \
1139 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
1140                                     u##bits val)                        \
1141 {                                                                       \
1142         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
1143         h->member = cpu_to_le##bits(val);                               \
1144 }
1145
1146 #define BTRFS_SETGET_FUNCS(name, type, member, bits)                    \
1147 static inline u##bits btrfs_##name(struct extent_buffer *eb,            \
1148                                    type *s)                             \
1149 {                                                                       \
1150         unsigned long offset = (unsigned long)s;                        \
1151         type *p = (type *) (eb->data + offset);                         \
1152         return get_unaligned_le##bits(&p->member);                      \
1153 }                                                                       \
1154 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
1155                                     type *s, u##bits val)               \
1156 {                                                                       \
1157         unsigned long offset = (unsigned long)s;                        \
1158         type *p = (type *) (eb->data + offset);                         \
1159         put_unaligned_le##bits(val, &p->member);                        \
1160 }
1161
1162 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits)              \
1163 static inline u##bits btrfs_##name(type *s)                             \
1164 {                                                                       \
1165         return le##bits##_to_cpu(s->member);                            \
1166 }                                                                       \
1167 static inline void btrfs_set_##name(type *s, u##bits val)               \
1168 {                                                                       \
1169         s->member = cpu_to_le##bits(val);                               \
1170 }
1171
1172 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
1173 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
1174 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1175 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1176 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
1177 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1178                    start_offset, 64);
1179 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1180 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
1181 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1182 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
1183 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
1184 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
1185
1186 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1187 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1188                          total_bytes, 64);
1189 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1190                          bytes_used, 64);
1191 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1192                          io_align, 32);
1193 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1194                          io_width, 32);
1195 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1196                          sector_size, 32);
1197 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1198 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1199                          dev_group, 32);
1200 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1201                          seek_speed, 8);
1202 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1203                          bandwidth, 8);
1204 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1205                          generation, 64);
1206
1207 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
1208 {
1209         return (char *)d + offsetof(struct btrfs_dev_item, uuid);
1210 }
1211
1212 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
1213 {
1214         return (char *)d + offsetof(struct btrfs_dev_item, fsid);
1215 }
1216
1217 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
1218 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1219 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1220 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1221 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1222 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1223 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1224 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
1225 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
1226 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1227 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1228
1229 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1230 {
1231         return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1232 }
1233
1234 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
1235 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1236 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1237                          stripe_len, 64);
1238 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1239                          io_align, 32);
1240 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1241                          io_width, 32);
1242 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1243                          sector_size, 32);
1244 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1245 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1246                          num_stripes, 16);
1247 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1248                          sub_stripes, 16);
1249 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1250 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1251
1252 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1253                                                    int nr)
1254 {
1255         unsigned long offset = (unsigned long)c;
1256         offset += offsetof(struct btrfs_chunk, stripe);
1257         offset += nr * sizeof(struct btrfs_stripe);
1258         return (struct btrfs_stripe *)offset;
1259 }
1260
1261 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1262 {
1263         return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1264 }
1265
1266 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
1267                                          struct btrfs_chunk *c, int nr)
1268 {
1269         return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1270 }
1271
1272 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
1273                                              struct btrfs_chunk *c, int nr,
1274                                              u64 val)
1275 {
1276         btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
1277 }
1278
1279 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
1280                                          struct btrfs_chunk *c, int nr)
1281 {
1282         return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1283 }
1284
1285 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
1286                                              struct btrfs_chunk *c, int nr,
1287                                              u64 val)
1288 {
1289         btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
1290 }
1291
1292 /* struct btrfs_block_group_item */
1293 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
1294                          used, 64);
1295 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
1296                          used, 64);
1297 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
1298                         struct btrfs_block_group_item, chunk_objectid, 64);
1299
1300 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
1301                    struct btrfs_block_group_item, chunk_objectid, 64);
1302 BTRFS_SETGET_FUNCS(disk_block_group_flags,
1303                    struct btrfs_block_group_item, flags, 64);
1304 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1305                         struct btrfs_block_group_item, flags, 64);
1306
1307 /* struct btrfs_inode_ref */
1308 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1309 BTRFS_SETGET_STACK_FUNCS(stack_inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1310 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
1311
1312 /* struct btrfs_inode_extref */
1313 BTRFS_SETGET_FUNCS(inode_extref_parent, struct btrfs_inode_extref,
1314                    parent_objectid, 64);
1315 BTRFS_SETGET_FUNCS(inode_extref_name_len, struct btrfs_inode_extref,
1316                    name_len, 16);
1317 BTRFS_SETGET_FUNCS(inode_extref_index, struct btrfs_inode_extref, index, 64);
1318
1319 /* struct btrfs_inode_item */
1320 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
1321 BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
1322 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
1323 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1324 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
1325 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1326 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1327 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1328 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1329 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1330 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1331 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1332
1333 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
1334                          struct btrfs_inode_item, generation, 64);
1335 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence,
1336                          struct btrfs_inode_item, generation, 64);
1337 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
1338                          struct btrfs_inode_item, size, 64);
1339 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
1340                          struct btrfs_inode_item, nbytes, 64);
1341 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
1342                          struct btrfs_inode_item, block_group, 64);
1343 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
1344                          struct btrfs_inode_item, nlink, 32);
1345 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
1346                          struct btrfs_inode_item, uid, 32);
1347 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
1348                          struct btrfs_inode_item, gid, 32);
1349 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
1350                          struct btrfs_inode_item, mode, 32);
1351 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
1352                          struct btrfs_inode_item, rdev, 64);
1353 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
1354                          struct btrfs_inode_item, flags, 64);
1355
1356 static inline struct btrfs_timespec *
1357 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
1358 {
1359         unsigned long ptr = (unsigned long)inode_item;
1360         ptr += offsetof(struct btrfs_inode_item, atime);
1361         return (struct btrfs_timespec *)ptr;
1362 }
1363
1364 static inline struct btrfs_timespec *
1365 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
1366 {
1367         unsigned long ptr = (unsigned long)inode_item;
1368         ptr += offsetof(struct btrfs_inode_item, mtime);
1369         return (struct btrfs_timespec *)ptr;
1370 }
1371
1372 static inline struct btrfs_timespec *
1373 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
1374 {
1375         unsigned long ptr = (unsigned long)inode_item;
1376         ptr += offsetof(struct btrfs_inode_item, ctime);
1377         return (struct btrfs_timespec *)ptr;
1378 }
1379
1380 static inline struct btrfs_timespec *
1381 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
1382 {
1383         unsigned long ptr = (unsigned long)inode_item;
1384         ptr += offsetof(struct btrfs_inode_item, otime);
1385         return (struct btrfs_timespec *)ptr;
1386 }
1387
1388 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1389 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
1390 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
1391                          sec, 64);
1392 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
1393                          nsec, 32);
1394
1395 /* struct btrfs_dev_extent */
1396 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1397                    chunk_tree, 64);
1398 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1399                    chunk_objectid, 64);
1400 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1401                    chunk_offset, 64);
1402 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1403
1404 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
1405 {
1406         unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
1407         return (u8 *)((unsigned long)dev + ptr);
1408 }
1409
1410
1411 /* struct btrfs_extent_item */
1412 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1413 BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item, refs, 64);
1414 BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1415                    generation, 64);
1416 BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
1417 BTRFS_SETGET_STACK_FUNCS(stack_extent_flags, struct btrfs_extent_item, flags, 64);
1418
1419 BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
1420
1421 BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1422
1423 static inline void btrfs_tree_block_key(struct extent_buffer *eb,
1424                                         struct btrfs_tree_block_info *item,
1425                                         struct btrfs_disk_key *key)
1426 {
1427         read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1428 }
1429
1430 static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
1431                                             struct btrfs_tree_block_info *item,
1432                                             struct btrfs_disk_key *key)
1433 {
1434         write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1435 }
1436
1437 BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1438                    root, 64);
1439 BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1440                    objectid, 64);
1441 BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1442                    offset, 64);
1443 BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1444                    count, 32);
1445
1446 BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1447                    count, 32);
1448
1449 BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1450                    type, 8);
1451 BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1452                    offset, 64);
1453 BTRFS_SETGET_STACK_FUNCS(stack_extent_inline_ref_type,
1454                          struct btrfs_extent_inline_ref, type, 8);
1455 BTRFS_SETGET_STACK_FUNCS(stack_extent_inline_ref_offset,
1456                          struct btrfs_extent_inline_ref, offset, 64);
1457
1458 static inline u32 btrfs_extent_inline_ref_size(int type)
1459 {
1460         if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1461             type == BTRFS_SHARED_BLOCK_REF_KEY)
1462                 return sizeof(struct btrfs_extent_inline_ref);
1463         if (type == BTRFS_SHARED_DATA_REF_KEY)
1464                 return sizeof(struct btrfs_shared_data_ref) +
1465                        sizeof(struct btrfs_extent_inline_ref);
1466         if (type == BTRFS_EXTENT_DATA_REF_KEY)
1467                 return sizeof(struct btrfs_extent_data_ref) +
1468                        offsetof(struct btrfs_extent_inline_ref, offset);
1469         BUG();
1470         return 0;
1471 }
1472
1473 BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
1474 BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
1475                    generation, 64);
1476 BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
1477 BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
1478
1479 /* struct btrfs_node */
1480 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1481 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1482
1483 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
1484 {
1485         unsigned long ptr;
1486         ptr = offsetof(struct btrfs_node, ptrs) +
1487                 sizeof(struct btrfs_key_ptr) * nr;
1488         return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1489 }
1490
1491 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1492                                            int nr, u64 val)
1493 {
1494         unsigned long ptr;
1495         ptr = offsetof(struct btrfs_node, ptrs) +
1496                 sizeof(struct btrfs_key_ptr) * nr;
1497         btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1498 }
1499
1500 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1501 {
1502         unsigned long ptr;
1503         ptr = offsetof(struct btrfs_node, ptrs) +
1504                 sizeof(struct btrfs_key_ptr) * nr;
1505         return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1506 }
1507
1508 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1509                                                  int nr, u64 val)
1510 {
1511         unsigned long ptr;
1512         ptr = offsetof(struct btrfs_node, ptrs) +
1513                 sizeof(struct btrfs_key_ptr) * nr;
1514         btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1515 }
1516
1517 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1518 {
1519         return offsetof(struct btrfs_node, ptrs) +
1520                 sizeof(struct btrfs_key_ptr) * nr;
1521 }
1522
1523 static inline void btrfs_node_key(struct extent_buffer *eb,
1524                                   struct btrfs_disk_key *disk_key, int nr)
1525 {
1526         unsigned long ptr;
1527         ptr = btrfs_node_key_ptr_offset(nr);
1528         read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1529                        struct btrfs_key_ptr, key, disk_key);
1530 }
1531
1532 static inline void btrfs_set_node_key(struct extent_buffer *eb,
1533                                       struct btrfs_disk_key *disk_key, int nr)
1534 {
1535         unsigned long ptr;
1536         ptr = btrfs_node_key_ptr_offset(nr);
1537         write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1538                        struct btrfs_key_ptr, key, disk_key);
1539 }
1540
1541 /* struct btrfs_item */
1542 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1543 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1544
1545 static inline unsigned long btrfs_item_nr_offset(int nr)
1546 {
1547         return offsetof(struct btrfs_leaf, items) +
1548                 sizeof(struct btrfs_item) * nr;
1549 }
1550
1551 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1552                                                int nr)
1553 {
1554         return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1555 }
1556
1557 static inline u32 btrfs_item_end(struct extent_buffer *eb,
1558                                  struct btrfs_item *item)
1559 {
1560         return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
1561 }
1562
1563 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
1564 {
1565         return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
1566 }
1567
1568 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
1569 {
1570         return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1571 }
1572
1573 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1574 {
1575         return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1576 }
1577
1578 static inline void btrfs_item_key(struct extent_buffer *eb,
1579                            struct btrfs_disk_key *disk_key, int nr)
1580 {
1581         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1582         read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1583 }
1584
1585 static inline void btrfs_set_item_key(struct extent_buffer *eb,
1586                                struct btrfs_disk_key *disk_key, int nr)
1587 {
1588         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1589         write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1590 }
1591
1592 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1593
1594 /*
1595  * struct btrfs_root_ref
1596  */
1597 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1598 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1599 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1600
1601 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1602 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1603 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1604
1605 /* struct btrfs_dir_item */
1606 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1607 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1608 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1609 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1610
1611 BTRFS_SETGET_STACK_FUNCS(stack_dir_name_len, struct btrfs_dir_item, name_len, 16);
1612
1613 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1614                                       struct btrfs_dir_item *item,
1615                                       struct btrfs_disk_key *key)
1616 {
1617         read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1618 }
1619
1620 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1621                                           struct btrfs_dir_item *item,
1622                                           struct btrfs_disk_key *key)
1623 {
1624         write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1625 }
1626
1627 /* struct btrfs_free_space_header */
1628 BTRFS_SETGET_FUNCS(free_space_entries, struct btrfs_free_space_header,
1629                    num_entries, 64);
1630 BTRFS_SETGET_FUNCS(free_space_bitmaps, struct btrfs_free_space_header,
1631                    num_bitmaps, 64);
1632 BTRFS_SETGET_FUNCS(free_space_generation, struct btrfs_free_space_header,
1633                    generation, 64);
1634
1635 static inline void btrfs_free_space_key(struct extent_buffer *eb,
1636                                         struct btrfs_free_space_header *h,
1637                                         struct btrfs_disk_key *key)
1638 {
1639         read_eb_member(eb, h, struct btrfs_free_space_header, location, key);
1640 }
1641
1642 static inline void btrfs_set_free_space_key(struct extent_buffer *eb,
1643                                             struct btrfs_free_space_header *h,
1644                                             struct btrfs_disk_key *key)
1645 {
1646         write_eb_member(eb, h, struct btrfs_free_space_header, location, key);
1647 }
1648
1649 /* struct btrfs_disk_key */
1650 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1651                          objectid, 64);
1652 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1653 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1654
1655 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1656                                          struct btrfs_disk_key *disk)
1657 {
1658         cpu->offset = le64_to_cpu(disk->offset);
1659         cpu->type = disk->type;
1660         cpu->objectid = le64_to_cpu(disk->objectid);
1661 }
1662
1663 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1664                                          struct btrfs_key *cpu)
1665 {
1666         disk->offset = cpu_to_le64(cpu->offset);
1667         disk->type = cpu->type;
1668         disk->objectid = cpu_to_le64(cpu->objectid);
1669 }
1670
1671 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1672                                   struct btrfs_key *key, int nr)
1673 {
1674         struct btrfs_disk_key disk_key;
1675         btrfs_node_key(eb, &disk_key, nr);
1676         btrfs_disk_key_to_cpu(key, &disk_key);
1677 }
1678
1679 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1680                                   struct btrfs_key *key, int nr)
1681 {
1682         struct btrfs_disk_key disk_key;
1683         btrfs_item_key(eb, &disk_key, nr);
1684         btrfs_disk_key_to_cpu(key, &disk_key);
1685 }
1686
1687 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1688                                       struct btrfs_dir_item *item,
1689                                       struct btrfs_key *key)
1690 {
1691         struct btrfs_disk_key disk_key;
1692         btrfs_dir_item_key(eb, item, &disk_key);
1693         btrfs_disk_key_to_cpu(key, &disk_key);
1694 }
1695
1696
1697 static inline u8 btrfs_key_type(struct btrfs_key *key)
1698 {
1699         return key->type;
1700 }
1701
1702 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1703 {
1704         key->type = val;
1705 }
1706
1707 /* struct btrfs_header */
1708 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1709 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1710                           generation, 64);
1711 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1712 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1713 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1714 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1715
1716 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1717 {
1718         return (btrfs_header_flags(eb) & flag) == flag;
1719 }
1720
1721 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1722 {
1723         u64 flags = btrfs_header_flags(eb);
1724         btrfs_set_header_flags(eb, flags | flag);
1725         return (flags & flag) == flag;
1726 }
1727
1728 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1729 {
1730         u64 flags = btrfs_header_flags(eb);
1731         btrfs_set_header_flags(eb, flags & ~flag);
1732         return (flags & flag) == flag;
1733 }
1734
1735 static inline int btrfs_header_backref_rev(struct extent_buffer *eb)
1736 {
1737         u64 flags = btrfs_header_flags(eb);
1738         return flags >> BTRFS_BACKREF_REV_SHIFT;
1739 }
1740
1741 static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
1742                                                 int rev)
1743 {
1744         u64 flags = btrfs_header_flags(eb);
1745         flags &= ~BTRFS_BACKREF_REV_MASK;
1746         flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
1747         btrfs_set_header_flags(eb, flags);
1748 }
1749
1750 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1751 {
1752         unsigned long ptr = offsetof(struct btrfs_header, fsid);
1753         return (u8 *)ptr;
1754 }
1755
1756 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1757 {
1758         unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1759         return (u8 *)ptr;
1760 }
1761
1762 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1763 {
1764         unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1765         return (u8 *)ptr;
1766 }
1767
1768 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1769 {
1770         unsigned long ptr = offsetof(struct btrfs_header, csum);
1771         return (u8 *)ptr;
1772 }
1773
1774 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1775 {
1776         return NULL;
1777 }
1778
1779 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1780 {
1781         return NULL;
1782 }
1783
1784 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1785 {
1786         return NULL;
1787 }
1788
1789 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1790 {
1791         return (btrfs_header_level(eb) == 0);
1792 }
1793
1794 /* struct btrfs_root_item */
1795 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
1796                    generation, 64);
1797 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1798 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1799 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1800
1801 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
1802                          generation, 64);
1803 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1804 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1805 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1806 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1807 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
1808 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1809 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1810 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
1811                          last_snapshot, 64);
1812 BTRFS_SETGET_STACK_FUNCS(root_generation_v2, struct btrfs_root_item,
1813                          generation_v2, 64);
1814 BTRFS_SETGET_STACK_FUNCS(root_ctransid, struct btrfs_root_item,
1815                          ctransid, 64);
1816 BTRFS_SETGET_STACK_FUNCS(root_otransid, struct btrfs_root_item,
1817                          otransid, 64);
1818 BTRFS_SETGET_STACK_FUNCS(root_stransid, struct btrfs_root_item,
1819                          stransid, 64);
1820 BTRFS_SETGET_STACK_FUNCS(root_rtransid, struct btrfs_root_item,
1821                          rtransid, 64);
1822
1823 /* struct btrfs_root_backup */
1824 BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
1825                    tree_root, 64);
1826 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
1827                    tree_root_gen, 64);
1828 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
1829                    tree_root_level, 8);
1830
1831 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
1832                    chunk_root, 64);
1833 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
1834                    chunk_root_gen, 64);
1835 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
1836                    chunk_root_level, 8);
1837
1838 BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
1839                    extent_root, 64);
1840 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
1841                    extent_root_gen, 64);
1842 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
1843                    extent_root_level, 8);
1844
1845 BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
1846                    fs_root, 64);
1847 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
1848                    fs_root_gen, 64);
1849 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
1850                    fs_root_level, 8);
1851
1852 BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
1853                    dev_root, 64);
1854 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
1855                    dev_root_gen, 64);
1856 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
1857                    dev_root_level, 8);
1858
1859 BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
1860                    csum_root, 64);
1861 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
1862                    csum_root_gen, 64);
1863 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
1864                    csum_root_level, 8);
1865 BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
1866                    total_bytes, 64);
1867 BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
1868                    bytes_used, 64);
1869 BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
1870                    num_devices, 64);
1871
1872 /* struct btrfs_super_block */
1873
1874 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1875 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
1876 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1877                          generation, 64);
1878 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1879 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1880                          struct btrfs_super_block, sys_chunk_array_size, 32);
1881 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
1882                          struct btrfs_super_block, chunk_root_generation, 64);
1883 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1884                          root_level, 8);
1885 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1886                          chunk_root, 64);
1887 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1888                          chunk_root_level, 8);
1889 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1890                          log_root, 64);
1891 BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
1892                          log_root_transid, 64);
1893 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1894                          log_root_level, 8);
1895 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1896                          total_bytes, 64);
1897 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1898                          bytes_used, 64);
1899 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1900                          sectorsize, 32);
1901 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1902                          nodesize, 32);
1903 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1904                          leafsize, 32);
1905 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1906                          stripesize, 32);
1907 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1908                          root_dir_objectid, 64);
1909 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1910                          num_devices, 64);
1911 BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
1912                          compat_flags, 64);
1913 BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
1914                          compat_flags, 64);
1915 BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
1916                          incompat_flags, 64);
1917 BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
1918                          csum_type, 16);
1919 BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
1920                          cache_generation, 64);
1921
1922 static inline int btrfs_super_csum_size(struct btrfs_super_block *s)
1923 {
1924         int t = btrfs_super_csum_type(s);
1925         BUG_ON(t >= ARRAY_SIZE(btrfs_csum_sizes));
1926         return btrfs_csum_sizes[t];
1927 }
1928
1929 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1930 {
1931         return offsetof(struct btrfs_leaf, items);
1932 }
1933
1934 /* struct btrfs_file_extent_item */
1935 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1936 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_type, struct btrfs_file_extent_item, type, 8);
1937
1938 static inline unsigned long btrfs_file_extent_inline_start(struct
1939                                                    btrfs_file_extent_item *e)
1940 {
1941         unsigned long offset = (unsigned long)e;
1942         offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1943         return offset;
1944 }
1945
1946 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1947 {
1948         return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1949 }
1950
1951 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1952                    disk_bytenr, 64);
1953 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr, struct btrfs_file_extent_item,
1954                    disk_bytenr, 64);
1955 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1956                    generation, 64);
1957 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation, struct btrfs_file_extent_item,
1958                    generation, 64);
1959 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1960                    disk_num_bytes, 64);
1961 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1962                   offset, 64);
1963 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset, struct btrfs_file_extent_item,
1964                   offset, 64);
1965 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1966                    num_bytes, 64);
1967 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes, struct btrfs_file_extent_item,
1968                    num_bytes, 64);
1969 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
1970                    ram_bytes, 64);
1971 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_ram_bytes, struct btrfs_file_extent_item,
1972                    ram_bytes, 64);
1973 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
1974                    compression, 8);
1975 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression, struct btrfs_file_extent_item,
1976                    compression, 8);
1977 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
1978                    encryption, 8);
1979 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
1980                    other_encoding, 16);
1981
1982 /* btrfs_qgroup_status_item */
1983 BTRFS_SETGET_FUNCS(qgroup_status_version, struct btrfs_qgroup_status_item,
1984                    version, 64);
1985 BTRFS_SETGET_FUNCS(qgroup_status_generation, struct btrfs_qgroup_status_item,
1986                    generation, 64);
1987 BTRFS_SETGET_FUNCS(qgroup_status_flags, struct btrfs_qgroup_status_item,
1988                    flags, 64);
1989 BTRFS_SETGET_FUNCS(qgroup_status_scan, struct btrfs_qgroup_status_item,
1990                    scan, 64);
1991
1992 /* btrfs_qgroup_info_item */
1993 BTRFS_SETGET_FUNCS(qgroup_info_generation, struct btrfs_qgroup_info_item,
1994                    generation, 64);
1995 BTRFS_SETGET_FUNCS(qgroup_info_referenced, struct btrfs_qgroup_info_item,
1996                    referenced, 64);
1997 BTRFS_SETGET_FUNCS(qgroup_info_referenced_compressed,
1998                    struct btrfs_qgroup_info_item, referenced_compressed, 64);
1999 BTRFS_SETGET_FUNCS(qgroup_info_exclusive, struct btrfs_qgroup_info_item,
2000                    exclusive, 64);
2001 BTRFS_SETGET_FUNCS(qgroup_info_exclusive_compressed,
2002                    struct btrfs_qgroup_info_item, exclusive_compressed, 64);
2003
2004 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_generation,
2005                          struct btrfs_qgroup_info_item, generation, 64);
2006 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_referenced,
2007                          struct btrfs_qgroup_info_item, referenced, 64);
2008 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_referenced_compressed,
2009                    struct btrfs_qgroup_info_item, referenced_compressed, 64);
2010 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_exclusive,
2011                          struct btrfs_qgroup_info_item, exclusive, 64);
2012 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_exclusive_compressed,
2013                    struct btrfs_qgroup_info_item, exclusive_compressed, 64);
2014
2015 /* btrfs_qgroup_limit_item */
2016 BTRFS_SETGET_FUNCS(qgroup_limit_flags, struct btrfs_qgroup_limit_item,
2017                    flags, 64);
2018 BTRFS_SETGET_FUNCS(qgroup_limit_max_referenced, struct btrfs_qgroup_limit_item,
2019                    max_referenced, 64);
2020 BTRFS_SETGET_FUNCS(qgroup_limit_max_exclusive, struct btrfs_qgroup_limit_item,
2021                    max_exclusive, 64);
2022 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_referenced, struct btrfs_qgroup_limit_item,
2023                    rsv_referenced, 64);
2024 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_exclusive, struct btrfs_qgroup_limit_item,
2025                    rsv_exclusive, 64);
2026
2027 /* this returns the number of file bytes represented by the inline item.
2028  * If an item is compressed, this is the uncompressed size
2029  */
2030 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
2031                                         struct btrfs_file_extent_item *e)
2032 {
2033        return btrfs_file_extent_ram_bytes(eb, e);
2034 }
2035
2036 /*
2037  * this returns the number of bytes used by the item on disk, minus the
2038  * size of any extent headers.  If a file is compressed on disk, this is
2039  * the compressed size
2040  */
2041 static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
2042                                                     struct btrfs_item *e)
2043 {
2044        unsigned long offset;
2045        offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
2046        return btrfs_item_size(eb, e) - offset;
2047 }
2048
2049 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
2050         if (level == 0)
2051                 return root->leafsize;
2052         return root->nodesize;
2053 }
2054
2055 static inline int btrfs_fs_incompat(struct btrfs_fs_info *fs_info, u64 flag)
2056 {
2057         struct btrfs_super_block *disk_super;
2058         disk_super = fs_info->super_copy;
2059         return !!(btrfs_super_incompat_flags(disk_super) & flag);
2060 }
2061
2062 /* helper function to cast into the data area of the leaf. */
2063 #define btrfs_item_ptr(leaf, slot, type) \
2064         ((type *)(btrfs_leaf_data(leaf) + \
2065         btrfs_item_offset_nr(leaf, slot)))
2066
2067 #define btrfs_item_ptr_offset(leaf, slot) \
2068         ((unsigned long)(btrfs_leaf_data(leaf) + \
2069         btrfs_item_offset_nr(leaf, slot)))
2070
2071 /* extent-tree.c */
2072 int btrfs_fix_block_accounting(struct btrfs_trans_handle *trans,
2073                                  struct btrfs_root *root);
2074 int btrfs_check_block_accounting(struct btrfs_root *root);
2075 void btrfs_pin_extent(struct btrfs_fs_info *fs_info, u64 bytenr, u64 num_bytes);
2076 void btrfs_unpin_extent(struct btrfs_fs_info *fs_info,
2077                         u64 bytenr, u64 num_bytes);
2078 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
2079                          struct btrfs_root *root);
2080 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
2081 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
2082                                                          btrfs_fs_info *info,
2083                                                          u64 bytenr);
2084 struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
2085                                                        btrfs_fs_info *info,
2086                                                        u64 bytenr);
2087 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
2088                                                  struct btrfs_block_group_cache
2089                                                  *hint, u64 search_start,
2090                                                  int data, int owner);
2091 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
2092                                         struct btrfs_root *root,
2093                                         u32 blocksize, u64 root_objectid,
2094                                         struct btrfs_disk_key *key, int level,
2095                                         u64 hint, u64 empty_size);
2096 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2097                        struct btrfs_root *root,
2098                        u64 num_bytes, u64 parent,
2099                        u64 root_objectid, u64 ref_generation,
2100                        u64 owner, u64 empty_size, u64 hint_byte,
2101                        u64 search_end, struct btrfs_key *ins, int data);
2102 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
2103                              struct btrfs_root *root, u64 bytenr,
2104                              u64 offset, int metadata, u64 *refs, u64 *flags);
2105 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
2106                           struct btrfs_root *root,
2107                           u64 bytenr, int level, u64 flags);
2108 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2109                   struct extent_buffer *buf, int record_parent);
2110 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2111                   struct extent_buffer *buf, int record_parent);
2112 int btrfs_free_extent(struct btrfs_trans_handle *trans,
2113                       struct btrfs_root *root,
2114                       u64 bytenr, u64 num_bytes, u64 parent,
2115                       u64 root_objectid, u64 owner, u64 offset);
2116 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
2117                                struct btrfs_root *root,
2118                                struct extent_io_tree *unpin);
2119 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2120                                 struct btrfs_root *root,
2121                                 u64 bytenr, u64 num_bytes, u64 parent,
2122                                 u64 root_objectid, u64 ref_generation,
2123                                 u64 owner_objectid);
2124 int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
2125                             struct btrfs_root *root, u64 bytenr,
2126                             u64 orig_parent, u64 parent,
2127                             u64 root_objectid, u64 ref_generation,
2128                             u64 owner_objectid);
2129 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2130                                     struct btrfs_root *root);
2131 int btrfs_free_block_groups(struct btrfs_fs_info *info);
2132 int btrfs_read_block_groups(struct btrfs_root *root);
2133 struct btrfs_block_group_cache *
2134 btrfs_add_block_group(struct btrfs_fs_info *fs_info, u64 bytes_used, u64 type,
2135                       u64 chunk_objectid, u64 chunk_offset, u64 size);
2136 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2137                            struct btrfs_root *root, u64 bytes_used,
2138                            u64 type, u64 chunk_objectid, u64 chunk_offset,
2139                            u64 size);
2140 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
2141                             struct btrfs_root *root);
2142 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
2143                              struct btrfs_root *root, u64 bytenr, u64 num,
2144                              int alloc, int mark_free);
2145 /* ctree.c */
2146 int btrfs_del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2147                    struct btrfs_path *path, int level, int slot);
2148 int btrfs_check_node(struct btrfs_root *root,
2149                       struct btrfs_disk_key *parent_key,
2150                       struct extent_buffer *buf);
2151 int btrfs_check_leaf(struct btrfs_root *root,
2152                       struct btrfs_disk_key *parent_key,
2153                       struct extent_buffer *buf);
2154 int btrfs_fsck_reinit_root(struct btrfs_trans_handle *trans,
2155                            struct btrfs_root *root, int overwrite);
2156 void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
2157                              int level, int slot, u64 objectid);
2158 struct extent_buffer *read_node_slot(struct btrfs_root *root,
2159                                    struct extent_buffer *parent, int slot);
2160 int btrfs_previous_item(struct btrfs_root *root,
2161                         struct btrfs_path *path, u64 min_objectid,
2162                         int type);
2163 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
2164 int btrfs_cow_block(struct btrfs_trans_handle *trans,
2165                     struct btrfs_root *root, struct extent_buffer *buf,
2166                     struct extent_buffer *parent, int parent_slot,
2167                     struct extent_buffer **cow_ret);
2168 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
2169                              struct btrfs_root *root,
2170                              struct extent_buffer *buf,
2171                              struct extent_buffer *parent, int parent_slot,
2172                              struct extent_buffer **cow_ret,
2173                              u64 search_start, u64 empty_size);
2174 int btrfs_copy_root(struct btrfs_trans_handle *trans,
2175                       struct btrfs_root *root,
2176                       struct extent_buffer *buf,
2177                       struct extent_buffer **cow_ret, u64 new_root_objectid);
2178 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
2179                       *root, struct btrfs_path *path, u32 data_size);
2180 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
2181                         struct btrfs_root *root,
2182                         struct btrfs_path *path,
2183                         u32 new_size, int from_end);
2184 int btrfs_split_item(struct btrfs_trans_handle *trans,
2185                      struct btrfs_root *root,
2186                      struct btrfs_path *path,
2187                      struct btrfs_key *new_key,
2188                      unsigned long split_offset);
2189 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2190                       *root, struct btrfs_key *key, struct btrfs_path *p, int
2191                       ins_len, int cow);
2192 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
2193                        struct btrfs_root *root, struct extent_buffer *parent,
2194                        int start_slot, int cache_only, u64 *last_ret,
2195                        struct btrfs_key *progress);
2196 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
2197 struct btrfs_path *btrfs_alloc_path(void);
2198 void btrfs_free_path(struct btrfs_path *p);
2199 void btrfs_init_path(struct btrfs_path *p);
2200 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2201                    struct btrfs_path *path, int slot, int nr);
2202
2203 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
2204                                  struct btrfs_root *root,
2205                                  struct btrfs_path *path)
2206 {
2207         return btrfs_del_items(trans, root, path, path->slots[0], 1);
2208 }
2209
2210 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
2211                       *root, struct btrfs_key *key, void *data, u32 data_size);
2212 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
2213                              struct btrfs_root *root,
2214                              struct btrfs_path *path,
2215                              struct btrfs_key *cpu_key, u32 *data_size, int nr);
2216
2217 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
2218                                           struct btrfs_root *root,
2219                                           struct btrfs_path *path,
2220                                           struct btrfs_key *key,
2221                                           u32 data_size)
2222 {
2223         return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
2224 }
2225
2226 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
2227 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
2228 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
2229 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
2230                         *root);
2231 int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
2232                             struct btrfs_root *root, struct btrfs_path *path,
2233                             struct btrfs_key *new_key);
2234
2235 /* root-item.c */
2236 int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
2237                        struct btrfs_root *tree_root,
2238                        u64 root_id, u8 type, u64 ref_id,
2239                        u64 dirid, u64 sequence,
2240                        const char *name, int name_len);
2241 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2242                    struct btrfs_key *key);
2243 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
2244                       *root, struct btrfs_key *key, struct btrfs_root_item
2245                       *item);
2246 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
2247                       *root, struct btrfs_key *key, struct btrfs_root_item
2248                       *item);
2249 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
2250                          btrfs_root_item *item, struct btrfs_key *key);
2251 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
2252                           struct btrfs_root *latest_root);
2253 /* dir-item.c */
2254 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
2255                           *root, const char *name, int name_len, u64 dir,
2256                           struct btrfs_key *location, u8 type, u64 index);
2257 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
2258                                              struct btrfs_root *root,
2259                                              struct btrfs_path *path, u64 dir,
2260                                              const char *name, int name_len,
2261                                              int mod);
2262 struct btrfs_dir_item *
2263 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
2264                             struct btrfs_root *root,
2265                             struct btrfs_path *path, u64 dir,
2266                             u64 objectid, const char *name, int name_len,
2267                             int mod);
2268 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
2269                               struct btrfs_path *path,
2270                               const char *name, int name_len);
2271 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
2272                               struct btrfs_root *root,
2273                               struct btrfs_path *path,
2274                               struct btrfs_dir_item *di);
2275 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
2276                             struct btrfs_root *root, const char *name,
2277                             u16 name_len, const void *data, u16 data_len,
2278                             u64 dir);
2279 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
2280                                           struct btrfs_root *root,
2281                                           struct btrfs_path *path, u64 dir,
2282                                           const char *name, u16 name_len,
2283                                           int mod);
2284 /* inode-map.c */
2285 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
2286                              struct btrfs_root *fs_root,
2287                              u64 dirid, u64 *objectid);
2288 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
2289
2290 /* inode-item.c */
2291 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
2292                            struct btrfs_root *root,
2293                            const char *name, int name_len,
2294                            u64 inode_objectid, u64 ref_objectid, u64 index);
2295 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
2296                            struct btrfs_root *root,
2297                            const char *name, int name_len,
2298                            u64 inode_objectid, u64 ref_objectid);
2299 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
2300                              struct btrfs_root *root,
2301                              struct btrfs_path *path, u64 objectid);
2302 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2303                        *root, u64 objectid, struct btrfs_inode_item
2304                        *inode_item);
2305 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2306                        *root, struct btrfs_path *path,
2307                        struct btrfs_key *location, int mod);
2308
2309 /* file-item.c */
2310 int btrfs_del_csums(struct btrfs_trans_handle *trans,
2311                     struct btrfs_root *root, u64 bytenr, u64 len);
2312 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
2313                              struct btrfs_root *root,
2314                              u64 objectid, u64 pos, u64 offset,
2315                              u64 disk_num_bytes,
2316                              u64 num_bytes);
2317 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
2318                                 struct btrfs_root *root, u64 objectid,
2319                                 u64 offset, char *buffer, size_t size);
2320 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
2321                              struct btrfs_root *root,
2322                              struct btrfs_path *path, u64 objectid,
2323                              u64 bytenr, int mod);
2324 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
2325                           struct btrfs_root *root, u64 alloc_end,
2326                           u64 bytenr, char *data, size_t len);
2327 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
2328                                           struct btrfs_root *root,
2329                                           struct btrfs_path *path,
2330                                           u64 bytenr, int cow);
2331 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
2332                         struct btrfs_root *root, struct btrfs_path *path,
2333                         u64 isize);
2334 #endif