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