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