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