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