2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #ifndef __BTRFS_CTREE__
20 #define __BTRFS_CTREE__
22 #include <linux/version.h>
24 #include <linux/highmem.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"
33 struct btrfs_trans_handle
;
34 struct btrfs_transaction
;
35 extern struct kmem_cache
*btrfs_trans_handle_cachep
;
36 extern struct kmem_cache
*btrfs_transaction_cachep
;
37 extern struct kmem_cache
*btrfs_bit_radix_cachep
;
38 extern struct kmem_cache
*btrfs_path_cachep
;
40 #define BTRFS_MAGIC "_B4RfS_M"
42 #define BTRFS_MAX_LEVEL 8
44 /* holds pointers to all of the tree roots */
45 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
47 /* stores information about which extents are in use, and reference counts */
48 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
51 * chunk tree stores translations from logical -> physical block numbering
52 * the super block points to the chunk tree
54 #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
57 * stores information about which areas of a given device are in use.
58 * one per device. The tree of tree roots points to the device tree
60 #define BTRFS_DEV_TREE_OBJECTID 4ULL
62 /* one per subvolume, storing files and directories */
63 #define BTRFS_FS_TREE_OBJECTID 5ULL
65 /* directory objectid inside the root tree */
66 #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
69 * All files have objectids higher than this.
71 #define BTRFS_FIRST_FREE_OBJECTID 256ULL
75 * the device items go into the chunk tree. The key is in the form
76 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
78 #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
81 * we can actually store much bigger names, but lets not confuse the rest
84 #define BTRFS_NAME_LEN 255
86 /* 32 bytes in various csum fields */
87 #define BTRFS_CSUM_SIZE 32
88 /* four bytes for CRC32 */
89 #define BTRFS_CRC32_SIZE 4
90 #define BTRFS_EMPTY_DIR_SIZE 0
92 #define BTRFS_FT_UNKNOWN 0
93 #define BTRFS_FT_REG_FILE 1
94 #define BTRFS_FT_DIR 2
95 #define BTRFS_FT_CHRDEV 3
96 #define BTRFS_FT_BLKDEV 4
97 #define BTRFS_FT_FIFO 5
98 #define BTRFS_FT_SOCK 6
99 #define BTRFS_FT_SYMLINK 7
100 #define BTRFS_FT_XATTR 8
101 #define BTRFS_FT_MAX 9
104 * the key defines the order in the tree, and so it also defines (optimal)
105 * block layout. objectid corresonds to the inode number. The flags
106 * tells us things about the object, and is a kind of stream selector.
107 * so for a given inode, keys with flags of 1 might refer to the inode
108 * data, flags of 2 may point to file data in the btree and flags == 3
109 * may point to extents.
111 * offset is the starting byte offset for this key in the stream.
113 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
114 * in cpu native order. Otherwise they are identical and their sizes
115 * should be the same (ie both packed)
117 struct btrfs_disk_key
{
121 } __attribute__ ((__packed__
));
127 } __attribute__ ((__packed__
));
129 struct btrfs_mapping_tree
{
130 struct extent_map_tree map_tree
;
133 #define BTRFS_DEV_UUID_SIZE 16
134 struct btrfs_dev_item
{
135 /* the internal btrfs device id */
138 /* size of the device */
144 /* optimal io alignment for this device */
147 /* optimal io width for this device */
150 /* minimal io size for this device */
153 /* type and info about this device */
156 /* btrfs generated uuid for this device */
157 u8 uuid
[BTRFS_DEV_UUID_SIZE
];
158 } __attribute__ ((__packed__
));
160 struct btrfs_stripe
{
163 } __attribute__ ((__packed__
));
170 /* optimal io alignment for this chunk */
173 /* optimal io width for this chunk */
176 /* minimal io size for this chunk */
179 /* 2^16 stripes is quite a lot, a second limit is the size of a single
183 struct btrfs_stripe stripe
;
184 /* additional stripes go here */
185 } __attribute__ ((__packed__
));
187 static inline unsigned long btrfs_chunk_item_size(int num_stripes
)
189 BUG_ON(num_stripes
== 0);
190 return sizeof(struct btrfs_chunk
) +
191 sizeof(struct btrfs_stripe
) * (num_stripes
- 1);
194 #define BTRFS_FSID_SIZE 16
196 * every tree block (leaf or node) starts with this header.
198 struct btrfs_header
{
199 u8 csum
[BTRFS_CSUM_SIZE
];
200 u8 fsid
[BTRFS_FSID_SIZE
]; /* FS specific uuid */
201 __le64 bytenr
; /* which block this node is supposed to live in */
207 } __attribute__ ((__packed__
));
209 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
210 sizeof(struct btrfs_header)) / \
211 sizeof(struct btrfs_key_ptr))
212 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
213 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
214 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
215 sizeof(struct btrfs_item) - \
216 sizeof(struct btrfs_file_extent_item))
220 * this is a very generous portion of the super block, giving us
221 * room to translate 14 chunks with 3 stripes each.
223 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
226 * the super block basically lists the main trees of the FS
227 * it currently lacks any block count etc etc
229 struct btrfs_super_block
{
230 u8 csum
[BTRFS_CSUM_SIZE
];
231 /* the first 3 fields must match struct btrfs_header */
232 u8 fsid
[16]; /* FS specific uuid */
233 __le64 bytenr
; /* this block number */
240 __le64 root_dir_objectid
;
245 __le32 sys_chunk_array_size
;
248 struct btrfs_dev_item dev_item
;
249 u8 sys_chunk_array
[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE
];
250 } __attribute__ ((__packed__
));
253 * A leaf is full of items. offset and size tell us where to find
254 * the item in the leaf (relative to the start of the data area)
257 struct btrfs_disk_key key
;
260 } __attribute__ ((__packed__
));
263 * leaves have an item area and a data area:
264 * [item0, item1....itemN] [free space] [dataN...data1, data0]
266 * The data is separate from the items to get the keys closer together
270 struct btrfs_header header
;
271 struct btrfs_item items
[];
272 } __attribute__ ((__packed__
));
275 * all non-leaf blocks are nodes, they hold only keys and pointers to
278 struct btrfs_key_ptr
{
279 struct btrfs_disk_key key
;
282 } __attribute__ ((__packed__
));
285 struct btrfs_header header
;
286 struct btrfs_key_ptr ptrs
[];
287 } __attribute__ ((__packed__
));
290 * btrfs_paths remember the path taken from the root down to the leaf.
291 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
292 * to any other levels that are present.
294 * The slots array records the index of the item or block pointer
295 * used while walking the tree.
298 struct extent_buffer
*nodes
[BTRFS_MAX_LEVEL
];
299 int slots
[BTRFS_MAX_LEVEL
];
305 * items in the extent btree are used to record the objectid of the
306 * owner of the block and the number of references
308 struct btrfs_extent_item
{
310 } __attribute__ ((__packed__
));
312 struct btrfs_extent_ref
{
317 } __attribute__ ((__packed__
));
319 /* dev extents record free space on individual devices. The owner
320 * field points back to the chunk allocation mapping tree that allocated
323 struct btrfs_dev_extent
{
326 } __attribute__ ((__packed__
));
329 struct btrfs_inode_ref
{
332 } __attribute__ ((__packed__
));
334 struct btrfs_timespec
{
337 } __attribute__ ((__packed__
));
340 * there is no padding here on purpose. If you want to extent the inode,
341 * make a new item type
343 struct btrfs_inode_item
{
355 struct btrfs_timespec atime
;
356 struct btrfs_timespec ctime
;
357 struct btrfs_timespec mtime
;
358 struct btrfs_timespec otime
;
359 } __attribute__ ((__packed__
));
361 struct btrfs_dir_item
{
362 struct btrfs_disk_key location
;
366 } __attribute__ ((__packed__
));
368 struct btrfs_root_item
{
369 struct btrfs_inode_item inode
;
376 struct btrfs_disk_key drop_progress
;
379 } __attribute__ ((__packed__
));
381 #define BTRFS_FILE_EXTENT_REG 0
382 #define BTRFS_FILE_EXTENT_INLINE 1
384 struct btrfs_file_extent_item
{
388 * disk space consumed by the extent, checksum blocks are included
392 __le64 disk_num_bytes
;
394 * the logical offset in file blocks (no csums)
395 * this extent record is for. This allows a file extent to point
396 * into the middle of an existing extent on disk, sharing it
397 * between two snapshots (useful if some bytes in the middle of the
398 * extent have changed
402 * the logical number of file blocks (no csums included)
405 } __attribute__ ((__packed__
));
407 struct btrfs_csum_item
{
409 } __attribute__ ((__packed__
));
411 /* different types of block groups (and chunks) */
412 #define BTRFS_BLOCK_GROUP_DATA (1 << 0)
413 #define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
414 #define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
417 struct btrfs_block_group_item
{
420 __le64 chunk_objectid
;
422 } __attribute__ ((__packed__
));
424 struct btrfs_space_info
{
430 struct list_head list
;
433 struct btrfs_block_group_cache
{
434 struct btrfs_key key
;
435 struct btrfs_block_group_item item
;
436 struct btrfs_space_info
*space_info
;
443 struct 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
;
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
;
457 /* logical->physical extent mapping */
458 struct btrfs_mapping_tree mapping_tree
;
461 u64 last_trans_committed
;
462 unsigned long mount_opt
;
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
;
481 struct delayed_work trans_work
;
483 struct kobject super_kobj
;
484 struct completion kobj_unregister
;
487 unsigned long throttles
;
490 struct list_head dirty_cowonly_roots
;
492 struct list_head devices
;
493 struct list_head space_info
;
494 spinlock_t delalloc_lock
;
495 spinlock_t new_trans_lock
;
502 * in ram representation of the tree. extent_root is used for all allocations
503 * and for the extent tree extent_root 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
;
512 struct kobject root_kobj
;
513 struct completion kobj_unregister
;
517 /* data allocations are done in sectorsize units */
520 /* node allocations are done in nodesize units */
523 /* leaf allocations are done in leafsize units */
530 u64 last_inode_alloc
;
533 struct btrfs_key defrag_progress
;
539 /* the dirty list is only used by non-reference counted roots */
540 struct list_head dirty_list
;
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
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 */
555 * dir items are the name -> inode pointers in a directory. There is one
556 * for every name in a directory.
558 #define BTRFS_DIR_ITEM_KEY 16
559 #define BTRFS_DIR_INDEX_KEY 17
561 * extent data is for file data
563 #define BTRFS_EXTENT_DATA_KEY 18
565 * csum items have the checksums for data in the extents
567 #define BTRFS_CSUM_ITEM_KEY 19
569 /* reserve 20-31 for other file stuff */
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
575 #define BTRFS_ROOT_ITEM_KEY 32
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
580 #define BTRFS_EXTENT_ITEM_KEY 33
581 #define BTRFS_EXTENT_REF_KEY 34
584 * block groups give us hints into the extent allocation trees. Which
585 * blocks are free etc etc
587 #define BTRFS_BLOCK_GROUP_ITEM_KEY 50
589 #define BTRFS_DEV_EXTENT_KEY 75
590 #define BTRFS_DEV_ITEM_KEY 76
591 #define BTRFS_CHUNK_ITEM_KEY 77
594 * string items are for debugging. They just store a short string of
597 #define BTRFS_STRING_ITEM_KEY 253
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)
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 & \
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 &= \
616 #define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \
618 #define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \
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
624 #define le8_to_cpu(v) (v)
625 #define cpu_to_le8(v) (v)
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)))
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)))
640 #ifndef BTRFS_SETGET_FUNCS
641 #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
642 u##bits btrfs_##name(struct extent_buffer *eb, type *s); \
643 void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val);
646 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
647 static inline u##bits btrfs_##name(struct extent_buffer *eb) \
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); \
654 static inline void btrfs_set_##name(struct extent_buffer *eb, \
657 type *p = kmap_atomic(eb->first_page, KM_USER0); \
658 p->member = cpu_to_le##bits(val); \
659 kunmap_atomic(p, KM_USER0); \
662 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
663 static inline u##bits btrfs_##name(type *s) \
665 return le##bits##_to_cpu(s->member); \
667 static inline void btrfs_set_##name(type *s, u##bits val) \
669 s->member = cpu_to_le##bits(val); \
672 BTRFS_SETGET_FUNCS(device_type
, struct btrfs_dev_item
, type
, 64);
673 BTRFS_SETGET_FUNCS(device_total_bytes
, struct btrfs_dev_item
, total_bytes
, 64);
674 BTRFS_SETGET_FUNCS(device_bytes_used
, struct btrfs_dev_item
, bytes_used
, 64);
675 BTRFS_SETGET_FUNCS(device_io_align
, struct btrfs_dev_item
, io_align
, 32);
676 BTRFS_SETGET_FUNCS(device_io_width
, struct btrfs_dev_item
, io_width
, 32);
677 BTRFS_SETGET_FUNCS(device_sector_size
, struct btrfs_dev_item
, sector_size
, 32);
678 BTRFS_SETGET_FUNCS(device_id
, struct btrfs_dev_item
, devid
, 64);
680 static inline char *btrfs_device_uuid(struct btrfs_dev_item
*d
)
682 return (char *)d
+ offsetof(struct btrfs_dev_item
, uuid
);
685 BTRFS_SETGET_FUNCS(chunk_owner
, struct btrfs_chunk
, owner
, 64);
686 BTRFS_SETGET_FUNCS(chunk_stripe_len
, struct btrfs_chunk
, stripe_len
, 64);
687 BTRFS_SETGET_FUNCS(chunk_io_align
, struct btrfs_chunk
, io_align
, 32);
688 BTRFS_SETGET_FUNCS(chunk_io_width
, struct btrfs_chunk
, io_width
, 32);
689 BTRFS_SETGET_FUNCS(chunk_sector_size
, struct btrfs_chunk
, sector_size
, 32);
690 BTRFS_SETGET_FUNCS(chunk_type
, struct btrfs_chunk
, type
, 64);
691 BTRFS_SETGET_FUNCS(chunk_num_stripes
, struct btrfs_chunk
, num_stripes
, 16);
692 BTRFS_SETGET_FUNCS(stripe_devid
, struct btrfs_stripe
, devid
, 64);
693 BTRFS_SETGET_FUNCS(stripe_offset
, struct btrfs_stripe
, offset
, 64);
695 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner
, struct btrfs_chunk
, owner
, 64);
696 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len
, struct btrfs_chunk
,
698 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align
, struct btrfs_chunk
,
700 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width
, struct btrfs_chunk
,
702 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size
, struct btrfs_chunk
,
704 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type
, struct btrfs_chunk
, type
, 64);
705 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes
, struct btrfs_chunk
,
707 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid
, struct btrfs_stripe
, devid
, 64);
708 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset
, struct btrfs_stripe
, offset
, 64);
710 static inline struct btrfs_stripe
*btrfs_stripe_nr(struct btrfs_chunk
*c
,
713 unsigned long offset
= (unsigned long)c
;
714 offset
+= offsetof(struct btrfs_chunk
, stripe
);
715 offset
+= nr
* sizeof(struct btrfs_stripe
);
716 return (struct btrfs_stripe
*)offset
;
719 static inline u64
btrfs_stripe_offset_nr(struct extent_buffer
*eb
,
720 struct btrfs_chunk
*c
, int nr
)
722 return btrfs_stripe_offset(eb
, btrfs_stripe_nr(c
, nr
));
725 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer
*eb
,
726 struct btrfs_chunk
*c
, int nr
,
729 btrfs_set_stripe_offset(eb
, btrfs_stripe_nr(c
, nr
), val
);
732 static inline u64
btrfs_stripe_devid_nr(struct extent_buffer
*eb
,
733 struct btrfs_chunk
*c
, int nr
)
735 return btrfs_stripe_devid(eb
, btrfs_stripe_nr(c
, nr
));
738 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer
*eb
,
739 struct btrfs_chunk
*c
, int nr
,
742 btrfs_set_stripe_devid(eb
, btrfs_stripe_nr(c
, nr
), val
);
745 /* struct btrfs_block_group_item */
746 BTRFS_SETGET_STACK_FUNCS(block_group_used
, struct btrfs_block_group_item
,
748 BTRFS_SETGET_FUNCS(disk_block_group_used
, struct btrfs_block_group_item
,
750 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_tree
, struct btrfs_block_group_item
,
752 BTRFS_SETGET_FUNCS(disk_block_group_chunk_tree
, struct btrfs_block_group_item
,
754 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid
,
755 struct btrfs_block_group_item
, chunk_objectid
, 64);
756 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objecitd
,
757 struct btrfs_block_group_item
, chunk_objectid
, 64);
758 BTRFS_SETGET_FUNCS(disk_block_group_flags
,
759 struct btrfs_block_group_item
, flags
, 64);
760 BTRFS_SETGET_STACK_FUNCS(block_group_flags
,
761 struct btrfs_block_group_item
, flags
, 64);
763 /* struct btrfs_inode_ref */
764 BTRFS_SETGET_FUNCS(inode_ref_name_len
, struct btrfs_inode_ref
, name_len
, 16);
766 /* struct btrfs_inode_item */
767 BTRFS_SETGET_FUNCS(inode_generation
, struct btrfs_inode_item
, generation
, 64);
768 BTRFS_SETGET_FUNCS(inode_size
, struct btrfs_inode_item
, size
, 64);
769 BTRFS_SETGET_FUNCS(inode_nblocks
, struct btrfs_inode_item
, nblocks
, 64);
770 BTRFS_SETGET_FUNCS(inode_block_group
, struct btrfs_inode_item
, block_group
, 64);
771 BTRFS_SETGET_FUNCS(inode_nlink
, struct btrfs_inode_item
, nlink
, 32);
772 BTRFS_SETGET_FUNCS(inode_uid
, struct btrfs_inode_item
, uid
, 32);
773 BTRFS_SETGET_FUNCS(inode_gid
, struct btrfs_inode_item
, gid
, 32);
774 BTRFS_SETGET_FUNCS(inode_mode
, struct btrfs_inode_item
, mode
, 32);
775 BTRFS_SETGET_FUNCS(inode_rdev
, struct btrfs_inode_item
, rdev
, 64);
776 BTRFS_SETGET_FUNCS(inode_flags
, struct btrfs_inode_item
, flags
, 16);
777 BTRFS_SETGET_FUNCS(inode_compat_flags
, struct btrfs_inode_item
,
780 static inline struct btrfs_timespec
*
781 btrfs_inode_atime(struct btrfs_inode_item
*inode_item
)
783 unsigned long ptr
= (unsigned long)inode_item
;
784 ptr
+= offsetof(struct btrfs_inode_item
, atime
);
785 return (struct btrfs_timespec
*)ptr
;
788 static inline struct btrfs_timespec
*
789 btrfs_inode_mtime(struct btrfs_inode_item
*inode_item
)
791 unsigned long ptr
= (unsigned long)inode_item
;
792 ptr
+= offsetof(struct btrfs_inode_item
, mtime
);
793 return (struct btrfs_timespec
*)ptr
;
796 static inline struct btrfs_timespec
*
797 btrfs_inode_ctime(struct btrfs_inode_item
*inode_item
)
799 unsigned long ptr
= (unsigned long)inode_item
;
800 ptr
+= offsetof(struct btrfs_inode_item
, ctime
);
801 return (struct btrfs_timespec
*)ptr
;
804 static inline struct btrfs_timespec
*
805 btrfs_inode_otime(struct btrfs_inode_item
*inode_item
)
807 unsigned long ptr
= (unsigned long)inode_item
;
808 ptr
+= offsetof(struct btrfs_inode_item
, otime
);
809 return (struct btrfs_timespec
*)ptr
;
812 BTRFS_SETGET_FUNCS(timespec_sec
, struct btrfs_timespec
, sec
, 64);
813 BTRFS_SETGET_FUNCS(timespec_nsec
, struct btrfs_timespec
, nsec
, 32);
815 /* struct btrfs_extent_item */
816 BTRFS_SETGET_FUNCS(extent_refs
, struct btrfs_extent_item
, refs
, 32);
818 /* struct btrfs_dev_extent */
819 BTRFS_SETGET_FUNCS(dev_extent_owner
, struct btrfs_dev_extent
, owner
, 64);
820 BTRFS_SETGET_FUNCS(dev_extent_length
, struct btrfs_dev_extent
, length
, 64);
822 /* struct btrfs_extent_ref */
823 BTRFS_SETGET_FUNCS(ref_root
, struct btrfs_extent_ref
, root
, 64);
824 BTRFS_SETGET_FUNCS(ref_generation
, struct btrfs_extent_ref
, generation
, 64);
825 BTRFS_SETGET_FUNCS(ref_objectid
, struct btrfs_extent_ref
, objectid
, 64);
826 BTRFS_SETGET_FUNCS(ref_offset
, struct btrfs_extent_ref
, offset
, 64);
828 BTRFS_SETGET_STACK_FUNCS(stack_ref_root
, struct btrfs_extent_ref
, root
, 64);
829 BTRFS_SETGET_STACK_FUNCS(stack_ref_generation
, struct btrfs_extent_ref
,
831 BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid
, struct btrfs_extent_ref
,
833 BTRFS_SETGET_STACK_FUNCS(stack_ref_offset
, struct btrfs_extent_ref
, offset
, 64);
835 BTRFS_SETGET_STACK_FUNCS(stack_extent_refs
, struct btrfs_extent_item
,
838 /* struct btrfs_node */
839 BTRFS_SETGET_FUNCS(key_blockptr
, struct btrfs_key_ptr
, blockptr
, 64);
840 BTRFS_SETGET_FUNCS(key_generation
, struct btrfs_key_ptr
, generation
, 64);
842 static inline u64
btrfs_node_blockptr(struct extent_buffer
*eb
, int nr
)
845 ptr
= offsetof(struct btrfs_node
, ptrs
) +
846 sizeof(struct btrfs_key_ptr
) * nr
;
847 return btrfs_key_blockptr(eb
, (struct btrfs_key_ptr
*)ptr
);
850 static inline void btrfs_set_node_blockptr(struct extent_buffer
*eb
,
854 ptr
= offsetof(struct btrfs_node
, ptrs
) +
855 sizeof(struct btrfs_key_ptr
) * nr
;
856 btrfs_set_key_blockptr(eb
, (struct btrfs_key_ptr
*)ptr
, val
);
859 static inline u64
btrfs_node_ptr_generation(struct extent_buffer
*eb
, int nr
)
862 ptr
= offsetof(struct btrfs_node
, ptrs
) +
863 sizeof(struct btrfs_key_ptr
) * nr
;
864 return btrfs_key_generation(eb
, (struct btrfs_key_ptr
*)ptr
);
867 static inline void btrfs_set_node_ptr_generation(struct extent_buffer
*eb
,
871 ptr
= offsetof(struct btrfs_node
, ptrs
) +
872 sizeof(struct btrfs_key_ptr
) * nr
;
873 btrfs_set_key_generation(eb
, (struct btrfs_key_ptr
*)ptr
, val
);
876 static inline unsigned long btrfs_node_key_ptr_offset(int nr
)
878 return offsetof(struct btrfs_node
, ptrs
) +
879 sizeof(struct btrfs_key_ptr
) * nr
;
882 void btrfs_node_key(struct extent_buffer
*eb
,
883 struct btrfs_disk_key
*disk_key
, int nr
);
885 static inline void btrfs_set_node_key(struct extent_buffer
*eb
,
886 struct btrfs_disk_key
*disk_key
, int nr
)
889 ptr
= btrfs_node_key_ptr_offset(nr
);
890 write_eb_member(eb
, (struct btrfs_key_ptr
*)ptr
,
891 struct btrfs_key_ptr
, key
, disk_key
);
894 /* struct btrfs_item */
895 BTRFS_SETGET_FUNCS(item_offset
, struct btrfs_item
, offset
, 32);
896 BTRFS_SETGET_FUNCS(item_size
, struct btrfs_item
, size
, 32);
898 static inline unsigned long btrfs_item_nr_offset(int nr
)
900 return offsetof(struct btrfs_leaf
, items
) +
901 sizeof(struct btrfs_item
) * nr
;
904 static inline struct btrfs_item
*btrfs_item_nr(struct extent_buffer
*eb
,
907 return (struct btrfs_item
*)btrfs_item_nr_offset(nr
);
910 static inline u32
btrfs_item_end(struct extent_buffer
*eb
,
911 struct btrfs_item
*item
)
913 return btrfs_item_offset(eb
, item
) + btrfs_item_size(eb
, item
);
916 static inline u32
btrfs_item_end_nr(struct extent_buffer
*eb
, int nr
)
918 return btrfs_item_end(eb
, btrfs_item_nr(eb
, nr
));
921 static inline u32
btrfs_item_offset_nr(struct extent_buffer
*eb
, int nr
)
923 return btrfs_item_offset(eb
, btrfs_item_nr(eb
, nr
));
926 static inline u32
btrfs_item_size_nr(struct extent_buffer
*eb
, int nr
)
928 return btrfs_item_size(eb
, btrfs_item_nr(eb
, nr
));
931 static inline void btrfs_item_key(struct extent_buffer
*eb
,
932 struct btrfs_disk_key
*disk_key
, int nr
)
934 struct btrfs_item
*item
= btrfs_item_nr(eb
, nr
);
935 read_eb_member(eb
, item
, struct btrfs_item
, key
, disk_key
);
938 static inline void btrfs_set_item_key(struct extent_buffer
*eb
,
939 struct btrfs_disk_key
*disk_key
, int nr
)
941 struct btrfs_item
*item
= btrfs_item_nr(eb
, nr
);
942 write_eb_member(eb
, item
, struct btrfs_item
, key
, disk_key
);
945 /* struct btrfs_dir_item */
946 BTRFS_SETGET_FUNCS(dir_data_len
, struct btrfs_dir_item
, data_len
, 16);
947 BTRFS_SETGET_FUNCS(dir_type
, struct btrfs_dir_item
, type
, 8);
948 BTRFS_SETGET_FUNCS(dir_name_len
, struct btrfs_dir_item
, name_len
, 16);
950 static inline void btrfs_dir_item_key(struct extent_buffer
*eb
,
951 struct btrfs_dir_item
*item
,
952 struct btrfs_disk_key
*key
)
954 read_eb_member(eb
, item
, struct btrfs_dir_item
, location
, key
);
957 static inline void btrfs_set_dir_item_key(struct extent_buffer
*eb
,
958 struct btrfs_dir_item
*item
,
959 struct btrfs_disk_key
*key
)
961 write_eb_member(eb
, item
, struct btrfs_dir_item
, location
, key
);
964 /* struct btrfs_disk_key */
965 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid
, struct btrfs_disk_key
,
967 BTRFS_SETGET_STACK_FUNCS(disk_key_offset
, struct btrfs_disk_key
, offset
, 64);
968 BTRFS_SETGET_STACK_FUNCS(disk_key_type
, struct btrfs_disk_key
, type
, 8);
970 static inline void btrfs_disk_key_to_cpu(struct btrfs_key
*cpu
,
971 struct btrfs_disk_key
*disk
)
973 cpu
->offset
= le64_to_cpu(disk
->offset
);
974 cpu
->type
= disk
->type
;
975 cpu
->objectid
= le64_to_cpu(disk
->objectid
);
978 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key
*disk
,
979 struct btrfs_key
*cpu
)
981 disk
->offset
= cpu_to_le64(cpu
->offset
);
982 disk
->type
= cpu
->type
;
983 disk
->objectid
= cpu_to_le64(cpu
->objectid
);
986 static inline void btrfs_node_key_to_cpu(struct extent_buffer
*eb
,
987 struct btrfs_key
*key
, int nr
)
989 struct btrfs_disk_key disk_key
;
990 btrfs_node_key(eb
, &disk_key
, nr
);
991 btrfs_disk_key_to_cpu(key
, &disk_key
);
994 static inline void btrfs_item_key_to_cpu(struct extent_buffer
*eb
,
995 struct btrfs_key
*key
, int nr
)
997 struct btrfs_disk_key disk_key
;
998 btrfs_item_key(eb
, &disk_key
, nr
);
999 btrfs_disk_key_to_cpu(key
, &disk_key
);
1002 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer
*eb
,
1003 struct btrfs_dir_item
*item
,
1004 struct btrfs_key
*key
)
1006 struct btrfs_disk_key disk_key
;
1007 btrfs_dir_item_key(eb
, item
, &disk_key
);
1008 btrfs_disk_key_to_cpu(key
, &disk_key
);
1012 static inline u8
btrfs_key_type(struct btrfs_key
*key
)
1017 static inline void btrfs_set_key_type(struct btrfs_key
*key
, u8 val
)
1022 /* struct btrfs_header */
1023 BTRFS_SETGET_HEADER_FUNCS(header_bytenr
, struct btrfs_header
, bytenr
, 64);
1024 BTRFS_SETGET_HEADER_FUNCS(header_generation
, struct btrfs_header
,
1026 BTRFS_SETGET_HEADER_FUNCS(header_owner
, struct btrfs_header
, owner
, 64);
1027 BTRFS_SETGET_HEADER_FUNCS(header_nritems
, struct btrfs_header
, nritems
, 32);
1028 BTRFS_SETGET_HEADER_FUNCS(header_flags
, struct btrfs_header
, flags
, 16);
1029 BTRFS_SETGET_HEADER_FUNCS(header_level
, struct btrfs_header
, level
, 8);
1031 static inline u8
*btrfs_header_fsid(struct extent_buffer
*eb
)
1033 unsigned long ptr
= offsetof(struct btrfs_header
, fsid
);
1037 static inline u8
*btrfs_super_fsid(struct extent_buffer
*eb
)
1039 unsigned long ptr
= offsetof(struct btrfs_super_block
, fsid
);
1043 static inline u8
*btrfs_header_csum(struct extent_buffer
*eb
)
1045 unsigned long ptr
= offsetof(struct btrfs_header
, csum
);
1049 static inline struct btrfs_node
*btrfs_buffer_node(struct extent_buffer
*eb
)
1054 static inline struct btrfs_leaf
*btrfs_buffer_leaf(struct extent_buffer
*eb
)
1059 static inline struct btrfs_header
*btrfs_buffer_header(struct extent_buffer
*eb
)
1064 static inline int btrfs_is_leaf(struct extent_buffer
*eb
)
1066 return (btrfs_header_level(eb
) == 0);
1069 /* struct btrfs_root_item */
1070 BTRFS_SETGET_FUNCS(disk_root_refs
, struct btrfs_root_item
, refs
, 32);
1071 BTRFS_SETGET_FUNCS(disk_root_bytenr
, struct btrfs_root_item
, bytenr
, 64);
1072 BTRFS_SETGET_FUNCS(disk_root_level
, struct btrfs_root_item
, level
, 8);
1074 BTRFS_SETGET_STACK_FUNCS(root_bytenr
, struct btrfs_root_item
, bytenr
, 64);
1075 BTRFS_SETGET_STACK_FUNCS(root_level
, struct btrfs_root_item
, level
, 8);
1076 BTRFS_SETGET_STACK_FUNCS(root_dirid
, struct btrfs_root_item
, root_dirid
, 64);
1077 BTRFS_SETGET_STACK_FUNCS(root_refs
, struct btrfs_root_item
, refs
, 32);
1078 BTRFS_SETGET_STACK_FUNCS(root_flags
, struct btrfs_root_item
, flags
, 32);
1079 BTRFS_SETGET_STACK_FUNCS(root_used
, struct btrfs_root_item
, bytes_used
, 64);
1080 BTRFS_SETGET_STACK_FUNCS(root_limit
, struct btrfs_root_item
, byte_limit
, 64);
1082 /* struct btrfs_super_block */
1083 BTRFS_SETGET_STACK_FUNCS(super_bytenr
, struct btrfs_super_block
, bytenr
, 64);
1084 BTRFS_SETGET_STACK_FUNCS(super_generation
, struct btrfs_super_block
,
1086 BTRFS_SETGET_STACK_FUNCS(super_root
, struct btrfs_super_block
, root
, 64);
1087 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size
,
1088 struct btrfs_super_block
, sys_chunk_array_size
, 32);
1089 BTRFS_SETGET_STACK_FUNCS(super_root_level
, struct btrfs_super_block
,
1091 BTRFS_SETGET_STACK_FUNCS(super_chunk_root
, struct btrfs_super_block
,
1093 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level
, struct btrfs_super_block
,
1094 chunk_root_level
, 64);
1095 BTRFS_SETGET_STACK_FUNCS(super_total_bytes
, struct btrfs_super_block
,
1097 BTRFS_SETGET_STACK_FUNCS(super_bytes_used
, struct btrfs_super_block
,
1099 BTRFS_SETGET_STACK_FUNCS(super_sectorsize
, struct btrfs_super_block
,
1101 BTRFS_SETGET_STACK_FUNCS(super_nodesize
, struct btrfs_super_block
,
1103 BTRFS_SETGET_STACK_FUNCS(super_leafsize
, struct btrfs_super_block
,
1105 BTRFS_SETGET_STACK_FUNCS(super_stripesize
, struct btrfs_super_block
,
1107 BTRFS_SETGET_STACK_FUNCS(super_root_dir
, struct btrfs_super_block
,
1108 root_dir_objectid
, 64);
1110 static inline unsigned long btrfs_leaf_data(struct extent_buffer
*l
)
1112 return offsetof(struct btrfs_leaf
, items
);
1115 /* struct btrfs_file_extent_item */
1116 BTRFS_SETGET_FUNCS(file_extent_type
, struct btrfs_file_extent_item
, type
, 8);
1118 static inline unsigned long btrfs_file_extent_inline_start(struct
1119 btrfs_file_extent_item
*e
)
1121 unsigned long offset
= (unsigned long)e
;
1122 offset
+= offsetof(struct btrfs_file_extent_item
, disk_bytenr
);
1126 static inline u32
btrfs_file_extent_calc_inline_size(u32 datasize
)
1128 return offsetof(struct btrfs_file_extent_item
, disk_bytenr
) + datasize
;
1131 static inline u32
btrfs_file_extent_inline_len(struct extent_buffer
*eb
,
1132 struct btrfs_item
*e
)
1134 unsigned long offset
;
1135 offset
= offsetof(struct btrfs_file_extent_item
, disk_bytenr
);
1136 return btrfs_item_size(eb
, e
) - offset
;
1139 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr
, struct btrfs_file_extent_item
,
1141 BTRFS_SETGET_FUNCS(file_extent_generation
, struct btrfs_file_extent_item
,
1143 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes
, struct btrfs_file_extent_item
,
1144 disk_num_bytes
, 64);
1145 BTRFS_SETGET_FUNCS(file_extent_offset
, struct btrfs_file_extent_item
,
1147 BTRFS_SETGET_FUNCS(file_extent_num_bytes
, struct btrfs_file_extent_item
,
1150 static inline struct btrfs_root
*btrfs_sb(struct super_block
*sb
)
1152 return sb
->s_fs_info
;
1155 static inline int btrfs_set_root_name(struct btrfs_root
*root
,
1156 const char *name
, int len
)
1158 /* if we already have a name just free it */
1162 root
->name
= kmalloc(len
+1, GFP_KERNEL
);
1166 memcpy(root
->name
, name
, len
);
1167 root
->name
[len
] ='\0';
1172 static inline u32
btrfs_level_size(struct btrfs_root
*root
, int level
) {
1174 return root
->leafsize
;
1175 return root
->nodesize
;
1178 /* helper function to cast into the data area of the leaf. */
1179 #define btrfs_item_ptr(leaf, slot, type) \
1180 ((type *)(btrfs_leaf_data(leaf) + \
1181 btrfs_item_offset_nr(leaf, slot)))
1183 #define btrfs_item_ptr_offset(leaf, slot) \
1184 ((unsigned long)(btrfs_leaf_data(leaf) + \
1185 btrfs_item_offset_nr(leaf, slot)))
1187 static inline struct dentry
*fdentry(struct file
*file
) {
1188 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1189 return file
->f_dentry
;
1191 return file
->f_path
.dentry
;
1196 u32
btrfs_count_snapshots_in_path(struct btrfs_root
*root
,
1197 struct btrfs_path
*count_path
,
1199 int btrfs_extent_post_op(struct btrfs_trans_handle
*trans
,
1200 struct btrfs_root
*root
);
1201 int btrfs_copy_pinned(struct btrfs_root
*root
, struct extent_io_tree
*copy
);
1202 struct btrfs_block_group_cache
*btrfs_lookup_block_group(struct
1203 btrfs_fs_info
*info
,
1205 struct btrfs_block_group_cache
*btrfs_find_block_group(struct btrfs_root
*root
,
1206 struct btrfs_block_group_cache
1207 *hint
, u64 search_start
,
1208 int data
, int owner
);
1209 int btrfs_inc_root_ref(struct btrfs_trans_handle
*trans
,
1210 struct btrfs_root
*root
, u64 owner_objectid
);
1211 struct extent_buffer
*btrfs_alloc_free_block(struct btrfs_trans_handle
*trans
,
1212 struct btrfs_root
*root
, u32 size
,
1214 u64 hint
, u64 empty_size
);
1215 struct extent_buffer
*__btrfs_alloc_free_block(struct btrfs_trans_handle
*trans
,
1216 struct btrfs_root
*root
,
1224 int btrfs_grow_extent_tree(struct btrfs_trans_handle
*trans
,
1225 struct btrfs_root
*root
, u64 new_size
);
1226 int btrfs_shrink_extent_tree(struct btrfs_root
*root
, u64 new_size
);
1227 int btrfs_insert_extent_backref(struct btrfs_trans_handle
*trans
,
1228 struct btrfs_root
*root
,
1229 struct btrfs_path
*path
, u64 bytenr
,
1230 u64 root_objectid
, u64 ref_generation
,
1231 u64 owner
, u64 owner_offset
);
1232 int btrfs_alloc_extent(struct btrfs_trans_handle
*trans
,
1233 struct btrfs_root
*root
,
1234 u64 num_bytes
, u64 root_objectid
, u64 ref_generation
,
1235 u64 owner
, u64 owner_offset
,
1236 u64 empty_size
, u64 hint_byte
,
1237 u64 search_end
, struct btrfs_key
*ins
, int data
);
1238 int btrfs_inc_ref(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
1239 struct extent_buffer
*buf
);
1240 int btrfs_free_extent(struct btrfs_trans_handle
*trans
, struct btrfs_root
1241 *root
, u64 bytenr
, u64 num_bytes
,
1242 u64 root_objectid
, u64 ref_generation
,
1243 u64 owner_objectid
, u64 owner_offset
, int pin
);
1244 int btrfs_finish_extent_commit(struct btrfs_trans_handle
*trans
,
1245 struct btrfs_root
*root
,
1246 struct extent_io_tree
*unpin
);
1247 int btrfs_inc_extent_ref(struct btrfs_trans_handle
*trans
,
1248 struct btrfs_root
*root
,
1249 u64 bytenr
, u64 num_bytes
,
1250 u64 root_objectid
, u64 ref_generation
,
1251 u64 owner
, u64 owner_offset
);
1252 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle
*trans
,
1253 struct btrfs_root
*root
);
1254 int btrfs_free_block_groups(struct btrfs_fs_info
*info
);
1255 int btrfs_read_block_groups(struct btrfs_root
*root
);
1256 int btrfs_make_block_group(struct btrfs_trans_handle
*trans
,
1257 struct btrfs_root
*root
, u64 bytes_used
,
1258 u64 type
, u64 chunk_tree
, u64 chunk_objectid
,
1261 int btrfs_previous_item(struct btrfs_root
*root
,
1262 struct btrfs_path
*path
, u64 min_objectid
,
1264 int btrfs_cow_block(struct btrfs_trans_handle
*trans
,
1265 struct btrfs_root
*root
, struct extent_buffer
*buf
,
1266 struct extent_buffer
*parent
, int parent_slot
,
1267 struct extent_buffer
**cow_ret
);
1268 int btrfs_copy_root(struct btrfs_trans_handle
*trans
,
1269 struct btrfs_root
*root
,
1270 struct extent_buffer
*buf
,
1271 struct extent_buffer
**cow_ret
, u64 new_root_objectid
);
1272 int btrfs_extend_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
1273 *root
, struct btrfs_path
*path
, u32 data_size
);
1274 int btrfs_truncate_item(struct btrfs_trans_handle
*trans
,
1275 struct btrfs_root
*root
,
1276 struct btrfs_path
*path
,
1277 u32 new_size
, int from_end
);
1278 int btrfs_search_slot(struct btrfs_trans_handle
*trans
, struct btrfs_root
1279 *root
, struct btrfs_key
*key
, struct btrfs_path
*p
, int
1281 int btrfs_realloc_node(struct btrfs_trans_handle
*trans
,
1282 struct btrfs_root
*root
, struct extent_buffer
*parent
,
1283 int start_slot
, int cache_only
, u64
*last_ret
,
1284 struct btrfs_key
*progress
);
1285 void btrfs_release_path(struct btrfs_root
*root
, struct btrfs_path
*p
);
1286 struct btrfs_path
*btrfs_alloc_path(void);
1287 void btrfs_free_path(struct btrfs_path
*p
);
1288 void btrfs_init_path(struct btrfs_path
*p
);
1289 int btrfs_del_items(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
1290 struct btrfs_path
*path
, int slot
, int nr
);
1292 static inline int btrfs_del_item(struct btrfs_trans_handle
*trans
,
1293 struct btrfs_root
*root
,
1294 struct btrfs_path
*path
)
1296 return btrfs_del_items(trans
, root
, path
, path
->slots
[0], 1);
1299 int btrfs_insert_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
1300 *root
, struct btrfs_key
*key
, void *data
, u32 data_size
);
1301 int btrfs_insert_empty_items(struct btrfs_trans_handle
*trans
,
1302 struct btrfs_root
*root
,
1303 struct btrfs_path
*path
,
1304 struct btrfs_key
*cpu_key
, u32
*data_size
, int nr
);
1306 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle
*trans
,
1307 struct btrfs_root
*root
,
1308 struct btrfs_path
*path
,
1309 struct btrfs_key
*key
,
1312 return btrfs_insert_empty_items(trans
, root
, path
, key
, &data_size
, 1);
1315 int btrfs_next_leaf(struct btrfs_root
*root
, struct btrfs_path
*path
);
1316 int btrfs_prev_leaf(struct btrfs_root
*root
, struct btrfs_path
*path
);
1317 int btrfs_leaf_free_space(struct btrfs_root
*root
, struct extent_buffer
*leaf
);
1318 int btrfs_drop_snapshot(struct btrfs_trans_handle
*trans
, struct btrfs_root
1321 int btrfs_del_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
1322 struct btrfs_key
*key
);
1323 int btrfs_insert_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
1324 *root
, struct btrfs_key
*key
, struct btrfs_root_item
1326 int btrfs_update_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
1327 *root
, struct btrfs_key
*key
, struct btrfs_root_item
1329 int btrfs_find_last_root(struct btrfs_root
*root
, u64 objectid
, struct
1330 btrfs_root_item
*item
, struct btrfs_key
*key
);
1331 int btrfs_find_dead_roots(struct btrfs_root
*root
, u64 objectid
,
1332 struct btrfs_root
*latest_root
);
1334 int btrfs_insert_dir_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
1335 *root
, const char *name
, int name_len
, u64 dir
,
1336 struct btrfs_key
*location
, u8 type
);
1337 struct btrfs_dir_item
*btrfs_lookup_dir_item(struct btrfs_trans_handle
*trans
,
1338 struct btrfs_root
*root
,
1339 struct btrfs_path
*path
, u64 dir
,
1340 const char *name
, int name_len
,
1342 struct btrfs_dir_item
*
1343 btrfs_lookup_dir_index_item(struct btrfs_trans_handle
*trans
,
1344 struct btrfs_root
*root
,
1345 struct btrfs_path
*path
, u64 dir
,
1346 u64 objectid
, const char *name
, int name_len
,
1348 struct btrfs_dir_item
*btrfs_match_dir_item_name(struct btrfs_root
*root
,
1349 struct btrfs_path
*path
,
1350 const char *name
, int name_len
);
1351 int btrfs_delete_one_dir_name(struct btrfs_trans_handle
*trans
,
1352 struct btrfs_root
*root
,
1353 struct btrfs_path
*path
,
1354 struct btrfs_dir_item
*di
);
1355 int btrfs_insert_xattr_item(struct btrfs_trans_handle
*trans
,
1356 struct btrfs_root
*root
, const char *name
,
1357 u16 name_len
, const void *data
, u16 data_len
,
1359 struct btrfs_dir_item
*btrfs_lookup_xattr(struct btrfs_trans_handle
*trans
,
1360 struct btrfs_root
*root
,
1361 struct btrfs_path
*path
, u64 dir
,
1362 const char *name
, u16 name_len
,
1365 int btrfs_find_free_objectid(struct btrfs_trans_handle
*trans
,
1366 struct btrfs_root
*fs_root
,
1367 u64 dirid
, u64
*objectid
);
1368 int btrfs_find_highest_inode(struct btrfs_root
*fs_root
, u64
*objectid
);
1371 int btrfs_insert_inode_ref(struct btrfs_trans_handle
*trans
,
1372 struct btrfs_root
*root
,
1373 const char *name
, int name_len
,
1374 u64 inode_objectid
, u64 ref_objectid
);
1375 int btrfs_del_inode_ref(struct btrfs_trans_handle
*trans
,
1376 struct btrfs_root
*root
,
1377 const char *name
, int name_len
,
1378 u64 inode_objectid
, u64 ref_objectid
);
1379 int btrfs_insert_empty_inode(struct btrfs_trans_handle
*trans
,
1380 struct btrfs_root
*root
,
1381 struct btrfs_path
*path
, u64 objectid
);
1382 int btrfs_lookup_inode(struct btrfs_trans_handle
*trans
, struct btrfs_root
1383 *root
, struct btrfs_path
*path
,
1384 struct btrfs_key
*location
, int mod
);
1387 int btrfs_insert_file_extent(struct btrfs_trans_handle
*trans
,
1388 struct btrfs_root
*root
,
1389 u64 objectid
, u64 pos
, u64 offset
,
1392 int btrfs_lookup_file_extent(struct btrfs_trans_handle
*trans
,
1393 struct btrfs_root
*root
,
1394 struct btrfs_path
*path
, u64 objectid
,
1395 u64 bytenr
, int mod
);
1396 int btrfs_csum_file_blocks(struct btrfs_trans_handle
*trans
,
1397 struct btrfs_root
*root
, struct inode
*inode
,
1399 struct btrfs_csum_item
*btrfs_lookup_csum(struct btrfs_trans_handle
*trans
,
1400 struct btrfs_root
*root
,
1401 struct btrfs_path
*path
,
1402 u64 objectid
, u64 offset
,
1404 int btrfs_csum_truncate(struct btrfs_trans_handle
*trans
,
1405 struct btrfs_root
*root
, struct btrfs_path
*path
,
1408 static inline void dec_i_blocks(struct inode
*inode
, u64 dec
)
1411 if (dec
<= inode
->i_blocks
)
1412 inode
->i_blocks
-= dec
;
1414 inode
->i_blocks
= 0;
1417 unsigned long btrfs_force_ra(struct address_space
*mapping
,
1418 struct file_ra_state
*ra
, struct file
*file
,
1419 pgoff_t offset
, pgoff_t last_index
);
1420 int btrfs_check_free_space(struct btrfs_root
*root
, u64 num_required
,
1422 int btrfs_page_mkwrite(struct vm_area_struct
*vma
, struct page
*page
);
1423 int btrfs_readpage(struct file
*file
, struct page
*page
);
1424 void btrfs_delete_inode(struct inode
*inode
);
1425 void btrfs_put_inode(struct inode
*inode
);
1426 void btrfs_read_locked_inode(struct inode
*inode
);
1427 int btrfs_write_inode(struct inode
*inode
, int wait
);
1428 void btrfs_dirty_inode(struct inode
*inode
);
1429 struct inode
*btrfs_alloc_inode(struct super_block
*sb
);
1430 void btrfs_destroy_inode(struct inode
*inode
);
1431 int btrfs_init_cachep(void);
1432 void btrfs_destroy_cachep(void);
1433 long btrfs_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
1434 struct inode
*btrfs_iget_locked(struct super_block
*s
, u64 objectid
,
1435 struct btrfs_root
*root
);
1436 struct inode
*btrfs_ilookup(struct super_block
*s
, u64 objectid
,
1438 int btrfs_commit_write(struct file
*file
, struct page
*page
,
1439 unsigned from
, unsigned to
);
1440 struct extent_map
*btrfs_get_extent(struct inode
*inode
, struct page
*page
,
1441 size_t page_offset
, u64 start
, u64 end
,
1443 int btrfs_update_inode(struct btrfs_trans_handle
*trans
,
1444 struct btrfs_root
*root
,
1445 struct inode
*inode
);
1447 int btrfs_drop_extent_cache(struct inode
*inode
, u64 start
, u64 end
);
1448 int btrfs_check_file(struct btrfs_root
*root
, struct inode
*inode
);
1449 extern struct file_operations btrfs_file_operations
;
1450 int btrfs_drop_extents(struct btrfs_trans_handle
*trans
,
1451 struct btrfs_root
*root
, struct inode
*inode
,
1452 u64 start
, u64 end
, u64 inline_limit
, u64
*hint_block
);
1454 int btrfs_defrag_leaves(struct btrfs_trans_handle
*trans
,
1455 struct btrfs_root
*root
, int cache_only
);
1458 int btrfs_init_sysfs(void);
1459 void btrfs_exit_sysfs(void);
1460 int btrfs_sysfs_add_super(struct btrfs_fs_info
*fs
);
1461 int btrfs_sysfs_add_root(struct btrfs_root
*root
);
1462 void btrfs_sysfs_del_root(struct btrfs_root
*root
);
1463 void btrfs_sysfs_del_super(struct btrfs_fs_info
*root
);
1466 ssize_t
btrfs_listxattr(struct dentry
*dentry
, char *buffer
, size_t size
);
1467 int btrfs_delete_xattrs(struct btrfs_trans_handle
*trans
,
1468 struct btrfs_root
*root
, struct inode
*inode
);
1470 u64
btrfs_parse_size(char *str
);