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