Btrfs: Add support for multiple devices per filesystem
[linux-2.6-block.git] / fs / btrfs / ctree.h
... / ...
CommitLineData
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_CTREE__
20#define __BTRFS_CTREE__
21
22#include <linux/version.h>
23#include <linux/mm.h>
24#include <linux/highmem.h>
25#include <linux/fs.h>
26#include <linux/workqueue.h>
27#include <linux/completion.h>
28#include <asm/kmap_types.h>
29#include "bit-radix.h"
30#include "extent_io.h"
31#include "extent_map.h"
32
33struct btrfs_trans_handle;
34struct btrfs_transaction;
35extern struct kmem_cache *btrfs_trans_handle_cachep;
36extern struct kmem_cache *btrfs_transaction_cachep;
37extern struct kmem_cache *btrfs_bit_radix_cachep;
38extern struct kmem_cache *btrfs_path_cachep;
39
40#define BTRFS_MAGIC "_B4RfS_M"
41
42#define BTRFS_MAX_LEVEL 8
43
44/* holds pointers to all of the tree roots */
45#define BTRFS_ROOT_TREE_OBJECTID 1ULL
46
47/* stores information about which extents are in use, and reference counts */
48#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
49
50/* one per subvolume, storing files and directories */
51#define BTRFS_FS_TREE_OBJECTID 3ULL
52
53/* directory objectid inside the root tree */
54#define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
55
56
57/*
58 * chunk tree stores translations from logical -> physical block numbering
59 * the super block points to the chunk tree
60 */
61#define BTRFS_CHUNK_TREE_OBJECTID 5ULL
62
63/*
64 * stores information about which areas of a given device are in use.
65 * one per device. The tree of tree roots points to the device tree
66 */
67#define BTRFS_DEV_TREE_OBJECTID 6ULL
68
69/*
70 * All files have objectids higher than this.
71 */
72#define BTRFS_FIRST_FREE_OBJECTID 256ULL
73
74
75/*
76 * the device items go into the chunk tree. The key is in the form
77 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
78 */
79#define BTRFS_DEV_ITEMS_OBJECTID 1ULL
80
81/*
82 * we can actually store much bigger names, but lets not confuse the rest
83 * of linux
84 */
85#define BTRFS_NAME_LEN 255
86
87/* 32 bytes in various csum fields */
88#define BTRFS_CSUM_SIZE 32
89/* four bytes for CRC32 */
90#define BTRFS_CRC32_SIZE 4
91#define BTRFS_EMPTY_DIR_SIZE 0
92
93#define BTRFS_FT_UNKNOWN 0
94#define BTRFS_FT_REG_FILE 1
95#define BTRFS_FT_DIR 2
96#define BTRFS_FT_CHRDEV 3
97#define BTRFS_FT_BLKDEV 4
98#define BTRFS_FT_FIFO 5
99#define BTRFS_FT_SOCK 6
100#define BTRFS_FT_SYMLINK 7
101#define BTRFS_FT_XATTR 8
102#define BTRFS_FT_MAX 9
103
104/*
105 * the key defines the order in the tree, and so it also defines (optimal)
106 * block layout. objectid corresonds to the inode number. The flags
107 * tells us things about the object, and is a kind of stream selector.
108 * so for a given inode, keys with flags of 1 might refer to the inode
109 * data, flags of 2 may point to file data in the btree and flags == 3
110 * may point to extents.
111 *
112 * offset is the starting byte offset for this key in the stream.
113 *
114 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
115 * in cpu native order. Otherwise they are identical and their sizes
116 * should be the same (ie both packed)
117 */
118struct btrfs_disk_key {
119 __le64 objectid;
120 u8 type;
121 __le64 offset;
122} __attribute__ ((__packed__));
123
124struct btrfs_key {
125 u64 objectid;
126 u8 type;
127 u64 offset;
128} __attribute__ ((__packed__));
129
130struct btrfs_mapping_tree {
131 struct extent_map_tree map_tree;
132};
133
134#define BTRFS_DEV_UUID_SIZE 16
135struct btrfs_dev_item {
136 /* the internal btrfs device id */
137 __le64 devid;
138
139 /* size of the device */
140 __le64 total_bytes;
141
142 /* bytes used */
143 __le64 bytes_used;
144
145 /* optimal io alignment for this device */
146 __le32 io_align;
147
148 /* optimal io width for this device */
149 __le32 io_width;
150
151 /* minimal io size for this device */
152 __le32 sector_size;
153
154 /* the kernel device number */
155 __le64 rdev;
156
157 /* type and info about this device */
158 __le64 type;
159
160 /* partition number, 0 for whole dev */
161 __le32 partition;
162
163 /* length of the name data at the end of the item */
164 __le16 name_len;
165
166 /* physical drive uuid (or lvm uuid) */
167 u8 uuid[BTRFS_DEV_UUID_SIZE];
168 /* name goes here */
169} __attribute__ ((__packed__));
170
171struct btrfs_stripe {
172 __le64 devid;
173 __le64 offset;
174} __attribute__ ((__packed__));
175
176struct btrfs_chunk {
177 __le64 owner;
178 __le64 stripe_len;
179 __le64 type;
180
181 /* optimal io alignment for this chunk */
182 __le32 io_align;
183
184 /* optimal io width for this chunk */
185 __le32 io_width;
186
187 /* minimal io size for this chunk */
188 __le32 sector_size;
189
190 /* 2^16 stripes is quite a lot, a second limit is the size of a single
191 * item in the btree
192 */
193 __le16 num_stripes;
194 struct btrfs_stripe stripe;
195 /* additional stripes go here */
196} __attribute__ ((__packed__));
197
198static inline unsigned long btrfs_chunk_item_size(int num_stripes)
199{
200 BUG_ON(num_stripes == 0);
201 return sizeof(struct btrfs_chunk) +
202 sizeof(struct btrfs_stripe) * (num_stripes - 1);
203}
204
205#define BTRFS_FSID_SIZE 16
206/*
207 * every tree block (leaf or node) starts with this header.
208 */
209struct btrfs_header {
210 u8 csum[BTRFS_CSUM_SIZE];
211 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
212 __le64 bytenr; /* which block this node is supposed to live in */
213 __le64 generation;
214 __le64 owner;
215 __le32 nritems;
216 __le16 flags;
217 u8 level;
218} __attribute__ ((__packed__));
219
220#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
221 sizeof(struct btrfs_header)) / \
222 sizeof(struct btrfs_key_ptr))
223#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
224#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
225#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
226 sizeof(struct btrfs_item) - \
227 sizeof(struct btrfs_file_extent_item))
228
229
230/*
231 * this is a very generous portion of the super block, giving us
232 * room to translate 14 chunks with 3 stripes each.
233 */
234#define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
235
236/*
237 * the super block basically lists the main trees of the FS
238 * it currently lacks any block count etc etc
239 */
240struct btrfs_super_block {
241 u8 csum[BTRFS_CSUM_SIZE];
242 /* the first 3 fields must match struct btrfs_header */
243 u8 fsid[16]; /* FS specific uuid */
244 __le64 bytenr; /* this block number */
245 __le64 magic;
246 __le64 generation;
247 __le64 root;
248 __le64 chunk_root;
249 __le64 total_bytes;
250 __le64 bytes_used;
251 __le64 root_dir_objectid;
252 __le32 sectorsize;
253 __le32 nodesize;
254 __le32 leafsize;
255 __le32 stripesize;
256 __le32 sys_chunk_array_size;
257 u8 root_level;
258 u8 chunk_root_level;
259 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
260} __attribute__ ((__packed__));
261
262/*
263 * A leaf is full of items. offset and size tell us where to find
264 * the item in the leaf (relative to the start of the data area)
265 */
266struct btrfs_item {
267 struct btrfs_disk_key key;
268 __le32 offset;
269 __le32 size;
270} __attribute__ ((__packed__));
271
272/*
273 * leaves have an item area and a data area:
274 * [item0, item1....itemN] [free space] [dataN...data1, data0]
275 *
276 * The data is separate from the items to get the keys closer together
277 * during searches.
278 */
279struct btrfs_leaf {
280 struct btrfs_header header;
281 struct btrfs_item items[];
282} __attribute__ ((__packed__));
283
284/*
285 * all non-leaf blocks are nodes, they hold only keys and pointers to
286 * other blocks
287 */
288struct btrfs_key_ptr {
289 struct btrfs_disk_key key;
290 __le64 blockptr;
291 __le64 generation;
292} __attribute__ ((__packed__));
293
294struct btrfs_node {
295 struct btrfs_header header;
296 struct btrfs_key_ptr ptrs[];
297} __attribute__ ((__packed__));
298
299/*
300 * btrfs_paths remember the path taken from the root down to the leaf.
301 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
302 * to any other levels that are present.
303 *
304 * The slots array records the index of the item or block pointer
305 * used while walking the tree.
306 */
307struct btrfs_path {
308 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
309 int slots[BTRFS_MAX_LEVEL];
310 int reada;
311 int lowest_level;
312};
313
314/*
315 * items in the extent btree are used to record the objectid of the
316 * owner of the block and the number of references
317 */
318struct btrfs_extent_item {
319 __le32 refs;
320} __attribute__ ((__packed__));
321
322struct btrfs_extent_ref {
323 __le64 root;
324 __le64 generation;
325 __le64 objectid;
326 __le64 offset;
327} __attribute__ ((__packed__));
328
329/* dev extents record free space on individual devices. The owner
330 * field points back to the chunk allocation mapping tree that allocated
331 * the extent
332 */
333struct btrfs_dev_extent {
334 __le64 owner;
335 __le64 length;
336} __attribute__ ((__packed__));
337
338
339struct btrfs_inode_ref {
340 __le16 name_len;
341 /* name goes here */
342} __attribute__ ((__packed__));
343
344struct btrfs_timespec {
345 __le64 sec;
346 __le32 nsec;
347} __attribute__ ((__packed__));
348
349/*
350 * there is no padding here on purpose. If you want to extent the inode,
351 * make a new item type
352 */
353struct btrfs_inode_item {
354 __le64 generation;
355 __le64 size;
356 __le64 nblocks;
357 __le64 block_group;
358 __le32 nlink;
359 __le32 uid;
360 __le32 gid;
361 __le32 mode;
362 __le64 rdev;
363 __le16 flags;
364 __le16 compat_flags;
365 struct btrfs_timespec atime;
366 struct btrfs_timespec ctime;
367 struct btrfs_timespec mtime;
368 struct btrfs_timespec otime;
369} __attribute__ ((__packed__));
370
371struct btrfs_dir_item {
372 struct btrfs_disk_key location;
373 __le16 data_len;
374 __le16 name_len;
375 u8 type;
376} __attribute__ ((__packed__));
377
378struct btrfs_root_item {
379 struct btrfs_inode_item inode;
380 __le64 root_dirid;
381 __le64 bytenr;
382 __le64 byte_limit;
383 __le64 bytes_used;
384 __le32 flags;
385 __le32 refs;
386 struct btrfs_disk_key drop_progress;
387 u8 drop_level;
388 u8 level;
389} __attribute__ ((__packed__));
390
391#define BTRFS_FILE_EXTENT_REG 0
392#define BTRFS_FILE_EXTENT_INLINE 1
393
394struct btrfs_file_extent_item {
395 __le64 generation;
396 u8 type;
397 /*
398 * disk space consumed by the extent, checksum blocks are included
399 * in these numbers
400 */
401 __le64 disk_bytenr;
402 __le64 disk_num_bytes;
403 /*
404 * the logical offset in file blocks (no csums)
405 * this extent record is for. This allows a file extent to point
406 * into the middle of an existing extent on disk, sharing it
407 * between two snapshots (useful if some bytes in the middle of the
408 * extent have changed
409 */
410 __le64 offset;
411 /*
412 * the logical number of file blocks (no csums included)
413 */
414 __le64 num_bytes;
415} __attribute__ ((__packed__));
416
417struct btrfs_csum_item {
418 u8 csum;
419} __attribute__ ((__packed__));
420
421/* different types of block groups (and chunks) */
422#define BTRFS_BLOCK_GROUP_DATA (1 << 0)
423#define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
424#define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
425
426
427struct btrfs_block_group_item {
428 __le64 used;
429 __le64 chunk_tree;
430 __le64 chunk_objectid;
431 __le64 flags;
432} __attribute__ ((__packed__));
433
434struct btrfs_block_group_cache {
435 struct btrfs_key key;
436 struct btrfs_block_group_item item;
437 u64 pinned;
438 u64 flags;
439 int cached;
440};
441
442struct btrfs_device;
443struct btrfs_fs_info {
444 u8 fsid[BTRFS_FSID_SIZE];
445 struct btrfs_root *extent_root;
446 struct btrfs_root *tree_root;
447 struct btrfs_root *chunk_root;
448 struct btrfs_root *dev_root;
449 struct radix_tree_root fs_roots_radix;
450
451 struct extent_io_tree free_space_cache;
452 struct extent_io_tree block_group_cache;
453 struct extent_io_tree pinned_extents;
454 struct extent_io_tree pending_del;
455 struct extent_io_tree extent_ins;
456
457 /* logical->physical extent mapping */
458 struct btrfs_mapping_tree mapping_tree;
459
460 u64 generation;
461 u64 last_trans_committed;
462 unsigned long mount_opt;
463 u64 max_extent;
464 u64 max_inline;
465 u64 alloc_start;
466 struct btrfs_transaction *running_transaction;
467 struct btrfs_super_block super_copy;
468 struct extent_buffer *sb_buffer;
469 struct block_device *__bdev;
470 struct super_block *sb;
471 struct inode *btree_inode;
472 spinlock_t hash_lock;
473 struct mutex trans_mutex;
474 struct mutex fs_mutex;
475 struct list_head trans_list;
476 struct list_head hashers;
477 struct list_head dead_roots;
478#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
479 struct work_struct trans_work;
480#else
481 struct delayed_work trans_work;
482#endif
483 struct kobject super_kobj;
484 struct completion kobj_unregister;
485 int do_barriers;
486 int closing;
487 unsigned long throttles;
488
489 u64 total_pinned;
490 struct list_head dirty_cowonly_roots;
491
492 struct list_head devices;
493 struct list_head *last_device;
494 spinlock_t delalloc_lock;
495 spinlock_t new_trans_lock;
496 u64 delalloc_bytes;
497 u64 last_alloc;
498 u64 last_data_alloc;
499};
500
501/*
502 * in ram representation of the tree. extent_root is used for all allocations
503 * and for the extent tree extent_root root.
504 */
505struct btrfs_root {
506 struct extent_buffer *node;
507 struct extent_buffer *commit_root;
508 struct btrfs_root_item root_item;
509 struct btrfs_key root_key;
510 struct btrfs_fs_info *fs_info;
511 struct inode *inode;
512 struct kobject root_kobj;
513 struct completion kobj_unregister;
514 u64 objectid;
515 u64 last_trans;
516
517 /* data allocations are done in sectorsize units */
518 u32 sectorsize;
519
520 /* node allocations are done in nodesize units */
521 u32 nodesize;
522
523 /* leaf allocations are done in leafsize units */
524 u32 leafsize;
525
526 u32 stripesize;
527
528 u32 type;
529 u64 highest_inode;
530 u64 last_inode_alloc;
531 int ref_cows;
532 int track_dirty;
533 struct btrfs_key defrag_progress;
534 int defrag_running;
535 int defrag_level;
536 char *name;
537 int in_sysfs;
538
539 /* the dirty list is only used by non-reference counted roots */
540 struct list_head dirty_list;
541};
542
543/*
544
545 * inode items have the data typically returned from stat and store other
546 * info about object characteristics. There is one for every file and dir in
547 * the FS
548 */
549#define BTRFS_INODE_ITEM_KEY 1
550#define BTRFS_INODE_REF_KEY 2
551#define BTRFS_XATTR_ITEM_KEY 8
552/* reserve 2-15 close to the inode for later flexibility */
553
554/*
555 * dir items are the name -> inode pointers in a directory. There is one
556 * for every name in a directory.
557 */
558#define BTRFS_DIR_ITEM_KEY 16
559#define BTRFS_DIR_INDEX_KEY 17
560/*
561 * extent data is for file data
562 */
563#define BTRFS_EXTENT_DATA_KEY 18
564/*
565 * csum items have the checksums for data in the extents
566 */
567#define BTRFS_CSUM_ITEM_KEY 19
568
569/* reserve 20-31 for other file stuff */
570
571/*
572 * root items point to tree roots. There are typically in the root
573 * tree used by the super block to find all the other trees
574 */
575#define BTRFS_ROOT_ITEM_KEY 32
576/*
577 * extent items are in the extent map tree. These record which blocks
578 * are used, and how many references there are to each block
579 */
580#define BTRFS_EXTENT_ITEM_KEY 33
581#define BTRFS_EXTENT_REF_KEY 34
582
583/*
584 * block groups give us hints into the extent allocation trees. Which
585 * blocks are free etc etc
586 */
587#define BTRFS_BLOCK_GROUP_ITEM_KEY 50
588
589#define BTRFS_DEV_EXTENT_KEY 75
590#define BTRFS_DEV_ITEM_KEY 76
591#define BTRFS_CHUNK_ITEM_KEY 77
592
593/*
594 * string items are for debugging. They just store a short string of
595 * data in the FS
596 */
597#define BTRFS_STRING_ITEM_KEY 253
598
599#define BTRFS_MOUNT_NODATASUM (1 << 0)
600#define BTRFS_MOUNT_NODATACOW (1 << 1)
601#define BTRFS_MOUNT_NOBARRIER (1 << 2)
602#define BTRFS_MOUNT_SSD (1 << 3)
603
604#define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
605#define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
606#define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
607 BTRFS_MOUNT_##opt)
608/*
609 * Inode flags
610 */
611#define BTRFS_INODE_NODATASUM (1 << 0)
612#define BTRFS_INODE_NODATACOW (1 << 1)
613#define BTRFS_INODE_READONLY (1 << 2)
614#define btrfs_clear_flag(inode, flag) (BTRFS_I(inode)->flags &= \
615 ~BTRFS_INODE_##flag)
616#define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \
617 BTRFS_INODE_##flag)
618#define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \
619 BTRFS_INODE_##flag)
620/* some macros to generate set/get funcs for the struct fields. This
621 * assumes there is a lefoo_to_cpu for every type, so lets make a simple
622 * one for u8:
623 */
624#define le8_to_cpu(v) (v)
625#define cpu_to_le8(v) (v)
626#define __le8 u8
627
628#define read_eb_member(eb, ptr, type, member, result) ( \
629 read_extent_buffer(eb, (char *)(result), \
630 ((unsigned long)(ptr)) + \
631 offsetof(type, member), \
632 sizeof(((type *)0)->member)))
633
634#define write_eb_member(eb, ptr, type, member, result) ( \
635 write_extent_buffer(eb, (char *)(result), \
636 ((unsigned long)(ptr)) + \
637 offsetof(type, member), \
638 sizeof(((type *)0)->member)))
639
640#ifndef BTRFS_SETGET_FUNCS
641#define BTRFS_SETGET_FUNCS(name, type, member, bits) \
642u##bits btrfs_##name(struct extent_buffer *eb, type *s); \
643void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val);
644#endif
645
646#define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
647static inline u##bits btrfs_##name(struct extent_buffer *eb) \
648{ \
649 type *p = kmap_atomic(eb->first_page, KM_USER0); \
650 u##bits res = le##bits##_to_cpu(p->member); \
651 kunmap_atomic(p, KM_USER0); \
652 return res; \
653} \
654static inline void btrfs_set_##name(struct extent_buffer *eb, \
655 u##bits val) \
656{ \
657 type *p = kmap_atomic(eb->first_page, KM_USER0); \
658 p->member = cpu_to_le##bits(val); \
659 kunmap_atomic(p, KM_USER0); \
660}
661
662#define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
663static inline u##bits btrfs_##name(type *s) \
664{ \
665 return le##bits##_to_cpu(s->member); \
666} \
667static inline void btrfs_set_##name(type *s, u##bits val) \
668{ \
669 s->member = cpu_to_le##bits(val); \
670}
671
672BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
673BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
674BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
675BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
676BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
677BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
678BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
679BTRFS_SETGET_FUNCS(device_rdev, struct btrfs_dev_item, rdev, 64);
680BTRFS_SETGET_FUNCS(device_partition, struct btrfs_dev_item, partition, 32);
681BTRFS_SETGET_FUNCS(device_name_len, struct btrfs_dev_item, name_len, 16);
682
683static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
684{
685 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
686}
687
688static inline char *btrfs_device_name(struct btrfs_dev_item *d)
689{
690 return (char *)(d + 1);
691}
692
693BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
694BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
695BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
696BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
697BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
698BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
699BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
700BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
701BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
702
703BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
704BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
705 stripe_len, 64);
706BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
707 io_align, 32);
708BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
709 io_width, 32);
710BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
711 sector_size, 32);
712BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
713BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
714 num_stripes, 16);
715BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
716BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
717
718static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
719 int nr)
720{
721 unsigned long offset = (unsigned long)c;
722 offset += offsetof(struct btrfs_chunk, stripe);
723 offset += nr * sizeof(struct btrfs_stripe);
724 return (struct btrfs_stripe *)offset;
725}
726
727static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
728 struct btrfs_chunk *c, int nr)
729{
730 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
731}
732
733static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
734 struct btrfs_chunk *c, int nr,
735 u64 val)
736{
737 btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
738}
739
740static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
741 struct btrfs_chunk *c, int nr)
742{
743 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
744}
745
746static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
747 struct btrfs_chunk *c, int nr,
748 u64 val)
749{
750 btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
751}
752
753/* struct btrfs_block_group_item */
754BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
755 used, 64);
756BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
757 used, 64);
758BTRFS_SETGET_STACK_FUNCS(block_group_chunk_tree, struct btrfs_block_group_item,
759 chunk_tree, 64);
760BTRFS_SETGET_FUNCS(disk_block_group_chunk_tree, struct btrfs_block_group_item,
761 chunk_tree, 64);
762BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
763 struct btrfs_block_group_item, chunk_objectid, 64);
764BTRFS_SETGET_FUNCS(disk_block_group_chunk_objecitd,
765 struct btrfs_block_group_item, chunk_objectid, 64);
766BTRFS_SETGET_FUNCS(disk_block_group_flags,
767 struct btrfs_block_group_item, flags, 64);
768BTRFS_SETGET_STACK_FUNCS(block_group_flags,
769 struct btrfs_block_group_item, flags, 64);
770
771/* struct btrfs_inode_ref */
772BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
773
774/* struct btrfs_inode_item */
775BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
776BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
777BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64);
778BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
779BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
780BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
781BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
782BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
783BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
784BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
785BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
786 compat_flags, 16);
787
788static inline struct btrfs_timespec *
789btrfs_inode_atime(struct btrfs_inode_item *inode_item)
790{
791 unsigned long ptr = (unsigned long)inode_item;
792 ptr += offsetof(struct btrfs_inode_item, atime);
793 return (struct btrfs_timespec *)ptr;
794}
795
796static inline struct btrfs_timespec *
797btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
798{
799 unsigned long ptr = (unsigned long)inode_item;
800 ptr += offsetof(struct btrfs_inode_item, mtime);
801 return (struct btrfs_timespec *)ptr;
802}
803
804static inline struct btrfs_timespec *
805btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
806{
807 unsigned long ptr = (unsigned long)inode_item;
808 ptr += offsetof(struct btrfs_inode_item, ctime);
809 return (struct btrfs_timespec *)ptr;
810}
811
812static inline struct btrfs_timespec *
813btrfs_inode_otime(struct btrfs_inode_item *inode_item)
814{
815 unsigned long ptr = (unsigned long)inode_item;
816 ptr += offsetof(struct btrfs_inode_item, otime);
817 return (struct btrfs_timespec *)ptr;
818}
819
820BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
821BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
822
823/* struct btrfs_extent_item */
824BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
825
826/* struct btrfs_dev_extent */
827BTRFS_SETGET_FUNCS(dev_extent_owner, struct btrfs_dev_extent, owner, 64);
828BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
829
830/* struct btrfs_extent_ref */
831BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
832BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
833BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
834BTRFS_SETGET_FUNCS(ref_offset, struct btrfs_extent_ref, offset, 64);
835
836BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
837BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
838 generation, 64);
839BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
840 objectid, 64);
841BTRFS_SETGET_STACK_FUNCS(stack_ref_offset, struct btrfs_extent_ref, offset, 64);
842
843BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
844 refs, 32);
845
846/* struct btrfs_node */
847BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
848BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
849
850static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
851{
852 unsigned long ptr;
853 ptr = offsetof(struct btrfs_node, ptrs) +
854 sizeof(struct btrfs_key_ptr) * nr;
855 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
856}
857
858static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
859 int nr, u64 val)
860{
861 unsigned long ptr;
862 ptr = offsetof(struct btrfs_node, ptrs) +
863 sizeof(struct btrfs_key_ptr) * nr;
864 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
865}
866
867static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
868{
869 unsigned long ptr;
870 ptr = offsetof(struct btrfs_node, ptrs) +
871 sizeof(struct btrfs_key_ptr) * nr;
872 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
873}
874
875static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
876 int nr, u64 val)
877{
878 unsigned long ptr;
879 ptr = offsetof(struct btrfs_node, ptrs) +
880 sizeof(struct btrfs_key_ptr) * nr;
881 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
882}
883
884static inline unsigned long btrfs_node_key_ptr_offset(int nr)
885{
886 return offsetof(struct btrfs_node, ptrs) +
887 sizeof(struct btrfs_key_ptr) * nr;
888}
889
890void btrfs_node_key(struct extent_buffer *eb,
891 struct btrfs_disk_key *disk_key, int nr);
892
893static inline void btrfs_set_node_key(struct extent_buffer *eb,
894 struct btrfs_disk_key *disk_key, int nr)
895{
896 unsigned long ptr;
897 ptr = btrfs_node_key_ptr_offset(nr);
898 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
899 struct btrfs_key_ptr, key, disk_key);
900}
901
902/* struct btrfs_item */
903BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
904BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
905
906static inline unsigned long btrfs_item_nr_offset(int nr)
907{
908 return offsetof(struct btrfs_leaf, items) +
909 sizeof(struct btrfs_item) * nr;
910}
911
912static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
913 int nr)
914{
915 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
916}
917
918static inline u32 btrfs_item_end(struct extent_buffer *eb,
919 struct btrfs_item *item)
920{
921 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
922}
923
924static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
925{
926 return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
927}
928
929static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
930{
931 return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
932}
933
934static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
935{
936 return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
937}
938
939static inline void btrfs_item_key(struct extent_buffer *eb,
940 struct btrfs_disk_key *disk_key, int nr)
941{
942 struct btrfs_item *item = btrfs_item_nr(eb, nr);
943 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
944}
945
946static inline void btrfs_set_item_key(struct extent_buffer *eb,
947 struct btrfs_disk_key *disk_key, int nr)
948{
949 struct btrfs_item *item = btrfs_item_nr(eb, nr);
950 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
951}
952
953/* struct btrfs_dir_item */
954BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
955BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
956BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
957
958static inline void btrfs_dir_item_key(struct extent_buffer *eb,
959 struct btrfs_dir_item *item,
960 struct btrfs_disk_key *key)
961{
962 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
963}
964
965static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
966 struct btrfs_dir_item *item,
967 struct btrfs_disk_key *key)
968{
969 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
970}
971
972/* struct btrfs_disk_key */
973BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
974 objectid, 64);
975BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
976BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
977
978static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
979 struct btrfs_disk_key *disk)
980{
981 cpu->offset = le64_to_cpu(disk->offset);
982 cpu->type = disk->type;
983 cpu->objectid = le64_to_cpu(disk->objectid);
984}
985
986static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
987 struct btrfs_key *cpu)
988{
989 disk->offset = cpu_to_le64(cpu->offset);
990 disk->type = cpu->type;
991 disk->objectid = cpu_to_le64(cpu->objectid);
992}
993
994static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
995 struct btrfs_key *key, int nr)
996{
997 struct btrfs_disk_key disk_key;
998 btrfs_node_key(eb, &disk_key, nr);
999 btrfs_disk_key_to_cpu(key, &disk_key);
1000}
1001
1002static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1003 struct btrfs_key *key, int nr)
1004{
1005 struct btrfs_disk_key disk_key;
1006 btrfs_item_key(eb, &disk_key, nr);
1007 btrfs_disk_key_to_cpu(key, &disk_key);
1008}
1009
1010static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1011 struct btrfs_dir_item *item,
1012 struct btrfs_key *key)
1013{
1014 struct btrfs_disk_key disk_key;
1015 btrfs_dir_item_key(eb, item, &disk_key);
1016 btrfs_disk_key_to_cpu(key, &disk_key);
1017}
1018
1019
1020static inline u8 btrfs_key_type(struct btrfs_key *key)
1021{
1022 return key->type;
1023}
1024
1025static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1026{
1027 key->type = val;
1028}
1029
1030/* struct btrfs_header */
1031BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1032BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1033 generation, 64);
1034BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1035BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1036BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 16);
1037BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1038
1039static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1040{
1041 unsigned long ptr = offsetof(struct btrfs_header, fsid);
1042 return (u8 *)ptr;
1043}
1044
1045static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1046{
1047 unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1048 return (u8 *)ptr;
1049}
1050
1051static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1052{
1053 unsigned long ptr = offsetof(struct btrfs_header, csum);
1054 return (u8 *)ptr;
1055}
1056
1057static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1058{
1059 return NULL;
1060}
1061
1062static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1063{
1064 return NULL;
1065}
1066
1067static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1068{
1069 return NULL;
1070}
1071
1072static inline int btrfs_is_leaf(struct extent_buffer *eb)
1073{
1074 return (btrfs_header_level(eb) == 0);
1075}
1076
1077/* struct btrfs_root_item */
1078BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1079BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1080BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1081
1082BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1083BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1084BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1085BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1086BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
1087BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1088BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1089
1090/* struct btrfs_super_block */
1091BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1092BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1093 generation, 64);
1094BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1095BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1096 struct btrfs_super_block, sys_chunk_array_size, 32);
1097BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1098 root_level, 8);
1099BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1100 chunk_root, 64);
1101BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1102 chunk_root_level, 64);
1103BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1104 total_bytes, 64);
1105BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1106 bytes_used, 64);
1107BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1108 sectorsize, 32);
1109BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1110 nodesize, 32);
1111BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1112 leafsize, 32);
1113BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1114 stripesize, 32);
1115BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1116 root_dir_objectid, 64);
1117
1118static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1119{
1120 return offsetof(struct btrfs_leaf, items);
1121}
1122
1123/* struct btrfs_file_extent_item */
1124BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1125
1126static inline unsigned long btrfs_file_extent_inline_start(struct
1127 btrfs_file_extent_item *e)
1128{
1129 unsigned long offset = (unsigned long)e;
1130 offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1131 return offset;
1132}
1133
1134static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1135{
1136 return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1137}
1138
1139static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1140 struct btrfs_item *e)
1141{
1142 unsigned long offset;
1143 offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1144 return btrfs_item_size(eb, e) - offset;
1145}
1146
1147BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1148 disk_bytenr, 64);
1149BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1150 generation, 64);
1151BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1152 disk_num_bytes, 64);
1153BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1154 offset, 64);
1155BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1156 num_bytes, 64);
1157
1158static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
1159{
1160 return sb->s_fs_info;
1161}
1162
1163static inline int btrfs_set_root_name(struct btrfs_root *root,
1164 const char *name, int len)
1165{
1166 /* if we already have a name just free it */
1167 if (root->name)
1168 kfree(root->name);
1169
1170 root->name = kmalloc(len+1, GFP_KERNEL);
1171 if (!root->name)
1172 return -ENOMEM;
1173
1174 memcpy(root->name, name, len);
1175 root->name[len] ='\0';
1176
1177 return 0;
1178}
1179
1180static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1181 if (level == 0)
1182 return root->leafsize;
1183 return root->nodesize;
1184}
1185
1186/* helper function to cast into the data area of the leaf. */
1187#define btrfs_item_ptr(leaf, slot, type) \
1188 ((type *)(btrfs_leaf_data(leaf) + \
1189 btrfs_item_offset_nr(leaf, slot)))
1190
1191#define btrfs_item_ptr_offset(leaf, slot) \
1192 ((unsigned long)(btrfs_leaf_data(leaf) + \
1193 btrfs_item_offset_nr(leaf, slot)))
1194
1195static inline struct dentry *fdentry(struct file *file) {
1196#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1197 return file->f_dentry;
1198#else
1199 return file->f_path.dentry;
1200#endif
1201}
1202
1203/* extent-tree.c */
1204u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
1205 struct btrfs_path *count_path,
1206 u64 first_extent);
1207int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1208 struct btrfs_root *root);
1209int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1210struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1211 btrfs_fs_info *info,
1212 u64 bytenr);
1213struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1214 struct btrfs_block_group_cache
1215 *hint, u64 search_start,
1216 int data, int owner);
1217int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1218 struct btrfs_root *root, u64 owner_objectid);
1219struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1220 struct btrfs_root *root, u32 size,
1221 u64 root_objectid,
1222 u64 hint, u64 empty_size);
1223struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1224 struct btrfs_root *root,
1225 u32 blocksize,
1226 u64 root_objectid,
1227 u64 ref_generation,
1228 u64 first_objectid,
1229 int level,
1230 u64 hint,
1231 u64 empty_size);
1232int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
1233 struct btrfs_root *root, u64 new_size);
1234int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size);
1235int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
1236 struct btrfs_root *root,
1237 struct btrfs_path *path, u64 bytenr,
1238 u64 root_objectid, u64 ref_generation,
1239 u64 owner, u64 owner_offset);
1240int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1241 struct btrfs_root *root,
1242 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1243 u64 owner, u64 owner_offset,
1244 u64 empty_size, u64 hint_byte,
1245 u64 search_end, struct btrfs_key *ins, int data);
1246int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1247 struct extent_buffer *buf);
1248int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1249 *root, u64 bytenr, u64 num_bytes,
1250 u64 root_objectid, u64 ref_generation,
1251 u64 owner_objectid, u64 owner_offset, int pin);
1252int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1253 struct btrfs_root *root,
1254 struct extent_io_tree *unpin);
1255int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1256 struct btrfs_root *root,
1257 u64 bytenr, u64 num_bytes,
1258 u64 root_objectid, u64 ref_generation,
1259 u64 owner, u64 owner_offset);
1260int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1261 struct btrfs_root *root);
1262int btrfs_free_block_groups(struct btrfs_fs_info *info);
1263int btrfs_read_block_groups(struct btrfs_root *root);
1264int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1265 struct btrfs_root *root, u64 bytes_used,
1266 u64 type, u64 chunk_tree, u64 chunk_objectid,
1267 u64 size);
1268/* ctree.c */
1269int btrfs_previous_item(struct btrfs_root *root,
1270 struct btrfs_path *path, u64 min_objectid,
1271 int type);
1272int btrfs_cow_block(struct btrfs_trans_handle *trans,
1273 struct btrfs_root *root, struct extent_buffer *buf,
1274 struct extent_buffer *parent, int parent_slot,
1275 struct extent_buffer **cow_ret);
1276int btrfs_copy_root(struct btrfs_trans_handle *trans,
1277 struct btrfs_root *root,
1278 struct extent_buffer *buf,
1279 struct extent_buffer **cow_ret, u64 new_root_objectid);
1280int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1281 *root, struct btrfs_path *path, u32 data_size);
1282int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1283 struct btrfs_root *root,
1284 struct btrfs_path *path,
1285 u32 new_size, int from_end);
1286int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1287 *root, struct btrfs_key *key, struct btrfs_path *p, int
1288 ins_len, int cow);
1289int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1290 struct btrfs_root *root, struct extent_buffer *parent,
1291 int start_slot, int cache_only, u64 *last_ret,
1292 struct btrfs_key *progress);
1293void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1294struct btrfs_path *btrfs_alloc_path(void);
1295void btrfs_free_path(struct btrfs_path *p);
1296void btrfs_init_path(struct btrfs_path *p);
1297int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1298 struct btrfs_path *path, int slot, int nr);
1299
1300static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1301 struct btrfs_root *root,
1302 struct btrfs_path *path)
1303{
1304 return btrfs_del_items(trans, root, path, path->slots[0], 1);
1305}
1306
1307int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1308 *root, struct btrfs_key *key, void *data, u32 data_size);
1309int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1310 struct btrfs_root *root,
1311 struct btrfs_path *path,
1312 struct btrfs_key *cpu_key, u32 *data_size, int nr);
1313
1314static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1315 struct btrfs_root *root,
1316 struct btrfs_path *path,
1317 struct btrfs_key *key,
1318 u32 data_size)
1319{
1320 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1321}
1322
1323int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1324int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
1325int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
1326int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1327 *root);
1328/* root-item.c */
1329int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1330 struct btrfs_key *key);
1331int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1332 *root, struct btrfs_key *key, struct btrfs_root_item
1333 *item);
1334int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1335 *root, struct btrfs_key *key, struct btrfs_root_item
1336 *item);
1337int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1338 btrfs_root_item *item, struct btrfs_key *key);
1339int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1340 struct btrfs_root *latest_root);
1341/* dir-item.c */
1342int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1343 *root, const char *name, int name_len, u64 dir,
1344 struct btrfs_key *location, u8 type);
1345struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1346 struct btrfs_root *root,
1347 struct btrfs_path *path, u64 dir,
1348 const char *name, int name_len,
1349 int mod);
1350struct btrfs_dir_item *
1351btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1352 struct btrfs_root *root,
1353 struct btrfs_path *path, u64 dir,
1354 u64 objectid, const char *name, int name_len,
1355 int mod);
1356struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1357 struct btrfs_path *path,
1358 const char *name, int name_len);
1359int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1360 struct btrfs_root *root,
1361 struct btrfs_path *path,
1362 struct btrfs_dir_item *di);
1363int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1364 struct btrfs_root *root, const char *name,
1365 u16 name_len, const void *data, u16 data_len,
1366 u64 dir);
1367struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1368 struct btrfs_root *root,
1369 struct btrfs_path *path, u64 dir,
1370 const char *name, u16 name_len,
1371 int mod);
1372/* inode-map.c */
1373int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1374 struct btrfs_root *fs_root,
1375 u64 dirid, u64 *objectid);
1376int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1377
1378/* inode-item.c */
1379int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1380 struct btrfs_root *root,
1381 const char *name, int name_len,
1382 u64 inode_objectid, u64 ref_objectid);
1383int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1384 struct btrfs_root *root,
1385 const char *name, int name_len,
1386 u64 inode_objectid, u64 ref_objectid);
1387int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1388 struct btrfs_root *root,
1389 struct btrfs_path *path, u64 objectid);
1390int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1391 *root, struct btrfs_path *path,
1392 struct btrfs_key *location, int mod);
1393
1394/* file-item.c */
1395int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
1396 struct btrfs_root *root,
1397 u64 objectid, u64 pos, u64 offset,
1398 u64 disk_num_bytes,
1399 u64 num_bytes);
1400int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1401 struct btrfs_root *root,
1402 struct btrfs_path *path, u64 objectid,
1403 u64 bytenr, int mod);
1404int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
1405 struct btrfs_root *root, struct inode *inode,
1406 struct bio *bio);
1407struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1408 struct btrfs_root *root,
1409 struct btrfs_path *path,
1410 u64 objectid, u64 offset,
1411 int cow);
1412int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1413 struct btrfs_root *root, struct btrfs_path *path,
1414 u64 isize);
1415/* inode.c */
1416static inline void dec_i_blocks(struct inode *inode, u64 dec)
1417{
1418 dec = dec >> 9;
1419 if (dec <= inode->i_blocks)
1420 inode->i_blocks -= dec;
1421 else
1422 inode->i_blocks = 0;
1423}
1424
1425unsigned long btrfs_force_ra(struct address_space *mapping,
1426 struct file_ra_state *ra, struct file *file,
1427 pgoff_t offset, pgoff_t last_index);
1428int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
1429 int for_del);
1430int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
1431int btrfs_readpage(struct file *file, struct page *page);
1432void btrfs_delete_inode(struct inode *inode);
1433void btrfs_put_inode(struct inode *inode);
1434void btrfs_read_locked_inode(struct inode *inode);
1435int btrfs_write_inode(struct inode *inode, int wait);
1436void btrfs_dirty_inode(struct inode *inode);
1437struct inode *btrfs_alloc_inode(struct super_block *sb);
1438void btrfs_destroy_inode(struct inode *inode);
1439int btrfs_init_cachep(void);
1440void btrfs_destroy_cachep(void);
1441long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1442struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1443 struct btrfs_root *root);
1444struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1445 u64 root_objectid);
1446int btrfs_commit_write(struct file *file, struct page *page,
1447 unsigned from, unsigned to);
1448struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1449 size_t page_offset, u64 start, u64 end,
1450 int create);
1451int btrfs_update_inode(struct btrfs_trans_handle *trans,
1452 struct btrfs_root *root,
1453 struct inode *inode);
1454/* file.c */
1455int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end);
1456int btrfs_check_file(struct btrfs_root *root, struct inode *inode);
1457extern struct file_operations btrfs_file_operations;
1458int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1459 struct btrfs_root *root, struct inode *inode,
1460 u64 start, u64 end, u64 inline_limit, u64 *hint_block);
1461/* tree-defrag.c */
1462int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
1463 struct btrfs_root *root, int cache_only);
1464
1465/* sysfs.c */
1466int btrfs_init_sysfs(void);
1467void btrfs_exit_sysfs(void);
1468int btrfs_sysfs_add_super(struct btrfs_fs_info *fs);
1469int btrfs_sysfs_add_root(struct btrfs_root *root);
1470void btrfs_sysfs_del_root(struct btrfs_root *root);
1471void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
1472
1473/* xattr.c */
1474ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
1475int btrfs_delete_xattrs(struct btrfs_trans_handle *trans,
1476 struct btrfs_root *root, struct inode *inode);
1477/* super.c */
1478u64 btrfs_parse_size(char *str);
1479#endif