5 #include "kerncompat.h"
7 struct btrfs_trans_handle
;
9 #define BTRFS_MAGIC "_BtRfS_M"
11 #define BTRFS_ROOT_TREE_OBJECTID 1
12 #define BTRFS_EXTENT_TREE_OBJECTID 2
13 #define BTRFS_INODE_MAP_OBJECTID 3
14 #define BTRFS_FS_TREE_OBJECTID 4
17 * the key defines the order in the tree, and so it also defines (optimal)
18 * block layout. objectid corresonds to the inode number. The flags
19 * tells us things about the object, and is a kind of stream selector.
20 * so for a given inode, keys with flags of 1 might refer to the inode
21 * data, flags of 2 may point to file data in the btree and flags == 3
22 * may point to extents.
24 * offset is the starting byte offset for this key in the stream.
26 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
27 * in cpu native order. Otherwise they are identical and their sizes
28 * should be the same (ie both packed)
30 struct btrfs_disk_key
{
34 } __attribute__ ((__packed__
));
40 } __attribute__ ((__packed__
));
43 * every tree block (leaf or node) starts with this header.
46 u8 fsid
[16]; /* FS specific uuid */
47 __le64 blocknr
; /* which block this node is supposed to live in */
48 __le64 parentid
; /* objectid of the tree root */
53 /* generation flags to be added */
54 } __attribute__ ((__packed__
));
56 #define BTRFS_MAX_LEVEL 8
57 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
58 sizeof(struct btrfs_header)) / \
59 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
60 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
61 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
65 * the super block basically lists the main trees of the FS
66 * it currently lacks any block count etc etc
68 struct btrfs_super_block
{
69 u8 fsid
[16]; /* FS specific uuid */
70 __le64 blocknr
; /* this block number */
78 } __attribute__ ((__packed__
));
81 * A leaf is full of items. offset and size tell us where to find
82 * the item in the leaf (relative to the start of the data area)
85 struct btrfs_disk_key key
;
88 } __attribute__ ((__packed__
));
91 * leaves have an item area and a data area:
92 * [item0, item1....itemN] [free space] [dataN...data1, data0]
94 * The data is separate from the items to get the keys closer together
98 struct btrfs_header header
;
99 struct btrfs_item items
[];
100 } __attribute__ ((__packed__
));
103 * all non-leaf blocks are nodes, they hold only keys and pointers to
106 struct btrfs_key_ptr
{
107 struct btrfs_disk_key key
;
109 } __attribute__ ((__packed__
));
112 struct btrfs_header header
;
113 struct btrfs_key_ptr ptrs
[];
114 } __attribute__ ((__packed__
));
117 * btrfs_paths remember the path taken from the root down to the leaf.
118 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
119 * to any other levels that are present.
121 * The slots array records the index of the item or block pointer
122 * used while walking the tree.
125 struct btrfs_buffer
*nodes
[BTRFS_MAX_LEVEL
];
126 int slots
[BTRFS_MAX_LEVEL
];
130 * items in the extent btree are used to record the objectid of the
131 * owner of the block and the number of references
133 struct btrfs_extent_item
{
136 } __attribute__ ((__packed__
));
138 struct btrfs_inode_timespec
{
141 } __attribute__ ((__packed__
));
144 * there is no padding here on purpose. If you want to extent the inode,
145 * make a new item type
147 struct btrfs_inode_item
{
158 struct btrfs_inode_timespec atime
;
159 struct btrfs_inode_timespec ctime
;
160 struct btrfs_inode_timespec mtime
;
161 struct btrfs_inode_timespec otime
;
162 } __attribute__ ((__packed__
));
164 /* inline data is just a blob of bytes */
165 struct btrfs_inline_data_item
{
167 } __attribute__ ((__packed__
));
169 struct btrfs_dir_item
{
174 } __attribute__ ((__packed__
));
176 struct btrfs_root_item
{
182 } __attribute__ ((__packed__
));
184 struct btrfs_file_extent_item
{
186 * disk space consumed by the extent, checksum blocks are included
190 __le64 disk_num_blocks
;
192 * the logical offset in file bytes (no csums)
193 * this extent record is for. This allows a file extent to point
194 * into the middle of an existing extent on disk, sharing it
195 * between two snapshots (useful if some bytes in the middle of the
196 * extent have changed
200 * the logical number of file blocks (no csums included)
203 } __attribute__ ((__packed__
));
205 struct btrfs_inode_map_item
{
206 struct btrfs_disk_key key
;
207 } __attribute__ ((__packed__
));
209 struct btrfs_fs_info
{
210 struct btrfs_root
*fs_root
;
211 struct btrfs_root
*extent_root
;
212 struct btrfs_root
*tree_root
;
213 struct btrfs_root
*inode_root
;
214 struct btrfs_key current_insert
;
215 struct btrfs_key last_insert
;
216 struct radix_tree_root cache_radix
;
217 struct radix_tree_root pinned_radix
;
218 struct list_head trans
;
219 struct list_head cache
;
220 u64 last_inode_alloc
;
221 u64 last_inode_alloc_dirid
;
225 struct btrfs_trans_handle
*running_transaction
;
226 struct btrfs_super_block
*disk_super
;
230 * in ram representation of the tree. extent_root is used for all allocations
231 * and for the extent tree extent_root root. current_insert is used
232 * only for the extent tree.
235 struct btrfs_buffer
*node
;
236 struct btrfs_buffer
*commit_root
;
237 struct btrfs_root_item root_item
;
238 struct btrfs_key root_key
;
239 struct btrfs_fs_info
*fs_info
;
245 /* the lower bits in the key flags defines the item type */
246 #define BTRFS_KEY_TYPE_MAX 256
247 #define BTRFS_KEY_TYPE_MASK (BTRFS_KEY_TYPE_MAX - 1)
250 * inode items have the data typically returned from stat and store other
251 * info about object characteristics. There is one for every file and dir in
254 #define BTRFS_INODE_ITEM_KEY 1
257 * dir items are the name -> inode pointers in a directory. There is one
258 * for every name in a directory.
260 #define BTRFS_DIR_ITEM_KEY 2
262 * inline data is file data that fits in the btree.
264 #define BTRFS_INLINE_DATA_KEY 3
266 * extent data is for data that can't fit in the btree. It points to
267 * a (hopefully) huge chunk of disk
269 #define BTRFS_EXTENT_DATA_KEY 4
271 * root items point to tree roots. There are typically in the root
272 * tree used by the super block to find all the other trees
274 #define BTRFS_ROOT_ITEM_KEY 5
276 * extent items are in the extent map tree. These record which blocks
277 * are used, and how many references there are to each block
279 #define BTRFS_EXTENT_ITEM_KEY 6
282 * the inode map records which inode numbers are in use and where
283 * they actually live on disk
285 #define BTRFS_INODE_MAP_ITEM_KEY 7
287 * string items are for debugging. They just store a short string of
290 #define BTRFS_STRING_ITEM_KEY 8
292 static inline u64
btrfs_inode_generation(struct btrfs_inode_item
*i
)
294 return le64_to_cpu(i
->generation
);
297 static inline void btrfs_set_inode_generation(struct btrfs_inode_item
*i
,
300 i
->generation
= cpu_to_le64(val
);
303 static inline u64
btrfs_inode_size(struct btrfs_inode_item
*i
)
305 return le64_to_cpu(i
->size
);
308 static inline void btrfs_set_inode_size(struct btrfs_inode_item
*i
, u64 val
)
310 i
->size
= cpu_to_le64(val
);
313 static inline u64
btrfs_inode_nblocks(struct btrfs_inode_item
*i
)
315 return le64_to_cpu(i
->nblocks
);
318 static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item
*i
, u64 val
)
320 i
->nblocks
= cpu_to_le64(val
);
323 static inline u32
btrfs_inode_nlink(struct btrfs_inode_item
*i
)
325 return le32_to_cpu(i
->nlink
);
328 static inline void btrfs_set_inode_nlink(struct btrfs_inode_item
*i
, u32 val
)
330 i
->nlink
= cpu_to_le32(val
);
333 static inline u32
btrfs_inode_uid(struct btrfs_inode_item
*i
)
335 return le32_to_cpu(i
->uid
);
338 static inline void btrfs_set_inode_uid(struct btrfs_inode_item
*i
, u32 val
)
340 i
->uid
= cpu_to_le32(val
);
343 static inline u32
btrfs_inode_gid(struct btrfs_inode_item
*i
)
345 return le32_to_cpu(i
->gid
);
348 static inline void btrfs_set_inode_gid(struct btrfs_inode_item
*i
, u32 val
)
350 i
->gid
= cpu_to_le32(val
);
353 static inline u32
btrfs_inode_mode(struct btrfs_inode_item
*i
)
355 return le32_to_cpu(i
->mode
);
358 static inline void btrfs_set_inode_mode(struct btrfs_inode_item
*i
, u32 val
)
360 i
->mode
= cpu_to_le32(val
);
363 static inline u32
btrfs_inode_rdev(struct btrfs_inode_item
*i
)
365 return le32_to_cpu(i
->rdev
);
368 static inline void btrfs_set_inode_rdev(struct btrfs_inode_item
*i
, u32 val
)
370 i
->rdev
= cpu_to_le32(val
);
373 static inline u16
btrfs_inode_flags(struct btrfs_inode_item
*i
)
375 return le16_to_cpu(i
->flags
);
378 static inline void btrfs_set_inode_flags(struct btrfs_inode_item
*i
, u16 val
)
380 i
->flags
= cpu_to_le16(val
);
383 static inline u16
btrfs_inode_compat_flags(struct btrfs_inode_item
*i
)
385 return le16_to_cpu(i
->compat_flags
);
388 static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item
*i
,
391 i
->compat_flags
= cpu_to_le16(val
);
395 static inline u64
btrfs_extent_owner(struct btrfs_extent_item
*ei
)
397 return le64_to_cpu(ei
->owner
);
400 static inline void btrfs_set_extent_owner(struct btrfs_extent_item
*ei
, u64 val
)
402 ei
->owner
= cpu_to_le64(val
);
405 static inline u32
btrfs_extent_refs(struct btrfs_extent_item
*ei
)
407 return le32_to_cpu(ei
->refs
);
410 static inline void btrfs_set_extent_refs(struct btrfs_extent_item
*ei
, u32 val
)
412 ei
->refs
= cpu_to_le32(val
);
415 static inline u64
btrfs_node_blockptr(struct btrfs_node
*n
, int nr
)
417 return le64_to_cpu(n
->ptrs
[nr
].blockptr
);
420 static inline void btrfs_set_node_blockptr(struct btrfs_node
*n
, int nr
,
423 n
->ptrs
[nr
].blockptr
= cpu_to_le64(val
);
426 static inline u32
btrfs_item_offset(struct btrfs_item
*item
)
428 return le32_to_cpu(item
->offset
);
431 static inline void btrfs_set_item_offset(struct btrfs_item
*item
, u32 val
)
433 item
->offset
= cpu_to_le32(val
);
436 static inline u32
btrfs_item_end(struct btrfs_item
*item
)
438 return le32_to_cpu(item
->offset
) + le16_to_cpu(item
->size
);
441 static inline u16
btrfs_item_size(struct btrfs_item
*item
)
443 return le16_to_cpu(item
->size
);
446 static inline void btrfs_set_item_size(struct btrfs_item
*item
, u16 val
)
448 item
->size
= cpu_to_le16(val
);
451 static inline u64
btrfs_dir_objectid(struct btrfs_dir_item
*d
)
453 return le64_to_cpu(d
->objectid
);
456 static inline void btrfs_set_dir_objectid(struct btrfs_dir_item
*d
, u64 val
)
458 d
->objectid
= cpu_to_le64(val
);
461 static inline u16
btrfs_dir_flags(struct btrfs_dir_item
*d
)
463 return le16_to_cpu(d
->flags
);
466 static inline void btrfs_set_dir_flags(struct btrfs_dir_item
*d
, u16 val
)
468 d
->flags
= cpu_to_le16(val
);
471 static inline u8
btrfs_dir_type(struct btrfs_dir_item
*d
)
476 static inline void btrfs_set_dir_type(struct btrfs_dir_item
*d
, u8 val
)
481 static inline u16
btrfs_dir_name_len(struct btrfs_dir_item
*d
)
483 return le16_to_cpu(d
->name_len
);
486 static inline void btrfs_set_dir_name_len(struct btrfs_dir_item
*d
, u16 val
)
488 d
->name_len
= cpu_to_le16(val
);
491 static inline void btrfs_disk_key_to_cpu(struct btrfs_key
*cpu
,
492 struct btrfs_disk_key
*disk
)
494 cpu
->offset
= le64_to_cpu(disk
->offset
);
495 cpu
->flags
= le32_to_cpu(disk
->flags
);
496 cpu
->objectid
= le64_to_cpu(disk
->objectid
);
499 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key
*disk
,
500 struct btrfs_key
*cpu
)
502 disk
->offset
= cpu_to_le64(cpu
->offset
);
503 disk
->flags
= cpu_to_le32(cpu
->flags
);
504 disk
->objectid
= cpu_to_le64(cpu
->objectid
);
507 static inline u64
btrfs_disk_key_objectid(struct btrfs_disk_key
*disk
)
509 return le64_to_cpu(disk
->objectid
);
512 static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key
*disk
,
515 disk
->objectid
= cpu_to_le64(val
);
518 static inline u64
btrfs_disk_key_offset(struct btrfs_disk_key
*disk
)
520 return le64_to_cpu(disk
->offset
);
523 static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key
*disk
,
526 disk
->offset
= cpu_to_le64(val
);
529 static inline u32
btrfs_disk_key_flags(struct btrfs_disk_key
*disk
)
531 return le32_to_cpu(disk
->flags
);
534 static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key
*disk
,
537 disk
->flags
= cpu_to_le32(val
);
540 static inline u32
btrfs_key_type(struct btrfs_key
*key
)
542 return key
->flags
& BTRFS_KEY_TYPE_MASK
;
545 static inline u32
btrfs_disk_key_type(struct btrfs_disk_key
*key
)
547 return le32_to_cpu(key
->flags
) & BTRFS_KEY_TYPE_MASK
;
550 static inline void btrfs_set_key_type(struct btrfs_key
*key
, u32 type
)
552 BUG_ON(type
>= BTRFS_KEY_TYPE_MAX
);
553 key
->flags
= (key
->flags
& ~((u64
)BTRFS_KEY_TYPE_MASK
)) | type
;
556 static inline void btrfs_set_disk_key_type(struct btrfs_disk_key
*key
, u32 type
)
558 u32 flags
= btrfs_disk_key_flags(key
);
559 BUG_ON(type
>= BTRFS_KEY_TYPE_MAX
);
560 flags
= (flags
& ~((u64
)BTRFS_KEY_TYPE_MASK
)) | type
;
561 btrfs_set_disk_key_flags(key
, flags
);
564 static inline u64
btrfs_header_blocknr(struct btrfs_header
*h
)
566 return le64_to_cpu(h
->blocknr
);
569 static inline void btrfs_set_header_blocknr(struct btrfs_header
*h
, u64 blocknr
)
571 h
->blocknr
= cpu_to_le64(blocknr
);
574 static inline u64
btrfs_header_parentid(struct btrfs_header
*h
)
576 return le64_to_cpu(h
->parentid
);
579 static inline void btrfs_set_header_parentid(struct btrfs_header
*h
,
582 h
->parentid
= cpu_to_le64(parentid
);
585 static inline u16
btrfs_header_nritems(struct btrfs_header
*h
)
587 return le16_to_cpu(h
->nritems
);
590 static inline void btrfs_set_header_nritems(struct btrfs_header
*h
, u16 val
)
592 h
->nritems
= cpu_to_le16(val
);
595 static inline u16
btrfs_header_flags(struct btrfs_header
*h
)
597 return le16_to_cpu(h
->flags
);
600 static inline void btrfs_set_header_flags(struct btrfs_header
*h
, u16 val
)
602 h
->flags
= cpu_to_le16(val
);
605 static inline int btrfs_header_level(struct btrfs_header
*h
)
607 return btrfs_header_flags(h
) & (BTRFS_MAX_LEVEL
- 1);
610 static inline void btrfs_set_header_level(struct btrfs_header
*h
, int level
)
613 BUG_ON(level
> BTRFS_MAX_LEVEL
);
614 flags
= btrfs_header_flags(h
) & ~(BTRFS_MAX_LEVEL
- 1);
615 btrfs_set_header_flags(h
, flags
| level
);
618 static inline int btrfs_is_leaf(struct btrfs_node
*n
)
620 return (btrfs_header_level(&n
->header
) == 0);
623 static inline u64
btrfs_root_blocknr(struct btrfs_root_item
*item
)
625 return le64_to_cpu(item
->blocknr
);
628 static inline void btrfs_set_root_blocknr(struct btrfs_root_item
*item
, u64 val
)
630 item
->blocknr
= cpu_to_le64(val
);
633 static inline u32
btrfs_root_refs(struct btrfs_root_item
*item
)
635 return le32_to_cpu(item
->refs
);
638 static inline void btrfs_set_root_refs(struct btrfs_root_item
*item
, u32 val
)
640 item
->refs
= cpu_to_le32(val
);
643 static inline u64
btrfs_super_blocknr(struct btrfs_super_block
*s
)
645 return le64_to_cpu(s
->blocknr
);
648 static inline void btrfs_set_super_blocknr(struct btrfs_super_block
*s
, u64 val
)
650 s
->blocknr
= cpu_to_le64(val
);
653 static inline u64
btrfs_super_root(struct btrfs_super_block
*s
)
655 return le64_to_cpu(s
->root
);
658 static inline void btrfs_set_super_root(struct btrfs_super_block
*s
, u64 val
)
660 s
->root
= cpu_to_le64(val
);
663 static inline u64
btrfs_super_total_blocks(struct btrfs_super_block
*s
)
665 return le64_to_cpu(s
->total_blocks
);
668 static inline void btrfs_set_super_total_blocks(struct btrfs_super_block
*s
,
671 s
->total_blocks
= cpu_to_le64(val
);
674 static inline u64
btrfs_super_blocks_used(struct btrfs_super_block
*s
)
676 return le64_to_cpu(s
->blocks_used
);
679 static inline void btrfs_set_super_blocks_used(struct btrfs_super_block
*s
,
682 s
->blocks_used
= cpu_to_le64(val
);
685 static inline u32
btrfs_super_blocksize(struct btrfs_super_block
*s
)
687 return le32_to_cpu(s
->blocksize
);
690 static inline void btrfs_set_super_blocksize(struct btrfs_super_block
*s
,
693 s
->blocksize
= cpu_to_le32(val
);
696 static inline u8
*btrfs_leaf_data(struct btrfs_leaf
*l
)
698 return (u8
*)l
->items
;
701 static inline u64
btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
704 return le64_to_cpu(e
->disk_blocknr
);
707 static inline void btrfs_set_file_extent_disk_blocknr(struct
708 btrfs_file_extent_item
711 e
->disk_blocknr
= cpu_to_le64(val
);
714 static inline u64
btrfs_file_extent_disk_num_blocks(struct
715 btrfs_file_extent_item
*e
)
717 return le64_to_cpu(e
->disk_num_blocks
);
720 static inline void btrfs_set_file_extent_disk_num_blocks(struct
721 btrfs_file_extent_item
724 e
->disk_num_blocks
= cpu_to_le64(val
);
727 static inline u64
btrfs_file_extent_offset(struct btrfs_file_extent_item
*e
)
729 return le64_to_cpu(e
->offset
);
732 static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
735 e
->offset
= cpu_to_le64(val
);
738 static inline u64
btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
741 return le64_to_cpu(e
->num_blocks
);
744 static inline void btrfs_set_file_extent_num_blocks(struct
745 btrfs_file_extent_item
*e
,
748 e
->num_blocks
= cpu_to_le64(val
);
751 /* helper function to cast into the data area of the leaf. */
752 #define btrfs_item_ptr(leaf, slot, type) \
753 ((type *)(btrfs_leaf_data(leaf) + \
754 btrfs_item_offset((leaf)->items + (slot))))
756 struct btrfs_buffer
*btrfs_alloc_free_block(struct btrfs_trans_handle
*trans
,
757 struct btrfs_root
*root
);
758 int btrfs_inc_ref(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
759 struct btrfs_buffer
*buf
);
760 int btrfs_free_extent(struct btrfs_trans_handle
*trans
, struct btrfs_root
761 *root
, u64 blocknr
, u64 num_blocks
, int pin
);
762 int btrfs_search_slot(struct btrfs_trans_handle
*trans
, struct btrfs_root
763 *root
, struct btrfs_key
*key
, struct btrfs_path
*p
, int
765 void btrfs_release_path(struct btrfs_root
*root
, struct btrfs_path
*p
);
766 void btrfs_init_path(struct btrfs_path
*p
);
767 int btrfs_del_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
768 struct btrfs_path
*path
);
769 int btrfs_insert_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
770 *root
, struct btrfs_key
*key
, void *data
, u32 data_size
);
771 int btrfs_insert_empty_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
772 *root
, struct btrfs_path
*path
, struct btrfs_key
773 *cpu_key
, u32 data_size
);
774 int btrfs_next_leaf(struct btrfs_root
*root
, struct btrfs_path
*path
);
775 int btrfs_leaf_free_space(struct btrfs_root
*root
, struct btrfs_leaf
*leaf
);
776 int btrfs_drop_snapshot(struct btrfs_trans_handle
*trans
, struct btrfs_root
777 *root
, struct btrfs_buffer
*snap
);
778 int btrfs_finish_extent_commit(struct btrfs_trans_handle
*trans
, struct
780 int btrfs_del_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
781 struct btrfs_key
*key
);
782 int btrfs_insert_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
783 *root
, struct btrfs_key
*key
, struct btrfs_root_item
785 int btrfs_update_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
786 *root
, struct btrfs_key
*key
, struct btrfs_root_item
788 int btrfs_find_last_root(struct btrfs_root
*root
, u64 objectid
, struct
789 btrfs_root_item
*item
, struct btrfs_key
*key
);
790 int btrfs_insert_dir_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
791 *root
, char *name
, int name_len
, u64 dir
, u64
793 int btrfs_lookup_dir_item(struct btrfs_trans_handle
*trans
, struct btrfs_root
794 *root
, struct btrfs_path
*path
, u64 dir
, char *name
,
795 int name_len
, int mod
);
796 int btrfs_match_dir_item_name(struct btrfs_root
*root
, struct btrfs_path
*path
,
797 char *name
, int name_len
);
798 int btrfs_find_free_objectid(struct btrfs_trans_handle
*trans
,
799 struct btrfs_root
*fs_root
,
800 u64 dirid
, u64
*objectid
);
801 int btrfs_insert_inode_map(struct btrfs_trans_handle
*trans
,
802 struct btrfs_root
*root
,
803 u64 objectid
, struct btrfs_key
*location
);
804 int btrfs_lookup_inode_map(struct btrfs_trans_handle
*trans
,
805 struct btrfs_root
*root
, struct btrfs_path
*path
,
806 u64 objectid
, int mod
);
807 int btrfs_insert_inode(struct btrfs_trans_handle
*trans
, struct btrfs_root
808 *root
, u64 objectid
, struct btrfs_inode_item
810 int btrfs_lookup_inode(struct btrfs_trans_handle
*trans
, struct btrfs_root
811 *root
, struct btrfs_path
*path
, u64 objectid
, int mod
);