3 #include "kerncompat.h"
4 #include "radix-tree.h"
7 #include "transaction.h"
10 * walks the btree of allocated inodes and find a hole.
12 int btrfs_find_free_objectid(struct btrfs_trans_handle
*trans
,
13 struct btrfs_root
*fs_root
,
14 u64 dirid
, u64
*objectid
)
16 struct btrfs_path path
;
24 struct btrfs_root
*root
= fs_root
->fs_info
->inode_root
;
25 struct btrfs_key search_key
;
26 u64 search_start
= dirid
;
28 if (fs_root
->fs_info
->last_inode_alloc_dirid
== dirid
)
29 search_start
= fs_root
->fs_info
->last_inode_alloc
;
31 search_key
.objectid
= search_start
;
33 btrfs_set_key_type(&search_key
, BTRFS_INODE_MAP_ITEM_KEY
);
34 search_key
.offset
= 0;
36 btrfs_init_path(&path
);
38 ret
= btrfs_search_slot(trans
, root
, &search_key
, &path
, 0, 0);
42 if (path
.slots
[0] > 0)
46 l
= &path
.nodes
[0]->leaf
;
48 if (slot
>= btrfs_header_nritems(&l
->header
)) {
49 ret
= btrfs_next_leaf(root
, &path
);
55 *objectid
= search_start
;
59 *objectid
= last_ino
> search_start
?
60 last_ino
: search_start
;
63 btrfs_disk_key_to_cpu(&key
, &l
->items
[slot
].key
);
64 if (key
.objectid
>= search_start
) {
66 if (last_ino
< search_start
)
67 last_ino
= search_start
;
68 hole_size
= key
.objectid
- last_ino
;
76 last_ino
= key
.objectid
+ 1;
81 root
->fs_info
->last_inode_alloc
= *objectid
;
82 root
->fs_info
->last_inode_alloc_dirid
= dirid
;
83 btrfs_release_path(root
, &path
);
84 BUG_ON(*objectid
< search_start
);
87 btrfs_release_path(root
, &path
);
91 int btrfs_insert_inode_map(struct btrfs_trans_handle
*trans
,
92 struct btrfs_root
*fs_root
,
93 u64 objectid
, struct btrfs_key
*location
)
96 struct btrfs_path path
;
97 struct btrfs_inode_map_item
*inode_item
;
99 struct btrfs_root
*inode_root
= fs_root
->fs_info
->inode_root
;
101 key
.objectid
= objectid
;
103 btrfs_set_key_type(&key
, BTRFS_INODE_MAP_ITEM_KEY
);
105 btrfs_init_path(&path
);
106 ret
= btrfs_insert_empty_item(trans
, inode_root
, &path
, &key
,
107 sizeof(struct btrfs_inode_map_item
));
111 inode_item
= btrfs_item_ptr(&path
.nodes
[0]->leaf
, path
.slots
[0],
112 struct btrfs_inode_map_item
);
113 btrfs_cpu_key_to_disk(&inode_item
->key
, location
);
115 btrfs_release_path(inode_root
, &path
);
119 int btrfs_lookup_inode_map(struct btrfs_trans_handle
*trans
,
120 struct btrfs_root
*fs_root
, struct btrfs_path
*path
,
121 u64 objectid
, int mod
)
124 struct btrfs_key key
;
125 int ins_len
= mod
< 0 ? -1 : 0;
127 struct btrfs_root
*inode_root
= fs_root
->fs_info
->inode_root
;
129 key
.objectid
= objectid
;
132 btrfs_set_key_type(&key
, BTRFS_INODE_MAP_ITEM_KEY
);
133 ret
= btrfs_search_slot(trans
, inode_root
, &key
, path
, ins_len
, cow
);