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