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