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