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