Turn off some commands in Makefile
[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 };
801
802 /*
803  * in ram representation of the tree.  extent_root is used for all allocations
804  * and for the extent tree extent_root root.
805  */
806 struct btrfs_root {
807         struct extent_buffer *node;
808         struct extent_buffer *commit_root;
809         struct btrfs_root_item root_item;
810         struct btrfs_key root_key;
811         struct btrfs_fs_info *fs_info;
812         u64 objectid;
813         u64 last_trans;
814
815         /* data allocations are done in sectorsize units */
816         u32 sectorsize;
817
818         /* node allocations are done in nodesize units */
819         u32 nodesize;
820
821         /* leaf allocations are done in leafsize units */
822         u32 leafsize;
823
824         /* leaf allocations are done in leafsize units */
825         u32 stripesize;
826
827         int ref_cows;
828         int track_dirty;
829
830
831         u32 type;
832         u64 highest_inode;
833         u64 last_inode_alloc;
834
835         /* the dirty list is only used by non-reference counted roots */
836         struct list_head dirty_list;
837         struct cache_extent cache;
838 };
839
840 /*
841  * inode items have the data typically returned from stat and store other
842  * info about object characteristics.  There is one for every file and dir in
843  * the FS
844  */
845 #define BTRFS_INODE_ITEM_KEY            1
846 #define BTRFS_INODE_REF_KEY             12
847 #define BTRFS_XATTR_ITEM_KEY            24
848 #define BTRFS_ORPHAN_ITEM_KEY           48
849
850 #define BTRFS_DIR_LOG_ITEM_KEY  60
851 #define BTRFS_DIR_LOG_INDEX_KEY 72
852 /*
853  * dir items are the name -> inode pointers in a directory.  There is one
854  * for every name in a directory.
855  */
856 #define BTRFS_DIR_ITEM_KEY      84
857 #define BTRFS_DIR_INDEX_KEY     96
858
859 /*
860  * extent data is for file data
861  */
862 #define BTRFS_EXTENT_DATA_KEY   108
863
864 /*
865  * csum items have the checksums for data in the extents
866  */
867 #define BTRFS_CSUM_ITEM_KEY     120
868 /*
869  * extent csums are stored in a separate tree and hold csums for
870  * an entire extent on disk.
871  */
872 #define BTRFS_EXTENT_CSUM_KEY   128
873
874 /*
875  * root items point to tree roots.  There are typically in the root
876  * tree used by the super block to find all the other trees
877  */
878 #define BTRFS_ROOT_ITEM_KEY     132
879
880 /*
881  * root backrefs tie subvols and snapshots to the directory entries that
882  * reference them
883  */
884 #define BTRFS_ROOT_BACKREF_KEY  144
885
886 /*
887  * root refs make a fast index for listing all of the snapshots and
888  * subvolumes referenced by a given root.  They point directly to the
889  * directory item in the root that references the subvol
890  */
891 #define BTRFS_ROOT_REF_KEY      156
892
893 /*
894  * extent items are in the extent map tree.  These record which blocks
895  * are used, and how many references there are to each block
896  */
897 #define BTRFS_EXTENT_ITEM_KEY   168
898
899 #define BTRFS_TREE_BLOCK_REF_KEY        176
900
901 #define BTRFS_EXTENT_DATA_REF_KEY       178
902
903 /* old style extent backrefs */
904 #define BTRFS_EXTENT_REF_V0_KEY         180
905
906 #define BTRFS_SHARED_BLOCK_REF_KEY      182
907
908 #define BTRFS_SHARED_DATA_REF_KEY       184
909
910
911 /*
912  * block groups give us hints into the extent allocation trees.  Which
913  * blocks are free etc etc
914  */
915 #define BTRFS_BLOCK_GROUP_ITEM_KEY 192
916
917 #define BTRFS_DEV_EXTENT_KEY    204
918 #define BTRFS_DEV_ITEM_KEY      216
919 #define BTRFS_CHUNK_ITEM_KEY    228
920
921 #define BTRFS_BALANCE_ITEM_KEY  248
922
923 /*
924  * string items are for debugging.  They just store a short string of
925  * data in the FS
926  */
927 #define BTRFS_STRING_ITEM_KEY   253
928 /*
929  * Inode flags
930  */
931 #define BTRFS_INODE_NODATASUM           (1 << 0)
932 #define BTRFS_INODE_NODATACOW           (1 << 1)
933 #define BTRFS_INODE_READONLY            (1 << 2)
934
935 #define read_eb_member(eb, ptr, type, member, result) (                 \
936         read_extent_buffer(eb, (char *)(result),                        \
937                            ((unsigned long)(ptr)) +                     \
938                             offsetof(type, member),                     \
939                            sizeof(((type *)0)->member)))
940
941 #define write_eb_member(eb, ptr, type, member, result) (                \
942         write_extent_buffer(eb, (char *)(result),                       \
943                            ((unsigned long)(ptr)) +                     \
944                             offsetof(type, member),                     \
945                            sizeof(((type *)0)->member)))
946
947 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits)             \
948 static inline u##bits btrfs_##name(struct extent_buffer *eb)            \
949 {                                                                       \
950         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
951         return le##bits##_to_cpu(h->member);                            \
952 }                                                                       \
953 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
954                                     u##bits val)                        \
955 {                                                                       \
956         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
957         h->member = cpu_to_le##bits(val);                               \
958 }
959
960 #define BTRFS_SETGET_FUNCS(name, type, member, bits)                    \
961 static inline u##bits btrfs_##name(struct extent_buffer *eb,            \
962                                    type *s)                             \
963 {                                                                       \
964         unsigned long offset = (unsigned long)s;                        \
965         type *p = (type *) (eb->data + offset);                         \
966         return le##bits##_to_cpu(p->member);                            \
967 }                                                                       \
968 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
969                                     type *s, u##bits val)               \
970 {                                                                       \
971         unsigned long offset = (unsigned long)s;                        \
972         type *p = (type *) (eb->data + offset);                         \
973         p->member = cpu_to_le##bits(val);                               \
974 }
975
976 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits)              \
977 static inline u##bits btrfs_##name(type *s)                             \
978 {                                                                       \
979         return le##bits##_to_cpu(s->member);                            \
980 }                                                                       \
981 static inline void btrfs_set_##name(type *s, u##bits val)               \
982 {                                                                       \
983         s->member = cpu_to_le##bits(val);                               \
984 }
985
986 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
987 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
988 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
989 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
990 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
991 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
992                    start_offset, 64);
993 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
994 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
995 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
996 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
997 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
998 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
999
1000 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1001 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1002                          total_bytes, 64);
1003 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1004                          bytes_used, 64);
1005 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1006                          io_align, 32);
1007 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1008                          io_width, 32);
1009 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1010                          sector_size, 32);
1011 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1012 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1013                          dev_group, 32);
1014 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1015                          seek_speed, 8);
1016 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1017                          bandwidth, 8);
1018 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1019                          generation, 64);
1020
1021 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
1022 {
1023         return (char *)d + offsetof(struct btrfs_dev_item, uuid);
1024 }
1025
1026 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
1027 {
1028         return (char *)d + offsetof(struct btrfs_dev_item, fsid);
1029 }
1030
1031 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
1032 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1033 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1034 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1035 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1036 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1037 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1038 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
1039 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
1040 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1041 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1042
1043 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1044 {
1045         return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1046 }
1047
1048 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
1049 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1050 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1051                          stripe_len, 64);
1052 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1053                          io_align, 32);
1054 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1055                          io_width, 32);
1056 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1057                          sector_size, 32);
1058 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1059 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1060                          num_stripes, 16);
1061 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1062                          sub_stripes, 16);
1063 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1064 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1065
1066 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1067                                                    int nr)
1068 {
1069         unsigned long offset = (unsigned long)c;
1070         offset += offsetof(struct btrfs_chunk, stripe);
1071         offset += nr * sizeof(struct btrfs_stripe);
1072         return (struct btrfs_stripe *)offset;
1073 }
1074
1075 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1076 {
1077         return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1078 }
1079
1080 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
1081                                          struct btrfs_chunk *c, int nr)
1082 {
1083         return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1084 }
1085
1086 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
1087                                              struct btrfs_chunk *c, int nr,
1088                                              u64 val)
1089 {
1090         btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
1091 }
1092
1093 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
1094                                          struct btrfs_chunk *c, int nr)
1095 {
1096         return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1097 }
1098
1099 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
1100                                              struct btrfs_chunk *c, int nr,
1101                                              u64 val)
1102 {
1103         btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
1104 }
1105
1106 /* struct btrfs_block_group_item */
1107 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
1108                          used, 64);
1109 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
1110                          used, 64);
1111 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
1112                         struct btrfs_block_group_item, chunk_objectid, 64);
1113
1114 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
1115                    struct btrfs_block_group_item, chunk_objectid, 64);
1116 BTRFS_SETGET_FUNCS(disk_block_group_flags,
1117                    struct btrfs_block_group_item, flags, 64);
1118 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1119                         struct btrfs_block_group_item, flags, 64);
1120
1121 /* struct btrfs_inode_ref */
1122 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1123 BTRFS_SETGET_STACK_FUNCS(stack_inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1124 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
1125
1126 /* struct btrfs_inode_item */
1127 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
1128 BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
1129 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
1130 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1131 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
1132 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1133 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1134 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1135 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1136 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1137 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1138 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1139
1140 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
1141                          struct btrfs_inode_item, generation, 64);
1142 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence,
1143                          struct btrfs_inode_item, generation, 64);
1144 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
1145                          struct btrfs_inode_item, size, 64);
1146 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
1147                          struct btrfs_inode_item, nbytes, 64);
1148 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
1149                          struct btrfs_inode_item, block_group, 64);
1150 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
1151                          struct btrfs_inode_item, nlink, 32);
1152 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
1153                          struct btrfs_inode_item, uid, 32);
1154 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
1155                          struct btrfs_inode_item, gid, 32);
1156 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
1157                          struct btrfs_inode_item, mode, 32);
1158 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
1159                          struct btrfs_inode_item, rdev, 64);
1160 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
1161                          struct btrfs_inode_item, flags, 64);
1162
1163 static inline struct btrfs_timespec *
1164 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
1165 {
1166         unsigned long ptr = (unsigned long)inode_item;
1167         ptr += offsetof(struct btrfs_inode_item, atime);
1168         return (struct btrfs_timespec *)ptr;
1169 }
1170
1171 static inline struct btrfs_timespec *
1172 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
1173 {
1174         unsigned long ptr = (unsigned long)inode_item;
1175         ptr += offsetof(struct btrfs_inode_item, mtime);
1176         return (struct btrfs_timespec *)ptr;
1177 }
1178
1179 static inline struct btrfs_timespec *
1180 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
1181 {
1182         unsigned long ptr = (unsigned long)inode_item;
1183         ptr += offsetof(struct btrfs_inode_item, ctime);
1184         return (struct btrfs_timespec *)ptr;
1185 }
1186
1187 static inline struct btrfs_timespec *
1188 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
1189 {
1190         unsigned long ptr = (unsigned long)inode_item;
1191         ptr += offsetof(struct btrfs_inode_item, otime);
1192         return (struct btrfs_timespec *)ptr;
1193 }
1194
1195 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1196 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
1197 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
1198                          sec, 64);
1199 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
1200                          nsec, 32);
1201
1202 /* struct btrfs_dev_extent */
1203 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1204                    chunk_tree, 64);
1205 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1206                    chunk_objectid, 64);
1207 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1208                    chunk_offset, 64);
1209 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1210
1211 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
1212 {
1213         unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
1214         return (u8 *)((unsigned long)dev + ptr);
1215 }
1216
1217
1218 /* struct btrfs_extent_item */
1219 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1220 BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1221                    generation, 64);
1222 BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
1223
1224 BTRFS_SETGET_FUNCS(extent_refs_v0, struct btrfs_extent_item_v0, refs, 32);
1225
1226 BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1227
1228 static inline void btrfs_tree_block_key(struct extent_buffer *eb,
1229                                         struct btrfs_tree_block_info *item,
1230                                         struct btrfs_disk_key *key)
1231 {
1232         read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1233 }
1234
1235 static inline void btrfs_set_tree_block_key(struct extent_buffer *eb,
1236                                             struct btrfs_tree_block_info *item,
1237                                             struct btrfs_disk_key *key)
1238 {
1239         write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1240 }
1241
1242 BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1243                    root, 64);
1244 BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1245                    objectid, 64);
1246 BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1247                    offset, 64);
1248 BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1249                    count, 32);
1250
1251 BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1252                    count, 32);
1253
1254 BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1255                    type, 8);
1256 BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1257                    offset, 64);
1258
1259 static inline u32 btrfs_extent_inline_ref_size(int type)
1260 {
1261         if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1262             type == BTRFS_SHARED_BLOCK_REF_KEY)
1263                 return sizeof(struct btrfs_extent_inline_ref);
1264         if (type == BTRFS_SHARED_DATA_REF_KEY)
1265                 return sizeof(struct btrfs_shared_data_ref) +
1266                        sizeof(struct btrfs_extent_inline_ref);
1267         if (type == BTRFS_EXTENT_DATA_REF_KEY)
1268                 return sizeof(struct btrfs_extent_data_ref) +
1269                        offsetof(struct btrfs_extent_inline_ref, offset);
1270         BUG();
1271         return 0;
1272 }
1273
1274 BTRFS_SETGET_FUNCS(ref_root_v0, struct btrfs_extent_ref_v0, root, 64);
1275 BTRFS_SETGET_FUNCS(ref_generation_v0, struct btrfs_extent_ref_v0,
1276                    generation, 64);
1277 BTRFS_SETGET_FUNCS(ref_objectid_v0, struct btrfs_extent_ref_v0, objectid, 64);
1278 BTRFS_SETGET_FUNCS(ref_count_v0, struct btrfs_extent_ref_v0, count, 32);
1279
1280 /* struct btrfs_node */
1281 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1282 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1283
1284 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
1285 {
1286         unsigned long ptr;
1287         ptr = offsetof(struct btrfs_node, ptrs) +
1288                 sizeof(struct btrfs_key_ptr) * nr;
1289         return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1290 }
1291
1292 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1293                                            int nr, u64 val)
1294 {
1295         unsigned long ptr;
1296         ptr = offsetof(struct btrfs_node, ptrs) +
1297                 sizeof(struct btrfs_key_ptr) * nr;
1298         btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1299 }
1300
1301 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1302 {
1303         unsigned long ptr;
1304         ptr = offsetof(struct btrfs_node, ptrs) +
1305                 sizeof(struct btrfs_key_ptr) * nr;
1306         return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1307 }
1308
1309 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1310                                                  int nr, u64 val)
1311 {
1312         unsigned long ptr;
1313         ptr = offsetof(struct btrfs_node, ptrs) +
1314                 sizeof(struct btrfs_key_ptr) * nr;
1315         btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1316 }
1317
1318 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1319 {
1320         return offsetof(struct btrfs_node, ptrs) +
1321                 sizeof(struct btrfs_key_ptr) * nr;
1322 }
1323
1324 static inline void btrfs_node_key(struct extent_buffer *eb,
1325                                   struct btrfs_disk_key *disk_key, int nr)
1326 {
1327         unsigned long ptr;
1328         ptr = btrfs_node_key_ptr_offset(nr);
1329         read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1330                        struct btrfs_key_ptr, key, disk_key);
1331 }
1332
1333 static inline void btrfs_set_node_key(struct extent_buffer *eb,
1334                                       struct btrfs_disk_key *disk_key, int nr)
1335 {
1336         unsigned long ptr;
1337         ptr = btrfs_node_key_ptr_offset(nr);
1338         write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1339                        struct btrfs_key_ptr, key, disk_key);
1340 }
1341
1342 /* struct btrfs_item */
1343 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1344 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1345
1346 static inline unsigned long btrfs_item_nr_offset(int nr)
1347 {
1348         return offsetof(struct btrfs_leaf, items) +
1349                 sizeof(struct btrfs_item) * nr;
1350 }
1351
1352 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1353                                                int nr)
1354 {
1355         return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1356 }
1357
1358 static inline u32 btrfs_item_end(struct extent_buffer *eb,
1359                                  struct btrfs_item *item)
1360 {
1361         return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
1362 }
1363
1364 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
1365 {
1366         return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
1367 }
1368
1369 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
1370 {
1371         return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1372 }
1373
1374 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1375 {
1376         return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1377 }
1378
1379 static inline void btrfs_item_key(struct extent_buffer *eb,
1380                            struct btrfs_disk_key *disk_key, int nr)
1381 {
1382         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1383         read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1384 }
1385
1386 static inline void btrfs_set_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         write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1391 }
1392
1393 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1394
1395 /*
1396  * struct btrfs_root_ref
1397  */
1398 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1399 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1400 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1401
1402 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1403 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1404 BTRFS_SETGET_STACK_FUNCS(stack_root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1405
1406 /* struct btrfs_dir_item */
1407 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1408 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1409 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1410 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1411
1412 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1413                                       struct btrfs_dir_item *item,
1414                                       struct btrfs_disk_key *key)
1415 {
1416         read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1417 }
1418
1419 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1420                                           struct btrfs_dir_item *item,
1421                                           struct btrfs_disk_key *key)
1422 {
1423         write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1424 }
1425
1426 /* struct btrfs_disk_key */
1427 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1428                          objectid, 64);
1429 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1430 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1431
1432 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1433                                          struct btrfs_disk_key *disk)
1434 {
1435         cpu->offset = le64_to_cpu(disk->offset);
1436         cpu->type = disk->type;
1437         cpu->objectid = le64_to_cpu(disk->objectid);
1438 }
1439
1440 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1441                                          struct btrfs_key *cpu)
1442 {
1443         disk->offset = cpu_to_le64(cpu->offset);
1444         disk->type = cpu->type;
1445         disk->objectid = cpu_to_le64(cpu->objectid);
1446 }
1447
1448 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1449                                   struct btrfs_key *key, int nr)
1450 {
1451         struct btrfs_disk_key disk_key;
1452         btrfs_node_key(eb, &disk_key, nr);
1453         btrfs_disk_key_to_cpu(key, &disk_key);
1454 }
1455
1456 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1457                                   struct btrfs_key *key, int nr)
1458 {
1459         struct btrfs_disk_key disk_key;
1460         btrfs_item_key(eb, &disk_key, nr);
1461         btrfs_disk_key_to_cpu(key, &disk_key);
1462 }
1463
1464 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1465                                       struct btrfs_dir_item *item,
1466                                       struct btrfs_key *key)
1467 {
1468         struct btrfs_disk_key disk_key;
1469         btrfs_dir_item_key(eb, item, &disk_key);
1470         btrfs_disk_key_to_cpu(key, &disk_key);
1471 }
1472
1473
1474 static inline u8 btrfs_key_type(struct btrfs_key *key)
1475 {
1476         return key->type;
1477 }
1478
1479 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1480 {
1481         key->type = val;
1482 }
1483
1484 /* struct btrfs_header */
1485 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1486 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1487                           generation, 64);
1488 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1489 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1490 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1491 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1492
1493 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1494 {
1495         return (btrfs_header_flags(eb) & flag) == flag;
1496 }
1497
1498 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1499 {
1500         u64 flags = btrfs_header_flags(eb);
1501         btrfs_set_header_flags(eb, flags | flag);
1502         return (flags & flag) == flag;
1503 }
1504
1505 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1506 {
1507         u64 flags = btrfs_header_flags(eb);
1508         btrfs_set_header_flags(eb, flags & ~flag);
1509         return (flags & flag) == flag;
1510 }
1511
1512 static inline int btrfs_header_backref_rev(struct extent_buffer *eb)
1513 {
1514         u64 flags = btrfs_header_flags(eb);
1515         return flags >> BTRFS_BACKREF_REV_SHIFT;
1516 }
1517
1518 static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
1519                                                 int rev)
1520 {
1521         u64 flags = btrfs_header_flags(eb);
1522         flags &= ~BTRFS_BACKREF_REV_MASK;
1523         flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
1524         btrfs_set_header_flags(eb, flags);
1525 }
1526
1527 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1528 {
1529         unsigned long ptr = offsetof(struct btrfs_header, fsid);
1530         return (u8 *)ptr;
1531 }
1532
1533 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1534 {
1535         unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1536         return (u8 *)ptr;
1537 }
1538
1539 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1540 {
1541         unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1542         return (u8 *)ptr;
1543 }
1544
1545 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1546 {
1547         unsigned long ptr = offsetof(struct btrfs_header, csum);
1548         return (u8 *)ptr;
1549 }
1550
1551 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1552 {
1553         return NULL;
1554 }
1555
1556 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1557 {
1558         return NULL;
1559 }
1560
1561 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1562 {
1563         return NULL;
1564 }
1565
1566 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1567 {
1568         return (btrfs_header_level(eb) == 0);
1569 }
1570
1571 /* struct btrfs_root_item */
1572 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
1573                    generation, 64);
1574 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1575 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1576 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1577
1578 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
1579                          generation, 64);
1580 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1581 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1582 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1583 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1584 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
1585 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1586 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1587 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
1588                          last_snapshot, 64);
1589
1590
1591 /* struct btrfs_root_backup */
1592 BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
1593                    tree_root, 64);
1594 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
1595                    tree_root_gen, 64);
1596 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
1597                    tree_root_level, 8);
1598
1599 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
1600                    chunk_root, 64);
1601 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
1602                    chunk_root_gen, 64);
1603 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
1604                    chunk_root_level, 8);
1605
1606 BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
1607                    extent_root, 64);
1608 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
1609                    extent_root_gen, 64);
1610 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
1611                    extent_root_level, 8);
1612
1613 BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
1614                    fs_root, 64);
1615 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
1616                    fs_root_gen, 64);
1617 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
1618                    fs_root_level, 8);
1619
1620 BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
1621                    dev_root, 64);
1622 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
1623                    dev_root_gen, 64);
1624 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
1625                    dev_root_level, 8);
1626
1627 BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
1628                    csum_root, 64);
1629 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
1630                    csum_root_gen, 64);
1631 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
1632                    csum_root_level, 8);
1633 BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
1634                    total_bytes, 64);
1635 BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
1636                    bytes_used, 64);
1637 BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
1638                    num_devices, 64);
1639
1640 /* struct btrfs_super_block */
1641
1642 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1643 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
1644 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1645                          generation, 64);
1646 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1647 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1648                          struct btrfs_super_block, sys_chunk_array_size, 32);
1649 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
1650                          struct btrfs_super_block, chunk_root_generation, 64);
1651 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1652                          root_level, 8);
1653 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1654                          chunk_root, 64);
1655 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1656                          chunk_root_level, 8);
1657 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1658                          log_root, 64);
1659 BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
1660                          log_root_transid, 64);
1661 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1662                          log_root_level, 8);
1663 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1664                          total_bytes, 64);
1665 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1666                          bytes_used, 64);
1667 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1668                          sectorsize, 32);
1669 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1670                          nodesize, 32);
1671 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1672                          leafsize, 32);
1673 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1674                          stripesize, 32);
1675 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1676                          root_dir_objectid, 64);
1677 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1678                          num_devices, 64);
1679 BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
1680                          compat_flags, 64);
1681 BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
1682                          compat_flags, 64);
1683 BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
1684                          incompat_flags, 64);
1685 BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
1686                          csum_type, 16);
1687 BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
1688                          cache_generation, 64);
1689
1690 static inline int btrfs_super_csum_size(struct btrfs_super_block *s)
1691 {
1692         int t = btrfs_super_csum_type(s);
1693         BUG_ON(t >= ARRAY_SIZE(btrfs_csum_sizes));
1694         return btrfs_csum_sizes[t];
1695 }
1696
1697 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1698 {
1699         return offsetof(struct btrfs_leaf, items);
1700 }
1701
1702 /* struct btrfs_file_extent_item */
1703 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1704 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_type, struct btrfs_file_extent_item, type, 8);
1705
1706 static inline unsigned long btrfs_file_extent_inline_start(struct
1707                                                    btrfs_file_extent_item *e)
1708 {
1709         unsigned long offset = (unsigned long)e;
1710         offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1711         return offset;
1712 }
1713
1714 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1715 {
1716         return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1717 }
1718
1719 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1720                    disk_bytenr, 64);
1721 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr, struct btrfs_file_extent_item,
1722                    disk_bytenr, 64);
1723 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1724                    generation, 64);
1725 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation, struct btrfs_file_extent_item,
1726                    generation, 64);
1727 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1728                    disk_num_bytes, 64);
1729 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1730                   offset, 64);
1731 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset, struct btrfs_file_extent_item,
1732                   offset, 64);
1733 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1734                    num_bytes, 64);
1735 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes, struct btrfs_file_extent_item,
1736                    num_bytes, 64);
1737 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
1738                    ram_bytes, 64);
1739 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_ram_bytes, struct btrfs_file_extent_item,
1740                    ram_bytes, 64);
1741 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
1742                    compression, 8);
1743 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression, struct btrfs_file_extent_item,
1744                    compression, 8);
1745 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
1746                    encryption, 8);
1747 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
1748                    other_encoding, 16);
1749
1750 /* this returns the number of file bytes represented by the inline item.
1751  * If an item is compressed, this is the uncompressed size
1752  */
1753 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1754                                         struct btrfs_file_extent_item *e)
1755 {
1756        return btrfs_file_extent_ram_bytes(eb, e);
1757 }
1758
1759 /*
1760  * this returns the number of bytes used by the item on disk, minus the
1761  * size of any extent headers.  If a file is compressed on disk, this is
1762  * the compressed size
1763  */
1764 static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
1765                                                     struct btrfs_item *e)
1766 {
1767        unsigned long offset;
1768        offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1769        return btrfs_item_size(eb, e) - offset;
1770 }
1771
1772 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1773         if (level == 0)
1774                 return root->leafsize;
1775         return root->nodesize;
1776 }
1777
1778 /* helper function to cast into the data area of the leaf. */
1779 #define btrfs_item_ptr(leaf, slot, type) \
1780         ((type *)(btrfs_leaf_data(leaf) + \
1781         btrfs_item_offset_nr(leaf, slot)))
1782
1783 #define btrfs_item_ptr_offset(leaf, slot) \
1784         ((unsigned long)(btrfs_leaf_data(leaf) + \
1785         btrfs_item_offset_nr(leaf, slot)))
1786
1787 /* extent-tree.c */
1788 int btrfs_fix_block_accounting(struct btrfs_trans_handle *trans,
1789                                  struct btrfs_root *root);
1790 int btrfs_check_block_accounting(struct btrfs_root *root);
1791 void btrfs_pin_extent(struct btrfs_fs_info *fs_info, u64 bytenr, u64 num_bytes);
1792 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1793                          struct btrfs_root *root);
1794 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1795 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1796                                                          btrfs_fs_info *info,
1797                                                          u64 bytenr);
1798 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1799                                                  struct btrfs_block_group_cache
1800                                                  *hint, u64 search_start,
1801                                                  int data, int owner);
1802 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1803                                         struct btrfs_root *root,
1804                                         u32 blocksize, u64 root_objectid,
1805                                         struct btrfs_disk_key *key, int level,
1806                                         u64 hint, u64 empty_size);
1807 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1808                        struct btrfs_root *root,
1809                        u64 num_bytes, u64 parent,
1810                        u64 root_objectid, u64 ref_generation,
1811                        u64 owner, u64 empty_size, u64 hint_byte,
1812                        u64 search_end, struct btrfs_key *ins, int data);
1813 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
1814                              struct btrfs_root *root, u64 bytenr,
1815                              u64 num_bytes, u64 *refs, u64 *flags);
1816 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
1817                           struct btrfs_root *root,
1818                           u64 bytenr, u64 num_bytes, u64 flags);
1819 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1820                   struct extent_buffer *buf, int record_parent);
1821 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1822                   struct extent_buffer *buf, int record_parent);
1823 int btrfs_free_extent(struct btrfs_trans_handle *trans,
1824                       struct btrfs_root *root,
1825                       u64 bytenr, u64 num_bytes, u64 parent,
1826                       u64 root_objectid, u64 owner, u64 offset);
1827 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1828                                struct btrfs_root *root,
1829                                struct extent_io_tree *unpin);
1830 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1831                                 struct btrfs_root *root,
1832                                 u64 bytenr, u64 num_bytes, u64 parent,
1833                                 u64 root_objectid, u64 ref_generation,
1834                                 u64 owner_objectid);
1835 int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1836                             struct btrfs_root *root, u64 bytenr,
1837                             u64 orig_parent, u64 parent,
1838                             u64 root_objectid, u64 ref_generation,
1839                             u64 owner_objectid);
1840 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1841                                     struct btrfs_root *root);
1842 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1843 int btrfs_read_block_groups(struct btrfs_root *root);
1844 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1845                            struct btrfs_root *root, u64 bytes_used,
1846                            u64 type, u64 chunk_objectid, u64 chunk_offset,
1847                            u64 size);
1848 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
1849                             struct btrfs_root *root);
1850 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
1851                              struct btrfs_root *root, u64 bytenr, u64 num,
1852                              int alloc, int mark_free);
1853 /* ctree.c */
1854 void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
1855                              int level, int slot, u64 objectid);
1856 struct extent_buffer *read_node_slot(struct btrfs_root *root,
1857                                    struct extent_buffer *parent, int slot);
1858 int btrfs_previous_item(struct btrfs_root *root,
1859                         struct btrfs_path *path, u64 min_objectid,
1860                         int type);
1861 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1862 int btrfs_cow_block(struct btrfs_trans_handle *trans,
1863                     struct btrfs_root *root, struct extent_buffer *buf,
1864                     struct extent_buffer *parent, int parent_slot,
1865                     struct extent_buffer **cow_ret);
1866 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
1867                              struct btrfs_root *root,
1868                              struct extent_buffer *buf,
1869                              struct extent_buffer *parent, int parent_slot,
1870                              struct extent_buffer **cow_ret,
1871                              u64 search_start, u64 empty_size);
1872 int btrfs_copy_root(struct btrfs_trans_handle *trans,
1873                       struct btrfs_root *root,
1874                       struct extent_buffer *buf,
1875                       struct extent_buffer **cow_ret, u64 new_root_objectid);
1876 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1877                       *root, struct btrfs_path *path, u32 data_size);
1878 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1879                         struct btrfs_root *root,
1880                         struct btrfs_path *path,
1881                         u32 new_size, int from_end);
1882 int btrfs_split_item(struct btrfs_trans_handle *trans,
1883                      struct btrfs_root *root,
1884                      struct btrfs_path *path,
1885                      struct btrfs_key *new_key,
1886                      unsigned long split_offset);
1887 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1888                       *root, struct btrfs_key *key, struct btrfs_path *p, int
1889                       ins_len, int cow);
1890 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1891                        struct btrfs_root *root, struct extent_buffer *parent,
1892                        int start_slot, int cache_only, u64 *last_ret,
1893                        struct btrfs_key *progress);
1894 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1895 struct btrfs_path *btrfs_alloc_path(void);
1896 void btrfs_free_path(struct btrfs_path *p);
1897 void btrfs_init_path(struct btrfs_path *p);
1898 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1899                    struct btrfs_path *path, int slot, int nr);
1900
1901 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1902                                  struct btrfs_root *root,
1903                                  struct btrfs_path *path)
1904 {
1905         return btrfs_del_items(trans, root, path, path->slots[0], 1);
1906 }
1907
1908 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1909                       *root, struct btrfs_key *key, void *data, u32 data_size);
1910 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1911                              struct btrfs_root *root,
1912                              struct btrfs_path *path,
1913                              struct btrfs_key *cpu_key, u32 *data_size, int nr);
1914
1915 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1916                                           struct btrfs_root *root,
1917                                           struct btrfs_path *path,
1918                                           struct btrfs_key *key,
1919                                           u32 data_size)
1920 {
1921         return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1922 }
1923
1924 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1925 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
1926 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
1927 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1928                         *root);
1929 int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1930                             struct btrfs_root *root, struct btrfs_path *path,
1931                             struct btrfs_key *new_key);
1932
1933 /* root-item.c */
1934 int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
1935                        struct btrfs_root *tree_root,
1936                        u64 root_id, u8 type, u64 ref_id,
1937                        u64 dirid, u64 sequence,
1938                        const char *name, int name_len);
1939 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1940                    struct btrfs_key *key);
1941 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1942                       *root, struct btrfs_key *key, struct btrfs_root_item
1943                       *item);
1944 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1945                       *root, struct btrfs_key *key, struct btrfs_root_item
1946                       *item);
1947 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1948                          btrfs_root_item *item, struct btrfs_key *key);
1949 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1950                           struct btrfs_root *latest_root);
1951 /* dir-item.c */
1952 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1953                           *root, const char *name, int name_len, u64 dir,
1954                           struct btrfs_key *location, u8 type, u64 index);
1955 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1956                                              struct btrfs_root *root,
1957                                              struct btrfs_path *path, u64 dir,
1958                                              const char *name, int name_len,
1959                                              int mod);
1960 struct btrfs_dir_item *
1961 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1962                             struct btrfs_root *root,
1963                             struct btrfs_path *path, u64 dir,
1964                             u64 objectid, const char *name, int name_len,
1965                             int mod);
1966 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1967                               struct btrfs_path *path,
1968                               const char *name, int name_len);
1969 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1970                               struct btrfs_root *root,
1971                               struct btrfs_path *path,
1972                               struct btrfs_dir_item *di);
1973 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1974                             struct btrfs_root *root, const char *name,
1975                             u16 name_len, const void *data, u16 data_len,
1976                             u64 dir);
1977 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1978                                           struct btrfs_root *root,
1979                                           struct btrfs_path *path, u64 dir,
1980                                           const char *name, u16 name_len,
1981                                           int mod);
1982 /* inode-map.c */
1983 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1984                              struct btrfs_root *fs_root,
1985                              u64 dirid, u64 *objectid);
1986 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1987
1988 /* inode-item.c */
1989 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1990                            struct btrfs_root *root,
1991                            const char *name, int name_len,
1992                            u64 inode_objectid, u64 ref_objectid, u64 index);
1993 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1994                            struct btrfs_root *root,
1995                            const char *name, int name_len,
1996                            u64 inode_objectid, u64 ref_objectid);
1997 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1998                              struct btrfs_root *root,
1999                              struct btrfs_path *path, u64 objectid);
2000 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2001                        *root, u64 objectid, struct btrfs_inode_item
2002                        *inode_item);
2003 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
2004                        *root, struct btrfs_path *path,
2005                        struct btrfs_key *location, int mod);
2006
2007 /* file-item.c */
2008 int btrfs_del_csums(struct btrfs_trans_handle *trans,
2009                     struct btrfs_root *root, u64 bytenr, u64 len);
2010 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
2011                              struct btrfs_root *root,
2012                              u64 objectid, u64 pos, u64 offset,
2013                              u64 disk_num_bytes,
2014                              u64 num_bytes);
2015 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
2016                                 struct btrfs_root *root, u64 objectid,
2017                                 u64 offset, char *buffer, size_t size);
2018 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
2019                              struct btrfs_root *root,
2020                              struct btrfs_path *path, u64 objectid,
2021                              u64 bytenr, int mod);
2022 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
2023                           struct btrfs_root *root, u64 alloc_end,
2024                           u64 bytenr, char *data, size_t len);
2025 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
2026                                           struct btrfs_root *root,
2027                                           struct btrfs_path *path,
2028                                           u64 bytenr, int cow);
2029 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
2030                         struct btrfs_root *root, struct btrfs_path *path,
2031                         u64 isize);
2032 #endif