endian fixes, makefile fixes
[platform/upstream/btrfs-progs.git] / ctree.h
1 #ifndef __BTRFS__
2 #define __BTRFS__
3
4 #include "list.h"
5 #include "kerncompat.h"
6
7 struct btrfs_trans_handle;
8
9 #define BTRFS_MAGIC "_BtRfS_M"
10
11 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
12 #define BTRFS_DEV_TREE_OBJECTID 2ULL
13 #define BTRFS_EXTENT_TREE_OBJECTID 3ULL
14 #define BTRFS_FS_TREE_OBJECTID 4ULL
15 #define BTRFS_ROOT_TREE_DIR_OBJECTID 5ULL
16 #define BTRFS_FIRST_FREE_OBJECTID 6ULL
17
18 /*
19  * we can actually store much bigger names, but lets not confuse the rest
20  * of linux
21  */
22 #define BTRFS_NAME_LEN 255
23
24 /* 32 bytes in various csum fields */
25 #define BTRFS_CSUM_SIZE 32
26
27 #define BTRFS_FT_UNKNOWN        0
28 #define BTRFS_FT_REG_FILE       1
29 #define BTRFS_FT_DIR            2
30 #define BTRFS_FT_CHRDEV         3
31 #define BTRFS_FT_BLKDEV         4
32 #define BTRFS_FT_FIFO           5
33 #define BTRFS_FT_SOCK           6
34 #define BTRFS_FT_SYMLINK        7
35 #define BTRFS_FT_MAX            8
36
37 /*
38  * the key defines the order in the tree, and so it also defines (optimal)
39  * block layout.  objectid corresonds to the inode number.  The flags
40  * tells us things about the object, and is a kind of stream selector.
41  * so for a given inode, keys with flags of 1 might refer to the inode
42  * data, flags of 2 may point to file data in the btree and flags == 3
43  * may point to extents.
44  *
45  * offset is the starting byte offset for this key in the stream.
46  *
47  * btrfs_disk_key is in disk byte order.  struct btrfs_key is always
48  * in cpu native order.  Otherwise they are identical and their sizes
49  * should be the same (ie both packed)
50  */
51 struct btrfs_disk_key {
52         __le64 objectid;
53         __le32 flags;
54         __le64 offset;
55 } __attribute__ ((__packed__));
56
57 struct btrfs_key {
58         u64 objectid;
59         u32 flags;
60         u64 offset;
61 } __attribute__ ((__packed__));
62
63 /*
64  * every tree block (leaf or node) starts with this header.
65  */
66 struct btrfs_header {
67         u8 csum[BTRFS_CSUM_SIZE];
68         u8 fsid[16]; /* FS specific uuid */
69         __le64 blocknr; /* which block this node is supposed to live in */
70         __le64 generation;
71         __le64 owner;
72         __le16 nritems;
73         __le16 flags;
74         u8 level;
75 } __attribute__ ((__packed__));
76
77 #define BTRFS_MAX_LEVEL 8
78 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
79                                 sizeof(struct btrfs_header)) / \
80                                (sizeof(struct btrfs_disk_key) + sizeof(u64)))
81 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
82 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
83
84 struct btrfs_buffer;
85 /*
86  * the super block basically lists the main trees of the FS
87  * it currently lacks any block count etc etc
88  */
89 struct btrfs_super_block {
90         u8 csum[BTRFS_CSUM_SIZE];
91         /* the first 3 fields must match struct btrfs_header */
92         u8 fsid[16];    /* FS specific uuid */
93         __le64 blocknr; /* this block number */
94         __le64 magic;
95         __le32 blocksize;
96         __le64 generation;
97         __le64 root;
98         __le64 total_blocks;
99         __le64 blocks_used;
100         __le64 root_dir_objectid;
101         __le64 last_device_id;
102         /* fields below here vary with the underlying disk */
103         __le64 device_block_start;
104         __le64 device_num_blocks;
105         __le64 device_root;
106         __le64 device_id;
107 } __attribute__ ((__packed__));
108
109 /*
110  * A leaf is full of items. offset and size tell us where to find
111  * the item in the leaf (relative to the start of the data area)
112  */
113 struct btrfs_item {
114         struct btrfs_disk_key key;
115         __le32 offset;
116         __le16 size;
117 } __attribute__ ((__packed__));
118
119 /*
120  * leaves have an item area and a data area:
121  * [item0, item1....itemN] [free space] [dataN...data1, data0]
122  *
123  * The data is separate from the items to get the keys closer together
124  * during searches.
125  */
126 struct btrfs_leaf {
127         struct btrfs_header header;
128         struct btrfs_item items[];
129 } __attribute__ ((__packed__));
130
131 /*
132  * all non-leaf blocks are nodes, they hold only keys and pointers to
133  * other blocks
134  */
135 struct btrfs_key_ptr {
136         struct btrfs_disk_key key;
137         __le64 blockptr;
138 } __attribute__ ((__packed__));
139
140 struct btrfs_node {
141         struct btrfs_header header;
142         struct btrfs_key_ptr ptrs[];
143 } __attribute__ ((__packed__));
144
145 /*
146  * btrfs_paths remember the path taken from the root down to the leaf.
147  * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
148  * to any other levels that are present.
149  *
150  * The slots array records the index of the item or block pointer
151  * used while walking the tree.
152  */
153 struct btrfs_path {
154         struct btrfs_buffer *nodes[BTRFS_MAX_LEVEL];
155         int slots[BTRFS_MAX_LEVEL];
156 };
157
158 /*
159  * items in the extent btree are used to record the objectid of the
160  * owner of the block and the number of references
161  */
162 struct btrfs_extent_item {
163         __le32 refs;
164         __le64 owner;
165 } __attribute__ ((__packed__));
166
167 struct btrfs_inode_timespec {
168         __le64 sec;
169         __le32 nsec;
170 } __attribute__ ((__packed__));
171
172 /*
173  * there is no padding here on purpose.  If you want to extent the inode,
174  * make a new item type
175  */
176 struct btrfs_inode_item {
177         __le64 generation;
178         __le64 size;
179         __le64 nblocks;
180         __le64 block_group;
181         __le32 nlink;
182         __le32 uid;
183         __le32 gid;
184         __le32 mode;
185         __le32 rdev;
186         __le16 flags;
187         __le16 compat_flags;
188         struct btrfs_inode_timespec atime;
189         struct btrfs_inode_timespec ctime;
190         struct btrfs_inode_timespec mtime;
191         struct btrfs_inode_timespec otime;
192 } __attribute__ ((__packed__));
193
194 /* inline data is just a blob of bytes */
195 struct btrfs_inline_data_item {
196         u8 data;
197 } __attribute__ ((__packed__));
198
199 struct btrfs_dir_item {
200         struct btrfs_disk_key location;
201         __le16 flags;
202         __le16 name_len;
203         u8 type;
204 } __attribute__ ((__packed__));
205
206 struct btrfs_root_item {
207         struct btrfs_inode_item inode;
208         __le64 root_dirid;
209         __le64 blocknr;
210         __le32 flags;
211         __le64 block_limit;
212         __le64 blocks_used;
213         __le32 refs;
214 } __attribute__ ((__packed__));
215
216 #define BTRFS_FILE_EXTENT_REG 0
217 #define BTRFS_FILE_EXTENT_INLINE 1
218
219 struct btrfs_file_extent_item {
220         __le64 generation;
221         u8 type;
222         /*
223          * disk space consumed by the extent, checksum blocks are included
224          * in these numbers
225          */
226         __le64 disk_blocknr;
227         __le64 disk_num_blocks;
228         /*
229          * the logical offset in file blocks (no csums)
230          * this extent record is for.  This allows a file extent to point
231          * into the middle of an existing extent on disk, sharing it
232          * between two snapshots (useful if some bytes in the middle of the
233          * extent have changed
234          */
235         __le64 offset;
236         /*
237          * the logical number of file blocks (no csums included)
238          */
239         __le64 num_blocks;
240 } __attribute__ ((__packed__));
241
242 struct btrfs_csum_item {
243         u8 csum[BTRFS_CSUM_SIZE];
244 } __attribute__ ((__packed__));
245
246 struct btrfs_device_item {
247         __le16 pathlen;
248         __le64 device_id;
249 } __attribute__ ((__packed__));
250
251 /* tag for the radix tree of block groups in ram */
252 #define BTRFS_BLOCK_GROUP_DIRTY 0
253 #define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
254
255
256 #define BTRFS_BLOCK_GROUP_DATA 1
257 struct btrfs_block_group_item {
258         __le64 used;
259         u8 flags;
260 } __attribute__ ((__packed__));
261
262 struct btrfs_block_group_cache {
263         struct btrfs_key key;
264         struct btrfs_block_group_item item;
265 };
266
267 struct btrfs_fs_info {
268         struct btrfs_root *fs_root;
269         struct btrfs_root *extent_root;
270         struct btrfs_root *tree_root;
271         struct btrfs_root *dev_root;
272         struct btrfs_key current_insert;
273         struct btrfs_key last_insert;
274         struct radix_tree_root cache_radix;
275         struct radix_tree_root pinned_radix;
276         struct radix_tree_root dev_radix;
277         struct radix_tree_root block_group_radix;
278         struct list_head trans;
279         struct list_head cache;
280         u64 last_inode_alloc;
281         u64 last_inode_alloc_dirid;
282         u64 generation;
283         int cache_size;
284         int fp;
285         struct btrfs_trans_handle *running_transaction;
286         struct btrfs_super_block *disk_super;
287 };
288
289 /*
290  * in ram representation of the tree.  extent_root is used for all allocations
291  * and for the extent tree extent_root root.  current_insert is used
292  * only for the extent tree.
293  */
294 struct btrfs_root {
295         struct btrfs_buffer *node;
296         struct btrfs_buffer *commit_root;
297         struct btrfs_root_item root_item;
298         struct btrfs_key root_key;
299         struct btrfs_fs_info *fs_info;
300         u32 blocksize;
301         int ref_cows;
302         u32 type;
303 };
304
305 /* the lower bits in the key flags defines the item type */
306 #define BTRFS_KEY_TYPE_MAX      256
307 #define BTRFS_KEY_TYPE_SHIFT    24
308 #define BTRFS_KEY_TYPE_MASK     (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
309                                   BTRFS_KEY_TYPE_SHIFT)
310
311 /*
312  * inode items have the data typically returned from stat and store other
313  * info about object characteristics.  There is one for every file and dir in
314  * the FS
315  */
316 #define BTRFS_INODE_ITEM_KEY            1
317
318 /* reserve 2-15 close to the inode for later flexibility */
319
320 /*
321  * dir items are the name -> inode pointers in a directory.  There is one
322  * for every name in a directory.
323  */
324 #define BTRFS_DIR_ITEM_KEY      16
325 #define BTRFS_DIR_INDEX_KEY     17
326 /*
327  * extent data is for file data
328  */
329 #define BTRFS_EXTENT_DATA_KEY   18
330 /*
331  * csum items have the checksums for data in the extents
332  */
333 #define BTRFS_CSUM_ITEM_KEY     19
334
335 /* reserve 20-31 for other file stuff */
336
337 /*
338  * root items point to tree roots.  There are typically in the root
339  * tree used by the super block to find all the other trees
340  */
341 #define BTRFS_ROOT_ITEM_KEY     32
342 /*
343  * extent items are in the extent map tree.  These record which blocks
344  * are used, and how many references there are to each block
345  */
346 #define BTRFS_EXTENT_ITEM_KEY   33
347
348 /*
349  * block groups give us hints into the extent allocation trees.  Which
350  * blocks are free etc etc
351  */
352 #define BTRFS_BLOCK_GROUP_ITEM_KEY 34
353
354 /*
355  * dev items list the devices that make up the FS
356  */
357 #define BTRFS_DEV_ITEM_KEY      35
358
359 /*
360  * string items are for debugging.  They just store a short string of
361  * data in the FS
362  */
363 #define BTRFS_STRING_ITEM_KEY   253
364
365
366 static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
367 {
368         return le64_to_cpu(bi->used);
369 }
370
371 static inline void btrfs_set_block_group_used(struct
372                                                    btrfs_block_group_item *bi,
373                                                    u64 val)
374 {
375         bi->used = cpu_to_le64(val);
376 }
377
378 static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
379 {
380         return le64_to_cpu(i->generation);
381 }
382
383 static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
384                                               u64 val)
385 {
386         i->generation = cpu_to_le64(val);
387 }
388
389 static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
390 {
391         return le64_to_cpu(i->size);
392 }
393
394 static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
395 {
396         i->size = cpu_to_le64(val);
397 }
398
399 static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
400 {
401         return le64_to_cpu(i->nblocks);
402 }
403
404 static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
405 {
406         i->nblocks = cpu_to_le64(val);
407 }
408
409 static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
410 {
411         return le64_to_cpu(i->block_group);
412 }
413
414 static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
415                                                 u64 val)
416 {
417         i->block_group = cpu_to_le64(val);
418 }
419
420 static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
421 {
422         return le32_to_cpu(i->nlink);
423 }
424
425 static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
426 {
427         i->nlink = cpu_to_le32(val);
428 }
429
430 static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
431 {
432         return le32_to_cpu(i->uid);
433 }
434
435 static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
436 {
437         i->uid = cpu_to_le32(val);
438 }
439
440 static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
441 {
442         return le32_to_cpu(i->gid);
443 }
444
445 static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
446 {
447         i->gid = cpu_to_le32(val);
448 }
449
450 static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
451 {
452         return le32_to_cpu(i->mode);
453 }
454
455 static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
456 {
457         i->mode = cpu_to_le32(val);
458 }
459
460 static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
461 {
462         return le32_to_cpu(i->rdev);
463 }
464
465 static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
466 {
467         i->rdev = cpu_to_le32(val);
468 }
469
470 static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
471 {
472         return le16_to_cpu(i->flags);
473 }
474
475 static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
476 {
477         i->flags = cpu_to_le16(val);
478 }
479
480 static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
481 {
482         return le16_to_cpu(i->compat_flags);
483 }
484
485 static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
486                                                 u16 val)
487 {
488         i->compat_flags = cpu_to_le16(val);
489 }
490
491 static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
492 {
493         return le64_to_cpu(ts->sec);
494 }
495
496 static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
497                                           u64 val)
498 {
499         ts->sec = cpu_to_le64(val);
500 }
501
502 static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
503 {
504         return le32_to_cpu(ts->nsec);
505 }
506
507 static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
508                                           u32 val)
509 {
510         ts->nsec = cpu_to_le32(val);
511 }
512
513 static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
514 {
515         return le32_to_cpu(ei->refs);
516 }
517
518 static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
519 {
520         ei->refs = cpu_to_le32(val);
521 }
522
523 static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
524 {
525         return le64_to_cpu(ei->owner);
526 }
527
528 static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
529 {
530         ei->owner = cpu_to_le64(val);
531 }
532
533 static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
534 {
535         return le64_to_cpu(n->ptrs[nr].blockptr);
536 }
537
538
539 static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
540                                            u64 val)
541 {
542         n->ptrs[nr].blockptr = cpu_to_le64(val);
543 }
544
545 static inline u32 btrfs_item_offset(struct btrfs_item *item)
546 {
547         return le32_to_cpu(item->offset);
548 }
549
550 static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
551 {
552         item->offset = cpu_to_le32(val);
553 }
554
555 static inline u32 btrfs_item_end(struct btrfs_item *item)
556 {
557         return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
558 }
559
560 static inline u16 btrfs_item_size(struct btrfs_item *item)
561 {
562         return le16_to_cpu(item->size);
563 }
564
565 static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
566 {
567         item->size = cpu_to_le16(val);
568 }
569
570 static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
571 {
572         return le16_to_cpu(d->flags);
573 }
574
575 static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
576 {
577         d->flags = cpu_to_le16(val);
578 }
579
580 static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
581 {
582         return d->type;
583 }
584
585 static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
586 {
587         d->type = val;
588 }
589
590 static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
591 {
592         return le16_to_cpu(d->name_len);
593 }
594
595 static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
596 {
597         d->name_len = cpu_to_le16(val);
598 }
599
600 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
601                                          struct btrfs_disk_key *disk)
602 {
603         cpu->offset = le64_to_cpu(disk->offset);
604         cpu->flags = le32_to_cpu(disk->flags);
605         cpu->objectid = le64_to_cpu(disk->objectid);
606 }
607
608 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
609                                          struct btrfs_key *cpu)
610 {
611         disk->offset = cpu_to_le64(cpu->offset);
612         disk->flags = cpu_to_le32(cpu->flags);
613         disk->objectid = cpu_to_le64(cpu->objectid);
614 }
615
616 static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
617 {
618         return le64_to_cpu(disk->objectid);
619 }
620
621 static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
622                                                u64 val)
623 {
624         disk->objectid = cpu_to_le64(val);
625 }
626
627 static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
628 {
629         return le64_to_cpu(disk->offset);
630 }
631
632 static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
633                                              u64 val)
634 {
635         disk->offset = cpu_to_le64(val);
636 }
637
638 static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
639 {
640         return le32_to_cpu(disk->flags);
641 }
642
643 static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
644                                             u32 val)
645 {
646         disk->flags = cpu_to_le32(val);
647 }
648
649 static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
650 {
651         return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT;
652 }
653
654 static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key,
655                                                u32 val)
656 {
657         u32 flags = btrfs_disk_key_flags(key);
658         BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
659         val = val << BTRFS_KEY_TYPE_SHIFT;
660         flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val;
661         btrfs_set_disk_key_flags(key, flags);
662 }
663
664 static inline u32 btrfs_key_type(struct btrfs_key *key)
665 {
666         return key->flags >> BTRFS_KEY_TYPE_SHIFT;
667 }
668
669 static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
670 {
671         BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
672         val = val << BTRFS_KEY_TYPE_SHIFT;
673         key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val;
674 }
675
676 static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
677 {
678         return le64_to_cpu(h->blocknr);
679 }
680
681 static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
682 {
683         h->blocknr = cpu_to_le64(blocknr);
684 }
685
686 static inline u64 btrfs_header_generation(struct btrfs_header *h)
687 {
688         return le64_to_cpu(h->generation);
689 }
690
691 static inline void btrfs_set_header_generation(struct btrfs_header *h,
692                                                u64 val)
693 {
694         h->generation = cpu_to_le64(val);
695 }
696
697 static inline u64 btrfs_header_owner(struct btrfs_header *h)
698 {
699         return le64_to_cpu(h->owner);
700 }
701
702 static inline void btrfs_set_header_owner(struct btrfs_header *h,
703                                                u64 val)
704 {
705         h->owner = cpu_to_le64(val);
706 }
707
708 static inline u16 btrfs_header_nritems(struct btrfs_header *h)
709 {
710         return le16_to_cpu(h->nritems);
711 }
712
713 static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
714 {
715         h->nritems = cpu_to_le16(val);
716 }
717
718 static inline u16 btrfs_header_flags(struct btrfs_header *h)
719 {
720         return le16_to_cpu(h->flags);
721 }
722
723 static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
724 {
725         h->flags = cpu_to_le16(val);
726 }
727
728 static inline int btrfs_header_level(struct btrfs_header *h)
729 {
730         return h->level;
731 }
732
733 static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
734 {
735         BUG_ON(level > BTRFS_MAX_LEVEL);
736         h->level = level;
737 }
738
739 static inline int btrfs_is_leaf(struct btrfs_node *n)
740 {
741         return (btrfs_header_level(&n->header) == 0);
742 }
743
744 static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
745 {
746         return le64_to_cpu(item->blocknr);
747 }
748
749 static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
750 {
751         item->blocknr = cpu_to_le64(val);
752 }
753
754 static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
755 {
756         return le64_to_cpu(item->root_dirid);
757 }
758
759 static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
760 {
761         item->root_dirid = cpu_to_le64(val);
762 }
763
764 static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
765 {
766         return le32_to_cpu(item->refs);
767 }
768
769 static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
770 {
771         item->refs = cpu_to_le32(val);
772 }
773
774 static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
775 {
776         return le64_to_cpu(s->blocknr);
777 }
778
779 static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
780 {
781         s->blocknr = cpu_to_le64(val);
782 }
783
784 static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
785 {
786         return le64_to_cpu(s->generation);
787 }
788
789 static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
790                                               u64 val)
791 {
792         s->generation = cpu_to_le64(val);
793 }
794
795 static inline u64 btrfs_super_root(struct btrfs_super_block *s)
796 {
797         return le64_to_cpu(s->root);
798 }
799
800 static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
801 {
802         s->root = cpu_to_le64(val);
803 }
804
805 static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
806 {
807         return le64_to_cpu(s->total_blocks);
808 }
809
810 static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
811                                                 u64 val)
812 {
813         s->total_blocks = cpu_to_le64(val);
814 }
815
816 static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
817 {
818         return le64_to_cpu(s->blocks_used);
819 }
820
821 static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
822                                                 u64 val)
823 {
824         s->blocks_used = cpu_to_le64(val);
825 }
826
827 static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
828 {
829         return le32_to_cpu(s->blocksize);
830 }
831
832 static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
833                                                 u32 val)
834 {
835         s->blocksize = cpu_to_le32(val);
836 }
837
838 static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
839 {
840         return le64_to_cpu(s->root_dir_objectid);
841 }
842
843 static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
844                                             val)
845 {
846         s->root_dir_objectid = cpu_to_le64(val);
847 }
848
849 static inline u64 btrfs_super_last_device_id(struct btrfs_super_block *s)
850 {
851         return le64_to_cpu(s->last_device_id);
852 }
853
854 static inline void btrfs_set_super_last_device_id(struct btrfs_super_block *s,
855                                                   u64 val)
856 {
857         s->last_device_id = cpu_to_le64(val);
858 }
859
860 static inline u64 btrfs_super_device_id(struct btrfs_super_block *s)
861 {
862         return le64_to_cpu(s->device_id);
863 }
864
865 static inline void btrfs_set_super_device_id(struct btrfs_super_block *s,
866                                                   u64 val)
867 {
868         s->device_id = cpu_to_le64(val);
869 }
870
871 static inline u64 btrfs_super_device_block_start(struct btrfs_super_block *s)
872 {
873         return le64_to_cpu(s->device_block_start);
874 }
875
876 static inline void btrfs_set_super_device_block_start(struct btrfs_super_block
877                                                       *s, u64 val)
878 {
879         s->device_block_start = cpu_to_le64(val);
880 }
881
882 static inline u64 btrfs_super_device_num_blocks(struct btrfs_super_block *s)
883 {
884         return le64_to_cpu(s->device_num_blocks);
885 }
886
887 static inline void btrfs_set_super_device_num_blocks(struct btrfs_super_block
888                                                      *s, u64 val)
889 {
890         s->device_num_blocks = cpu_to_le64(val);
891 }
892
893 static inline u64 btrfs_super_device_root(struct btrfs_super_block *s)
894 {
895         return le64_to_cpu(s->device_root);
896 }
897
898 static inline void btrfs_set_super_device_root(struct btrfs_super_block
899                                                       *s, u64 val)
900 {
901         s->device_root = cpu_to_le64(val);
902 }
903
904 static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
905 {
906         return (u8 *)l->items;
907 }
908
909 static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
910 {
911         return e->type;
912 }
913 static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
914                                               u8 val)
915 {
916         e->type = val;
917 }
918
919 static inline char *btrfs_file_extent_inline_start(struct
920                                                    btrfs_file_extent_item *e)
921 {
922         return (char *)(&e->disk_blocknr);
923 }
924
925 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
926 {
927         return (unsigned long)(&((struct
928                   btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize;
929 }
930
931 static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
932 {
933         struct btrfs_file_extent_item *fe = NULL;
934         return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr);
935 }
936
937 static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
938                                                  *e)
939 {
940         return le64_to_cpu(e->disk_blocknr);
941 }
942
943 static inline void btrfs_set_file_extent_disk_blocknr(struct
944                                                       btrfs_file_extent_item
945                                                       *e, u64 val)
946 {
947         e->disk_blocknr = cpu_to_le64(val);
948 }
949
950 static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
951 {
952         return le64_to_cpu(e->generation);
953 }
954
955 static inline void btrfs_set_file_extent_generation(struct
956                                                     btrfs_file_extent_item *e,
957                                                     u64 val)
958 {
959         e->generation = cpu_to_le64(val);
960 }
961
962 static inline u64 btrfs_file_extent_disk_num_blocks(struct
963                                                     btrfs_file_extent_item *e)
964 {
965         return le64_to_cpu(e->disk_num_blocks);
966 }
967
968 static inline void btrfs_set_file_extent_disk_num_blocks(struct
969                                                          btrfs_file_extent_item
970                                                          *e, u64 val)
971 {
972         e->disk_num_blocks = cpu_to_le64(val);
973 }
974
975 static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
976 {
977         return le64_to_cpu(e->offset);
978 }
979
980 static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
981                                                 *e, u64 val)
982 {
983         e->offset = cpu_to_le64(val);
984 }
985
986 static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
987                                                *e)
988 {
989         return le64_to_cpu(e->num_blocks);
990 }
991
992 static inline void btrfs_set_file_extent_num_blocks(struct
993                                                     btrfs_file_extent_item *e,
994                                                     u64 val)
995 {
996         e->num_blocks = cpu_to_le64(val);
997 }
998
999 static inline u16 btrfs_device_pathlen(struct btrfs_device_item *d)
1000 {
1001         return le16_to_cpu(d->pathlen);
1002 }
1003
1004 static inline void btrfs_set_device_pathlen(struct btrfs_device_item *d,
1005                                                 u16 val)
1006 {
1007         d->pathlen = cpu_to_le16(val);
1008 }
1009
1010 static inline u64 btrfs_device_id(struct btrfs_device_item *d)
1011 {
1012         return le64_to_cpu(d->device_id);
1013 }
1014
1015 static inline void btrfs_set_device_id(struct btrfs_device_item *d,
1016                                                 u64 val)
1017 {
1018         d->device_id = cpu_to_le64(val);
1019 }
1020
1021 /* helper function to cast into the data area of the leaf. */
1022 #define btrfs_item_ptr(leaf, slot, type) \
1023         ((type *)(btrfs_leaf_data(leaf) + \
1024         btrfs_item_offset((leaf)->items + (slot))))
1025
1026 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1027 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1028                       *root, struct btrfs_path *path, u32 data_size);
1029 struct btrfs_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1030                                             struct btrfs_root *root);
1031 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1032                   struct btrfs_buffer *buf);
1033 int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1034                       *root, u64 blocknr, u64 num_blocks, int pin);
1035 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1036                       *root, struct btrfs_key *key, struct btrfs_path *p, int
1037                       ins_len, int cow);
1038 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1039 void btrfs_init_path(struct btrfs_path *p);
1040 int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1041                    struct btrfs_path *path);
1042 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1043                       *root, struct btrfs_key *key, void *data, u32 data_size);
1044 int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1045                             *root, struct btrfs_path *path, struct btrfs_key
1046                             *cpu_key, u32 data_size);
1047 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1048 int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
1049 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1050                         *root, struct btrfs_buffer *snap);
1051 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
1052                                btrfs_root *root);
1053 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1054                    struct btrfs_key *key);
1055 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1056                       *root, struct btrfs_key *key, struct btrfs_root_item
1057                       *item);
1058 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1059                       *root, struct btrfs_key *key, struct btrfs_root_item
1060                       *item);
1061 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1062                          btrfs_root_item *item, struct btrfs_key *key);
1063 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1064                           *root, char *name, int name_len, u64 dir,
1065                           struct btrfs_key *location, u8 type);
1066 int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1067                           *root, struct btrfs_path *path, u64 dir, char *name,
1068                           int name_len, int mod);
1069 int btrfs_match_dir_item_name(struct btrfs_root *root, struct btrfs_path *path,
1070                               char *name, int name_len);
1071 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1072                              struct btrfs_root *fs_root,
1073                              u64 dirid, u64 *objectid);
1074 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1075                        *root, u64 objectid, struct btrfs_inode_item
1076                        *inode_item);
1077 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1078                        *root, struct btrfs_path *path, u64 objectid, int mod);
1079 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1080                                     struct btrfs_root *root);
1081 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1082 int btrfs_read_block_groups(struct btrfs_root *root);
1083 int btrfs_insert_block_group(struct btrfs_trans_handle *trans,
1084                              struct btrfs_root *root,
1085                              struct btrfs_key *key,
1086                              struct btrfs_block_group_item *bi);
1087 #endif