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