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