Btrfs progs: quota groups support
[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 {
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
654         /*
655          * The following fields appear after subvol_uuids+subvol_times
656          * were introduced.
657          */
658
659         /*
660          * This generation number is used to test if the new fields are valid
661          * and up to date while reading the root item. Everytime the root item
662          * is written out, the "generation" field is copied into this field. If
663          * anyone ever mounted the fs with an older kernel, we will have
664          * mismatching generation values here and thus must invalidate the
665          * new fields. See btrfs_update_root and btrfs_find_last_root for
666          * details.
667          * the offset of generation_v2 is also used as the start for the memset
668          * when invalidating the fields.
669          */
670         __le64 generation_v2;
671         u8 uuid[BTRFS_UUID_SIZE];
672         u8 parent_uuid[BTRFS_UUID_SIZE];
673         u8 received_uuid[BTRFS_UUID_SIZE];
674         __le64 ctransid; /* updated when an inode changes */
675         __le64 otransid; /* trans when created */
676         __le64 stransid; /* trans when sent. non-zero for received subvol */
677         __le64 rtransid; /* trans when received. non-zero for received subvol */
678         struct btrfs_timespec ctime;
679         struct btrfs_timespec otime;
680         struct btrfs_timespec stime;
681         struct btrfs_timespec rtime;
682         __le64 reserved[8]; /* for future */
683 } __attribute__ ((__packed__));
684
685 /*
686  * this is used for both forward and backward root refs
687  */
688 struct btrfs_root_ref {
689         __le64 dirid;
690         __le64 sequence;
691         __le16 name_len;
692 } __attribute__ ((__packed__));
693
694 #define BTRFS_FILE_EXTENT_INLINE 0
695 #define BTRFS_FILE_EXTENT_REG 1
696 #define BTRFS_FILE_EXTENT_PREALLOC 2
697
698 struct btrfs_file_extent_item {
699         /*
700          * transaction id that created this extent
701          */
702         __le64 generation;
703         /*
704          * max number of bytes to hold this extent in ram
705          * when we split a compressed extent we can't know how big
706          * each of the resulting pieces will be.  So, this is
707          * an upper limit on the size of the extent in ram instead of
708          * an exact limit.
709          */
710         __le64 ram_bytes;
711
712         /*
713          * 32 bits for the various ways we might encode the data,
714          * including compression and encryption.  If any of these
715          * are set to something a given disk format doesn't understand
716          * it is treated like an incompat flag for reading and writing,
717          * but not for stat.
718          */
719         u8 compression;
720         u8 encryption;
721         __le16 other_encoding; /* spare for later use */
722
723         /* are we inline data or a real extent? */
724         u8 type;
725
726         /*
727          * disk space consumed by the extent, checksum blocks are included
728          * in these numbers
729          */
730         __le64 disk_bytenr;
731         __le64 disk_num_bytes;
732         /*
733          * the logical offset in file blocks (no csums)
734          * this extent record is for.  This allows a file extent to point
735          * into the middle of an existing extent on disk, sharing it
736          * between two snapshots (useful if some bytes in the middle of the
737          * extent have changed
738          */
739         __le64 offset;
740         /*
741          * the logical number of file blocks (no csums included)
742          */
743         __le64 num_bytes;
744
745 } __attribute__ ((__packed__));
746
747 struct btrfs_csum_item {
748         u8 csum;
749 } __attribute__ ((__packed__));
750
751 /* tag for the radix tree of block groups in ram */
752 #define BTRFS_BLOCK_GROUP_DATA          (1ULL << 0)
753 #define BTRFS_BLOCK_GROUP_SYSTEM        (1ULL << 1)
754 #define BTRFS_BLOCK_GROUP_METADATA      (1ULL << 2)
755 #define BTRFS_BLOCK_GROUP_RAID0         (1ULL << 3)
756 #define BTRFS_BLOCK_GROUP_RAID1         (1ULL << 4)
757 #define BTRFS_BLOCK_GROUP_DUP           (1ULL << 5)
758 #define BTRFS_BLOCK_GROUP_RAID10        (1ULL << 6)
759 #define BTRFS_BLOCK_GROUP_RESERVED      BTRFS_AVAIL_ALLOC_BIT_SINGLE
760
761 /* used in struct btrfs_balance_args fields */
762 #define BTRFS_AVAIL_ALLOC_BIT_SINGLE    (1ULL << 48)
763
764 #define BTRFS_QGROUP_STATUS_OFF                 0
765 #define BTRFS_QGROUP_STATUS_ON                  1
766 #define BTRFS_QGROUP_STATUS_SCANNING            2
767
768 #define BTRFS_QGROUP_STATUS_FLAG_INCONSISTENT   (1 << 0)
769
770 struct btrfs_qgroup_status_item {
771         __le64 version;
772         __le64 generation;
773         __le64 flags;
774         __le64 scan;            /* progress during scanning */
775 } __attribute__ ((__packed__));
776
777 struct btrfs_block_group_item {
778         __le64 used;
779         __le64 chunk_objectid;
780         __le64 flags;
781 } __attribute__ ((__packed__));
782
783 struct btrfs_qgroup_info_item {
784         __le64 generation;
785         __le64 referenced;
786         __le64 referenced_compressed;
787         __le64 exclusive;
788         __le64 exclusive_compressed;
789 } __attribute__ ((__packed__));
790
791 /* flags definition for qgroup limits */
792 #define BTRFS_QGROUP_LIMIT_MAX_RFER     (1ULL << 0)
793 #define BTRFS_QGROUP_LIMIT_MAX_EXCL     (1ULL << 1)
794 #define BTRFS_QGROUP_LIMIT_RSV_RFER     (1ULL << 2)
795 #define BTRFS_QGROUP_LIMIT_RSV_EXCL     (1ULL << 3)
796 #define BTRFS_QGROUP_LIMIT_RFER_CMPR    (1ULL << 4)
797 #define BTRFS_QGROUP_LIMIT_EXCL_CMPR    (1ULL << 5)
798
799 struct btrfs_qgroup_limit_item {
800         __le64 flags;
801         __le64 max_referenced;
802         __le64 max_exclusive;
803         __le64 rsv_referenced;
804         __le64 rsv_exclusive;
805 } __attribute__ ((__packed__));
806
807 struct btrfs_space_info {
808         u64 flags;
809         u64 total_bytes;
810         u64 bytes_used;
811         u64 bytes_pinned;
812         int full;
813         struct list_head list;
814 };
815
816 struct btrfs_block_group_cache {
817         struct cache_extent cache;
818         struct btrfs_key key;
819         struct btrfs_block_group_item item;
820         struct btrfs_space_info *space_info;
821         u64 pinned;
822         u64 flags;
823         int cached;
824         int ro;
825 };
826
827 struct btrfs_extent_ops {
828        int (*alloc_extent)(struct btrfs_root *root, u64 num_bytes,
829                            u64 hint_byte, struct btrfs_key *ins);
830        int (*free_extent)(struct btrfs_root *root, u64 bytenr,
831                           u64 num_bytes);
832 };
833
834 struct btrfs_device;
835 struct btrfs_fs_devices;
836 struct btrfs_fs_info {
837         u8 fsid[BTRFS_FSID_SIZE];
838         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
839         struct btrfs_root *fs_root;
840         struct btrfs_root *extent_root;
841         struct btrfs_root *tree_root;
842         struct btrfs_root *chunk_root;
843         struct btrfs_root *dev_root;
844         struct btrfs_root *csum_root;
845
846         struct cache_tree fs_root_cache;
847
848         /* the log root tree is a directory of all the other log roots */
849         struct btrfs_root *log_root_tree;
850
851         struct extent_io_tree extent_cache;
852         struct extent_io_tree free_space_cache;
853         struct extent_io_tree block_group_cache;
854         struct extent_io_tree pinned_extents;
855         struct extent_io_tree pending_del;
856         struct extent_io_tree extent_ins;
857
858         /* logical->physical extent mapping */
859         struct btrfs_mapping_tree mapping_tree;
860
861         u64 generation;
862         u64 last_trans_committed;
863
864         u64 avail_data_alloc_bits;
865         u64 avail_metadata_alloc_bits;
866         u64 avail_system_alloc_bits;
867         u64 data_alloc_profile;
868         u64 metadata_alloc_profile;
869         u64 system_alloc_profile;
870         u64 alloc_start;
871
872         struct btrfs_trans_handle *running_transaction;
873         struct btrfs_super_block super_copy;
874         struct mutex fs_mutex;
875
876         u64 super_bytenr;
877         u64 total_pinned;
878
879         struct btrfs_extent_ops *extent_ops;
880         struct list_head dirty_cowonly_roots;
881
882         struct btrfs_fs_devices *fs_devices;
883         struct list_head space_info;
884         int system_allocs;
885         int readonly;
886         int (*free_extent_hook)(struct btrfs_trans_handle *trans,
887                                 struct btrfs_root *root,
888                                 u64 bytenr, u64 num_bytes, u64 parent,
889                                 u64 root_objectid, u64 owner, u64 offset,
890                                 int refs_to_drop);
891         struct cache_tree *fsck_extent_cache;
892         struct cache_tree *corrupt_blocks;
893 };
894
895 /*
896  * in ram representation of the tree.  extent_root is used for all allocations
897  * and for the extent tree extent_root root.
898  */
899 struct btrfs_root {
900         struct extent_buffer *node;
901         struct extent_buffer *commit_root;
902         struct btrfs_root_item root_item;
903         struct btrfs_key root_key;
904         struct btrfs_fs_info *fs_info;
905         u64 objectid;
906         u64 last_trans;
907
908         /* data allocations are done in sectorsize units */
909         u32 sectorsize;
910
911         /* node allocations are done in nodesize units */
912         u32 nodesize;
913
914         /* leaf allocations are done in leafsize units */
915         u32 leafsize;
916
917         /* leaf allocations are done in leafsize units */
918         u32 stripesize;
919
920         int ref_cows;
921         int track_dirty;
922
923
924         u32 type;
925         u64 highest_inode;
926         u64 last_inode_alloc;
927
928         /* the dirty list is only used by non-reference counted roots */
929         struct list_head dirty_list;
930         struct cache_extent cache;
931 };
932
933 /*
934  * inode items have the data typically returned from stat and store other
935  * info about object characteristics.  There is one for every file and dir in
936  * the FS
937  */
938 #define BTRFS_INODE_ITEM_KEY            1
939 #define BTRFS_INODE_REF_KEY             12
940 #define BTRFS_XATTR_ITEM_KEY            24
941 #define BTRFS_ORPHAN_ITEM_KEY           48
942
943 #define BTRFS_DIR_LOG_ITEM_KEY  60
944 #define BTRFS_DIR_LOG_INDEX_KEY 72
945 /*
946  * dir items are the name -> inode pointers in a directory.  There is one
947  * for every name in a directory.
948  */
949 #define BTRFS_DIR_ITEM_KEY      84
950 #define BTRFS_DIR_INDEX_KEY     96
951
952 /*
953  * extent data is for file data
954  */
955 #define BTRFS_EXTENT_DATA_KEY   108
956
957 /*
958  * csum items have the checksums for data in the extents
959  */
960 #define BTRFS_CSUM_ITEM_KEY     120
961 /*
962  * extent csums are stored in a separate tree and hold csums for
963  * an entire extent on disk.
964  */
965 #define BTRFS_EXTENT_CSUM_KEY   128
966
967 /*
968  * root items point to tree roots.  There are typically in the root
969  * tree used by the super block to find all the other trees
970  */
971 #define BTRFS_ROOT_ITEM_KEY     132
972
973 /*
974  * root backrefs tie subvols and snapshots to the directory entries that
975  * reference them
976  */
977 #define BTRFS_ROOT_BACKREF_KEY  144
978
979 /*
980  * root refs make a fast index for listing all of the snapshots and
981  * subvolumes referenced by a given root.  They point directly to the
982  * directory item in the root that references the subvol
983  */
984 #define BTRFS_ROOT_REF_KEY      156
985
986 /*
987  * extent items are in the extent map tree.  These record which blocks
988  * are used, and how many references there are to each block
989  */
990 #define BTRFS_EXTENT_ITEM_KEY   168
991
992 #define BTRFS_TREE_BLOCK_REF_KEY        176
993
994 #define BTRFS_EXTENT_DATA_REF_KEY       178
995
996 /* old style extent backrefs */
997 #define BTRFS_EXTENT_REF_V0_KEY         180
998
999 #define BTRFS_SHARED_BLOCK_REF_KEY      182
1000
1001 #define BTRFS_SHARED_DATA_REF_KEY       184
1002
1003
1004 /*
1005  * block groups give us hints into the extent allocation trees.  Which
1006  * blocks are free etc etc
1007  */
1008 #define BTRFS_BLOCK_GROUP_ITEM_KEY 192
1009
1010 #define BTRFS_DEV_EXTENT_KEY    204
1011 #define BTRFS_DEV_ITEM_KEY      216
1012 #define BTRFS_CHUNK_ITEM_KEY    228
1013
1014 #define BTRFS_BALANCE_ITEM_KEY  248
1015
1016 /*
1017  * quota groups
1018  */
1019 #define BTRFS_QGROUP_STATUS_KEY         240
1020 #define BTRFS_QGROUP_INFO_KEY           242
1021 #define BTRFS_QGROUP_LIMIT_KEY          244
1022 #define BTRFS_QGROUP_RELATION_KEY       246
1023
1024 /*
1025  * string items are for debugging.  They just store a short string of
1026  * data in the FS
1027  */
1028 #define BTRFS_STRING_ITEM_KEY   253
1029 /*
1030  * Inode flags
1031  */
1032 #define BTRFS_INODE_NODATASUM           (1 << 0)
1033 #define BTRFS_INODE_NODATACOW           (1 << 1)
1034 #define BTRFS_INODE_READONLY            (1 << 2)
1035
1036 #define read_eb_member(eb, ptr, type, member, result) (                 \
1037         read_extent_buffer(eb, (char *)(result),                        \
1038                            ((unsigned long)(ptr)) +                     \
1039                             offsetof(type, member),                     \
1040                            sizeof(((type *)0)->member)))
1041
1042 #define write_eb_member(eb, ptr, type, member, result) (                \
1043         write_extent_buffer(eb, (char *)(result),                       \
1044                            ((unsigned long)(ptr)) +                     \
1045                             offsetof(type, member),                     \
1046                            sizeof(((type *)0)->member)))
1047
1048 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits)             \
1049 static inline u##bits btrfs_##name(struct extent_buffer *eb)            \
1050 {                                                                       \
1051         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
1052         return le##bits##_to_cpu(h->member);                            \
1053 }                                                                       \
1054 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
1055                                     u##bits val)                        \
1056 {                                                                       \
1057         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
1058         h->member = cpu_to_le##bits(val);                               \
1059 }
1060
1061 #define BTRFS_SETGET_FUNCS(name, type, member, bits)                    \
1062 static inline u##bits btrfs_##name(struct extent_buffer *eb,            \
1063                                    type *s)                             \
1064 {                                                                       \
1065         unsigned long offset = (unsigned long)s;                        \
1066         type *p = (type *) (eb->data + offset);                         \
1067         return le##bits##_to_cpu(p->member);                            \
1068 }                                                                       \
1069 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
1070                                     type *s, u##bits val)               \
1071 {                                                                       \
1072         unsigned long offset = (unsigned long)s;                        \
1073         type *p = (type *) (eb->data + offset);                         \
1074         p->member = cpu_to_le##bits(val);                               \
1075 }
1076
1077 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits)              \
1078 static inline u##bits btrfs_##name(type *s)                             \
1079 {                                                                       \
1080         return le##bits##_to_cpu(s->member);                            \
1081 }                                                                       \
1082 static inline void btrfs_set_##name(type *s, u##bits val)               \
1083 {                                                                       \
1084         s->member = cpu_to_le##bits(val);                               \
1085 }
1086
1087 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
1088 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
1089 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1090 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1091 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
1092 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1093                    start_offset, 64);
1094 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1095 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
1096 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1097 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
1098 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
1099 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
1100
1101 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1102 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1103                          total_bytes, 64);
1104 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1105                          bytes_used, 64);
1106 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1107                          io_align, 32);
1108 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1109                          io_width, 32);
1110 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1111                          sector_size, 32);
1112 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1113 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1114                          dev_group, 32);
1115 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1116                          seek_speed, 8);
1117 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1118                          bandwidth, 8);
1119 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1120                          generation, 64);
1121
1122 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
1123 {
1124         return (char *)d + offsetof(struct btrfs_dev_item, uuid);
1125 }
1126
1127 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
1128 {
1129         return (char *)d + offsetof(struct btrfs_dev_item, fsid);
1130 }
1131
1132 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
1133 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1134 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1135 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1136 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1137 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1138 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1139 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
1140 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
1141 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1142 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1143
1144 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1145 {
1146         return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1147 }
1148
1149 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
1150 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1151 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1152                          stripe_len, 64);
1153 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1154                          io_align, 32);
1155 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1156                          io_width, 32);
1157 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1158                          sector_size, 32);
1159 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1160 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1161                          num_stripes, 16);
1162 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1163                          sub_stripes, 16);
1164 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1165 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1166
1167 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1168                                                    int nr)
1169 {
1170         unsigned long offset = (unsigned long)c;
1171         offset += offsetof(struct btrfs_chunk, stripe);
1172         offset += nr * sizeof(struct btrfs_stripe);
1173         return (struct btrfs_stripe *)offset;
1174 }
1175
1176 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1177 {
1178         return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1179 }
1180
1181 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
1182                                          struct btrfs_chunk *c, int nr)
1183 {
1184         return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1185 }
1186
1187 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
1188                                              struct btrfs_chunk *c, int nr,
1189                                              u64 val)
1190 {
1191         btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
1192 }
1193
1194 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
1195                                          struct btrfs_chunk *c, int nr)
1196 {
1197         return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1198 }
1199
1200 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
1201                                              struct btrfs_chunk *c, int nr,
1202                                              u64 val)
1203 {
1204         btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
1205 }
1206
1207 /* struct btrfs_block_group_item */
1208 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
1209                          used, 64);
1210 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
1211                          used, 64);
1212 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
1213                         struct btrfs_block_group_item, chunk_objectid, 64);
1214
1215 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
1216                    struct btrfs_block_group_item, chunk_objectid, 64);
1217 BTRFS_SETGET_FUNCS(disk_block_group_flags,
1218                    struct btrfs_block_group_item, flags, 64);
1219 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1220                         struct btrfs_block_group_item, flags, 64);
1221
1222 /* struct btrfs_inode_ref */
1223 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1224 BTRFS_SETGET_STACK_FUNCS(stack_inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1225 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
1226
1227 /* struct btrfs_inode_item */
1228 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
1229 BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
1230 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
1231 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1232 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
1233 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1234 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1235 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1236 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1237 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1238 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1239 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1240
1241 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
1242                          struct btrfs_inode_item, generation, 64);
1243 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence,
1244                          struct btrfs_inode_item, generation, 64);
1245 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
1246                          struct btrfs_inode_item, size, 64);
1247 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
1248                          struct btrfs_inode_item, nbytes, 64);
1249 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
1250                          struct btrfs_inode_item, block_group, 64);
1251 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
1252                          struct btrfs_inode_item, nlink, 32);
1253 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
1254                          struct btrfs_inode_item, uid, 32);
1255 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
1256                          struct btrfs_inode_item, gid, 32);
1257 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
1258                          struct btrfs_inode_item, mode, 32);
1259 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
1260                          struct btrfs_inode_item, rdev, 64);
1261 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
1262                          struct btrfs_inode_item, flags, 64);
1263
1264 static inline struct btrfs_timespec *
1265 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
1266 {
1267         unsigned long ptr = (unsigned long)inode_item;
1268         ptr += offsetof(struct btrfs_inode_item, atime);
1269         return (struct btrfs_timespec *)ptr;
1270 }
1271
1272 static inline struct btrfs_timespec *
1273 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
1274 {
1275         unsigned long ptr = (unsigned long)inode_item;
1276         ptr += offsetof(struct btrfs_inode_item, mtime);
1277         return (struct btrfs_timespec *)ptr;
1278 }
1279
1280 static inline struct btrfs_timespec *
1281 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
1282 {
1283         unsigned long ptr = (unsigned long)inode_item;
1284         ptr += offsetof(struct btrfs_inode_item, ctime);
1285         return (struct btrfs_timespec *)ptr;
1286 }
1287
1288 static inline struct btrfs_timespec *
1289 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
1290 {
1291         unsigned long ptr = (unsigned long)inode_item;
1292         ptr += offsetof(struct btrfs_inode_item, otime);
1293         return (struct btrfs_timespec *)ptr;
1294 }
1295
1296 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1297 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
1298 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
1299                          sec, 64);
1300 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
1301                          nsec, 32);
1302
1303 /* struct btrfs_dev_extent */
1304 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1305                    chunk_tree, 64);
1306 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1307                    chunk_objectid, 64);
1308 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1309                    chunk_offset, 64);
1310 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1311
1312 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
1313 {
1314         unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
1315         return (u8 *)((unsigned long)dev + ptr);
1316 }
1317
1318
1319 /* struct btrfs_extent_item */
1320 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1321 BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1322                    generation, 64);
1323 BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
1324
1325 BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
1326
1327 BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1328
1329 static inline void btrfs_tree_block_key(struct extent_buffer *eb,
1330                                         struct btrfs_tree_block_info *item,
1331                                         struct btrfs_disk_key *key)
1332 {
1333         read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1334 }
1335
1336 static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
1337                                             struct btrfs_tree_block_info *item,
1338                                             struct btrfs_disk_key *key)
1339 {
1340         write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1341 }
1342
1343 BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1344                    root, 64);
1345 BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1346                    objectid, 64);
1347 BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1348                    offset, 64);
1349 BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1350                    count, 32);
1351
1352 BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1353                    count, 32);
1354
1355 BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1356                    type, 8);
1357 BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1358                    offset, 64);
1359
1360 static inline u32 btrfs_extent_inline_ref_size(int type)
1361 {
1362         if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1363             type == BTRFS_SHARED_BLOCK_REF_KEY)
1364                 return sizeof(struct btrfs_extent_inline_ref);
1365         if (type == BTRFS_SHARED_DATA_REF_KEY)
1366                 return sizeof(struct btrfs_shared_data_ref) +
1367                        sizeof(struct btrfs_extent_inline_ref);
1368         if (type == BTRFS_EXTENT_DATA_REF_KEY)
1369                 return sizeof(struct btrfs_extent_data_ref) +
1370                        offsetof(struct btrfs_extent_inline_ref, offset);
1371         BUG();
1372         return 0;
1373 }
1374
1375 BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
1376 BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
1377                    generation, 64);
1378 BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
1379 BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
1380
1381 /* struct btrfs_node */
1382 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1383 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1384
1385 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
1386 {
1387         unsigned long ptr;
1388         ptr = offsetof(struct btrfs_node, ptrs) +
1389                 sizeof(struct btrfs_key_ptr) * nr;
1390         return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1391 }
1392
1393 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1394                                            int nr, u64 val)
1395 {
1396         unsigned long ptr;
1397         ptr = offsetof(struct btrfs_node, ptrs) +
1398                 sizeof(struct btrfs_key_ptr) * nr;
1399         btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1400 }
1401
1402 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1403 {
1404         unsigned long ptr;
1405         ptr = offsetof(struct btrfs_node, ptrs) +
1406                 sizeof(struct btrfs_key_ptr) * nr;
1407         return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1408 }
1409
1410 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1411                                                  int nr, u64 val)
1412 {
1413         unsigned long ptr;
1414         ptr = offsetof(struct btrfs_node, ptrs) +
1415                 sizeof(struct btrfs_key_ptr) * nr;
1416         btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1417 }
1418
1419 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1420 {
1421         return offsetof(struct btrfs_node, ptrs) +
1422                 sizeof(struct btrfs_key_ptr) * nr;
1423 }
1424
1425 static inline void btrfs_node_key(struct extent_buffer *eb,
1426                                   struct btrfs_disk_key *disk_key, int nr)
1427 {
1428         unsigned long ptr;
1429         ptr = btrfs_node_key_ptr_offset(nr);
1430         read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1431                        struct btrfs_key_ptr, key, disk_key);
1432 }
1433
1434 static inline void btrfs_set_node_key(struct extent_buffer *eb,
1435                                       struct btrfs_disk_key *disk_key, int nr)
1436 {
1437         unsigned long ptr;
1438         ptr = btrfs_node_key_ptr_offset(nr);
1439         write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1440                        struct btrfs_key_ptr, key, disk_key);
1441 }
1442
1443 /* struct btrfs_item */
1444 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1445 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1446
1447 static inline unsigned long btrfs_item_nr_offset(int nr)
1448 {
1449         return offsetof(struct btrfs_leaf, items) +
1450                 sizeof(struct btrfs_item) * nr;
1451 }
1452
1453 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1454                                                int nr)
1455 {
1456         return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1457 }
1458
1459 static inline u32 btrfs_item_end(struct extent_buffer *eb,
1460                                  struct btrfs_item *item)
1461 {
1462         return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
1463 }
1464
1465 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
1466 {
1467         return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
1468 }
1469
1470 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
1471 {
1472         return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1473 }
1474
1475 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1476 {
1477         return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1478 }
1479
1480 static inline void btrfs_item_key(struct extent_buffer *eb,
1481                            struct btrfs_disk_key *disk_key, int nr)
1482 {
1483         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1484         read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1485 }
1486
1487 static inline void btrfs_set_item_key(struct extent_buffer *eb,
1488                                struct btrfs_disk_key *disk_key, int nr)
1489 {
1490         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1491         write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1492 }
1493
1494 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1495
1496 /*
1497  * struct btrfs_root_ref
1498  */
1499 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1500 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1501 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1502
1503 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1504 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1505 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1506
1507 /* struct btrfs_dir_item */
1508 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1509 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1510 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1511 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1512
1513 BTRFS_SETGET_STACK_FUNCS(stack_dir_name_len, struct btrfs_dir_item, name_len, 16);
1514
1515 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1516                                       struct btrfs_dir_item *item,
1517                                       struct btrfs_disk_key *key)
1518 {
1519         read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1520 }
1521
1522 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1523                                           struct btrfs_dir_item *item,
1524                                           struct btrfs_disk_key *key)
1525 {
1526         write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1527 }
1528
1529 /* struct btrfs_free_space_header */
1530 BTRFS_SETGET_FUNCS(free_space_entries, struct btrfs_free_space_header,
1531                    num_entries, 64);
1532 BTRFS_SETGET_FUNCS(free_space_bitmaps, struct btrfs_free_space_header,
1533                    num_bitmaps, 64);
1534 BTRFS_SETGET_FUNCS(free_space_generation, struct btrfs_free_space_header,
1535                    generation, 64);
1536
1537 static inline void btrfs_free_space_key(struct extent_buffer *eb,
1538                                         struct btrfs_free_space_header *h,
1539                                         struct btrfs_disk_key *key)
1540 {
1541         read_eb_member(eb, h, struct btrfs_free_space_header, location, key);
1542 }
1543
1544 static inline void btrfs_set_free_space_key(struct extent_buffer *eb,
1545                                             struct btrfs_free_space_header *h,
1546                                             struct btrfs_disk_key *key)
1547 {
1548         write_eb_member(eb, h, struct btrfs_free_space_header, location, key);
1549 }
1550
1551 /* struct btrfs_disk_key */
1552 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1553                          objectid, 64);
1554 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1555 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1556
1557 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1558                                          struct btrfs_disk_key *disk)
1559 {
1560         cpu->offset = le64_to_cpu(disk->offset);
1561         cpu->type = disk->type;
1562         cpu->objectid = le64_to_cpu(disk->objectid);
1563 }
1564
1565 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1566                                          struct btrfs_key *cpu)
1567 {
1568         disk->offset = cpu_to_le64(cpu->offset);
1569         disk->type = cpu->type;
1570         disk->objectid = cpu_to_le64(cpu->objectid);
1571 }
1572
1573 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1574                                   struct btrfs_key *key, int nr)
1575 {
1576         struct btrfs_disk_key disk_key;
1577         btrfs_node_key(eb, &disk_key, nr);
1578         btrfs_disk_key_to_cpu(key, &disk_key);
1579 }
1580
1581 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1582                                   struct btrfs_key *key, int nr)
1583 {
1584         struct btrfs_disk_key disk_key;
1585         btrfs_item_key(eb, &disk_key, nr);
1586         btrfs_disk_key_to_cpu(key, &disk_key);
1587 }
1588
1589 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1590                                       struct btrfs_dir_item *item,
1591                                       struct btrfs_key *key)
1592 {
1593         struct btrfs_disk_key disk_key;
1594         btrfs_dir_item_key(eb, item, &disk_key);
1595         btrfs_disk_key_to_cpu(key, &disk_key);
1596 }
1597
1598
1599 static inline u8 btrfs_key_type(struct btrfs_key *key)
1600 {
1601         return key->type;
1602 }
1603
1604 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1605 {
1606         key->type = val;
1607 }
1608
1609 /* struct btrfs_header */
1610 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1611 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1612                           generation, 64);
1613 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1614 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1615 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1616 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1617
1618 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1619 {
1620         return (btrfs_header_flags(eb) & flag) == flag;
1621 }
1622
1623 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1624 {
1625         u64 flags = btrfs_header_flags(eb);
1626         btrfs_set_header_flags(eb, flags | flag);
1627         return (flags & flag) == flag;
1628 }
1629
1630 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1631 {
1632         u64 flags = btrfs_header_flags(eb);
1633         btrfs_set_header_flags(eb, flags & ~flag);
1634         return (flags & flag) == flag;
1635 }
1636
1637 static inline int btrfs_header_backref_rev(struct extent_buffer *eb)
1638 {
1639         u64 flags = btrfs_header_flags(eb);
1640         return flags >> BTRFS_BACKREF_REV_SHIFT;
1641 }
1642
1643 static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
1644                                                 int rev)
1645 {
1646         u64 flags = btrfs_header_flags(eb);
1647         flags &= ~BTRFS_BACKREF_REV_MASK;
1648         flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
1649         btrfs_set_header_flags(eb, flags);
1650 }
1651
1652 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1653 {
1654         unsigned long ptr = offsetof(struct btrfs_header, fsid);
1655         return (u8 *)ptr;
1656 }
1657
1658 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1659 {
1660         unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1661         return (u8 *)ptr;
1662 }
1663
1664 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1665 {
1666         unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1667         return (u8 *)ptr;
1668 }
1669
1670 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1671 {
1672         unsigned long ptr = offsetof(struct btrfs_header, csum);
1673         return (u8 *)ptr;
1674 }
1675
1676 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1677 {
1678         return NULL;
1679 }
1680
1681 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1682 {
1683         return NULL;
1684 }
1685
1686 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1687 {
1688         return NULL;
1689 }
1690
1691 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1692 {
1693         return (btrfs_header_level(eb) == 0);
1694 }
1695
1696 /* struct btrfs_root_item */
1697 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
1698                    generation, 64);
1699 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1700 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1701 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1702
1703 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
1704                          generation, 64);
1705 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1706 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1707 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1708 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1709 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
1710 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1711 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1712 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
1713                          last_snapshot, 64);
1714 BTRFS_SETGET_STACK_FUNCS(root_generation_v2, struct btrfs_root_item,
1715                          generation_v2, 64);
1716 BTRFS_SETGET_STACK_FUNCS(root_ctransid, struct btrfs_root_item,
1717                          ctransid, 64);
1718 BTRFS_SETGET_STACK_FUNCS(root_otransid, struct btrfs_root_item,
1719                          otransid, 64);
1720 BTRFS_SETGET_STACK_FUNCS(root_stransid, struct btrfs_root_item,
1721                          stransid, 64);
1722 BTRFS_SETGET_STACK_FUNCS(root_rtransid, struct btrfs_root_item,
1723                          rtransid, 64);
1724
1725 /* struct btrfs_root_backup */
1726 BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
1727                    tree_root, 64);
1728 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
1729                    tree_root_gen, 64);
1730 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
1731                    tree_root_level, 8);
1732
1733 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
1734                    chunk_root, 64);
1735 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
1736                    chunk_root_gen, 64);
1737 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
1738                    chunk_root_level, 8);
1739
1740 BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
1741                    extent_root, 64);
1742 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
1743                    extent_root_gen, 64);
1744 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
1745                    extent_root_level, 8);
1746
1747 BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
1748                    fs_root, 64);
1749 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
1750                    fs_root_gen, 64);
1751 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
1752                    fs_root_level, 8);
1753
1754 BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
1755                    dev_root, 64);
1756 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
1757                    dev_root_gen, 64);
1758 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
1759                    dev_root_level, 8);
1760
1761 BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
1762                    csum_root, 64);
1763 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
1764                    csum_root_gen, 64);
1765 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
1766                    csum_root_level, 8);
1767 BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
1768                    total_bytes, 64);
1769 BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
1770                    bytes_used, 64);
1771 BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
1772                    num_devices, 64);
1773
1774 /* struct btrfs_super_block */
1775
1776 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1777 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
1778 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1779                          generation, 64);
1780 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1781 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1782                          struct btrfs_super_block, sys_chunk_array_size, 32);
1783 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
1784                          struct btrfs_super_block, chunk_root_generation, 64);
1785 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1786                          root_level, 8);
1787 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1788                          chunk_root, 64);
1789 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1790                          chunk_root_level, 8);
1791 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1792                          log_root, 64);
1793 BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
1794                          log_root_transid, 64);
1795 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1796                          log_root_level, 8);
1797 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1798                          total_bytes, 64);
1799 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1800                          bytes_used, 64);
1801 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1802                          sectorsize, 32);
1803 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1804                          nodesize, 32);
1805 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1806                          leafsize, 32);
1807 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1808                          stripesize, 32);
1809 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1810                          root_dir_objectid, 64);
1811 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1812                          num_devices, 64);
1813 BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
1814                          compat_flags, 64);
1815 BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
1816                          compat_flags, 64);
1817 BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
1818                          incompat_flags, 64);
1819 BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
1820                          csum_type, 16);
1821 BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
1822                          cache_generation, 64);
1823
1824 static inline int btrfs_super_csum_size(struct btrfs_super_block *s)
1825 {
1826         int t = btrfs_super_csum_type(s);
1827         BUG_ON(t >= ARRAY_SIZE(btrfs_csum_sizes));
1828         return btrfs_csum_sizes[t];
1829 }
1830
1831 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1832 {
1833         return offsetof(struct btrfs_leaf, items);
1834 }
1835
1836 /* struct btrfs_file_extent_item */
1837 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1838 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_type, struct btrfs_file_extent_item, type, 8);
1839
1840 static inline unsigned long btrfs_file_extent_inline_start(struct
1841                                                    btrfs_file_extent_item *e)
1842 {
1843         unsigned long offset = (unsigned long)e;
1844         offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1845         return offset;
1846 }
1847
1848 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1849 {
1850         return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1851 }
1852
1853 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1854                    disk_bytenr, 64);
1855 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr, struct btrfs_file_extent_item,
1856                    disk_bytenr, 64);
1857 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1858                    generation, 64);
1859 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation, struct btrfs_file_extent_item,
1860                    generation, 64);
1861 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1862                    disk_num_bytes, 64);
1863 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1864                   offset, 64);
1865 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset, struct btrfs_file_extent_item,
1866                   offset, 64);
1867 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1868                    num_bytes, 64);
1869 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes, struct btrfs_file_extent_item,
1870                    num_bytes, 64);
1871 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
1872                    ram_bytes, 64);
1873 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_ram_bytes, struct btrfs_file_extent_item,
1874                    ram_bytes, 64);
1875 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
1876                    compression, 8);
1877 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression, struct btrfs_file_extent_item,
1878                    compression, 8);
1879 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
1880                    encryption, 8);
1881 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
1882                    other_encoding, 16);
1883
1884 /* btrfs_qgroup_status_item */
1885 BTRFS_SETGET_FUNCS(qgroup_status_version, struct btrfs_qgroup_status_item,
1886                    version, 64);
1887 BTRFS_SETGET_FUNCS(qgroup_status_generation, struct btrfs_qgroup_status_item,
1888                    generation, 64);
1889 BTRFS_SETGET_FUNCS(qgroup_status_flags, struct btrfs_qgroup_status_item,
1890                    flags, 64);
1891 BTRFS_SETGET_FUNCS(qgroup_status_scan, struct btrfs_qgroup_status_item,
1892                    scan, 64);
1893
1894 /* btrfs_qgroup_info_item */
1895 BTRFS_SETGET_FUNCS(qgroup_info_generation, struct btrfs_qgroup_info_item,
1896                    generation, 64);
1897 BTRFS_SETGET_FUNCS(qgroup_info_referenced, struct btrfs_qgroup_info_item,
1898                    referenced, 64);
1899 BTRFS_SETGET_FUNCS(qgroup_info_referenced_compressed,
1900                    struct btrfs_qgroup_info_item, referenced_compressed, 64);
1901 BTRFS_SETGET_FUNCS(qgroup_info_exclusive, struct btrfs_qgroup_info_item,
1902                    exclusive, 64);
1903 BTRFS_SETGET_FUNCS(qgroup_info_exclusive_compressed,
1904                    struct btrfs_qgroup_info_item, exclusive_compressed, 64);
1905
1906 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_generation,
1907                          struct btrfs_qgroup_info_item, generation, 64);
1908 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_referenced,
1909                          struct btrfs_qgroup_info_item, referenced, 64);
1910 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_referenced_compressed,
1911                    struct btrfs_qgroup_info_item, referenced_compressed, 64);
1912 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_exclusive,
1913                          struct btrfs_qgroup_info_item, exclusive, 64);
1914 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_exclusive_compressed,
1915                    struct btrfs_qgroup_info_item, exclusive_compressed, 64);
1916
1917 /* btrfs_qgroup_limit_item */
1918 BTRFS_SETGET_FUNCS(qgroup_limit_flags, struct btrfs_qgroup_limit_item,
1919                    flags, 64);
1920 BTRFS_SETGET_FUNCS(qgroup_limit_max_referenced, struct btrfs_qgroup_limit_item,
1921                    max_referenced, 64);
1922 BTRFS_SETGET_FUNCS(qgroup_limit_max_exclusive, struct btrfs_qgroup_limit_item,
1923                    max_exclusive, 64);
1924 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_referenced, struct btrfs_qgroup_limit_item,
1925                    rsv_referenced, 64);
1926 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_exclusive, struct btrfs_qgroup_limit_item,
1927                    rsv_exclusive, 64);
1928
1929 /* this returns the number of file bytes represented by the inline item.
1930  * If an item is compressed, this is the uncompressed size
1931  */
1932 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1933                                         struct btrfs_file_extent_item *e)
1934 {
1935        return btrfs_file_extent_ram_bytes(eb, e);
1936 }
1937
1938 /*
1939  * this returns the number of bytes used by the item on disk, minus the
1940  * size of any extent headers.  If a file is compressed on disk, this is
1941  * the compressed size
1942  */
1943 static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
1944                                                     struct btrfs_item *e)
1945 {
1946        unsigned long offset;
1947        offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1948        return btrfs_item_size(eb, e) - offset;
1949 }
1950
1951 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1952         if (level == 0)
1953                 return root->leafsize;
1954         return root->nodesize;
1955 }
1956
1957 /* helper function to cast into the data area of the leaf. */
1958 #define btrfs_item_ptr(leaf, slot, type) \
1959         ((type *)(btrfs_leaf_data(leaf) + \
1960         btrfs_item_offset_nr(leaf, slot)))
1961
1962 #define btrfs_item_ptr_offset(leaf, slot) \
1963         ((unsigned long)(btrfs_leaf_data(leaf) + \
1964         btrfs_item_offset_nr(leaf, slot)))
1965
1966 /* extent-tree.c */
1967 int btrfs_fix_block_accounting(struct btrfs_trans_handle *trans,
1968                                  struct btrfs_root *root);
1969 int btrfs_check_block_accounting(struct btrfs_root *root);
1970 void btrfs_pin_extent(struct btrfs_fs_info *fs_info, u64 bytenr, u64 num_bytes);
1971 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1972                          struct btrfs_root *root);
1973 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1974 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1975                                                          btrfs_fs_info *info,
1976                                                          u64 bytenr);
1977 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1978                                                  struct btrfs_block_group_cache
1979                                                  *hint, u64 search_start,
1980                                                  int data, int owner);
1981 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1982                                         struct btrfs_root *root,
1983                                         u32 blocksize, u64 root_objectid,
1984                                         struct btrfs_disk_key *key, int level,
1985                                         u64 hint, u64 empty_size);
1986 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1987                        struct btrfs_root *root,
1988                        u64 num_bytes, u64 parent,
1989                        u64 root_objectid, u64 ref_generation,
1990                        u64 owner, u64 empty_size, u64 hint_byte,
1991                        u64 search_end, struct btrfs_key *ins, int data);
1992 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
1993                              struct btrfs_root *root, u64 bytenr,
1994                              u64 num_bytes, u64 *refs, u64 *flags);
1995 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
1996                           struct btrfs_root *root,
1997                           u64 bytenr, u64 num_bytes, u64 flags);
1998 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1999                   struct extent_buffer *buf, int record_parent);
2000 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2001                   struct extent_buffer *buf, int record_parent);
2002 int btrfs_free_extent(struct btrfs_trans_handle *trans,
2003                       struct btrfs_root *root,
2004                       u64 bytenr, u64 num_bytes, u64 parent,
2005                       u64 root_objectid, u64 owner, u64 offset);
2006 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
2007                                struct btrfs_root *root,
2008                                struct extent_io_tree *unpin);
2009 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2010                                 struct btrfs_root *root,
2011                                 u64 bytenr, u64 num_bytes, u64 parent,
2012                                 u64 root_objectid, u64 ref_generation,
2013                                 u64 owner_objectid);
2014 int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
2015                             struct btrfs_root *root, u64 bytenr,
2016                             u64 orig_parent, u64 parent,
2017                             u64 root_objectid, u64 ref_generation,
2018                             u64 owner_objectid);
2019 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2020                                     struct btrfs_root *root);
2021 int btrfs_free_block_groups(struct btrfs_fs_info *info);
2022 int btrfs_read_block_groups(struct btrfs_root *root);
2023 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2024                            struct btrfs_root *root, u64 bytes_used,
2025                            u64 type, u64 chunk_objectid, u64 chunk_offset,
2026                            u64 size);
2027 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
2028                             struct btrfs_root *root);
2029 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
2030                              struct btrfs_root *root, u64 bytenr, u64 num,
2031                              int alloc, int mark_free);
2032 /* ctree.c */
2033 int btrfs_del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2034                    struct btrfs_path *path, int level, int slot);
2035 int btrfs_check_node(struct btrfs_root *root,
2036                       struct btrfs_disk_key *parent_key,
2037                       struct extent_buffer *buf);
2038 int btrfs_check_leaf(struct btrfs_root *root,
2039                       struct btrfs_disk_key *parent_key,
2040                       struct extent_buffer *buf);
2041 int btrfs_fsck_reinit_root(struct btrfs_trans_handle *trans,
2042                       struct btrfs_root *root);
2043 void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
2044                              int level, int slot, u64 objectid);
2045 struct extent_buffer *read_node_slot(struct btrfs_root *root,
2046                                    struct extent_buffer *parent, int slot);
2047 int btrfs_previous_item(struct btrfs_root *root,
2048                         struct btrfs_path *path, u64 min_objectid,
2049                         int type);
2050 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
2051 int btrfs_cow_block(struct btrfs_trans_handle *trans,
2052                     struct btrfs_root *root, struct extent_buffer *buf,
2053                     struct extent_buffer *parent, int parent_slot,
2054                     struct extent_buffer **cow_ret);
2055 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
2056                              struct btrfs_root *root,
2057                              struct extent_buffer *buf,
2058                              struct extent_buffer *parent, int parent_slot,
2059                              struct extent_buffer **cow_ret,
2060                              u64 search_start, u64 empty_size);
2061 int btrfs_copy_root(struct btrfs_trans_handle *trans,
2062                       struct btrfs_root *root,
2063                       struct extent_buffer *buf,
2064                       struct extent_buffer **cow_ret, u64 new_root_objectid);
2065 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
2066                       *root, struct btrfs_path *path, u32 data_size);
2067 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
2068                         struct btrfs_root *root,
2069                         struct btrfs_path *path,
2070                         u32 new_size, int from_end);
2071 int btrfs_split_item(struct btrfs_trans_handle *trans,
2072                      struct btrfs_root *root,
2073                      struct btrfs_path *path,
2074                      struct btrfs_key *new_key,
2075                      unsigned long split_offset);
2076 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2077                       *root, struct btrfs_key *key, struct btrfs_path *p, int
2078                       ins_len, int cow);
2079 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
2080                        struct btrfs_root *root, struct extent_buffer *parent,
2081                        int start_slot, int cache_only, u64 *last_ret,
2082                        struct btrfs_key *progress);
2083 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
2084 struct btrfs_path *btrfs_alloc_path(void);
2085 void btrfs_free_path(struct btrfs_path *p);
2086 void btrfs_init_path(struct btrfs_path *p);
2087 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2088                    struct btrfs_path *path, int slot, int nr);
2089
2090 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
2091                                  struct btrfs_root *root,
2092                                  struct btrfs_path *path)
2093 {
2094         return btrfs_del_items(trans, root, path, path->slots[0], 1);
2095 }
2096
2097 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
2098                       *root, struct btrfs_key *key, void *data, u32 data_size);
2099 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
2100                              struct btrfs_root *root,
2101                              struct btrfs_path *path,
2102                              struct btrfs_key *cpu_key, u32 *data_size, int nr);
2103
2104 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
2105                                           struct btrfs_root *root,
2106                                           struct btrfs_path *path,
2107                                           struct btrfs_key *key,
2108                                           u32 data_size)
2109 {
2110         return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
2111 }
2112
2113 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
2114 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
2115 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
2116 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
2117                         *root);
2118 int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
2119                             struct btrfs_root *root, struct btrfs_path *path,
2120                             struct btrfs_key *new_key);
2121
2122 /* root-item.c */
2123 int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
2124                        struct btrfs_root *tree_root,
2125                        u64 root_id, u8 type, u64 ref_id,
2126                        u64 dirid, u64 sequence,
2127                        const char *name, int name_len);
2128 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2129                    struct btrfs_key *key);
2130 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
2131                       *root, struct btrfs_key *key, struct btrfs_root_item
2132                       *item);
2133 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
2134                       *root, struct btrfs_key *key, struct btrfs_root_item
2135                       *item);
2136 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
2137                          btrfs_root_item *item, struct btrfs_key *key);
2138 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
2139                           struct btrfs_root *latest_root);
2140 /* dir-item.c */
2141 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
2142                           *root, const char *name, int name_len, u64 dir,
2143                           struct btrfs_key *location, u8 type, u64 index);
2144 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
2145                                              struct btrfs_root *root,
2146                                              struct btrfs_path *path, u64 dir,
2147                                              const char *name, int name_len,
2148                                              int mod);
2149 struct btrfs_dir_item *
2150 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
2151                             struct btrfs_root *root,
2152                             struct btrfs_path *path, u64 dir,
2153                             u64 objectid, const char *name, int name_len,
2154                             int mod);
2155 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
2156                               struct btrfs_path *path,
2157                               const char *name, int name_len);
2158 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
2159                               struct btrfs_root *root,
2160                               struct btrfs_path *path,
2161                               struct btrfs_dir_item *di);
2162 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
2163                             struct btrfs_root *root, const char *name,
2164                             u16 name_len, const void *data, u16 data_len,
2165                             u64 dir);
2166 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
2167                                           struct btrfs_root *root,
2168                                           struct btrfs_path *path, u64 dir,
2169                                           const char *name, u16 name_len,
2170                                           int mod);
2171 /* inode-map.c */
2172 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
2173                              struct btrfs_root *fs_root,
2174                              u64 dirid, u64 *objectid);
2175 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
2176
2177 /* inode-item.c */
2178 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
2179                            struct btrfs_root *root,
2180                            const char *name, int name_len,
2181                            u64 inode_objectid, u64 ref_objectid, u64 index);
2182 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
2183                            struct btrfs_root *root,
2184                            const char *name, int name_len,
2185                            u64 inode_objectid, u64 ref_objectid);
2186 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
2187                              struct btrfs_root *root,
2188                              struct btrfs_path *path, u64 objectid);
2189 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2190                        *root, u64 objectid, struct btrfs_inode_item
2191                        *inode_item);
2192 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2193                        *root, struct btrfs_path *path,
2194                        struct btrfs_key *location, int mod);
2195
2196 /* file-item.c */
2197 int btrfs_del_csums(struct btrfs_trans_handle *trans,
2198                     struct btrfs_root *root, u64 bytenr, u64 len);
2199 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
2200                              struct btrfs_root *root,
2201                              u64 objectid, u64 pos, u64 offset,
2202                              u64 disk_num_bytes,
2203                              u64 num_bytes);
2204 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
2205                                 struct btrfs_root *root, u64 objectid,
2206                                 u64 offset, char *buffer, size_t size);
2207 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
2208                              struct btrfs_root *root,
2209                              struct btrfs_path *path, u64 objectid,
2210                              u64 bytenr, int mod);
2211 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
2212                           struct btrfs_root *root, u64 alloc_end,
2213                           u64 bytenr, char *data, size_t len);
2214 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
2215                                           struct btrfs_root *root,
2216                                           struct btrfs_path *path,
2217                                           u64 bytenr, int cow);
2218 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
2219                         struct btrfs_root *root, struct btrfs_path *path,
2220                         u64 isize);
2221 #endif