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