diff options
-rw-r--r-- | fs/btrfs/btrfs_inode.h | 9 | ||||
-rw-r--r-- | fs/btrfs/compression.c | 5 | ||||
-rw-r--r-- | fs/btrfs/ctree.h | 29 | ||||
-rw-r--r-- | fs/btrfs/disk-io.c | 19 | ||||
-rw-r--r-- | fs/btrfs/export.c | 25 | ||||
-rw-r--r-- | fs/btrfs/extent-tree.c | 50 | ||||
-rw-r--r-- | fs/btrfs/extent_io.c | 4 | ||||
-rw-r--r-- | fs/btrfs/file-item.c | 5 | ||||
-rw-r--r-- | fs/btrfs/file.c | 27 | ||||
-rw-r--r-- | fs/btrfs/free-space-cache.c | 976 | ||||
-rw-r--r-- | fs/btrfs/free-space-cache.h | 48 | ||||
-rw-r--r-- | fs/btrfs/inode-map.c | 428 | ||||
-rw-r--r-- | fs/btrfs/inode-map.h | 13 | ||||
-rw-r--r-- | fs/btrfs/inode.c | 278 | ||||
-rw-r--r-- | fs/btrfs/ioctl.c | 20 | ||||
-rw-r--r-- | fs/btrfs/relocation.c | 27 | ||||
-rw-r--r-- | fs/btrfs/transaction.c | 11 | ||||
-rw-r--r-- | fs/btrfs/tree-log.c | 54 | ||||
-rw-r--r-- | fs/btrfs/xattr.c | 8 |
19 files changed, 1403 insertions, 633 deletions
diff --git a/fs/btrfs/btrfs_inode.h b/fs/btrfs/btrfs_inode.h index beefafd91f22..d0b0e43a6a8b 100644 --- a/fs/btrfs/btrfs_inode.h +++ b/fs/btrfs/btrfs_inode.h | |||
@@ -171,6 +171,15 @@ static inline struct btrfs_inode *BTRFS_I(struct inode *inode) | |||
171 | return container_of(inode, struct btrfs_inode, vfs_inode); | 171 | return container_of(inode, struct btrfs_inode, vfs_inode); |
172 | } | 172 | } |
173 | 173 | ||
174 | static inline u64 btrfs_ino(struct inode *inode) | ||
175 | { | ||
176 | u64 ino = BTRFS_I(inode)->location.objectid; | ||
177 | |||
178 | if (ino <= BTRFS_FIRST_FREE_OBJECTID) | ||
179 | ino = inode->i_ino; | ||
180 | return ino; | ||
181 | } | ||
182 | |||
174 | static inline void btrfs_i_size_write(struct inode *inode, u64 size) | 183 | static inline void btrfs_i_size_write(struct inode *inode, u64 size) |
175 | { | 184 | { |
176 | i_size_write(inode, size); | 185 | i_size_write(inode, size); |
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index 41d1d7c70e29..369d5068ac7a 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c | |||
@@ -125,9 +125,10 @@ static int check_compressed_csum(struct inode *inode, | |||
125 | kunmap_atomic(kaddr, KM_USER0); | 125 | kunmap_atomic(kaddr, KM_USER0); |
126 | 126 | ||
127 | if (csum != *cb_sum) { | 127 | if (csum != *cb_sum) { |
128 | printk(KERN_INFO "btrfs csum failed ino %lu " | 128 | printk(KERN_INFO "btrfs csum failed ino %llu " |
129 | "extent %llu csum %u " | 129 | "extent %llu csum %u " |
130 | "wanted %u mirror %d\n", inode->i_ino, | 130 | "wanted %u mirror %d\n", |
131 | (unsigned long long)btrfs_ino(inode), | ||
131 | (unsigned long long)disk_start, | 132 | (unsigned long long)disk_start, |
132 | csum, *cb_sum, cb->mirror_num); | 133 | csum, *cb_sum, cb->mirror_num); |
133 | ret = -EIO; | 134 | ret = -EIO; |
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 5d25129d0116..529c157000b1 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -105,6 +105,12 @@ struct btrfs_ordered_sum; | |||
105 | /* For storing free space cache */ | 105 | /* For storing free space cache */ |
106 | #define BTRFS_FREE_SPACE_OBJECTID -11ULL | 106 | #define BTRFS_FREE_SPACE_OBJECTID -11ULL |
107 | 107 | ||
108 | /* | ||
109 | * The inode number assigned to the special inode for sotring | ||
110 | * free ino cache | ||
111 | */ | ||
112 | #define BTRFS_FREE_INO_OBJECTID -12ULL | ||
113 | |||
108 | /* dummy objectid represents multiple objectids */ | 114 | /* dummy objectid represents multiple objectids */ |
109 | #define BTRFS_MULTIPLE_OBJECTIDS -255ULL | 115 | #define BTRFS_MULTIPLE_OBJECTIDS -255ULL |
110 | 116 | ||
@@ -830,9 +836,6 @@ struct btrfs_block_group_cache { | |||
830 | u64 bytes_super; | 836 | u64 bytes_super; |
831 | u64 flags; | 837 | u64 flags; |
832 | u64 sectorsize; | 838 | u64 sectorsize; |
833 | int extents_thresh; | ||
834 | int free_extents; | ||
835 | int total_bitmaps; | ||
836 | unsigned int ro:1; | 839 | unsigned int ro:1; |
837 | unsigned int dirty:1; | 840 | unsigned int dirty:1; |
838 | unsigned int iref:1; | 841 | unsigned int iref:1; |
@@ -847,9 +850,7 @@ struct btrfs_block_group_cache { | |||
847 | struct btrfs_space_info *space_info; | 850 | struct btrfs_space_info *space_info; |
848 | 851 | ||
849 | /* free space cache stuff */ | 852 | /* free space cache stuff */ |
850 | spinlock_t tree_lock; | 853 | struct btrfs_free_space_ctl *free_space_ctl; |
851 | struct rb_root free_space_offset; | ||
852 | u64 free_space; | ||
853 | 854 | ||
854 | /* block group cache stuff */ | 855 | /* block group cache stuff */ |
855 | struct rb_node cache_node; | 856 | struct rb_node cache_node; |
@@ -1114,6 +1115,16 @@ struct btrfs_root { | |||
1114 | spinlock_t accounting_lock; | 1115 | spinlock_t accounting_lock; |
1115 | struct btrfs_block_rsv *block_rsv; | 1116 | struct btrfs_block_rsv *block_rsv; |
1116 | 1117 | ||
1118 | /* free ino cache stuff */ | ||
1119 | struct mutex fs_commit_mutex; | ||
1120 | struct btrfs_free_space_ctl *free_ino_ctl; | ||
1121 | enum btrfs_caching_type cached; | ||
1122 | spinlock_t cache_lock; | ||
1123 | wait_queue_head_t cache_wait; | ||
1124 | struct btrfs_free_space_ctl *free_ino_pinned; | ||
1125 | u64 cache_progress; | ||
1126 | struct inode *cache_inode; | ||
1127 | |||
1117 | struct mutex log_mutex; | 1128 | struct mutex log_mutex; |
1118 | wait_queue_head_t log_writer_wait; | 1129 | wait_queue_head_t log_writer_wait; |
1119 | wait_queue_head_t log_commit_wait[2]; | 1130 | wait_queue_head_t log_commit_wait[2]; |
@@ -2438,12 +2449,6 @@ int btrfs_del_orphan_item(struct btrfs_trans_handle *trans, | |||
2438 | struct btrfs_root *root, u64 offset); | 2449 | struct btrfs_root *root, u64 offset); |
2439 | int btrfs_find_orphan_item(struct btrfs_root *root, u64 offset); | 2450 | int btrfs_find_orphan_item(struct btrfs_root *root, u64 offset); |
2440 | 2451 | ||
2441 | /* inode-map.c */ | ||
2442 | int btrfs_find_free_objectid(struct btrfs_trans_handle *trans, | ||
2443 | struct btrfs_root *fs_root, | ||
2444 | u64 dirid, u64 *objectid); | ||
2445 | int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid); | ||
2446 | |||
2447 | /* inode-item.c */ | 2452 | /* inode-item.c */ |
2448 | int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans, | 2453 | int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans, |
2449 | struct btrfs_root *root, | 2454 | struct btrfs_root *root, |
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 22c3c9586049..087eed85c250 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include "locking.h" | 41 | #include "locking.h" |
42 | #include "tree-log.h" | 42 | #include "tree-log.h" |
43 | #include "free-space-cache.h" | 43 | #include "free-space-cache.h" |
44 | #include "inode-map.h" | ||
44 | 45 | ||
45 | static struct extent_io_ops btree_extent_io_ops; | 46 | static struct extent_io_ops btree_extent_io_ops; |
46 | static void end_workqueue_fn(struct btrfs_work *work); | 47 | static void end_workqueue_fn(struct btrfs_work *work); |
@@ -1327,6 +1328,19 @@ again: | |||
1327 | if (IS_ERR(root)) | 1328 | if (IS_ERR(root)) |
1328 | return root; | 1329 | return root; |
1329 | 1330 | ||
1331 | root->free_ino_ctl = kzalloc(sizeof(*root->free_ino_ctl), GFP_NOFS); | ||
1332 | if (!root->free_ino_ctl) | ||
1333 | goto fail; | ||
1334 | root->free_ino_pinned = kzalloc(sizeof(*root->free_ino_pinned), | ||
1335 | GFP_NOFS); | ||
1336 | if (!root->free_ino_pinned) | ||
1337 | goto fail; | ||
1338 | |||
1339 | btrfs_init_free_ino_ctl(root); | ||
1340 | mutex_init(&root->fs_commit_mutex); | ||
1341 | spin_lock_init(&root->cache_lock); | ||
1342 | init_waitqueue_head(&root->cache_wait); | ||
1343 | |||
1330 | set_anon_super(&root->anon_super, NULL); | 1344 | set_anon_super(&root->anon_super, NULL); |
1331 | 1345 | ||
1332 | if (btrfs_root_refs(&root->root_item) == 0) { | 1346 | if (btrfs_root_refs(&root->root_item) == 0) { |
@@ -2419,12 +2433,15 @@ int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root) | |||
2419 | if (btrfs_root_refs(&root->root_item) == 0) | 2433 | if (btrfs_root_refs(&root->root_item) == 0) |
2420 | synchronize_srcu(&fs_info->subvol_srcu); | 2434 | synchronize_srcu(&fs_info->subvol_srcu); |
2421 | 2435 | ||
2436 | __btrfs_remove_free_space_cache(root->free_ino_pinned); | ||
2437 | __btrfs_remove_free_space_cache(root->free_ino_ctl); | ||
2422 | free_fs_root(root); | 2438 | free_fs_root(root); |
2423 | return 0; | 2439 | return 0; |
2424 | } | 2440 | } |
2425 | 2441 | ||
2426 | static void free_fs_root(struct btrfs_root *root) | 2442 | static void free_fs_root(struct btrfs_root *root) |
2427 | { | 2443 | { |
2444 | iput(root->cache_inode); | ||
2428 | WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree)); | 2445 | WARN_ON(!RB_EMPTY_ROOT(&root->inode_tree)); |
2429 | if (root->anon_super.s_dev) { | 2446 | if (root->anon_super.s_dev) { |
2430 | down_write(&root->anon_super.s_umount); | 2447 | down_write(&root->anon_super.s_umount); |
@@ -2432,6 +2449,8 @@ static void free_fs_root(struct btrfs_root *root) | |||
2432 | } | 2449 | } |
2433 | free_extent_buffer(root->node); | 2450 | free_extent_buffer(root->node); |
2434 | free_extent_buffer(root->commit_root); | 2451 | free_extent_buffer(root->commit_root); |
2452 | kfree(root->free_ino_ctl); | ||
2453 | kfree(root->free_ino_pinned); | ||
2435 | kfree(root->name); | 2454 | kfree(root->name); |
2436 | kfree(root); | 2455 | kfree(root); |
2437 | } | 2456 | } |
diff --git a/fs/btrfs/export.c b/fs/btrfs/export.c index b4ffad859adb..1b8dc33778f9 100644 --- a/fs/btrfs/export.c +++ b/fs/btrfs/export.c | |||
@@ -32,7 +32,7 @@ static int btrfs_encode_fh(struct dentry *dentry, u32 *fh, int *max_len, | |||
32 | len = BTRFS_FID_SIZE_NON_CONNECTABLE; | 32 | len = BTRFS_FID_SIZE_NON_CONNECTABLE; |
33 | type = FILEID_BTRFS_WITHOUT_PARENT; | 33 | type = FILEID_BTRFS_WITHOUT_PARENT; |
34 | 34 | ||
35 | fid->objectid = inode->i_ino; | 35 | fid->objectid = btrfs_ino(inode); |
36 | fid->root_objectid = BTRFS_I(inode)->root->objectid; | 36 | fid->root_objectid = BTRFS_I(inode)->root->objectid; |
37 | fid->gen = inode->i_generation; | 37 | fid->gen = inode->i_generation; |
38 | 38 | ||
@@ -178,13 +178,13 @@ static struct dentry *btrfs_get_parent(struct dentry *child) | |||
178 | if (!path) | 178 | if (!path) |
179 | return ERR_PTR(-ENOMEM); | 179 | return ERR_PTR(-ENOMEM); |
180 | 180 | ||
181 | if (dir->i_ino == BTRFS_FIRST_FREE_OBJECTID) { | 181 | if (btrfs_ino(dir) == BTRFS_FIRST_FREE_OBJECTID) { |
182 | key.objectid = root->root_key.objectid; | 182 | key.objectid = root->root_key.objectid; |
183 | key.type = BTRFS_ROOT_BACKREF_KEY; | 183 | key.type = BTRFS_ROOT_BACKREF_KEY; |
184 | key.offset = (u64)-1; | 184 | key.offset = (u64)-1; |
185 | root = root->fs_info->tree_root; | 185 | root = root->fs_info->tree_root; |
186 | } else { | 186 | } else { |
187 | key.objectid = dir->i_ino; | 187 | key.objectid = btrfs_ino(dir); |
188 | key.type = BTRFS_INODE_REF_KEY; | 188 | key.type = BTRFS_INODE_REF_KEY; |
189 | key.offset = (u64)-1; | 189 | key.offset = (u64)-1; |
190 | } | 190 | } |
@@ -244,6 +244,7 @@ static int btrfs_get_name(struct dentry *parent, char *name, | |||
244 | struct btrfs_key key; | 244 | struct btrfs_key key; |
245 | int name_len; | 245 | int name_len; |
246 | int ret; | 246 | int ret; |
247 | u64 ino; | ||
247 | 248 | ||
248 | if (!dir || !inode) | 249 | if (!dir || !inode) |
249 | return -EINVAL; | 250 | return -EINVAL; |
@@ -251,19 +252,21 @@ static int btrfs_get_name(struct dentry *parent, char *name, | |||
251 | if (!S_ISDIR(dir->i_mode)) | 252 | if (!S_ISDIR(dir->i_mode)) |
252 | return -EINVAL; | 253 | return -EINVAL; |
253 | 254 | ||
255 | ino = btrfs_ino(inode); | ||
256 | |||
254 | path = btrfs_alloc_path(); | 257 | path = btrfs_alloc_path(); |
255 | if (!path) | 258 | if (!path) |
256 | return -ENOMEM; | 259 | return -ENOMEM; |
257 | path->leave_spinning = 1; | 260 | path->leave_spinning = 1; |
258 | 261 | ||
259 | if (inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) { | 262 | if (ino == BTRFS_FIRST_FREE_OBJECTID) { |
260 | key.objectid = BTRFS_I(inode)->root->root_key.objectid; | 263 | key.objectid = BTRFS_I(inode)->root->root_key.objectid; |
261 | key.type = BTRFS_ROOT_BACKREF_KEY; | 264 | key.type = BTRFS_ROOT_BACKREF_KEY; |
262 | key.offset = (u64)-1; | 265 | key.offset = (u64)-1; |
263 | root = root->fs_info->tree_root; | 266 | root = root->fs_info->tree_root; |
264 | } else { | 267 | } else { |
265 | key.objectid = inode->i_ino; | 268 | key.objectid = ino; |
266 | key.offset = dir->i_ino; | 269 | key.offset = btrfs_ino(dir); |
267 | key.type = BTRFS_INODE_REF_KEY; | 270 | key.type = BTRFS_INODE_REF_KEY; |
268 | } | 271 | } |
269 | 272 | ||
@@ -272,7 +275,7 @@ static int btrfs_get_name(struct dentry *parent, char *name, | |||
272 | btrfs_free_path(path); | 275 | btrfs_free_path(path); |
273 | return ret; | 276 | return ret; |
274 | } else if (ret > 0) { | 277 | } else if (ret > 0) { |
275 | if (inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) { | 278 | if (ino == BTRFS_FIRST_FREE_OBJECTID) { |
276 | path->slots[0]--; | 279 | path->slots[0]--; |
277 | } else { | 280 | } else { |
278 | btrfs_free_path(path); | 281 | btrfs_free_path(path); |
@@ -281,11 +284,11 @@ static int btrfs_get_name(struct dentry *parent, char *name, | |||
281 | } | 284 | } |
282 | leaf = path->nodes[0]; | 285 | leaf = path->nodes[0]; |
283 | 286 | ||
284 | if (inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) { | 287 | if (ino == BTRFS_FIRST_FREE_OBJECTID) { |
285 | rref = btrfs_item_ptr(leaf, path->slots[0], | 288 | rref = btrfs_item_ptr(leaf, path->slots[0], |
286 | struct btrfs_root_ref); | 289 | struct btrfs_root_ref); |
287 | name_ptr = (unsigned long)(rref + 1); | 290 | name_ptr = (unsigned long)(rref + 1); |
288 | name_len = btrfs_root_ref_name_len(leaf, rref); | 291 | name_len = btrfs_root_ref_name_len(leaf, rref); |
289 | } else { | 292 | } else { |
290 | iref = btrfs_item_ptr(leaf, path->slots[0], | 293 | iref = btrfs_item_ptr(leaf, path->slots[0], |
291 | struct btrfs_inode_ref); | 294 | struct btrfs_inode_ref); |
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 7b0433866f36..810d1f80b497 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
@@ -105,6 +105,7 @@ void btrfs_put_block_group(struct btrfs_block_group_cache *cache) | |||
105 | WARN_ON(cache->pinned > 0); | 105 | WARN_ON(cache->pinned > 0); |
106 | WARN_ON(cache->reserved > 0); | 106 | WARN_ON(cache->reserved > 0); |
107 | WARN_ON(cache->reserved_pinned > 0); | 107 | WARN_ON(cache->reserved_pinned > 0); |
108 | kfree(cache->free_space_ctl); | ||
108 | kfree(cache); | 109 | kfree(cache); |
109 | } | 110 | } |
110 | } | 111 | } |
@@ -3144,7 +3145,8 @@ int btrfs_check_data_free_space(struct inode *inode, u64 bytes) | |||
3144 | /* make sure bytes are sectorsize aligned */ | 3145 | /* make sure bytes are sectorsize aligned */ |
3145 | bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1); | 3146 | bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1); |
3146 | 3147 | ||
3147 | if (root == root->fs_info->tree_root) { | 3148 | if (root == root->fs_info->tree_root || |
3149 | BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) { | ||
3148 | alloc_chunk = 0; | 3150 | alloc_chunk = 0; |
3149 | committed = 1; | 3151 | committed = 1; |
3150 | } | 3152 | } |
@@ -4887,7 +4889,7 @@ wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, | |||
4887 | return 0; | 4889 | return 0; |
4888 | 4890 | ||
4889 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || | 4891 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
4890 | (cache->free_space >= num_bytes)); | 4892 | (cache->free_space_ctl->free_space >= num_bytes)); |
4891 | 4893 | ||
4892 | put_caching_control(caching_ctl); | 4894 | put_caching_control(caching_ctl); |
4893 | return 0; | 4895 | return 0; |
@@ -7002,8 +7004,8 @@ static noinline int get_new_locations(struct inode *reloc_inode, | |||
7002 | 7004 | ||
7003 | cur_pos = extent_key->objectid - offset; | 7005 | cur_pos = extent_key->objectid - offset; |
7004 | last_byte = extent_key->objectid + extent_key->offset; | 7006 | last_byte = extent_key->objectid + extent_key->offset; |
7005 | ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino, | 7007 | ret = btrfs_lookup_file_extent(NULL, root, path, |
7006 | cur_pos, 0); | 7008 | btrfs_ino(reloc_inode), cur_pos, 0); |
7007 | if (ret < 0) | 7009 | if (ret < 0) |
7008 | goto out; | 7010 | goto out; |
7009 | if (ret > 0) { | 7011 | if (ret > 0) { |
@@ -7026,7 +7028,7 @@ static noinline int get_new_locations(struct inode *reloc_inode, | |||
7026 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 7028 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
7027 | if (found_key.offset != cur_pos || | 7029 | if (found_key.offset != cur_pos || |
7028 | found_key.type != BTRFS_EXTENT_DATA_KEY || | 7030 | found_key.type != BTRFS_EXTENT_DATA_KEY || |
7029 | found_key.objectid != reloc_inode->i_ino) | 7031 | found_key.objectid != btrfs_ino(reloc_inode)) |
7030 | break; | 7032 | break; |
7031 | 7033 | ||
7032 | fi = btrfs_item_ptr(leaf, path->slots[0], | 7034 | fi = btrfs_item_ptr(leaf, path->slots[0], |
@@ -7172,7 +7174,7 @@ next: | |||
7172 | break; | 7174 | break; |
7173 | } | 7175 | } |
7174 | 7176 | ||
7175 | if (inode && key.objectid != inode->i_ino) { | 7177 | if (inode && key.objectid != btrfs_ino(inode)) { |
7176 | BUG_ON(extent_locked); | 7178 | BUG_ON(extent_locked); |
7177 | btrfs_release_path(root, path); | 7179 | btrfs_release_path(root, path); |
7178 | mutex_unlock(&inode->i_mutex); | 7180 | mutex_unlock(&inode->i_mutex); |
@@ -7481,7 +7483,7 @@ static noinline int invalidate_extent_cache(struct btrfs_root *root, | |||
7481 | continue; | 7483 | continue; |
7482 | if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) | 7484 | if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) |
7483 | continue; | 7485 | continue; |
7484 | if (!inode || inode->i_ino != key.objectid) { | 7486 | if (!inode || btrfs_ino(inode) != key.objectid) { |
7485 | iput(inode); | 7487 | iput(inode); |
7486 | inode = btrfs_ilookup(target_root->fs_info->sb, | 7488 | inode = btrfs_ilookup(target_root->fs_info->sb, |
7487 | key.objectid, target_root, 1); | 7489 | key.objectid, target_root, 1); |
@@ -8549,10 +8551,16 @@ int btrfs_read_block_groups(struct btrfs_root *root) | |||
8549 | ret = -ENOMEM; | 8551 | ret = -ENOMEM; |
8550 | goto error; | 8552 | goto error; |
8551 | } | 8553 | } |
8554 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), | ||
8555 | GFP_NOFS); | ||
8556 | if (!cache->free_space_ctl) { | ||
8557 | kfree(cache); | ||
8558 | ret = -ENOMEM; | ||
8559 | goto error; | ||
8560 | } | ||
8552 | 8561 | ||
8553 | atomic_set(&cache->count, 1); | 8562 | atomic_set(&cache->count, 1); |
8554 | spin_lock_init(&cache->lock); | 8563 | spin_lock_init(&cache->lock); |
8555 | spin_lock_init(&cache->tree_lock); | ||
8556 | cache->fs_info = info; | 8564 | cache->fs_info = info; |
8557 | INIT_LIST_HEAD(&cache->list); | 8565 | INIT_LIST_HEAD(&cache->list); |
8558 | INIT_LIST_HEAD(&cache->cluster_list); | 8566 | INIT_LIST_HEAD(&cache->cluster_list); |
@@ -8560,14 +8568,6 @@ int btrfs_read_block_groups(struct btrfs_root *root) | |||
8560 | if (need_clear) | 8568 | if (need_clear) |
8561 | cache->disk_cache_state = BTRFS_DC_CLEAR; | 8569 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
8562 | 8570 | ||
8563 | /* | ||
8564 | * we only want to have 32k of ram per block group for keeping | ||
8565 | * track of free space, and if we pass 1/2 of that we want to | ||
8566 | * start converting things over to using bitmaps | ||
8567 | */ | ||
8568 | cache->extents_thresh = ((1024 * 32) / 2) / | ||
8569 | sizeof(struct btrfs_free_space); | ||
8570 | |||
8571 | read_extent_buffer(leaf, &cache->item, | 8571 | read_extent_buffer(leaf, &cache->item, |
8572 | btrfs_item_ptr_offset(leaf, path->slots[0]), | 8572 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
8573 | sizeof(cache->item)); | 8573 | sizeof(cache->item)); |
@@ -8578,6 +8578,8 @@ int btrfs_read_block_groups(struct btrfs_root *root) | |||
8578 | cache->flags = btrfs_block_group_flags(&cache->item); | 8578 | cache->flags = btrfs_block_group_flags(&cache->item); |
8579 | cache->sectorsize = root->sectorsize; | 8579 | cache->sectorsize = root->sectorsize; |
8580 | 8580 | ||
8581 | btrfs_init_free_space_ctl(cache); | ||
8582 | |||
8581 | /* | 8583 | /* |
8582 | * We need to exclude the super stripes now so that the space | 8584 | * We need to exclude the super stripes now so that the space |
8583 | * info has super bytes accounted for, otherwise we'll think | 8585 | * info has super bytes accounted for, otherwise we'll think |
@@ -8664,6 +8666,12 @@ int btrfs_make_block_group(struct btrfs_trans_handle *trans, | |||
8664 | cache = kzalloc(sizeof(*cache), GFP_NOFS); | 8666 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
8665 | if (!cache) | 8667 | if (!cache) |
8666 | return -ENOMEM; | 8668 | return -ENOMEM; |
8669 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), | ||
8670 | GFP_NOFS); | ||
8671 | if (!cache->free_space_ctl) { | ||
8672 | kfree(cache); | ||
8673 | return -ENOMEM; | ||
8674 | } | ||
8667 | 8675 | ||
8668 | cache->key.objectid = chunk_offset; | 8676 | cache->key.objectid = chunk_offset; |
8669 | cache->key.offset = size; | 8677 | cache->key.offset = size; |
@@ -8671,19 +8679,13 @@ int btrfs_make_block_group(struct btrfs_trans_handle *trans, | |||
8671 | cache->sectorsize = root->sectorsize; | 8679 | cache->sectorsize = root->sectorsize; |
8672 | cache->fs_info = root->fs_info; | 8680 | cache->fs_info = root->fs_info; |
8673 | 8681 | ||
8674 | /* | ||
8675 | * we only want to have 32k of ram per block group for keeping track | ||
8676 | * of free space, and if we pass 1/2 of that we want to start | ||
8677 | * converting things over to using bitmaps | ||
8678 | */ | ||
8679 | cache->extents_thresh = ((1024 * 32) / 2) / | ||
8680 | sizeof(struct btrfs_free_space); | ||
8681 | atomic_set(&cache->count, 1); | 8682 | atomic_set(&cache->count, 1); |
8682 | spin_lock_init(&cache->lock); | 8683 | spin_lock_init(&cache->lock); |
8683 | spin_lock_init(&cache->tree_lock); | ||
8684 | INIT_LIST_HEAD(&cache->list); | 8684 | INIT_LIST_HEAD(&cache->list); |
8685 | INIT_LIST_HEAD(&cache->cluster_list); | 8685 | INIT_LIST_HEAD(&cache->cluster_list); |
8686 | 8686 | ||
8687 | btrfs_init_free_space_ctl(cache); | ||
8688 | |||
8687 | btrfs_set_block_group_used(&cache->item, bytes_used); | 8689 | btrfs_set_block_group_used(&cache->item, bytes_used); |
8688 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); | 8690 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
8689 | cache->flags = type; | 8691 | cache->flags = type; |
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index ba41da59e31b..4bf90abea3d6 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c | |||
@@ -3030,7 +3030,7 @@ int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | |||
3030 | * because there might be preallocation past i_size | 3030 | * because there might be preallocation past i_size |
3031 | */ | 3031 | */ |
3032 | ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root, | 3032 | ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root, |
3033 | path, inode->i_ino, -1, 0); | 3033 | path, btrfs_ino(inode), -1, 0); |
3034 | if (ret < 0) { | 3034 | if (ret < 0) { |
3035 | btrfs_free_path(path); | 3035 | btrfs_free_path(path); |
3036 | return ret; | 3036 | return ret; |
@@ -3043,7 +3043,7 @@ int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | |||
3043 | found_type = btrfs_key_type(&found_key); | 3043 | found_type = btrfs_key_type(&found_key); |
3044 | 3044 | ||
3045 | /* No extents, but there might be delalloc bits */ | 3045 | /* No extents, but there might be delalloc bits */ |
3046 | if (found_key.objectid != inode->i_ino || | 3046 | if (found_key.objectid != btrfs_ino(inode) || |
3047 | found_type != BTRFS_EXTENT_DATA_KEY) { | 3047 | found_type != BTRFS_EXTENT_DATA_KEY) { |
3048 | /* have to trust i_size as the end */ | 3048 | /* have to trust i_size as the end */ |
3049 | last = (u64)-1; | 3049 | last = (u64)-1; |
diff --git a/fs/btrfs/file-item.c b/fs/btrfs/file-item.c index a6a9d4e8b491..1d9410e39212 100644 --- a/fs/btrfs/file-item.c +++ b/fs/btrfs/file-item.c | |||
@@ -208,8 +208,9 @@ static int __btrfs_lookup_bio_sums(struct btrfs_root *root, | |||
208 | EXTENT_NODATASUM, GFP_NOFS); | 208 | EXTENT_NODATASUM, GFP_NOFS); |
209 | } else { | 209 | } else { |
210 | printk(KERN_INFO "btrfs no csum found " | 210 | printk(KERN_INFO "btrfs no csum found " |
211 | "for inode %lu start %llu\n", | 211 | "for inode %llu start %llu\n", |
212 | inode->i_ino, | 212 | (unsigned long long) |
213 | btrfs_ino(inode), | ||
213 | (unsigned long long)offset); | 214 | (unsigned long long)offset); |
214 | } | 215 | } |
215 | item = NULL; | 216 | item = NULL; |
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 75899a01dded..bef020451525 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c | |||
@@ -298,6 +298,7 @@ int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode, | |||
298 | struct btrfs_path *path; | 298 | struct btrfs_path *path; |
299 | struct btrfs_key key; | 299 | struct btrfs_key key; |
300 | struct btrfs_key new_key; | 300 | struct btrfs_key new_key; |
301 | u64 ino = btrfs_ino(inode); | ||
301 | u64 search_start = start; | 302 | u64 search_start = start; |
302 | u64 disk_bytenr = 0; | 303 | u64 disk_bytenr = 0; |
303 | u64 num_bytes = 0; | 304 | u64 num_bytes = 0; |
@@ -318,14 +319,14 @@ int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode, | |||
318 | 319 | ||
319 | while (1) { | 320 | while (1) { |
320 | recow = 0; | 321 | recow = 0; |
321 | ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino, | 322 | ret = btrfs_lookup_file_extent(trans, root, path, ino, |
322 | search_start, -1); | 323 | search_start, -1); |
323 | if (ret < 0) | 324 | if (ret < 0) |
324 | break; | 325 | break; |
325 | if (ret > 0 && path->slots[0] > 0 && search_start == start) { | 326 | if (ret > 0 && path->slots[0] > 0 && search_start == start) { |
326 | leaf = path->nodes[0]; | 327 | leaf = path->nodes[0]; |
327 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); | 328 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); |
328 | if (key.objectid == inode->i_ino && | 329 | if (key.objectid == ino && |
329 | key.type == BTRFS_EXTENT_DATA_KEY) | 330 | key.type == BTRFS_EXTENT_DATA_KEY) |
330 | path->slots[0]--; | 331 | path->slots[0]--; |
331 | } | 332 | } |
@@ -346,7 +347,7 @@ next_slot: | |||
346 | } | 347 | } |
347 | 348 | ||
348 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | 349 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
349 | if (key.objectid > inode->i_ino || | 350 | if (key.objectid > ino || |
350 | key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end) | 351 | key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end) |
351 | break; | 352 | break; |
352 | 353 | ||
@@ -592,6 +593,7 @@ int btrfs_mark_extent_written(struct btrfs_trans_handle *trans, | |||
592 | int del_slot = 0; | 593 | int del_slot = 0; |
593 | int recow; | 594 | int recow; |
594 | int ret; | 595 | int ret; |
596 | u64 ino = btrfs_ino(inode); | ||
595 | 597 | ||
596 | btrfs_drop_extent_cache(inode, start, end - 1, 0); | 598 | btrfs_drop_extent_cache(inode, start, end - 1, 0); |
597 | 599 | ||
@@ -600,7 +602,7 @@ int btrfs_mark_extent_written(struct btrfs_trans_handle *trans, | |||
600 | again: | 602 | again: |
601 | recow = 0; | 603 | recow = 0; |
602 | split = start; | 604 | split = start; |
603 | key.objectid = inode->i_ino; | 605 | key.objectid = ino; |
604 | key.type = BTRFS_EXTENT_DATA_KEY; | 606 | key.type = BTRFS_EXTENT_DATA_KEY; |
605 | key.offset = split; | 607 | key.offset = split; |
606 | 608 | ||
@@ -612,8 +614,7 @@ again: | |||
612 | 614 | ||
613 | leaf = path->nodes[0]; | 615 | leaf = path->nodes[0]; |
614 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | 616 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
615 | BUG_ON(key.objectid != inode->i_ino || | 617 | BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY); |
616 | key.type != BTRFS_EXTENT_DATA_KEY); | ||
617 | fi = btrfs_item_ptr(leaf, path->slots[0], | 618 | fi = btrfs_item_ptr(leaf, path->slots[0], |
618 | struct btrfs_file_extent_item); | 619 | struct btrfs_file_extent_item); |
619 | BUG_ON(btrfs_file_extent_type(leaf, fi) != | 620 | BUG_ON(btrfs_file_extent_type(leaf, fi) != |
@@ -630,7 +631,7 @@ again: | |||
630 | other_start = 0; | 631 | other_start = 0; |
631 | other_end = start; | 632 | other_end = start; |
632 | if (extent_mergeable(leaf, path->slots[0] - 1, | 633 | if (extent_mergeable(leaf, path->slots[0] - 1, |
633 | inode->i_ino, bytenr, orig_offset, | 634 | ino, bytenr, orig_offset, |
634 | &other_start, &other_end)) { | 635 | &other_start, &other_end)) { |
635 | new_key.offset = end; | 636 | new_key.offset = end; |
636 | btrfs_set_item_key_safe(trans, root, path, &new_key); | 637 | btrfs_set_item_key_safe(trans, root, path, &new_key); |
@@ -653,7 +654,7 @@ again: | |||
653 | other_start = end; | 654 | other_start = end; |
654 | other_end = 0; | 655 | other_end = 0; |
655 | if (extent_mergeable(leaf, path->slots[0] + 1, | 656 | if (extent_mergeable(leaf, path->slots[0] + 1, |
656 | inode->i_ino, bytenr, orig_offset, | 657 | ino, bytenr, orig_offset, |
657 | &other_start, &other_end)) { | 658 | &other_start, &other_end)) { |
658 | fi = btrfs_item_ptr(leaf, path->slots[0], | 659 | fi = btrfs_item_ptr(leaf, path->slots[0], |
659 | struct btrfs_file_extent_item); | 660 | struct btrfs_file_extent_item); |
@@ -702,7 +703,7 @@ again: | |||
702 | 703 | ||
703 | ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0, | 704 | ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0, |
704 | root->root_key.objectid, | 705 | root->root_key.objectid, |
705 | inode->i_ino, orig_offset); | 706 | ino, orig_offset); |
706 | BUG_ON(ret); | 707 | BUG_ON(ret); |
707 | 708 | ||
708 | if (split == start) { | 709 | if (split == start) { |
@@ -718,7 +719,7 @@ again: | |||
718 | other_start = end; | 719 | other_start = end; |
719 | other_end = 0; | 720 | other_end = 0; |
720 | if (extent_mergeable(leaf, path->slots[0] + 1, | 721 | if (extent_mergeable(leaf, path->slots[0] + 1, |
721 | inode->i_ino, bytenr, orig_offset, | 722 | ino, bytenr, orig_offset, |
722 | &other_start, &other_end)) { | 723 | &other_start, &other_end)) { |
723 | if (recow) { | 724 | if (recow) { |
724 | btrfs_release_path(root, path); | 725 | btrfs_release_path(root, path); |
@@ -729,13 +730,13 @@ again: | |||
729 | del_nr++; | 730 | del_nr++; |
730 | ret = btrfs_free_extent(trans, root, bytenr, num_bytes, | 731 | ret = btrfs_free_extent(trans, root, bytenr, num_bytes, |
731 | 0, root->root_key.objectid, | 732 | 0, root->root_key.objectid, |
732 | inode->i_ino, orig_offset); | 733 | ino, orig_offset); |
733 | BUG_ON(ret); | 734 | BUG_ON(ret); |
734 | } | 735 | } |
735 | other_start = 0; | 736 | other_start = 0; |
736 | other_end = start; | 737 | other_end = start; |
737 | if (extent_mergeable(leaf, path->slots[0] - 1, | 738 | if (extent_mergeable(leaf, path->slots[0] - 1, |
738 | inode->i_ino, bytenr, orig_offset, | 739 | ino, bytenr, orig_offset, |
739 | &other_start, &other_end)) { | 740 | &other_start, &other_end)) { |
740 | if (recow) { | 741 | if (recow) { |
741 | btrfs_release_path(root, path); | 742 | btrfs_release_path(root, path); |
@@ -746,7 +747,7 @@ again: | |||
746 | del_nr++; | 747 | del_nr++; |
747 | ret = btrfs_free_extent(trans, root, bytenr, num_bytes, | 748 | ret = btrfs_free_extent(trans, root, bytenr, num_bytes, |
748 | 0, root->root_key.objectid, | 749 | 0, root->root_key.objectid, |
749 | inode->i_ino, orig_offset); | 750 | ino, orig_offset); |
750 | BUG_ON(ret); | 751 | BUG_ON(ret); |
751 | } | 752 | } |
752 | if (del_nr == 0) { | 753 | if (del_nr == 0) { |
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c index 63731a1fb0a1..25a13ab750f8 100644 --- a/fs/btrfs/free-space-cache.c +++ b/fs/btrfs/free-space-cache.c | |||
@@ -25,18 +25,17 @@ | |||
25 | #include "transaction.h" | 25 | #include "transaction.h" |
26 | #include "disk-io.h" | 26 | #include "disk-io.h" |
27 | #include "extent_io.h" | 27 | #include "extent_io.h" |
28 | #include "inode-map.h" | ||
28 | 29 | ||
29 | #define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8) | 30 | #define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8) |
30 | #define MAX_CACHE_BYTES_PER_GIG (32 * 1024) | 31 | #define MAX_CACHE_BYTES_PER_GIG (32 * 1024) |
31 | 32 | ||
32 | static void recalculate_thresholds(struct btrfs_block_group_cache | 33 | static int link_free_space(struct btrfs_free_space_ctl *ctl, |
33 | *block_group); | ||
34 | static int link_free_space(struct btrfs_block_group_cache *block_group, | ||
35 | struct btrfs_free_space *info); | 34 | struct btrfs_free_space *info); |
36 | 35 | ||
37 | struct inode *lookup_free_space_inode(struct btrfs_root *root, | 36 | static struct inode *__lookup_free_space_inode(struct btrfs_root *root, |
38 | struct btrfs_block_group_cache | 37 | struct btrfs_path *path, |
39 | *block_group, struct btrfs_path *path) | 38 | u64 offset) |
40 | { | 39 | { |
41 | struct btrfs_key key; | 40 | struct btrfs_key key; |
42 | struct btrfs_key location; | 41 | struct btrfs_key location; |
@@ -46,15 +45,8 @@ struct inode *lookup_free_space_inode(struct btrfs_root *root, | |||
46 | struct inode *inode = NULL; | 45 | struct inode *inode = NULL; |
47 | int ret; | 46 | int ret; |
48 | 47 | ||
49 | spin_lock(&block_group->lock); | ||
50 | if (block_group->inode) | ||
51 | inode = igrab(block_group->inode); | ||
52 | spin_unlock(&block_group->lock); | ||
53 | if (inode) | ||
54 | return inode; | ||
55 | |||
56 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; | 48 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
57 | key.offset = block_group->key.objectid; | 49 | key.offset = offset; |
58 | key.type = 0; | 50 | key.type = 0; |
59 | 51 | ||
60 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 52 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
@@ -84,6 +76,27 @@ struct inode *lookup_free_space_inode(struct btrfs_root *root, | |||
84 | 76 | ||
85 | inode->i_mapping->flags &= ~__GFP_FS; | 77 | inode->i_mapping->flags &= ~__GFP_FS; |
86 | 78 | ||
79 | return inode; | ||
80 | } | ||
81 | |||
82 | struct inode *lookup_free_space_inode(struct btrfs_root *root, | ||
83 | struct btrfs_block_group_cache | ||
84 | *block_group, struct btrfs_path *path) | ||
85 | { | ||
86 | struct inode *inode = NULL; | ||
87 | |||
88 | spin_lock(&block_group->lock); | ||
89 | if (block_group->inode) | ||
90 | inode = igrab(block_group->inode); | ||
91 | spin_unlock(&block_group->lock); | ||
92 | if (inode) | ||
93 | return inode; | ||
94 | |||
95 | inode = __lookup_free_space_inode(root, path, | ||
96 | block_group->key.objectid); | ||
97 | if (IS_ERR(inode)) | ||
98 | return inode; | ||
99 | |||
87 | spin_lock(&block_group->lock); | 100 | spin_lock(&block_group->lock); |
88 | if (!root->fs_info->closing) { | 101 | if (!root->fs_info->closing) { |
89 | block_group->inode = igrab(inode); | 102 | block_group->inode = igrab(inode); |
@@ -94,24 +107,18 @@ struct inode *lookup_free_space_inode(struct btrfs_root *root, | |||
94 | return inode; | 107 | return inode; |
95 | } | 108 | } |
96 | 109 | ||
97 | int create_free_space_inode(struct btrfs_root *root, | 110 | int __create_free_space_inode(struct btrfs_root *root, |
98 | struct btrfs_trans_handle *trans, | 111 | struct btrfs_trans_handle *trans, |
99 | struct btrfs_block_group_cache *block_group, | 112 | struct btrfs_path *path, u64 ino, u64 offset) |
100 | struct btrfs_path *path) | ||
101 | { | 113 | { |
102 | struct btrfs_key key; | 114 | struct btrfs_key key; |
103 | struct btrfs_disk_key disk_key; | 115 | struct btrfs_disk_key disk_key; |
104 | struct btrfs_free_space_header *header; | 116 | struct btrfs_free_space_header *header; |
105 | struct btrfs_inode_item *inode_item; | 117 | struct btrfs_inode_item *inode_item; |
106 | struct extent_buffer *leaf; | 118 | struct extent_buffer *leaf; |
107 | u64 objectid; | ||
108 | int ret; | 119 | int ret; |
109 | 120 | ||
110 | ret = btrfs_find_free_objectid(trans, root, 0, &objectid); | 121 | ret = btrfs_insert_empty_inode(trans, root, path, ino); |
111 | if (ret < 0) | ||
112 | return ret; | ||
113 | |||
114 | ret = btrfs_insert_empty_inode(trans, root, path, objectid); | ||
115 | if (ret) | 122 | if (ret) |
116 | return ret; | 123 | return ret; |
117 | 124 | ||
@@ -131,13 +138,12 @@ int create_free_space_inode(struct btrfs_root *root, | |||
131 | BTRFS_INODE_PREALLOC | BTRFS_INODE_NODATASUM); | 138 | BTRFS_INODE_PREALLOC | BTRFS_INODE_NODATASUM); |
132 | btrfs_set_inode_nlink(leaf, inode_item, 1); | 139 | btrfs_set_inode_nlink(leaf, inode_item, 1); |
133 | btrfs_set_inode_transid(leaf, inode_item, trans->transid); | 140 | btrfs_set_inode_transid(leaf, inode_item, trans->transid); |
134 | btrfs_set_inode_block_group(leaf, inode_item, | 141 | btrfs_set_inode_block_group(leaf, inode_item, offset); |
135 | block_group->key.objectid); | ||
136 | btrfs_mark_buffer_dirty(leaf); | 142 | btrfs_mark_buffer_dirty(leaf); |
137 | btrfs_release_path(root, path); | 143 | btrfs_release_path(root, path); |
138 | 144 | ||
139 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; | 145 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
140 | key.offset = block_group->key.objectid; | 146 | key.offset = offset; |
141 | key.type = 0; | 147 | key.type = 0; |
142 | 148 | ||
143 | ret = btrfs_insert_empty_item(trans, root, path, &key, | 149 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
@@ -157,6 +163,22 @@ int create_free_space_inode(struct btrfs_root *root, | |||
157 | return 0; | 163 | return 0; |
158 | } | 164 | } |
159 | 165 | ||
166 | int create_free_space_inode(struct btrfs_root *root, | ||
167 | struct btrfs_trans_handle *trans, | ||
168 | struct btrfs_block_group_cache *block_group, | ||
169 | struct btrfs_path *path) | ||
170 | { | ||
171 | int ret; | ||
172 | u64 ino; | ||
173 | |||
174 | ret = btrfs_find_free_objectid(root, &ino); | ||
175 | if (ret < 0) | ||
176 | return ret; | ||
177 | |||
178 | return __create_free_space_inode(root, trans, path, ino, | ||
179 | block_group->key.objectid); | ||
180 | } | ||
181 | |||
160 | int btrfs_truncate_free_space_cache(struct btrfs_root *root, | 182 | int btrfs_truncate_free_space_cache(struct btrfs_root *root, |
161 | struct btrfs_trans_handle *trans, | 183 | struct btrfs_trans_handle *trans, |
162 | struct btrfs_path *path, | 184 | struct btrfs_path *path, |
@@ -187,7 +209,8 @@ int btrfs_truncate_free_space_cache(struct btrfs_root *root, | |||
187 | return ret; | 209 | return ret; |
188 | } | 210 | } |
189 | 211 | ||
190 | return btrfs_update_inode(trans, root, inode); | 212 | ret = btrfs_update_inode(trans, root, inode); |
213 | return ret; | ||
191 | } | 214 | } |
192 | 215 | ||
193 | static int readahead_cache(struct inode *inode) | 216 | static int readahead_cache(struct inode *inode) |
@@ -209,15 +232,13 @@ static int readahead_cache(struct inode *inode) | |||
209 | return 0; | 232 | return 0; |
210 | } | 233 | } |
211 | 234 | ||
212 | int load_free_space_cache(struct btrfs_fs_info *fs_info, | 235 | int __load_free_space_cache(struct btrfs_root *root, struct inode *inode, |
213 | struct btrfs_block_group_cache *block_group) | 236 | struct btrfs_free_space_ctl *ctl, |
237 | struct btrfs_path *path, u64 offset) | ||
214 | { | 238 | { |
215 | struct btrfs_root *root = fs_info->tree_root; | ||
216 | struct inode *inode; | ||
217 | struct btrfs_free_space_header *header; | 239 | struct btrfs_free_space_header *header; |
218 | struct extent_buffer *leaf; | 240 | struct extent_buffer *leaf; |
219 | struct page *page; | 241 | struct page *page; |
220 | struct btrfs_path *path; | ||
221 | u32 *checksums = NULL, *crc; | 242 | u32 *checksums = NULL, *crc; |
222 | char *disk_crcs = NULL; | 243 | char *disk_crcs = NULL; |
223 | struct btrfs_key key; | 244 | struct btrfs_key key; |
@@ -225,76 +246,47 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
225 | u64 num_entries; | 246 | u64 num_entries; |
226 | u64 num_bitmaps; | 247 | u64 num_bitmaps; |
227 | u64 generation; | 248 | u64 generation; |
228 | u64 used = btrfs_block_group_used(&block_group->item); | ||
229 | u32 cur_crc = ~(u32)0; | 249 | u32 cur_crc = ~(u32)0; |
230 | pgoff_t index = 0; | 250 | pgoff_t index = 0; |
231 | unsigned long first_page_offset; | 251 | unsigned long first_page_offset; |
232 | int num_checksums; | 252 | int num_checksums; |
233 | int ret = 0; | 253 | int ret = 0, ret2; |
234 | |||
235 | /* | ||
236 | * If we're unmounting then just return, since this does a search on the | ||
237 | * normal root and not the commit root and we could deadlock. | ||
238 | */ | ||
239 | smp_mb(); | ||
240 | if (fs_info->closing) | ||
241 | return 0; | ||
242 | |||
243 | /* | ||
244 | * If this block group has been marked to be cleared for one reason or | ||
245 | * another then we can't trust the on disk cache, so just return. | ||
246 | */ | ||
247 | spin_lock(&block_group->lock); | ||
248 | if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) { | ||
249 | spin_unlock(&block_group->lock); | ||
250 | return 0; | ||
251 | } | ||
252 | spin_unlock(&block_group->lock); | ||
253 | 254 | ||
254 | INIT_LIST_HEAD(&bitmaps); | 255 | INIT_LIST_HEAD(&bitmaps); |
255 | 256 | ||
256 | path = btrfs_alloc_path(); | ||
257 | if (!path) | ||
258 | return 0; | ||
259 | |||
260 | inode = lookup_free_space_inode(root, block_group, path); | ||
261 | if (IS_ERR(inode)) { | ||
262 | btrfs_free_path(path); | ||
263 | return 0; | ||
264 | } | ||
265 | |||
266 | /* Nothing in the space cache, goodbye */ | 257 | /* Nothing in the space cache, goodbye */ |
267 | if (!i_size_read(inode)) { | 258 | if (!i_size_read(inode)) |
268 | btrfs_free_path(path); | ||
269 | goto out; | 259 | goto out; |
270 | } | ||
271 | 260 | ||
272 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; | 261 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
273 | key.offset = block_group->key.objectid; | 262 | key.offset = offset; |
274 | key.type = 0; | 263 | key.type = 0; |
275 | 264 | ||
276 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 265 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
277 | if (ret) { | 266 | if (ret < 0) |
278 | btrfs_free_path(path); | 267 | goto out; |
268 | else if (ret > 0) { | ||
269 | btrfs_release_path(root, path); | ||
270 | ret = 0; | ||
279 | goto out; | 271 | goto out; |
280 | } | 272 | } |
281 | 273 | ||
274 | ret = -1; | ||
275 | |||
282 | leaf = path->nodes[0]; | 276 | leaf = path->nodes[0]; |
283 | header = btrfs_item_ptr(leaf, path->slots[0], | 277 | header = btrfs_item_ptr(leaf, path->slots[0], |
284 | struct btrfs_free_space_header); | 278 | struct btrfs_free_space_header); |
285 | num_entries = btrfs_free_space_entries(leaf, header); | 279 | num_entries = btrfs_free_space_entries(leaf, header); |
286 | num_bitmaps = btrfs_free_space_bitmaps(leaf, header); | 280 | num_bitmaps = btrfs_free_space_bitmaps(leaf, header); |
287 | generation = btrfs_free_space_generation(leaf, header); | 281 | generation = btrfs_free_space_generation(leaf, header); |
288 | btrfs_free_path(path); | 282 | btrfs_release_path(root, path); |
289 | 283 | ||
290 | if (BTRFS_I(inode)->generation != generation) { | 284 | if (BTRFS_I(inode)->generation != generation) { |
291 | printk(KERN_ERR "btrfs: free space inode generation (%llu) did" | 285 | printk(KERN_ERR "btrfs: free space inode generation (%llu) did" |
292 | " not match free space cache generation (%llu) for " | 286 | " not match free space cache generation (%llu)\n", |
293 | "block group %llu\n", | ||
294 | (unsigned long long)BTRFS_I(inode)->generation, | 287 | (unsigned long long)BTRFS_I(inode)->generation, |
295 | (unsigned long long)generation, | 288 | (unsigned long long)generation); |
296 | (unsigned long long)block_group->key.objectid); | 289 | goto out; |
297 | goto free_cache; | ||
298 | } | 290 | } |
299 | 291 | ||
300 | if (!num_entries) | 292 | if (!num_entries) |
@@ -311,10 +303,8 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
311 | goto out; | 303 | goto out; |
312 | 304 | ||
313 | ret = readahead_cache(inode); | 305 | ret = readahead_cache(inode); |
314 | if (ret) { | 306 | if (ret) |
315 | ret = 0; | ||
316 | goto out; | 307 | goto out; |
317 | } | ||
318 | 308 | ||
319 | while (1) { | 309 | while (1) { |
320 | struct btrfs_free_space_entry *entry; | 310 | struct btrfs_free_space_entry *entry; |
@@ -333,10 +323,8 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
333 | } | 323 | } |
334 | 324 | ||
335 | page = grab_cache_page(inode->i_mapping, index); | 325 | page = grab_cache_page(inode->i_mapping, index); |
336 | if (!page) { | 326 | if (!page) |
337 | ret = 0; | ||
338 | goto free_cache; | 327 | goto free_cache; |
339 | } | ||
340 | 328 | ||
341 | if (!PageUptodate(page)) { | 329 | if (!PageUptodate(page)) { |
342 | btrfs_readpage(NULL, page); | 330 | btrfs_readpage(NULL, page); |
@@ -345,9 +333,7 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
345 | unlock_page(page); | 333 | unlock_page(page); |
346 | page_cache_release(page); | 334 | page_cache_release(page); |
347 | printk(KERN_ERR "btrfs: error reading free " | 335 | printk(KERN_ERR "btrfs: error reading free " |
348 | "space cache: %llu\n", | 336 | "space cache\n"); |
349 | (unsigned long long) | ||
350 | block_group->key.objectid); | ||
351 | goto free_cache; | 337 | goto free_cache; |
352 | } | 338 | } |
353 | } | 339 | } |
@@ -360,13 +346,10 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
360 | gen = addr + (sizeof(u32) * num_checksums); | 346 | gen = addr + (sizeof(u32) * num_checksums); |
361 | if (*gen != BTRFS_I(inode)->generation) { | 347 | if (*gen != BTRFS_I(inode)->generation) { |
362 | printk(KERN_ERR "btrfs: space cache generation" | 348 | printk(KERN_ERR "btrfs: space cache generation" |
363 | " (%llu) does not match inode (%llu) " | 349 | " (%llu) does not match inode (%llu)\n", |
364 | "for block group %llu\n", | ||
365 | (unsigned long long)*gen, | 350 | (unsigned long long)*gen, |
366 | (unsigned long long) | 351 | (unsigned long long) |
367 | BTRFS_I(inode)->generation, | 352 | BTRFS_I(inode)->generation); |
368 | (unsigned long long) | ||
369 | block_group->key.objectid); | ||
370 | kunmap(page); | 353 | kunmap(page); |
371 | unlock_page(page); | 354 | unlock_page(page); |
372 | page_cache_release(page); | 355 | page_cache_release(page); |
@@ -382,9 +365,8 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
382 | PAGE_CACHE_SIZE - start_offset); | 365 | PAGE_CACHE_SIZE - start_offset); |
383 | btrfs_csum_final(cur_crc, (char *)&cur_crc); | 366 | btrfs_csum_final(cur_crc, (char *)&cur_crc); |
384 | if (cur_crc != *crc) { | 367 | if (cur_crc != *crc) { |
385 | printk(KERN_ERR "btrfs: crc mismatch for page %lu in " | 368 | printk(KERN_ERR "btrfs: crc mismatch for page %lu\n", |
386 | "block group %llu\n", index, | 369 | index); |
387 | (unsigned long long)block_group->key.objectid); | ||
388 | kunmap(page); | 370 | kunmap(page); |
389 | unlock_page(page); | 371 | unlock_page(page); |
390 | page_cache_release(page); | 372 | page_cache_release(page); |
@@ -417,9 +399,9 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
417 | } | 399 | } |
418 | 400 | ||
419 | if (entry->type == BTRFS_FREE_SPACE_EXTENT) { | 401 | if (entry->type == BTRFS_FREE_SPACE_EXTENT) { |
420 | spin_lock(&block_group->tree_lock); | 402 | spin_lock(&ctl->tree_lock); |
421 | ret = link_free_space(block_group, e); | 403 | ret = link_free_space(ctl, e); |
422 | spin_unlock(&block_group->tree_lock); | 404 | spin_unlock(&ctl->tree_lock); |
423 | BUG_ON(ret); | 405 | BUG_ON(ret); |
424 | } else { | 406 | } else { |
425 | e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); | 407 | e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); |
@@ -431,11 +413,11 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, | |||
431 | page_cache_release(page); | 413 | page_cache_release(page); |
432 | goto free_cache; | 414 | goto free_cache; |
433 | } | 415 | } |
434 | spin_lock(&block_group->tree_lock); | 416 | spin_lock(&ctl->tree_lock); |
435 | ret = link_free_space(block_group, e); | 417 | ret2 = link_free_space(ctl, e); |
436 | block_group->total_bitmaps++; | 418 | ctl->total_bitmaps++; |
437 | recalculate_thresholds(block_group); | 419 | ctl->op->recalc_thresholds(ctl); |
438 | spin_unlock(&block_group->tree_lock); | 420 | spin_unlock(&ctl->tree_lock); |
439 | list_add_tail(&e->list, &bitmaps); | 421 | list_add_tail(&e->list, &bitmaps); |
440 | } | 422 | } |
441 | 423 | ||
@@ -471,41 +453,97 @@ next: | |||
471 | index++; | 453 | index++; |
472 | } | 454 | } |
473 | 455 | ||
474 | spin_lock(&block_group->tree_lock); | ||
475 | if (block_group->free_space != (block_group->key.offset - used - | ||
476 | block_group->bytes_super)) { | ||
477 | spin_unlock(&block_group->tree_lock); | ||
478 | printk(KERN_ERR "block group %llu has an wrong amount of free " | ||
479 | "space\n", block_group->key.objectid); | ||
480 | ret = 0; | ||
481 | goto free_cache; | ||
482 | } | ||
483 | spin_unlock(&block_group->tree_lock); | ||
484 | |||
485 | ret = 1; | 456 | ret = 1; |
486 | out: | 457 | out: |
487 | kfree(checksums); | 458 | kfree(checksums); |
488 | kfree(disk_crcs); | 459 | kfree(disk_crcs); |
489 | iput(inode); | ||
490 | return ret; | 460 | return ret; |
491 | |||
492 | free_cache: | 461 | free_cache: |
493 | /* This cache is bogus, make sure it gets cleared */ | 462 | __btrfs_remove_free_space_cache(ctl); |
463 | goto out; | ||
464 | } | ||
465 | |||
466 | int load_free_space_cache(struct btrfs_fs_info *fs_info, | ||
467 | struct btrfs_block_group_cache *block_group) | ||
468 | { | ||
469 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
470 | struct btrfs_root *root = fs_info->tree_root; | ||
471 | struct inode *inode; | ||
472 | struct btrfs_path *path; | ||
473 | int ret; | ||
474 | bool matched; | ||
475 | u64 used = btrfs_block_group_used(&block_group->item); | ||
476 | |||
477 | /* | ||
478 | * If we're unmounting then just return, since this does a search on the | ||
479 | * normal root and not the commit root and we could deadlock. | ||
480 | */ | ||
481 | smp_mb(); | ||
482 | if (fs_info->closing) | ||
483 | return 0; | ||
484 | |||
485 | /* | ||
486 | * If this block group has been marked to be cleared for one reason or | ||
487 | * another then we can't trust the on disk cache, so just return. | ||
488 | */ | ||
494 | spin_lock(&block_group->lock); | 489 | spin_lock(&block_group->lock); |
495 | block_group->disk_cache_state = BTRFS_DC_CLEAR; | 490 | if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) { |
491 | spin_unlock(&block_group->lock); | ||
492 | return 0; | ||
493 | } | ||
496 | spin_unlock(&block_group->lock); | 494 | spin_unlock(&block_group->lock); |
497 | btrfs_remove_free_space_cache(block_group); | 495 | |
498 | goto out; | 496 | path = btrfs_alloc_path(); |
497 | if (!path) | ||
498 | return 0; | ||
499 | |||
500 | inode = lookup_free_space_inode(root, block_group, path); | ||
501 | if (IS_ERR(inode)) { | ||
502 | btrfs_free_path(path); | ||
503 | return 0; | ||
504 | } | ||
505 | |||
506 | ret = __load_free_space_cache(fs_info->tree_root, inode, ctl, | ||
507 | path, block_group->key.objectid); | ||
508 | btrfs_free_path(path); | ||
509 | if (ret <= 0) | ||
510 | goto out; | ||
511 | |||
512 | spin_lock(&ctl->tree_lock); | ||
513 | matched = (ctl->free_space == (block_group->key.offset - used - | ||
514 | block_group->bytes_super)); | ||
515 | spin_unlock(&ctl->tree_lock); | ||
516 | |||
517 | if (!matched) { | ||
518 | __btrfs_remove_free_space_cache(ctl); | ||
519 | printk(KERN_ERR "block group %llu has an wrong amount of free " | ||
520 | "space\n", block_group->key.objectid); | ||
521 | ret = -1; | ||
522 | } | ||
523 | out: | ||
524 | if (ret < 0) { | ||
525 | /* This cache is bogus, make sure it gets cleared */ | ||
526 | spin_lock(&block_group->lock); | ||
527 | block_group->disk_cache_state = BTRFS_DC_CLEAR; | ||
528 | spin_unlock(&block_group->lock); | ||
529 | ret = 0; | ||
530 | |||
531 | printk(KERN_ERR "btrfs: failed to load free space cache " | ||
532 | "for block group %llu\n", block_group->key.objectid); | ||
533 | } | ||
534 | |||
535 | iput(inode); | ||
536 | return ret; | ||
499 | } | 537 | } |
500 | 538 | ||
501 | int btrfs_write_out_cache(struct btrfs_root *root, | 539 | int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode, |
502 | struct btrfs_trans_handle *trans, | 540 | struct btrfs_free_space_ctl *ctl, |
503 | struct btrfs_block_group_cache *block_group, | 541 | struct btrfs_block_group_cache *block_group, |
504 | struct btrfs_path *path) | 542 | struct btrfs_trans_handle *trans, |
543 | struct btrfs_path *path, u64 offset) | ||
505 | { | 544 | { |
506 | struct btrfs_free_space_header *header; | 545 | struct btrfs_free_space_header *header; |
507 | struct extent_buffer *leaf; | 546 | struct extent_buffer *leaf; |
508 | struct inode *inode; | ||
509 | struct rb_node *node; | 547 | struct rb_node *node; |
510 | struct list_head *pos, *n; | 548 | struct list_head *pos, *n; |
511 | struct page **pages; | 549 | struct page **pages; |
@@ -522,35 +560,18 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
522 | int index = 0, num_pages = 0; | 560 | int index = 0, num_pages = 0; |
523 | int entries = 0; | 561 | int entries = 0; |
524 | int bitmaps = 0; | 562 | int bitmaps = 0; |
525 | int ret = 0; | 563 | int ret = -1; |
526 | bool next_page = false; | 564 | bool next_page = false; |
527 | bool out_of_space = false; | 565 | bool out_of_space = false; |
528 | 566 | ||
529 | root = root->fs_info->tree_root; | ||
530 | |||
531 | INIT_LIST_HEAD(&bitmap_list); | 567 | INIT_LIST_HEAD(&bitmap_list); |
532 | 568 | ||
533 | spin_lock(&block_group->lock); | 569 | node = rb_first(&ctl->free_space_offset); |
534 | if (block_group->disk_cache_state < BTRFS_DC_SETUP) { | 570 | if (!node) |
535 | spin_unlock(&block_group->lock); | ||
536 | return 0; | ||
537 | } | ||
538 | spin_unlock(&block_group->lock); | ||
539 | |||
540 | inode = lookup_free_space_inode(root, block_group, path); | ||
541 | if (IS_ERR(inode)) | ||
542 | return 0; | 571 | return 0; |
543 | 572 | ||
544 | if (!i_size_read(inode)) { | 573 | if (!i_size_read(inode)) |
545 | iput(inode); | 574 | return -1; |
546 | return 0; | ||
547 | } | ||
548 | |||
549 | node = rb_first(&block_group->free_space_offset); | ||
550 | if (!node) { | ||
551 | iput(inode); | ||
552 | return 0; | ||
553 | } | ||
554 | 575 | ||
555 | num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> | 576 | num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> |
556 | PAGE_CACHE_SHIFT; | 577 | PAGE_CACHE_SHIFT; |
@@ -560,16 +581,13 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
560 | 581 | ||
561 | /* We need a checksum per page. */ | 582 | /* We need a checksum per page. */ |
562 | crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS); | 583 | crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS); |
563 | if (!crc) { | 584 | if (!crc) |
564 | iput(inode); | 585 | return -1; |
565 | return 0; | ||
566 | } | ||
567 | 586 | ||
568 | pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS); | 587 | pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS); |
569 | if (!pages) { | 588 | if (!pages) { |
570 | kfree(crc); | 589 | kfree(crc); |
571 | iput(inode); | 590 | return -1; |
572 | return 0; | ||
573 | } | 591 | } |
574 | 592 | ||
575 | /* Since the first page has all of our checksums and our generation we | 593 | /* Since the first page has all of our checksums and our generation we |
@@ -579,7 +597,7 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
579 | first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64); | 597 | first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64); |
580 | 598 | ||
581 | /* Get the cluster for this block_group if it exists */ | 599 | /* Get the cluster for this block_group if it exists */ |
582 | if (!list_empty(&block_group->cluster_list)) | 600 | if (block_group && !list_empty(&block_group->cluster_list)) |
583 | cluster = list_entry(block_group->cluster_list.next, | 601 | cluster = list_entry(block_group->cluster_list.next, |
584 | struct btrfs_free_cluster, | 602 | struct btrfs_free_cluster, |
585 | block_group_list); | 603 | block_group_list); |
@@ -621,7 +639,8 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
621 | * When searching for pinned extents, we need to start at our start | 639 | * When searching for pinned extents, we need to start at our start |
622 | * offset. | 640 | * offset. |
623 | */ | 641 | */ |
624 | start = block_group->key.objectid; | 642 | if (block_group) |
643 | start = block_group->key.objectid; | ||
625 | 644 | ||
626 | /* Write out the extent entries */ | 645 | /* Write out the extent entries */ |
627 | do { | 646 | do { |
@@ -679,8 +698,9 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
679 | * We want to add any pinned extents to our free space cache | 698 | * We want to add any pinned extents to our free space cache |
680 | * so we don't leak the space | 699 | * so we don't leak the space |
681 | */ | 700 | */ |
682 | while (!next_page && (start < block_group->key.objectid + | 701 | while (block_group && !next_page && |
683 | block_group->key.offset)) { | 702 | (start < block_group->key.objectid + |
703 | block_group->key.offset)) { | ||
684 | ret = find_first_extent_bit(unpin, start, &start, &end, | 704 | ret = find_first_extent_bit(unpin, start, &start, &end, |
685 | EXTENT_DIRTY); | 705 | EXTENT_DIRTY); |
686 | if (ret) { | 706 | if (ret) { |
@@ -798,12 +818,12 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
798 | filemap_write_and_wait(inode->i_mapping); | 818 | filemap_write_and_wait(inode->i_mapping); |
799 | 819 | ||
800 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; | 820 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
801 | key.offset = block_group->key.objectid; | 821 | key.offset = offset; |
802 | key.type = 0; | 822 | key.type = 0; |
803 | 823 | ||
804 | ret = btrfs_search_slot(trans, root, &key, path, 1, 1); | 824 | ret = btrfs_search_slot(trans, root, &key, path, 1, 1); |
805 | if (ret < 0) { | 825 | if (ret < 0) { |
806 | ret = 0; | 826 | ret = -1; |
807 | clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1, | 827 | clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1, |
808 | EXTENT_DIRTY | EXTENT_DELALLOC | | 828 | EXTENT_DIRTY | EXTENT_DELALLOC | |
809 | EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS); | 829 | EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS); |
@@ -816,8 +836,8 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
816 | path->slots[0]--; | 836 | path->slots[0]--; |
817 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 837 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
818 | if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID || | 838 | if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID || |
819 | found_key.offset != block_group->key.objectid) { | 839 | found_key.offset != offset) { |
820 | ret = 0; | 840 | ret = -1; |
821 | clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1, | 841 | clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1, |
822 | EXTENT_DIRTY | EXTENT_DELALLOC | | 842 | EXTENT_DIRTY | EXTENT_DELALLOC | |
823 | EXTENT_DO_ACCOUNTING, 0, 0, NULL, | 843 | EXTENT_DO_ACCOUNTING, 0, 0, NULL, |
@@ -837,44 +857,78 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
837 | ret = 1; | 857 | ret = 1; |
838 | 858 | ||
839 | out_free: | 859 | out_free: |
840 | if (ret == 0) { | 860 | if (ret != 1) { |
841 | invalidate_inode_pages2_range(inode->i_mapping, 0, index); | 861 | invalidate_inode_pages2_range(inode->i_mapping, 0, index); |
842 | spin_lock(&block_group->lock); | ||
843 | block_group->disk_cache_state = BTRFS_DC_ERROR; | ||
844 | spin_unlock(&block_group->lock); | ||
845 | BTRFS_I(inode)->generation = 0; | 862 | BTRFS_I(inode)->generation = 0; |
846 | } | 863 | } |
847 | kfree(checksums); | 864 | kfree(checksums); |
848 | kfree(pages); | 865 | kfree(pages); |
849 | btrfs_update_inode(trans, root, inode); | 866 | btrfs_update_inode(trans, root, inode); |
867 | return ret; | ||
868 | } | ||
869 | |||
870 | int btrfs_write_out_cache(struct btrfs_root *root, | ||
871 | struct btrfs_trans_handle *trans, | ||
872 | struct btrfs_block_group_cache *block_group, | ||
873 | struct btrfs_path *path) | ||
874 | { | ||
875 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
876 | struct inode *inode; | ||
877 | int ret = 0; | ||
878 | |||
879 | root = root->fs_info->tree_root; | ||
880 | |||
881 | spin_lock(&block_group->lock); | ||
882 | if (block_group->disk_cache_state < BTRFS_DC_SETUP) { | ||
883 | spin_unlock(&block_group->lock); | ||
884 | return 0; | ||
885 | } | ||
886 | spin_unlock(&block_group->lock); | ||
887 | |||
888 | inode = lookup_free_space_inode(root, block_group, path); | ||
889 | if (IS_ERR(inode)) | ||
890 | return 0; | ||
891 | |||
892 | ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans, | ||
893 | path, block_group->key.objectid); | ||
894 | if (ret < 0) { | ||
895 | spin_lock(&block_group->lock); | ||
896 | block_group->disk_cache_state = BTRFS_DC_ERROR; | ||
897 | spin_unlock(&block_group->lock); | ||
898 | ret = 0; | ||
899 | |||
900 | printk(KERN_ERR "btrfs: failed to write free space cace " | ||
901 | "for block group %llu\n", block_group->key.objectid); | ||
902 | } | ||
903 | |||
850 | iput(inode); | 904 | iput(inode); |
851 | return ret; | 905 | return ret; |
852 | } | 906 | } |
853 | 907 | ||
854 | static inline unsigned long offset_to_bit(u64 bitmap_start, u64 sectorsize, | 908 | static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit, |
855 | u64 offset) | 909 | u64 offset) |
856 | { | 910 | { |
857 | BUG_ON(offset < bitmap_start); | 911 | BUG_ON(offset < bitmap_start); |
858 | offset -= bitmap_start; | 912 | offset -= bitmap_start; |
859 | return (unsigned long)(div64_u64(offset, sectorsize)); | 913 | return (unsigned long)(div_u64(offset, unit)); |
860 | } | 914 | } |
861 | 915 | ||
862 | static inline unsigned long bytes_to_bits(u64 bytes, u64 sectorsize) | 916 | static inline unsigned long bytes_to_bits(u64 bytes, u32 unit) |
863 | { | 917 | { |
864 | return (unsigned long)(div64_u64(bytes, sectorsize)); | 918 | return (unsigned long)(div_u64(bytes, unit)); |
865 | } | 919 | } |
866 | 920 | ||
867 | static inline u64 offset_to_bitmap(struct btrfs_block_group_cache *block_group, | 921 | static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl, |
868 | u64 offset) | 922 | u64 offset) |
869 | { | 923 | { |
870 | u64 bitmap_start; | 924 | u64 bitmap_start; |
871 | u64 bytes_per_bitmap; | 925 | u64 bytes_per_bitmap; |
872 | 926 | ||
873 | bytes_per_bitmap = BITS_PER_BITMAP * block_group->sectorsize; | 927 | bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit; |
874 | bitmap_start = offset - block_group->key.objectid; | 928 | bitmap_start = offset - ctl->start; |
875 | bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap); | 929 | bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap); |
876 | bitmap_start *= bytes_per_bitmap; | 930 | bitmap_start *= bytes_per_bitmap; |
877 | bitmap_start += block_group->key.objectid; | 931 | bitmap_start += ctl->start; |
878 | 932 | ||
879 | return bitmap_start; | 933 | return bitmap_start; |
880 | } | 934 | } |
@@ -932,10 +986,10 @@ static int tree_insert_offset(struct rb_root *root, u64 offset, | |||
932 | * offset. | 986 | * offset. |
933 | */ | 987 | */ |
934 | static struct btrfs_free_space * | 988 | static struct btrfs_free_space * |
935 | tree_search_offset(struct btrfs_block_group_cache *block_group, | 989 | tree_search_offset(struct btrfs_free_space_ctl *ctl, |
936 | u64 offset, int bitmap_only, int fuzzy) | 990 | u64 offset, int bitmap_only, int fuzzy) |
937 | { | 991 | { |
938 | struct rb_node *n = block_group->free_space_offset.rb_node; | 992 | struct rb_node *n = ctl->free_space_offset.rb_node; |
939 | struct btrfs_free_space *entry, *prev = NULL; | 993 | struct btrfs_free_space *entry, *prev = NULL; |
940 | 994 | ||
941 | /* find entry that is closest to the 'offset' */ | 995 | /* find entry that is closest to the 'offset' */ |
@@ -1031,8 +1085,7 @@ tree_search_offset(struct btrfs_block_group_cache *block_group, | |||
1031 | break; | 1085 | break; |
1032 | } | 1086 | } |
1033 | } | 1087 | } |
1034 | if (entry->offset + BITS_PER_BITMAP * | 1088 | if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset) |
1035 | block_group->sectorsize > offset) | ||
1036 | return entry; | 1089 | return entry; |
1037 | } else if (entry->offset + entry->bytes > offset) | 1090 | } else if (entry->offset + entry->bytes > offset) |
1038 | return entry; | 1091 | return entry; |
@@ -1043,7 +1096,7 @@ tree_search_offset(struct btrfs_block_group_cache *block_group, | |||
1043 | while (1) { | 1096 | while (1) { |
1044 | if (entry->bitmap) { | 1097 | if (entry->bitmap) { |
1045 | if (entry->offset + BITS_PER_BITMAP * | 1098 | if (entry->offset + BITS_PER_BITMAP * |
1046 | block_group->sectorsize > offset) | 1099 | ctl->unit > offset) |
1047 | break; | 1100 | break; |
1048 | } else { | 1101 | } else { |
1049 | if (entry->offset + entry->bytes > offset) | 1102 | if (entry->offset + entry->bytes > offset) |
@@ -1059,42 +1112,47 @@ tree_search_offset(struct btrfs_block_group_cache *block_group, | |||
1059 | } | 1112 | } |
1060 | 1113 | ||
1061 | static inline void | 1114 | static inline void |
1062 | __unlink_free_space(struct btrfs_block_group_cache *block_group, | 1115 | __unlink_free_space(struct btrfs_free_space_ctl *ctl, |
1063 | struct btrfs_free_space *info) | 1116 | struct btrfs_free_space *info) |
1064 | { | 1117 | { |
1065 | rb_erase(&info->offset_index, &block_group->free_space_offset); | 1118 | rb_erase(&info->offset_index, &ctl->free_space_offset); |
1066 | block_group->free_extents--; | 1119 | ctl->free_extents--; |
1067 | } | 1120 | } |
1068 | 1121 | ||
1069 | static void unlink_free_space(struct btrfs_block_group_cache *block_group, | 1122 | static void unlink_free_space(struct btrfs_free_space_ctl *ctl, |
1070 | struct btrfs_free_space *info) | 1123 | struct btrfs_free_space *info) |
1071 | { | 1124 | { |
1072 | __unlink_free_space(block_group, info); | 1125 | __unlink_free_space(ctl, info); |
1073 | block_group->free_space -= info->bytes; | 1126 | ctl->free_space -= info->bytes; |
1074 | } | 1127 | } |
1075 | 1128 | ||
1076 | static int link_free_space(struct btrfs_block_group_cache *block_group, | 1129 | static int link_free_space(struct btrfs_free_space_ctl *ctl, |
1077 | struct btrfs_free_space *info) | 1130 | struct btrfs_free_space *info) |
1078 | { | 1131 | { |
1079 | int ret = 0; | 1132 | int ret = 0; |
1080 | 1133 | ||
1081 | BUG_ON(!info->bitmap && !info->bytes); | 1134 | BUG_ON(!info->bitmap && !info->bytes); |
1082 | ret = tree_insert_offset(&block_group->free_space_offset, info->offset, | 1135 | ret = tree_insert_offset(&ctl->free_space_offset, info->offset, |
1083 | &info->offset_index, (info->bitmap != NULL)); | 1136 | &info->offset_index, (info->bitmap != NULL)); |
1084 | if (ret) | 1137 | if (ret) |
1085 | return ret; | 1138 | return ret; |
1086 | 1139 | ||
1087 | block_group->free_space += info->bytes; | 1140 | ctl->free_space += info->bytes; |
1088 | block_group->free_extents++; | 1141 | ctl->free_extents++; |
1089 | return ret; | 1142 | return ret; |
1090 | } | 1143 | } |
1091 | 1144 | ||
1092 | static void recalculate_thresholds(struct btrfs_block_group_cache *block_group) | 1145 | static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl) |
1093 | { | 1146 | { |
1147 | struct btrfs_block_group_cache *block_group = ctl->private; | ||
1094 | u64 max_bytes; | 1148 | u64 max_bytes; |
1095 | u64 bitmap_bytes; | 1149 | u64 bitmap_bytes; |
1096 | u64 extent_bytes; | 1150 | u64 extent_bytes; |
1097 | u64 size = block_group->key.offset; | 1151 | u64 size = block_group->key.offset; |
1152 | u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize; | ||
1153 | int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg); | ||
1154 | |||
1155 | BUG_ON(ctl->total_bitmaps > max_bitmaps); | ||
1098 | 1156 | ||
1099 | /* | 1157 | /* |
1100 | * The goal is to keep the total amount of memory used per 1gb of space | 1158 | * The goal is to keep the total amount of memory used per 1gb of space |
@@ -1112,10 +1170,10 @@ static void recalculate_thresholds(struct btrfs_block_group_cache *block_group) | |||
1112 | * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as | 1170 | * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as |
1113 | * we add more bitmaps. | 1171 | * we add more bitmaps. |
1114 | */ | 1172 | */ |
1115 | bitmap_bytes = (block_group->total_bitmaps + 1) * PAGE_CACHE_SIZE; | 1173 | bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE; |
1116 | 1174 | ||
1117 | if (bitmap_bytes >= max_bytes) { | 1175 | if (bitmap_bytes >= max_bytes) { |
1118 | block_group->extents_thresh = 0; | 1176 | ctl->extents_thresh = 0; |
1119 | return; | 1177 | return; |
1120 | } | 1178 | } |
1121 | 1179 | ||
@@ -1126,47 +1184,43 @@ static void recalculate_thresholds(struct btrfs_block_group_cache *block_group) | |||
1126 | extent_bytes = max_bytes - bitmap_bytes; | 1184 | extent_bytes = max_bytes - bitmap_bytes; |
1127 | extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2)); | 1185 | extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2)); |
1128 | 1186 | ||
1129 | block_group->extents_thresh = | 1187 | ctl->extents_thresh = |
1130 | div64_u64(extent_bytes, (sizeof(struct btrfs_free_space))); | 1188 | div64_u64(extent_bytes, (sizeof(struct btrfs_free_space))); |
1131 | } | 1189 | } |
1132 | 1190 | ||
1133 | static void bitmap_clear_bits(struct btrfs_block_group_cache *block_group, | 1191 | static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl, |
1134 | struct btrfs_free_space *info, u64 offset, | 1192 | struct btrfs_free_space *info, u64 offset, |
1135 | u64 bytes) | 1193 | u64 bytes) |
1136 | { | 1194 | { |
1137 | unsigned long start, end; | 1195 | unsigned long start, count; |
1138 | unsigned long i; | ||
1139 | 1196 | ||
1140 | start = offset_to_bit(info->offset, block_group->sectorsize, offset); | 1197 | start = offset_to_bit(info->offset, ctl->unit, offset); |
1141 | end = start + bytes_to_bits(bytes, block_group->sectorsize); | 1198 | count = bytes_to_bits(bytes, ctl->unit); |
1142 | BUG_ON(end > BITS_PER_BITMAP); | 1199 | BUG_ON(start + count > BITS_PER_BITMAP); |
1143 | 1200 | ||
1144 | for (i = start; i < end; i++) | 1201 | bitmap_clear(info->bitmap, start, count); |
1145 | clear_bit(i, info->bitmap); | ||
1146 | 1202 | ||
1147 | info->bytes -= bytes; | 1203 | info->bytes -= bytes; |
1148 | block_group->free_space -= bytes; | 1204 | ctl->free_space -= bytes; |
1149 | } | 1205 | } |
1150 | 1206 | ||
1151 | static void bitmap_set_bits(struct btrfs_block_group_cache *block_group, | 1207 | static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl, |
1152 | struct btrfs_free_space *info, u64 offset, | 1208 | struct btrfs_free_space *info, u64 offset, |
1153 | u64 bytes) | 1209 | u64 bytes) |
1154 | { | 1210 | { |
1155 | unsigned long start, end; | 1211 | unsigned long start, count; |
1156 | unsigned long i; | ||
1157 | 1212 | ||
1158 | start = offset_to_bit(info->offset, block_group->sectorsize, offset); | 1213 | start = offset_to_bit(info->offset, ctl->unit, offset); |
1159 | end = start + bytes_to_bits(bytes, block_group->sectorsize); | 1214 | count = bytes_to_bits(bytes, ctl->unit); |
1160 | BUG_ON(end > BITS_PER_BITMAP); | 1215 | BUG_ON(start + count > BITS_PER_BITMAP); |
1161 | 1216 | ||
1162 | for (i = start; i < end; i++) | 1217 | bitmap_set(info->bitmap, start, count); |
1163 | set_bit(i, info->bitmap); | ||
1164 | 1218 | ||
1165 | info->bytes += bytes; | 1219 | info->bytes += bytes; |
1166 | block_group->free_space += bytes; | 1220 | ctl->free_space += bytes; |
1167 | } | 1221 | } |
1168 | 1222 | ||
1169 | static int search_bitmap(struct btrfs_block_group_cache *block_group, | 1223 | static int search_bitmap(struct btrfs_free_space_ctl *ctl, |
1170 | struct btrfs_free_space *bitmap_info, u64 *offset, | 1224 | struct btrfs_free_space *bitmap_info, u64 *offset, |
1171 | u64 *bytes) | 1225 | u64 *bytes) |
1172 | { | 1226 | { |
@@ -1174,9 +1228,9 @@ static int search_bitmap(struct btrfs_block_group_cache *block_group, | |||
1174 | unsigned long bits, i; | 1228 | unsigned long bits, i; |
1175 | unsigned long next_zero; | 1229 | unsigned long next_zero; |
1176 | 1230 | ||
1177 | i = offset_to_bit(bitmap_info->offset, block_group->sectorsize, | 1231 | i = offset_to_bit(bitmap_info->offset, ctl->unit, |
1178 | max_t(u64, *offset, bitmap_info->offset)); | 1232 | max_t(u64, *offset, bitmap_info->offset)); |
1179 | bits = bytes_to_bits(*bytes, block_group->sectorsize); | 1233 | bits = bytes_to_bits(*bytes, ctl->unit); |
1180 | 1234 | ||
1181 | for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i); | 1235 | for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i); |
1182 | i < BITS_PER_BITMAP; | 1236 | i < BITS_PER_BITMAP; |
@@ -1191,29 +1245,25 @@ static int search_bitmap(struct btrfs_block_group_cache *block_group, | |||
1191 | } | 1245 | } |
1192 | 1246 | ||
1193 | if (found_bits) { | 1247 | if (found_bits) { |
1194 | *offset = (u64)(i * block_group->sectorsize) + | 1248 | *offset = (u64)(i * ctl->unit) + bitmap_info->offset; |
1195 | bitmap_info->offset; | 1249 | *bytes = (u64)(found_bits) * ctl->unit; |
1196 | *bytes = (u64)(found_bits) * block_group->sectorsize; | ||
1197 | return 0; | 1250 | return 0; |
1198 | } | 1251 | } |
1199 | 1252 | ||
1200 | return -1; | 1253 | return -1; |
1201 | } | 1254 | } |
1202 | 1255 | ||
1203 | static struct btrfs_free_space *find_free_space(struct btrfs_block_group_cache | 1256 | static struct btrfs_free_space * |
1204 | *block_group, u64 *offset, | 1257 | find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes) |
1205 | u64 *bytes, int debug) | ||
1206 | { | 1258 | { |
1207 | struct btrfs_free_space *entry; | 1259 | struct btrfs_free_space *entry; |
1208 | struct rb_node *node; | 1260 | struct rb_node *node; |
1209 | int ret; | 1261 | int ret; |
1210 | 1262 | ||
1211 | if (!block_group->free_space_offset.rb_node) | 1263 | if (!ctl->free_space_offset.rb_node) |
1212 | return NULL; | 1264 | return NULL; |
1213 | 1265 | ||
1214 | entry = tree_search_offset(block_group, | 1266 | entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1); |
1215 | offset_to_bitmap(block_group, *offset), | ||
1216 | 0, 1); | ||
1217 | if (!entry) | 1267 | if (!entry) |
1218 | return NULL; | 1268 | return NULL; |
1219 | 1269 | ||
@@ -1223,7 +1273,7 @@ static struct btrfs_free_space *find_free_space(struct btrfs_block_group_cache | |||
1223 | continue; | 1273 | continue; |
1224 | 1274 | ||
1225 | if (entry->bitmap) { | 1275 | if (entry->bitmap) { |
1226 | ret = search_bitmap(block_group, entry, offset, bytes); | 1276 | ret = search_bitmap(ctl, entry, offset, bytes); |
1227 | if (!ret) | 1277 | if (!ret) |
1228 | return entry; | 1278 | return entry; |
1229 | continue; | 1279 | continue; |
@@ -1237,33 +1287,28 @@ static struct btrfs_free_space *find_free_space(struct btrfs_block_group_cache | |||
1237 | return NULL; | 1287 | return NULL; |
1238 | } | 1288 | } |
1239 | 1289 | ||
1240 | static void add_new_bitmap(struct btrfs_block_group_cache *block_group, | 1290 | static void add_new_bitmap(struct btrfs_free_space_ctl *ctl, |
1241 | struct btrfs_free_space *info, u64 offset) | 1291 | struct btrfs_free_space *info, u64 offset) |
1242 | { | 1292 | { |
1243 | u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize; | 1293 | info->offset = offset_to_bitmap(ctl, offset); |
1244 | int max_bitmaps = (int)div64_u64(block_group->key.offset + | ||
1245 | bytes_per_bg - 1, bytes_per_bg); | ||
1246 | BUG_ON(block_group->total_bitmaps >= max_bitmaps); | ||
1247 | |||
1248 | info->offset = offset_to_bitmap(block_group, offset); | ||
1249 | info->bytes = 0; | 1294 | info->bytes = 0; |
1250 | link_free_space(block_group, info); | 1295 | link_free_space(ctl, info); |
1251 | block_group->total_bitmaps++; | 1296 | ctl->total_bitmaps++; |
1252 | 1297 | ||
1253 | recalculate_thresholds(block_group); | 1298 | ctl->op->recalc_thresholds(ctl); |
1254 | } | 1299 | } |
1255 | 1300 | ||
1256 | static void free_bitmap(struct btrfs_block_group_cache *block_group, | 1301 | static void free_bitmap(struct btrfs_free_space_ctl *ctl, |
1257 | struct btrfs_free_space *bitmap_info) | 1302 | struct btrfs_free_space *bitmap_info) |
1258 | { | 1303 | { |
1259 | unlink_free_space(block_group, bitmap_info); | 1304 | unlink_free_space(ctl, bitmap_info); |
1260 | kfree(bitmap_info->bitmap); | 1305 | kfree(bitmap_info->bitmap); |
1261 | kmem_cache_free(btrfs_free_space_cachep, bitmap_info); | 1306 | kmem_cache_free(btrfs_free_space_cachep, bitmap_info); |
1262 | block_group->total_bitmaps--; | 1307 | ctl->total_bitmaps--; |
1263 | recalculate_thresholds(block_group); | 1308 | ctl->op->recalc_thresholds(ctl); |
1264 | } | 1309 | } |
1265 | 1310 | ||
1266 | static noinline int remove_from_bitmap(struct btrfs_block_group_cache *block_group, | 1311 | static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl, |
1267 | struct btrfs_free_space *bitmap_info, | 1312 | struct btrfs_free_space *bitmap_info, |
1268 | u64 *offset, u64 *bytes) | 1313 | u64 *offset, u64 *bytes) |
1269 | { | 1314 | { |
@@ -1272,8 +1317,7 @@ static noinline int remove_from_bitmap(struct btrfs_block_group_cache *block_gro | |||
1272 | int ret; | 1317 | int ret; |
1273 | 1318 | ||
1274 | again: | 1319 | again: |
1275 | end = bitmap_info->offset + | 1320 | end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1; |
1276 | (u64)(BITS_PER_BITMAP * block_group->sectorsize) - 1; | ||
1277 | 1321 | ||
1278 | /* | 1322 | /* |
1279 | * XXX - this can go away after a few releases. | 1323 | * XXX - this can go away after a few releases. |
@@ -1288,24 +1332,22 @@ again: | |||
1288 | search_start = *offset; | 1332 | search_start = *offset; |
1289 | search_bytes = *bytes; | 1333 | search_bytes = *bytes; |
1290 | search_bytes = min(search_bytes, end - search_start + 1); | 1334 | search_bytes = min(search_bytes, end - search_start + 1); |
1291 | ret = search_bitmap(block_group, bitmap_info, &search_start, | 1335 | ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes); |
1292 | &search_bytes); | ||
1293 | BUG_ON(ret < 0 || search_start != *offset); | 1336 | BUG_ON(ret < 0 || search_start != *offset); |
1294 | 1337 | ||
1295 | if (*offset > bitmap_info->offset && *offset + *bytes > end) { | 1338 | if (*offset > bitmap_info->offset && *offset + *bytes > end) { |
1296 | bitmap_clear_bits(block_group, bitmap_info, *offset, | 1339 | bitmap_clear_bits(ctl, bitmap_info, *offset, end - *offset + 1); |
1297 | end - *offset + 1); | ||
1298 | *bytes -= end - *offset + 1; | 1340 | *bytes -= end - *offset + 1; |
1299 | *offset = end + 1; | 1341 | *offset = end + 1; |
1300 | } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) { | 1342 | } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) { |
1301 | bitmap_clear_bits(block_group, bitmap_info, *offset, *bytes); | 1343 | bitmap_clear_bits(ctl, bitmap_info, *offset, *bytes); |
1302 | *bytes = 0; | 1344 | *bytes = 0; |
1303 | } | 1345 | } |
1304 | 1346 | ||
1305 | if (*bytes) { | 1347 | if (*bytes) { |
1306 | struct rb_node *next = rb_next(&bitmap_info->offset_index); | 1348 | struct rb_node *next = rb_next(&bitmap_info->offset_index); |
1307 | if (!bitmap_info->bytes) | 1349 | if (!bitmap_info->bytes) |
1308 | free_bitmap(block_group, bitmap_info); | 1350 | free_bitmap(ctl, bitmap_info); |
1309 | 1351 | ||
1310 | /* | 1352 | /* |
1311 | * no entry after this bitmap, but we still have bytes to | 1353 | * no entry after this bitmap, but we still have bytes to |
@@ -1332,31 +1374,28 @@ again: | |||
1332 | */ | 1374 | */ |
1333 | search_start = *offset; | 1375 | search_start = *offset; |
1334 | search_bytes = *bytes; | 1376 | search_bytes = *bytes; |
1335 | ret = search_bitmap(block_group, bitmap_info, &search_start, | 1377 | ret = search_bitmap(ctl, bitmap_info, &search_start, |
1336 | &search_bytes); | 1378 | &search_bytes); |
1337 | if (ret < 0 || search_start != *offset) | 1379 | if (ret < 0 || search_start != *offset) |
1338 | return -EAGAIN; | 1380 | return -EAGAIN; |
1339 | 1381 | ||
1340 | goto again; | 1382 | goto again; |
1341 | } else if (!bitmap_info->bytes) | 1383 | } else if (!bitmap_info->bytes) |
1342 | free_bitmap(block_group, bitmap_info); | 1384 | free_bitmap(ctl, bitmap_info); |
1343 | 1385 | ||
1344 | return 0; | 1386 | return 0; |
1345 | } | 1387 | } |
1346 | 1388 | ||
1347 | static int insert_into_bitmap(struct btrfs_block_group_cache *block_group, | 1389 | static bool use_bitmap(struct btrfs_free_space_ctl *ctl, |
1348 | struct btrfs_free_space *info) | 1390 | struct btrfs_free_space *info) |
1349 | { | 1391 | { |
1350 | struct btrfs_free_space *bitmap_info; | 1392 | struct btrfs_block_group_cache *block_group = ctl->private; |
1351 | int added = 0; | ||
1352 | u64 bytes, offset, end; | ||
1353 | int ret; | ||
1354 | 1393 | ||
1355 | /* | 1394 | /* |
1356 | * If we are below the extents threshold then we can add this as an | 1395 | * If we are below the extents threshold then we can add this as an |
1357 | * extent, and don't have to deal with the bitmap | 1396 | * extent, and don't have to deal with the bitmap |
1358 | */ | 1397 | */ |
1359 | if (block_group->free_extents < block_group->extents_thresh) { | 1398 | if (ctl->free_extents < ctl->extents_thresh) { |
1360 | /* | 1399 | /* |
1361 | * If this block group has some small extents we don't want to | 1400 | * If this block group has some small extents we don't want to |
1362 | * use up all of our free slots in the cache with them, we want | 1401 | * use up all of our free slots in the cache with them, we want |
@@ -1365,11 +1404,10 @@ static int insert_into_bitmap(struct btrfs_block_group_cache *block_group, | |||
1365 | * the overhead of a bitmap if we don't have to. | 1404 | * the overhead of a bitmap if we don't have to. |
1366 | */ | 1405 | */ |
1367 | if (info->bytes <= block_group->sectorsize * 4) { | 1406 | if (info->bytes <= block_group->sectorsize * 4) { |
1368 | if (block_group->free_extents * 2 <= | 1407 | if (ctl->free_extents * 2 <= ctl->extents_thresh) |
1369 | block_group->extents_thresh) | 1408 | return false; |
1370 | return 0; | ||
1371 | } else { | 1409 | } else { |
1372 | return 0; | 1410 | return false; |
1373 | } | 1411 | } |
1374 | } | 1412 | } |
1375 | 1413 | ||
@@ -1379,31 +1417,42 @@ static int insert_into_bitmap(struct btrfs_block_group_cache *block_group, | |||
1379 | */ | 1417 | */ |
1380 | if (BITS_PER_BITMAP * block_group->sectorsize > | 1418 | if (BITS_PER_BITMAP * block_group->sectorsize > |
1381 | block_group->key.offset) | 1419 | block_group->key.offset) |
1382 | return 0; | 1420 | return false; |
1421 | |||
1422 | return true; | ||
1423 | } | ||
1424 | |||
1425 | static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl, | ||
1426 | struct btrfs_free_space *info) | ||
1427 | { | ||
1428 | struct btrfs_free_space *bitmap_info; | ||
1429 | int added = 0; | ||
1430 | u64 bytes, offset, end; | ||
1431 | int ret; | ||
1383 | 1432 | ||
1384 | bytes = info->bytes; | 1433 | bytes = info->bytes; |
1385 | offset = info->offset; | 1434 | offset = info->offset; |
1386 | 1435 | ||
1436 | if (!ctl->op->use_bitmap(ctl, info)) | ||
1437 | return 0; | ||
1438 | |||
1387 | again: | 1439 | again: |
1388 | bitmap_info = tree_search_offset(block_group, | 1440 | bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), |
1389 | offset_to_bitmap(block_group, offset), | ||
1390 | 1, 0); | 1441 | 1, 0); |
1391 | if (!bitmap_info) { | 1442 | if (!bitmap_info) { |
1392 | BUG_ON(added); | 1443 | BUG_ON(added); |
1393 | goto new_bitmap; | 1444 | goto new_bitmap; |
1394 | } | 1445 | } |
1395 | 1446 | ||
1396 | end = bitmap_info->offset + | 1447 | end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit); |
1397 | (u64)(BITS_PER_BITMAP * block_group->sectorsize); | ||
1398 | 1448 | ||
1399 | if (offset >= bitmap_info->offset && offset + bytes > end) { | 1449 | if (offset >= bitmap_info->offset && offset + bytes > end) { |
1400 | bitmap_set_bits(block_group, bitmap_info, offset, | 1450 | bitmap_set_bits(ctl, bitmap_info, offset, end - offset); |
1401 | end - offset); | ||
1402 | bytes -= end - offset; | 1451 | bytes -= end - offset; |
1403 | offset = end; | 1452 | offset = end; |
1404 | added = 0; | 1453 | added = 0; |
1405 | } else if (offset >= bitmap_info->offset && offset + bytes <= end) { | 1454 | } else if (offset >= bitmap_info->offset && offset + bytes <= end) { |
1406 | bitmap_set_bits(block_group, bitmap_info, offset, bytes); | 1455 | bitmap_set_bits(ctl, bitmap_info, offset, bytes); |
1407 | bytes = 0; | 1456 | bytes = 0; |
1408 | } else { | 1457 | } else { |
1409 | BUG(); | 1458 | BUG(); |
@@ -1417,19 +1466,19 @@ again: | |||
1417 | 1466 | ||
1418 | new_bitmap: | 1467 | new_bitmap: |
1419 | if (info && info->bitmap) { | 1468 | if (info && info->bitmap) { |
1420 | add_new_bitmap(block_group, info, offset); | 1469 | add_new_bitmap(ctl, info, offset); |
1421 | added = 1; | 1470 | added = 1; |
1422 | info = NULL; | 1471 | info = NULL; |
1423 | goto again; | 1472 | goto again; |
1424 | } else { | 1473 | } else { |
1425 | spin_unlock(&block_group->tree_lock); | 1474 | spin_unlock(&ctl->tree_lock); |
1426 | 1475 | ||
1427 | /* no pre-allocated info, allocate a new one */ | 1476 | /* no pre-allocated info, allocate a new one */ |
1428 | if (!info) { | 1477 | if (!info) { |
1429 | info = kmem_cache_zalloc(btrfs_free_space_cachep, | 1478 | info = kmem_cache_zalloc(btrfs_free_space_cachep, |
1430 | GFP_NOFS); | 1479 | GFP_NOFS); |
1431 | if (!info) { | 1480 | if (!info) { |
1432 | spin_lock(&block_group->tree_lock); | 1481 | spin_lock(&ctl->tree_lock); |
1433 | ret = -ENOMEM; | 1482 | ret = -ENOMEM; |
1434 | goto out; | 1483 | goto out; |
1435 | } | 1484 | } |
@@ -1437,7 +1486,7 @@ new_bitmap: | |||
1437 | 1486 | ||
1438 | /* allocate the bitmap */ | 1487 | /* allocate the bitmap */ |
1439 | info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); | 1488 | info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS); |
1440 | spin_lock(&block_group->tree_lock); | 1489 | spin_lock(&ctl->tree_lock); |
1441 | if (!info->bitmap) { | 1490 | if (!info->bitmap) { |
1442 | ret = -ENOMEM; | 1491 | ret = -ENOMEM; |
1443 | goto out; | 1492 | goto out; |
@@ -1455,7 +1504,7 @@ out: | |||
1455 | return ret; | 1504 | return ret; |
1456 | } | 1505 | } |
1457 | 1506 | ||
1458 | bool try_merge_free_space(struct btrfs_block_group_cache *block_group, | 1507 | bool try_merge_free_space(struct btrfs_free_space_ctl *ctl, |
1459 | struct btrfs_free_space *info, bool update_stat) | 1508 | struct btrfs_free_space *info, bool update_stat) |
1460 | { | 1509 | { |
1461 | struct btrfs_free_space *left_info; | 1510 | struct btrfs_free_space *left_info; |
@@ -1469,18 +1518,18 @@ bool try_merge_free_space(struct btrfs_block_group_cache *block_group, | |||
1469 | * are adding, if there is remove that struct and add a new one to | 1518 | * are adding, if there is remove that struct and add a new one to |
1470 | * cover the entire range | 1519 | * cover the entire range |
1471 | */ | 1520 | */ |
1472 | right_info = tree_search_offset(block_group, offset + bytes, 0, 0); | 1521 | right_info = tree_search_offset(ctl, offset + bytes, 0, 0); |
1473 | if (right_info && rb_prev(&right_info->offset_index)) | 1522 | if (right_info && rb_prev(&right_info->offset_index)) |
1474 | left_info = rb_entry(rb_prev(&right_info->offset_index), | 1523 | left_info = rb_entry(rb_prev(&right_info->offset_index), |
1475 | struct btrfs_free_space, offset_index); | 1524 | struct btrfs_free_space, offset_index); |
1476 | else | 1525 | else |
1477 | left_info = tree_search_offset(block_group, offset - 1, 0, 0); | 1526 | left_info = tree_search_offset(ctl, offset - 1, 0, 0); |
1478 | 1527 | ||
1479 | if (right_info && !right_info->bitmap) { | 1528 | if (right_info && !right_info->bitmap) { |
1480 | if (update_stat) | 1529 | if (update_stat) |
1481 | unlink_free_space(block_group, right_info); | 1530 | unlink_free_space(ctl, right_info); |
1482 | else | 1531 | else |
1483 | __unlink_free_space(block_group, right_info); | 1532 | __unlink_free_space(ctl, right_info); |
1484 | info->bytes += right_info->bytes; | 1533 | info->bytes += right_info->bytes; |
1485 | kmem_cache_free(btrfs_free_space_cachep, right_info); | 1534 | kmem_cache_free(btrfs_free_space_cachep, right_info); |
1486 | merged = true; | 1535 | merged = true; |
@@ -1489,9 +1538,9 @@ bool try_merge_free_space(struct btrfs_block_group_cache *block_group, | |||
1489 | if (left_info && !left_info->bitmap && | 1538 | if (left_info && !left_info->bitmap && |
1490 | left_info->offset + left_info->bytes == offset) { | 1539 | left_info->offset + left_info->bytes == offset) { |
1491 | if (update_stat) | 1540 | if (update_stat) |
1492 | unlink_free_space(block_group, left_info); | 1541 | unlink_free_space(ctl, left_info); |
1493 | else | 1542 | else |
1494 | __unlink_free_space(block_group, left_info); | 1543 | __unlink_free_space(ctl, left_info); |
1495 | info->offset = left_info->offset; | 1544 | info->offset = left_info->offset; |
1496 | info->bytes += left_info->bytes; | 1545 | info->bytes += left_info->bytes; |
1497 | kmem_cache_free(btrfs_free_space_cachep, left_info); | 1546 | kmem_cache_free(btrfs_free_space_cachep, left_info); |
@@ -1501,8 +1550,8 @@ bool try_merge_free_space(struct btrfs_block_group_cache *block_group, | |||
1501 | return merged; | 1550 | return merged; |
1502 | } | 1551 | } |
1503 | 1552 | ||
1504 | int btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | 1553 | int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl, |
1505 | u64 offset, u64 bytes) | 1554 | u64 offset, u64 bytes) |
1506 | { | 1555 | { |
1507 | struct btrfs_free_space *info; | 1556 | struct btrfs_free_space *info; |
1508 | int ret = 0; | 1557 | int ret = 0; |
@@ -1514,9 +1563,9 @@ int btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | |||
1514 | info->offset = offset; | 1563 | info->offset = offset; |
1515 | info->bytes = bytes; | 1564 | info->bytes = bytes; |
1516 | 1565 | ||
1517 | spin_lock(&block_group->tree_lock); | 1566 | spin_lock(&ctl->tree_lock); |
1518 | 1567 | ||
1519 | if (try_merge_free_space(block_group, info, true)) | 1568 | if (try_merge_free_space(ctl, info, true)) |
1520 | goto link; | 1569 | goto link; |
1521 | 1570 | ||
1522 | /* | 1571 | /* |
@@ -1524,7 +1573,7 @@ int btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | |||
1524 | * extent then we know we're going to have to allocate a new extent, so | 1573 | * extent then we know we're going to have to allocate a new extent, so |
1525 | * before we do that see if we need to drop this into a bitmap | 1574 | * before we do that see if we need to drop this into a bitmap |
1526 | */ | 1575 | */ |
1527 | ret = insert_into_bitmap(block_group, info); | 1576 | ret = insert_into_bitmap(ctl, info); |
1528 | if (ret < 0) { | 1577 | if (ret < 0) { |
1529 | goto out; | 1578 | goto out; |
1530 | } else if (ret) { | 1579 | } else if (ret) { |
@@ -1532,11 +1581,11 @@ int btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | |||
1532 | goto out; | 1581 | goto out; |
1533 | } | 1582 | } |
1534 | link: | 1583 | link: |
1535 | ret = link_free_space(block_group, info); | 1584 | ret = link_free_space(ctl, info); |
1536 | if (ret) | 1585 | if (ret) |
1537 | kmem_cache_free(btrfs_free_space_cachep, info); | 1586 | kmem_cache_free(btrfs_free_space_cachep, info); |
1538 | out: | 1587 | out: |
1539 | spin_unlock(&block_group->tree_lock); | 1588 | spin_unlock(&ctl->tree_lock); |
1540 | 1589 | ||
1541 | if (ret) { | 1590 | if (ret) { |
1542 | printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret); | 1591 | printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret); |
@@ -1549,21 +1598,21 @@ out: | |||
1549 | int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group, | 1598 | int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group, |
1550 | u64 offset, u64 bytes) | 1599 | u64 offset, u64 bytes) |
1551 | { | 1600 | { |
1601 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1552 | struct btrfs_free_space *info; | 1602 | struct btrfs_free_space *info; |
1553 | struct btrfs_free_space *next_info = NULL; | 1603 | struct btrfs_free_space *next_info = NULL; |
1554 | int ret = 0; | 1604 | int ret = 0; |
1555 | 1605 | ||
1556 | spin_lock(&block_group->tree_lock); | 1606 | spin_lock(&ctl->tree_lock); |
1557 | 1607 | ||
1558 | again: | 1608 | again: |
1559 | info = tree_search_offset(block_group, offset, 0, 0); | 1609 | info = tree_search_offset(ctl, offset, 0, 0); |
1560 | if (!info) { | 1610 | if (!info) { |
1561 | /* | 1611 | /* |
1562 | * oops didn't find an extent that matched the space we wanted | 1612 | * oops didn't find an extent that matched the space we wanted |
1563 | * to remove, look for a bitmap instead | 1613 | * to remove, look for a bitmap instead |
1564 | */ | 1614 | */ |
1565 | info = tree_search_offset(block_group, | 1615 | info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), |
1566 | offset_to_bitmap(block_group, offset), | ||
1567 | 1, 0); | 1616 | 1, 0); |
1568 | if (!info) { | 1617 | if (!info) { |
1569 | WARN_ON(1); | 1618 | WARN_ON(1); |
@@ -1578,8 +1627,8 @@ again: | |||
1578 | offset_index); | 1627 | offset_index); |
1579 | 1628 | ||
1580 | if (next_info->bitmap) | 1629 | if (next_info->bitmap) |
1581 | end = next_info->offset + BITS_PER_BITMAP * | 1630 | end = next_info->offset + |
1582 | block_group->sectorsize - 1; | 1631 | BITS_PER_BITMAP * ctl->unit - 1; |
1583 | else | 1632 | else |
1584 | end = next_info->offset + next_info->bytes; | 1633 | end = next_info->offset + next_info->bytes; |
1585 | 1634 | ||
@@ -1599,20 +1648,20 @@ again: | |||
1599 | } | 1648 | } |
1600 | 1649 | ||
1601 | if (info->bytes == bytes) { | 1650 | if (info->bytes == bytes) { |
1602 | unlink_free_space(block_group, info); | 1651 | unlink_free_space(ctl, info); |
1603 | if (info->bitmap) { | 1652 | if (info->bitmap) { |
1604 | kfree(info->bitmap); | 1653 | kfree(info->bitmap); |
1605 | block_group->total_bitmaps--; | 1654 | ctl->total_bitmaps--; |
1606 | } | 1655 | } |
1607 | kmem_cache_free(btrfs_free_space_cachep, info); | 1656 | kmem_cache_free(btrfs_free_space_cachep, info); |
1608 | goto out_lock; | 1657 | goto out_lock; |
1609 | } | 1658 | } |
1610 | 1659 | ||
1611 | if (!info->bitmap && info->offset == offset) { | 1660 | if (!info->bitmap && info->offset == offset) { |
1612 | unlink_free_space(block_group, info); | 1661 | unlink_free_space(ctl, info); |
1613 | info->offset += bytes; | 1662 | info->offset += bytes; |
1614 | info->bytes -= bytes; | 1663 | info->bytes -= bytes; |
1615 | link_free_space(block_group, info); | 1664 | link_free_space(ctl, info); |
1616 | goto out_lock; | 1665 | goto out_lock; |
1617 | } | 1666 | } |
1618 | 1667 | ||
@@ -1626,13 +1675,13 @@ again: | |||
1626 | * first unlink the old info and then | 1675 | * first unlink the old info and then |
1627 | * insert it again after the hole we're creating | 1676 | * insert it again after the hole we're creating |
1628 | */ | 1677 | */ |
1629 | unlink_free_space(block_group, info); | 1678 | unlink_free_space(ctl, info); |
1630 | if (offset + bytes < info->offset + info->bytes) { | 1679 | if (offset + bytes < info->offset + info->bytes) { |
1631 | u64 old_end = info->offset + info->bytes; | 1680 | u64 old_end = info->offset + info->bytes; |
1632 | 1681 | ||
1633 | info->offset = offset + bytes; | 1682 | info->offset = offset + bytes; |
1634 | info->bytes = old_end - info->offset; | 1683 | info->bytes = old_end - info->offset; |
1635 | ret = link_free_space(block_group, info); | 1684 | ret = link_free_space(ctl, info); |
1636 | WARN_ON(ret); | 1685 | WARN_ON(ret); |
1637 | if (ret) | 1686 | if (ret) |
1638 | goto out_lock; | 1687 | goto out_lock; |
@@ -1642,7 +1691,7 @@ again: | |||
1642 | */ | 1691 | */ |
1643 | kmem_cache_free(btrfs_free_space_cachep, info); | 1692 | kmem_cache_free(btrfs_free_space_cachep, info); |
1644 | } | 1693 | } |
1645 | spin_unlock(&block_group->tree_lock); | 1694 | spin_unlock(&ctl->tree_lock); |
1646 | 1695 | ||
1647 | /* step two, insert a new info struct to cover | 1696 | /* step two, insert a new info struct to cover |
1648 | * anything before the hole | 1697 | * anything before the hole |
@@ -1653,12 +1702,12 @@ again: | |||
1653 | goto out; | 1702 | goto out; |
1654 | } | 1703 | } |
1655 | 1704 | ||
1656 | ret = remove_from_bitmap(block_group, info, &offset, &bytes); | 1705 | ret = remove_from_bitmap(ctl, info, &offset, &bytes); |
1657 | if (ret == -EAGAIN) | 1706 | if (ret == -EAGAIN) |
1658 | goto again; | 1707 | goto again; |
1659 | BUG_ON(ret); | 1708 | BUG_ON(ret); |
1660 | out_lock: | 1709 | out_lock: |
1661 | spin_unlock(&block_group->tree_lock); | 1710 | spin_unlock(&ctl->tree_lock); |
1662 | out: | 1711 | out: |
1663 | return ret; | 1712 | return ret; |
1664 | } | 1713 | } |
@@ -1666,11 +1715,12 @@ out: | |||
1666 | void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, | 1715 | void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, |
1667 | u64 bytes) | 1716 | u64 bytes) |
1668 | { | 1717 | { |
1718 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1669 | struct btrfs_free_space *info; | 1719 | struct btrfs_free_space *info; |
1670 | struct rb_node *n; | 1720 | struct rb_node *n; |
1671 | int count = 0; | 1721 | int count = 0; |
1672 | 1722 | ||
1673 | for (n = rb_first(&block_group->free_space_offset); n; n = rb_next(n)) { | 1723 | for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) { |
1674 | info = rb_entry(n, struct btrfs_free_space, offset_index); | 1724 | info = rb_entry(n, struct btrfs_free_space, offset_index); |
1675 | if (info->bytes >= bytes) | 1725 | if (info->bytes >= bytes) |
1676 | count++; | 1726 | count++; |
@@ -1685,19 +1735,28 @@ void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, | |||
1685 | "\n", count); | 1735 | "\n", count); |
1686 | } | 1736 | } |
1687 | 1737 | ||
1688 | u64 btrfs_block_group_free_space(struct btrfs_block_group_cache *block_group) | 1738 | static struct btrfs_free_space_op free_space_op = { |
1739 | .recalc_thresholds = recalculate_thresholds, | ||
1740 | .use_bitmap = use_bitmap, | ||
1741 | }; | ||
1742 | |||
1743 | void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group) | ||
1689 | { | 1744 | { |
1690 | struct btrfs_free_space *info; | 1745 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; |
1691 | struct rb_node *n; | ||
1692 | u64 ret = 0; | ||
1693 | 1746 | ||
1694 | for (n = rb_first(&block_group->free_space_offset); n; | 1747 | spin_lock_init(&ctl->tree_lock); |
1695 | n = rb_next(n)) { | 1748 | ctl->unit = block_group->sectorsize; |
1696 | info = rb_entry(n, struct btrfs_free_space, offset_index); | 1749 | ctl->start = block_group->key.objectid; |
1697 | ret += info->bytes; | 1750 | ctl->private = block_group; |
1698 | } | 1751 | ctl->op = &free_space_op; |
1699 | 1752 | ||
1700 | return ret; | 1753 | /* |
1754 | * we only want to have 32k of ram per block group for keeping | ||
1755 | * track of free space, and if we pass 1/2 of that we want to | ||
1756 | * start converting things over to using bitmaps | ||
1757 | */ | ||
1758 | ctl->extents_thresh = ((1024 * 32) / 2) / | ||
1759 | sizeof(struct btrfs_free_space); | ||
1701 | } | 1760 | } |
1702 | 1761 | ||
1703 | /* | 1762 | /* |
@@ -1711,6 +1770,7 @@ __btrfs_return_cluster_to_free_space( | |||
1711 | struct btrfs_block_group_cache *block_group, | 1770 | struct btrfs_block_group_cache *block_group, |
1712 | struct btrfs_free_cluster *cluster) | 1771 | struct btrfs_free_cluster *cluster) |
1713 | { | 1772 | { |
1773 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1714 | struct btrfs_free_space *entry; | 1774 | struct btrfs_free_space *entry; |
1715 | struct rb_node *node; | 1775 | struct rb_node *node; |
1716 | 1776 | ||
@@ -1732,8 +1792,8 @@ __btrfs_return_cluster_to_free_space( | |||
1732 | 1792 | ||
1733 | bitmap = (entry->bitmap != NULL); | 1793 | bitmap = (entry->bitmap != NULL); |
1734 | if (!bitmap) | 1794 | if (!bitmap) |
1735 | try_merge_free_space(block_group, entry, false); | 1795 | try_merge_free_space(ctl, entry, false); |
1736 | tree_insert_offset(&block_group->free_space_offset, | 1796 | tree_insert_offset(&ctl->free_space_offset, |
1737 | entry->offset, &entry->offset_index, bitmap); | 1797 | entry->offset, &entry->offset_index, bitmap); |
1738 | } | 1798 | } |
1739 | cluster->root = RB_ROOT; | 1799 | cluster->root = RB_ROOT; |
@@ -1744,14 +1804,38 @@ out: | |||
1744 | return 0; | 1804 | return 0; |
1745 | } | 1805 | } |
1746 | 1806 | ||
1747 | void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group) | 1807 | void __btrfs_remove_free_space_cache_locked(struct btrfs_free_space_ctl *ctl) |
1748 | { | 1808 | { |
1749 | struct btrfs_free_space *info; | 1809 | struct btrfs_free_space *info; |
1750 | struct rb_node *node; | 1810 | struct rb_node *node; |
1811 | |||
1812 | while ((node = rb_last(&ctl->free_space_offset)) != NULL) { | ||
1813 | info = rb_entry(node, struct btrfs_free_space, offset_index); | ||
1814 | unlink_free_space(ctl, info); | ||
1815 | kfree(info->bitmap); | ||
1816 | kmem_cache_free(btrfs_free_space_cachep, info); | ||
1817 | if (need_resched()) { | ||
1818 | spin_unlock(&ctl->tree_lock); | ||
1819 | cond_resched(); | ||
1820 | spin_lock(&ctl->tree_lock); | ||
1821 | } | ||
1822 | } | ||
1823 | } | ||
1824 | |||
1825 | void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl) | ||
1826 | { | ||
1827 | spin_lock(&ctl->tree_lock); | ||
1828 | __btrfs_remove_free_space_cache_locked(ctl); | ||
1829 | spin_unlock(&ctl->tree_lock); | ||
1830 | } | ||
1831 | |||
1832 | void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group) | ||
1833 | { | ||
1834 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1751 | struct btrfs_free_cluster *cluster; | 1835 | struct btrfs_free_cluster *cluster; |
1752 | struct list_head *head; | 1836 | struct list_head *head; |
1753 | 1837 | ||
1754 | spin_lock(&block_group->tree_lock); | 1838 | spin_lock(&ctl->tree_lock); |
1755 | while ((head = block_group->cluster_list.next) != | 1839 | while ((head = block_group->cluster_list.next) != |
1756 | &block_group->cluster_list) { | 1840 | &block_group->cluster_list) { |
1757 | cluster = list_entry(head, struct btrfs_free_cluster, | 1841 | cluster = list_entry(head, struct btrfs_free_cluster, |
@@ -1760,60 +1844,46 @@ void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group) | |||
1760 | WARN_ON(cluster->block_group != block_group); | 1844 | WARN_ON(cluster->block_group != block_group); |
1761 | __btrfs_return_cluster_to_free_space(block_group, cluster); | 1845 | __btrfs_return_cluster_to_free_space(block_group, cluster); |
1762 | if (need_resched()) { | 1846 | if (need_resched()) { |
1763 | spin_unlock(&block_group->tree_lock); | 1847 | spin_unlock(&ctl->tree_lock); |
1764 | cond_resched(); | 1848 | cond_resched(); |
1765 | spin_lock(&block_group->tree_lock); | 1849 | spin_lock(&ctl->tree_lock); |
1766 | } | 1850 | } |
1767 | } | 1851 | } |
1852 | __btrfs_remove_free_space_cache_locked(ctl); | ||
1853 | spin_unlock(&ctl->tree_lock); | ||
1768 | 1854 | ||
1769 | while ((node = rb_last(&block_group->free_space_offset)) != NULL) { | ||
1770 | info = rb_entry(node, struct btrfs_free_space, offset_index); | ||
1771 | if (!info->bitmap) { | ||
1772 | unlink_free_space(block_group, info); | ||
1773 | kmem_cache_free(btrfs_free_space_cachep, info); | ||
1774 | } else { | ||
1775 | free_bitmap(block_group, info); | ||
1776 | } | ||
1777 | |||
1778 | if (need_resched()) { | ||
1779 | spin_unlock(&block_group->tree_lock); | ||
1780 | cond_resched(); | ||
1781 | spin_lock(&block_group->tree_lock); | ||
1782 | } | ||
1783 | } | ||
1784 | |||
1785 | spin_unlock(&block_group->tree_lock); | ||
1786 | } | 1855 | } |
1787 | 1856 | ||
1788 | u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group, | 1857 | u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group, |
1789 | u64 offset, u64 bytes, u64 empty_size) | 1858 | u64 offset, u64 bytes, u64 empty_size) |
1790 | { | 1859 | { |
1860 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1791 | struct btrfs_free_space *entry = NULL; | 1861 | struct btrfs_free_space *entry = NULL; |
1792 | u64 bytes_search = bytes + empty_size; | 1862 | u64 bytes_search = bytes + empty_size; |
1793 | u64 ret = 0; | 1863 | u64 ret = 0; |
1794 | 1864 | ||
1795 | spin_lock(&block_group->tree_lock); | 1865 | spin_lock(&ctl->tree_lock); |
1796 | entry = find_free_space(block_group, &offset, &bytes_search, 0); | 1866 | entry = find_free_space(ctl, &offset, &bytes_search); |
1797 | if (!entry) | 1867 | if (!entry) |
1798 | goto out; | 1868 | goto out; |
1799 | 1869 | ||
1800 | ret = offset; | 1870 | ret = offset; |
1801 | if (entry->bitmap) { | 1871 | if (entry->bitmap) { |
1802 | bitmap_clear_bits(block_group, entry, offset, bytes); | 1872 | bitmap_clear_bits(ctl, entry, offset, bytes); |
1803 | if (!entry->bytes) | 1873 | if (!entry->bytes) |
1804 | free_bitmap(block_group, entry); | 1874 | free_bitmap(ctl, entry); |
1805 | } else { | 1875 | } else { |
1806 | unlink_free_space(block_group, entry); | 1876 | unlink_free_space(ctl, entry); |
1807 | entry->offset += bytes; | 1877 | entry->offset += bytes; |
1808 | entry->bytes -= bytes; | 1878 | entry->bytes -= bytes; |
1809 | if (!entry->bytes) | 1879 | if (!entry->bytes) |
1810 | kmem_cache_free(btrfs_free_space_cachep, entry); | 1880 | kmem_cache_free(btrfs_free_space_cachep, entry); |
1811 | else | 1881 | else |
1812 | link_free_space(block_group, entry); | 1882 | link_free_space(ctl, entry); |
1813 | } | 1883 | } |
1814 | 1884 | ||
1815 | out: | 1885 | out: |
1816 | spin_unlock(&block_group->tree_lock); | 1886 | spin_unlock(&ctl->tree_lock); |
1817 | 1887 | ||
1818 | return ret; | 1888 | return ret; |
1819 | } | 1889 | } |
@@ -1830,6 +1900,7 @@ int btrfs_return_cluster_to_free_space( | |||
1830 | struct btrfs_block_group_cache *block_group, | 1900 | struct btrfs_block_group_cache *block_group, |
1831 | struct btrfs_free_cluster *cluster) | 1901 | struct btrfs_free_cluster *cluster) |
1832 | { | 1902 | { |
1903 | struct btrfs_free_space_ctl *ctl; | ||
1833 | int ret; | 1904 | int ret; |
1834 | 1905 | ||
1835 | /* first, get a safe pointer to the block group */ | 1906 | /* first, get a safe pointer to the block group */ |
@@ -1848,10 +1919,12 @@ int btrfs_return_cluster_to_free_space( | |||
1848 | atomic_inc(&block_group->count); | 1919 | atomic_inc(&block_group->count); |
1849 | spin_unlock(&cluster->lock); | 1920 | spin_unlock(&cluster->lock); |
1850 | 1921 | ||
1922 | ctl = block_group->free_space_ctl; | ||
1923 | |||
1851 | /* now return any extents the cluster had on it */ | 1924 | /* now return any extents the cluster had on it */ |
1852 | spin_lock(&block_group->tree_lock); | 1925 | spin_lock(&ctl->tree_lock); |
1853 | ret = __btrfs_return_cluster_to_free_space(block_group, cluster); | 1926 | ret = __btrfs_return_cluster_to_free_space(block_group, cluster); |
1854 | spin_unlock(&block_group->tree_lock); | 1927 | spin_unlock(&ctl->tree_lock); |
1855 | 1928 | ||
1856 | /* finally drop our ref */ | 1929 | /* finally drop our ref */ |
1857 | btrfs_put_block_group(block_group); | 1930 | btrfs_put_block_group(block_group); |
@@ -1863,6 +1936,7 @@ static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group, | |||
1863 | struct btrfs_free_space *entry, | 1936 | struct btrfs_free_space *entry, |
1864 | u64 bytes, u64 min_start) | 1937 | u64 bytes, u64 min_start) |
1865 | { | 1938 | { |
1939 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1866 | int err; | 1940 | int err; |
1867 | u64 search_start = cluster->window_start; | 1941 | u64 search_start = cluster->window_start; |
1868 | u64 search_bytes = bytes; | 1942 | u64 search_bytes = bytes; |
@@ -1871,13 +1945,12 @@ static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group, | |||
1871 | search_start = min_start; | 1945 | search_start = min_start; |
1872 | search_bytes = bytes; | 1946 | search_bytes = bytes; |
1873 | 1947 | ||
1874 | err = search_bitmap(block_group, entry, &search_start, | 1948 | err = search_bitmap(ctl, entry, &search_start, &search_bytes); |
1875 | &search_bytes); | ||
1876 | if (err) | 1949 | if (err) |
1877 | return 0; | 1950 | return 0; |
1878 | 1951 | ||
1879 | ret = search_start; | 1952 | ret = search_start; |
1880 | bitmap_clear_bits(block_group, entry, ret, bytes); | 1953 | bitmap_clear_bits(ctl, entry, ret, bytes); |
1881 | 1954 | ||
1882 | return ret; | 1955 | return ret; |
1883 | } | 1956 | } |
@@ -1891,6 +1964,7 @@ u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group, | |||
1891 | struct btrfs_free_cluster *cluster, u64 bytes, | 1964 | struct btrfs_free_cluster *cluster, u64 bytes, |
1892 | u64 min_start) | 1965 | u64 min_start) |
1893 | { | 1966 | { |
1967 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1894 | struct btrfs_free_space *entry = NULL; | 1968 | struct btrfs_free_space *entry = NULL; |
1895 | struct rb_node *node; | 1969 | struct rb_node *node; |
1896 | u64 ret = 0; | 1970 | u64 ret = 0; |
@@ -1951,20 +2025,20 @@ out: | |||
1951 | if (!ret) | 2025 | if (!ret) |
1952 | return 0; | 2026 | return 0; |
1953 | 2027 | ||
1954 | spin_lock(&block_group->tree_lock); | 2028 | spin_lock(&ctl->tree_lock); |
1955 | 2029 | ||
1956 | block_group->free_space -= bytes; | 2030 | ctl->free_space -= bytes; |
1957 | if (entry->bytes == 0) { | 2031 | if (entry->bytes == 0) { |
1958 | block_group->free_extents--; | 2032 | ctl->free_extents--; |
1959 | if (entry->bitmap) { | 2033 | if (entry->bitmap) { |
1960 | kfree(entry->bitmap); | 2034 | kfree(entry->bitmap); |
1961 | block_group->total_bitmaps--; | 2035 | ctl->total_bitmaps--; |
1962 | recalculate_thresholds(block_group); | 2036 | ctl->op->recalc_thresholds(ctl); |
1963 | } | 2037 | } |
1964 | kmem_cache_free(btrfs_free_space_cachep, entry); | 2038 | kmem_cache_free(btrfs_free_space_cachep, entry); |
1965 | } | 2039 | } |
1966 | 2040 | ||
1967 | spin_unlock(&block_group->tree_lock); | 2041 | spin_unlock(&ctl->tree_lock); |
1968 | 2042 | ||
1969 | return ret; | 2043 | return ret; |
1970 | } | 2044 | } |
@@ -1974,6 +2048,7 @@ static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group, | |||
1974 | struct btrfs_free_cluster *cluster, | 2048 | struct btrfs_free_cluster *cluster, |
1975 | u64 offset, u64 bytes, u64 min_bytes) | 2049 | u64 offset, u64 bytes, u64 min_bytes) |
1976 | { | 2050 | { |
2051 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
1977 | unsigned long next_zero; | 2052 | unsigned long next_zero; |
1978 | unsigned long i; | 2053 | unsigned long i; |
1979 | unsigned long search_bits; | 2054 | unsigned long search_bits; |
@@ -2028,7 +2103,7 @@ again: | |||
2028 | 2103 | ||
2029 | cluster->window_start = start * block_group->sectorsize + | 2104 | cluster->window_start = start * block_group->sectorsize + |
2030 | entry->offset; | 2105 | entry->offset; |
2031 | rb_erase(&entry->offset_index, &block_group->free_space_offset); | 2106 | rb_erase(&entry->offset_index, &ctl->free_space_offset); |
2032 | ret = tree_insert_offset(&cluster->root, entry->offset, | 2107 | ret = tree_insert_offset(&cluster->root, entry->offset, |
2033 | &entry->offset_index, 1); | 2108 | &entry->offset_index, 1); |
2034 | BUG_ON(ret); | 2109 | BUG_ON(ret); |
@@ -2043,6 +2118,7 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
2043 | struct btrfs_free_cluster *cluster, | 2118 | struct btrfs_free_cluster *cluster, |
2044 | u64 offset, u64 bytes, u64 min_bytes) | 2119 | u64 offset, u64 bytes, u64 min_bytes) |
2045 | { | 2120 | { |
2121 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
2046 | struct btrfs_free_space *first = NULL; | 2122 | struct btrfs_free_space *first = NULL; |
2047 | struct btrfs_free_space *entry = NULL; | 2123 | struct btrfs_free_space *entry = NULL; |
2048 | struct btrfs_free_space *prev = NULL; | 2124 | struct btrfs_free_space *prev = NULL; |
@@ -2053,7 +2129,7 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
2053 | u64 max_extent; | 2129 | u64 max_extent; |
2054 | u64 max_gap = 128 * 1024; | 2130 | u64 max_gap = 128 * 1024; |
2055 | 2131 | ||
2056 | entry = tree_search_offset(block_group, offset, 0, 1); | 2132 | entry = tree_search_offset(ctl, offset, 0, 1); |
2057 | if (!entry) | 2133 | if (!entry) |
2058 | return -ENOSPC; | 2134 | return -ENOSPC; |
2059 | 2135 | ||
@@ -2119,7 +2195,7 @@ static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group, | |||
2119 | if (entry->bitmap) | 2195 | if (entry->bitmap) |
2120 | continue; | 2196 | continue; |
2121 | 2197 | ||
2122 | rb_erase(&entry->offset_index, &block_group->free_space_offset); | 2198 | rb_erase(&entry->offset_index, &ctl->free_space_offset); |
2123 | ret = tree_insert_offset(&cluster->root, entry->offset, | 2199 | ret = tree_insert_offset(&cluster->root, entry->offset, |
2124 | &entry->offset_index, 0); | 2200 | &entry->offset_index, 0); |
2125 | BUG_ON(ret); | 2201 | BUG_ON(ret); |
@@ -2138,16 +2214,15 @@ static int setup_cluster_bitmap(struct btrfs_block_group_cache *block_group, | |||
2138 | struct btrfs_free_cluster *cluster, | 2214 | struct btrfs_free_cluster *cluster, |
2139 | u64 offset, u64 bytes, u64 min_bytes) | 2215 | u64 offset, u64 bytes, u64 min_bytes) |
2140 | { | 2216 | { |
2217 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
2141 | struct btrfs_free_space *entry; | 2218 | struct btrfs_free_space *entry; |
2142 | struct rb_node *node; | 2219 | struct rb_node *node; |
2143 | int ret = -ENOSPC; | 2220 | int ret = -ENOSPC; |
2144 | 2221 | ||
2145 | if (block_group->total_bitmaps == 0) | 2222 | if (ctl->total_bitmaps == 0) |
2146 | return -ENOSPC; | 2223 | return -ENOSPC; |
2147 | 2224 | ||
2148 | entry = tree_search_offset(block_group, | 2225 | entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1); |
2149 | offset_to_bitmap(block_group, offset), | ||
2150 | 0, 1); | ||
2151 | if (!entry) | 2226 | if (!entry) |
2152 | return -ENOSPC; | 2227 | return -ENOSPC; |
2153 | 2228 | ||
@@ -2180,6 +2255,7 @@ int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | |||
2180 | struct btrfs_free_cluster *cluster, | 2255 | struct btrfs_free_cluster *cluster, |
2181 | u64 offset, u64 bytes, u64 empty_size) | 2256 | u64 offset, u64 bytes, u64 empty_size) |
2182 | { | 2257 | { |
2258 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
2183 | u64 min_bytes; | 2259 | u64 min_bytes; |
2184 | int ret; | 2260 | int ret; |
2185 | 2261 | ||
@@ -2199,14 +2275,14 @@ int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | |||
2199 | } else | 2275 | } else |
2200 | min_bytes = max(bytes, (bytes + empty_size) >> 2); | 2276 | min_bytes = max(bytes, (bytes + empty_size) >> 2); |
2201 | 2277 | ||
2202 | spin_lock(&block_group->tree_lock); | 2278 | spin_lock(&ctl->tree_lock); |
2203 | 2279 | ||
2204 | /* | 2280 | /* |
2205 | * If we know we don't have enough space to make a cluster don't even | 2281 | * If we know we don't have enough space to make a cluster don't even |
2206 | * bother doing all the work to try and find one. | 2282 | * bother doing all the work to try and find one. |
2207 | */ | 2283 | */ |
2208 | if (block_group->free_space < min_bytes) { | 2284 | if (ctl->free_space < min_bytes) { |
2209 | spin_unlock(&block_group->tree_lock); | 2285 | spin_unlock(&ctl->tree_lock); |
2210 | return -ENOSPC; | 2286 | return -ENOSPC; |
2211 | } | 2287 | } |
2212 | 2288 | ||
@@ -2232,7 +2308,7 @@ int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | |||
2232 | } | 2308 | } |
2233 | out: | 2309 | out: |
2234 | spin_unlock(&cluster->lock); | 2310 | spin_unlock(&cluster->lock); |
2235 | spin_unlock(&block_group->tree_lock); | 2311 | spin_unlock(&ctl->tree_lock); |
2236 | 2312 | ||
2237 | return ret; | 2313 | return ret; |
2238 | } | 2314 | } |
@@ -2253,6 +2329,7 @@ void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster) | |||
2253 | int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group, | 2329 | int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group, |
2254 | u64 *trimmed, u64 start, u64 end, u64 minlen) | 2330 | u64 *trimmed, u64 start, u64 end, u64 minlen) |
2255 | { | 2331 | { |
2332 | struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; | ||
2256 | struct btrfs_free_space *entry = NULL; | 2333 | struct btrfs_free_space *entry = NULL; |
2257 | struct btrfs_fs_info *fs_info = block_group->fs_info; | 2334 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
2258 | u64 bytes = 0; | 2335 | u64 bytes = 0; |
@@ -2262,52 +2339,50 @@ int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group, | |||
2262 | *trimmed = 0; | 2339 | *trimmed = 0; |
2263 | 2340 | ||
2264 | while (start < end) { | 2341 | while (start < end) { |
2265 | spin_lock(&block_group->tree_lock); | 2342 | spin_lock(&ctl->tree_lock); |
2266 | 2343 | ||
2267 | if (block_group->free_space < minlen) { | 2344 | if (ctl->free_space < minlen) { |
2268 | spin_unlock(&block_group->tree_lock); | 2345 | spin_unlock(&ctl->tree_lock); |
2269 | break; | 2346 | break; |
2270 | } | 2347 | } |
2271 | 2348 | ||
2272 | entry = tree_search_offset(block_group, start, 0, 1); | 2349 | entry = tree_search_offset(ctl, start, 0, 1); |
2273 | if (!entry) | 2350 | if (!entry) |
2274 | entry = tree_search_offset(block_group, | 2351 | entry = tree_search_offset(ctl, |
2275 | offset_to_bitmap(block_group, | 2352 | offset_to_bitmap(ctl, start), |
2276 | start), | ||
2277 | 1, 1); | 2353 | 1, 1); |
2278 | 2354 | ||
2279 | if (!entry || entry->offset >= end) { | 2355 | if (!entry || entry->offset >= end) { |
2280 | spin_unlock(&block_group->tree_lock); | 2356 | spin_unlock(&ctl->tree_lock); |
2281 | break; | 2357 | break; |
2282 | } | 2358 | } |
2283 | 2359 | ||
2284 | if (entry->bitmap) { | 2360 | if (entry->bitmap) { |
2285 | ret = search_bitmap(block_group, entry, &start, &bytes); | 2361 | ret = search_bitmap(ctl, entry, &start, &bytes); |
2286 | if (!ret) { | 2362 | if (!ret) { |
2287 | if (start >= end) { | 2363 | if (start >= end) { |
2288 | spin_unlock(&block_group->tree_lock); | 2364 | spin_unlock(&ctl->tree_lock); |
2289 | break; | 2365 | break; |
2290 | } | 2366 | } |
2291 | bytes = min(bytes, end - start); | 2367 | bytes = min(bytes, end - start); |
2292 | bitmap_clear_bits(block_group, entry, | 2368 | bitmap_clear_bits(ctl, entry, start, bytes); |
2293 | start, bytes); | ||
2294 | if (entry->bytes == 0) | 2369 | if (entry->bytes == 0) |
2295 | free_bitmap(block_group, entry); | 2370 | free_bitmap(ctl, entry); |
2296 | } else { | 2371 | } else { |
2297 | start = entry->offset + BITS_PER_BITMAP * | 2372 | start = entry->offset + BITS_PER_BITMAP * |
2298 | block_group->sectorsize; | 2373 | block_group->sectorsize; |
2299 | spin_unlock(&block_group->tree_lock); | 2374 | spin_unlock(&ctl->tree_lock); |
2300 | ret = 0; | 2375 | ret = 0; |
2301 | continue; | 2376 | continue; |
2302 | } | 2377 | } |
2303 | } else { | 2378 | } else { |
2304 | start = entry->offset; | 2379 | start = entry->offset; |
2305 | bytes = min(entry->bytes, end - start); | 2380 | bytes = min(entry->bytes, end - start); |
2306 | unlink_free_space(block_group, entry); | 2381 | unlink_free_space(ctl, entry); |
2307 | kmem_cache_free(btrfs_free_space_cachep, entry); | 2382 | kmem_cache_free(btrfs_free_space_cachep, entry); |
2308 | } | 2383 | } |
2309 | 2384 | ||
2310 | spin_unlock(&block_group->tree_lock); | 2385 | spin_unlock(&ctl->tree_lock); |
2311 | 2386 | ||
2312 | if (bytes >= minlen) { | 2387 | if (bytes >= minlen) { |
2313 | int update_ret; | 2388 | int update_ret; |
@@ -2319,8 +2394,7 @@ int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group, | |||
2319 | bytes, | 2394 | bytes, |
2320 | &actually_trimmed); | 2395 | &actually_trimmed); |
2321 | 2396 | ||
2322 | btrfs_add_free_space(block_group, | 2397 | btrfs_add_free_space(block_group, start, bytes); |
2323 | start, bytes); | ||
2324 | if (!update_ret) | 2398 | if (!update_ret) |
2325 | btrfs_update_reserved_bytes(block_group, | 2399 | btrfs_update_reserved_bytes(block_group, |
2326 | bytes, 0, 1); | 2400 | bytes, 0, 1); |
@@ -2342,3 +2416,145 @@ int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group, | |||
2342 | 2416 | ||
2343 | return ret; | 2417 | return ret; |
2344 | } | 2418 | } |
2419 | |||
2420 | /* | ||
2421 | * Find the left-most item in the cache tree, and then return the | ||
2422 | * smallest inode number in the item. | ||
2423 | * | ||
2424 | * Note: the returned inode number may not be the smallest one in | ||
2425 | * the tree, if the left-most item is a bitmap. | ||
2426 | */ | ||
2427 | u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root) | ||
2428 | { | ||
2429 | struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl; | ||
2430 | struct btrfs_free_space *entry = NULL; | ||
2431 | u64 ino = 0; | ||
2432 | |||
2433 | spin_lock(&ctl->tree_lock); | ||
2434 | |||
2435 | if (RB_EMPTY_ROOT(&ctl->free_space_offset)) | ||
2436 | goto out; | ||
2437 | |||
2438 | entry = rb_entry(rb_first(&ctl->free_space_offset), | ||
2439 | struct btrfs_free_space, offset_index); | ||
2440 | |||
2441 | if (!entry->bitmap) { | ||
2442 | ino = entry->offset; | ||
2443 | |||
2444 | unlink_free_space(ctl, entry); | ||
2445 | entry->offset++; | ||
2446 | entry->bytes--; | ||
2447 | if (!entry->bytes) | ||
2448 | kmem_cache_free(btrfs_free_space_cachep, entry); | ||
2449 | else | ||
2450 | link_free_space(ctl, entry); | ||
2451 | } else { | ||
2452 | u64 offset = 0; | ||
2453 | u64 count = 1; | ||
2454 | int ret; | ||
2455 | |||
2456 | ret = search_bitmap(ctl, entry, &offset, &count); | ||
2457 | BUG_ON(ret); | ||
2458 | |||
2459 | ino = offset; | ||
2460 | bitmap_clear_bits(ctl, entry, offset, 1); | ||
2461 | if (entry->bytes == 0) | ||
2462 | free_bitmap(ctl, entry); | ||
2463 | } | ||
2464 | out: | ||
2465 | spin_unlock(&ctl->tree_lock); | ||
2466 | |||
2467 | return ino; | ||
2468 | } | ||
2469 | |||
2470 | struct inode *lookup_free_ino_inode(struct btrfs_root *root, | ||
2471 | struct btrfs_path *path) | ||
2472 | { | ||
2473 | struct inode *inode = NULL; | ||
2474 | |||
2475 | spin_lock(&root->cache_lock); | ||
2476 | if (root->cache_inode) | ||
2477 | inode = igrab(root->cache_inode); | ||
2478 | spin_unlock(&root->cache_lock); | ||
2479 | if (inode) | ||
2480 | return inode; | ||
2481 | |||
2482 | inode = __lookup_free_space_inode(root, path, 0); | ||
2483 | if (IS_ERR(inode)) | ||
2484 | return inode; | ||
2485 | |||
2486 | spin_lock(&root->cache_lock); | ||
2487 | if (!root->fs_info->closing) | ||
2488 | root->cache_inode = igrab(inode); | ||
2489 | spin_unlock(&root->cache_lock); | ||
2490 | |||
2491 | return inode; | ||
2492 | } | ||
2493 | |||
2494 | int create_free_ino_inode(struct btrfs_root *root, | ||
2495 | struct btrfs_trans_handle *trans, | ||
2496 | struct btrfs_path *path) | ||
2497 | { | ||
2498 | return __create_free_space_inode(root, trans, path, | ||
2499 | BTRFS_FREE_INO_OBJECTID, 0); | ||
2500 | } | ||
2501 | |||
2502 | int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root) | ||
2503 | { | ||
2504 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
2505 | struct btrfs_path *path; | ||
2506 | struct inode *inode; | ||
2507 | int ret = 0; | ||
2508 | u64 root_gen = btrfs_root_generation(&root->root_item); | ||
2509 | |||
2510 | /* | ||
2511 | * If we're unmounting then just return, since this does a search on the | ||
2512 | * normal root and not the commit root and we could deadlock. | ||
2513 | */ | ||
2514 | smp_mb(); | ||
2515 | if (fs_info->closing) | ||
2516 | return 0; | ||
2517 | |||
2518 | path = btrfs_alloc_path(); | ||
2519 | if (!path) | ||
2520 | return 0; | ||
2521 | |||
2522 | inode = lookup_free_ino_inode(root, path); | ||
2523 | if (IS_ERR(inode)) | ||
2524 | goto out; | ||
2525 | |||
2526 | if (root_gen != BTRFS_I(inode)->generation) | ||
2527 | goto out_put; | ||
2528 | |||
2529 | ret = __load_free_space_cache(root, inode, ctl, path, 0); | ||
2530 | |||
2531 | if (ret < 0) | ||
2532 | printk(KERN_ERR "btrfs: failed to load free ino cache for " | ||
2533 | "root %llu\n", root->root_key.objectid); | ||
2534 | out_put: | ||
2535 | iput(inode); | ||
2536 | out: | ||
2537 | btrfs_free_path(path); | ||
2538 | return ret; | ||
2539 | } | ||
2540 | |||
2541 | int btrfs_write_out_ino_cache(struct btrfs_root *root, | ||
2542 | struct btrfs_trans_handle *trans, | ||
2543 | struct btrfs_path *path) | ||
2544 | { | ||
2545 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
2546 | struct inode *inode; | ||
2547 | int ret; | ||
2548 | |||
2549 | inode = lookup_free_ino_inode(root, path); | ||
2550 | if (IS_ERR(inode)) | ||
2551 | return 0; | ||
2552 | |||
2553 | ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0); | ||
2554 | if (ret < 0) | ||
2555 | printk(KERN_ERR "btrfs: failed to write free ino cache " | ||
2556 | "for root %llu\n", root->root_key.objectid); | ||
2557 | |||
2558 | iput(inode); | ||
2559 | return ret; | ||
2560 | } | ||
diff --git a/fs/btrfs/free-space-cache.h b/fs/btrfs/free-space-cache.h index 65c3b935289f..8f2613f779ed 100644 --- a/fs/btrfs/free-space-cache.h +++ b/fs/btrfs/free-space-cache.h | |||
@@ -27,6 +27,25 @@ struct btrfs_free_space { | |||
27 | struct list_head list; | 27 | struct list_head list; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | struct btrfs_free_space_ctl { | ||
31 | spinlock_t tree_lock; | ||
32 | struct rb_root free_space_offset; | ||
33 | u64 free_space; | ||
34 | int extents_thresh; | ||
35 | int free_extents; | ||
36 | int total_bitmaps; | ||
37 | int unit; | ||
38 | u64 start; | ||
39 | struct btrfs_free_space_op *op; | ||
40 | void *private; | ||
41 | }; | ||
42 | |||
43 | struct btrfs_free_space_op { | ||
44 | void (*recalc_thresholds)(struct btrfs_free_space_ctl *ctl); | ||
45 | bool (*use_bitmap)(struct btrfs_free_space_ctl *ctl, | ||
46 | struct btrfs_free_space *info); | ||
47 | }; | ||
48 | |||
30 | struct inode *lookup_free_space_inode(struct btrfs_root *root, | 49 | struct inode *lookup_free_space_inode(struct btrfs_root *root, |
31 | struct btrfs_block_group_cache | 50 | struct btrfs_block_group_cache |
32 | *block_group, struct btrfs_path *path); | 51 | *block_group, struct btrfs_path *path); |
@@ -45,17 +64,38 @@ int btrfs_write_out_cache(struct btrfs_root *root, | |||
45 | struct btrfs_trans_handle *trans, | 64 | struct btrfs_trans_handle *trans, |
46 | struct btrfs_block_group_cache *block_group, | 65 | struct btrfs_block_group_cache *block_group, |
47 | struct btrfs_path *path); | 66 | struct btrfs_path *path); |
48 | int btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | 67 | |
49 | u64 bytenr, u64 size); | 68 | struct inode *lookup_free_ino_inode(struct btrfs_root *root, |
69 | struct btrfs_path *path); | ||
70 | int create_free_ino_inode(struct btrfs_root *root, | ||
71 | struct btrfs_trans_handle *trans, | ||
72 | struct btrfs_path *path); | ||
73 | int load_free_ino_cache(struct btrfs_fs_info *fs_info, | ||
74 | struct btrfs_root *root); | ||
75 | int btrfs_write_out_ino_cache(struct btrfs_root *root, | ||
76 | struct btrfs_trans_handle *trans, | ||
77 | struct btrfs_path *path); | ||
78 | |||
79 | void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group); | ||
80 | int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl, | ||
81 | u64 bytenr, u64 size); | ||
82 | static inline int | ||
83 | btrfs_add_free_space(struct btrfs_block_group_cache *block_group, | ||
84 | u64 bytenr, u64 size) | ||
85 | { | ||
86 | return __btrfs_add_free_space(block_group->free_space_ctl, | ||
87 | bytenr, size); | ||
88 | } | ||
50 | int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group, | 89 | int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group, |
51 | u64 bytenr, u64 size); | 90 | u64 bytenr, u64 size); |
91 | void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl); | ||
52 | void btrfs_remove_free_space_cache(struct btrfs_block_group_cache | 92 | void btrfs_remove_free_space_cache(struct btrfs_block_group_cache |
53 | *block_group); | 93 | *block_group); |
54 | u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group, | 94 | u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group, |
55 | u64 offset, u64 bytes, u64 empty_size); | 95 | u64 offset, u64 bytes, u64 empty_size); |
96 | u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root); | ||
56 | void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, | 97 | void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, |
57 | u64 bytes); | 98 | u64 bytes); |
58 | u64 btrfs_block_group_free_space(struct btrfs_block_group_cache *block_group); | ||
59 | int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, | 99 | int btrfs_find_space_cluster(struct btrfs_trans_handle *trans, |
60 | struct btrfs_root *root, | 100 | struct btrfs_root *root, |
61 | struct btrfs_block_group_cache *block_group, | 101 | struct btrfs_block_group_cache *block_group, |
diff --git a/fs/btrfs/inode-map.c b/fs/btrfs/inode-map.c index c05a08f4c411..7967e85c72f5 100644 --- a/fs/btrfs/inode-map.c +++ b/fs/btrfs/inode-map.c | |||
@@ -16,11 +16,430 @@ | |||
16 | * Boston, MA 021110-1307, USA. | 16 | * Boston, MA 021110-1307, USA. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/delay.h> | ||
20 | #include <linux/kthread.h> | ||
21 | #include <linux/pagemap.h> | ||
22 | |||
19 | #include "ctree.h" | 23 | #include "ctree.h" |
20 | #include "disk-io.h" | 24 | #include "disk-io.h" |
25 | #include "free-space-cache.h" | ||
26 | #include "inode-map.h" | ||
21 | #include "transaction.h" | 27 | #include "transaction.h" |
22 | 28 | ||
23 | int btrfs_find_highest_inode(struct btrfs_root *root, u64 *objectid) | 29 | static int caching_kthread(void *data) |
30 | { | ||
31 | struct btrfs_root *root = data; | ||
32 | struct btrfs_fs_info *fs_info = root->fs_info; | ||
33 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
34 | struct btrfs_key key; | ||
35 | struct btrfs_path *path; | ||
36 | struct extent_buffer *leaf; | ||
37 | u64 last = (u64)-1; | ||
38 | int slot; | ||
39 | int ret; | ||
40 | |||
41 | path = btrfs_alloc_path(); | ||
42 | if (!path) | ||
43 | return -ENOMEM; | ||
44 | |||
45 | /* Since the commit root is read-only, we can safely skip locking. */ | ||
46 | path->skip_locking = 1; | ||
47 | path->search_commit_root = 1; | ||
48 | path->reada = 2; | ||
49 | |||
50 | key.objectid = BTRFS_FIRST_FREE_OBJECTID; | ||
51 | key.offset = 0; | ||
52 | key.type = BTRFS_INODE_ITEM_KEY; | ||
53 | again: | ||
54 | /* need to make sure the commit_root doesn't disappear */ | ||
55 | mutex_lock(&root->fs_commit_mutex); | ||
56 | |||
57 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | ||
58 | if (ret < 0) | ||
59 | goto out; | ||
60 | |||
61 | while (1) { | ||
62 | smp_mb(); | ||
63 | if (fs_info->closing > 1) | ||
64 | goto out; | ||
65 | |||
66 | leaf = path->nodes[0]; | ||
67 | slot = path->slots[0]; | ||
68 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | ||
69 | ret = btrfs_next_leaf(root, path); | ||
70 | if (ret < 0) | ||
71 | goto out; | ||
72 | else if (ret > 0) | ||
73 | break; | ||
74 | |||
75 | if (need_resched() || | ||
76 | btrfs_transaction_in_commit(fs_info)) { | ||
77 | leaf = path->nodes[0]; | ||
78 | |||
79 | if (btrfs_header_nritems(leaf) == 0) { | ||
80 | WARN_ON(1); | ||
81 | break; | ||
82 | } | ||
83 | |||
84 | /* | ||
85 | * Save the key so we can advances forward | ||
86 | * in the next search. | ||
87 | */ | ||
88 | btrfs_item_key_to_cpu(leaf, &key, 0); | ||
89 | btrfs_release_path(root, path); | ||
90 | root->cache_progress = last; | ||
91 | mutex_unlock(&root->fs_commit_mutex); | ||
92 | schedule_timeout(1); | ||
93 | goto again; | ||
94 | } else | ||
95 | continue; | ||
96 | } | ||
97 | |||
98 | btrfs_item_key_to_cpu(leaf, &key, slot); | ||
99 | |||
100 | if (key.type != BTRFS_INODE_ITEM_KEY) | ||
101 | goto next; | ||
102 | |||
103 | if (key.objectid >= BTRFS_LAST_FREE_OBJECTID) | ||
104 | break; | ||
105 | |||
106 | if (last != (u64)-1 && last + 1 != key.objectid) { | ||
107 | __btrfs_add_free_space(ctl, last + 1, | ||
108 | key.objectid - last - 1); | ||
109 | wake_up(&root->cache_wait); | ||
110 | } | ||
111 | |||
112 | last = key.objectid; | ||
113 | next: | ||
114 | path->slots[0]++; | ||
115 | } | ||
116 | |||
117 | if (last < BTRFS_LAST_FREE_OBJECTID - 1) { | ||
118 | __btrfs_add_free_space(ctl, last + 1, | ||
119 | BTRFS_LAST_FREE_OBJECTID - last - 1); | ||
120 | } | ||
121 | |||
122 | spin_lock(&root->cache_lock); | ||
123 | root->cached = BTRFS_CACHE_FINISHED; | ||
124 | spin_unlock(&root->cache_lock); | ||
125 | |||
126 | root->cache_progress = (u64)-1; | ||
127 | btrfs_unpin_free_ino(root); | ||
128 | out: | ||
129 | wake_up(&root->cache_wait); | ||
130 | mutex_unlock(&root->fs_commit_mutex); | ||
131 | |||
132 | btrfs_free_path(path); | ||
133 | |||
134 | return ret; | ||
135 | } | ||
136 | |||
137 | static void start_caching(struct btrfs_root *root) | ||
138 | { | ||
139 | struct task_struct *tsk; | ||
140 | int ret; | ||
141 | |||
142 | spin_lock(&root->cache_lock); | ||
143 | if (root->cached != BTRFS_CACHE_NO) { | ||
144 | spin_unlock(&root->cache_lock); | ||
145 | return; | ||
146 | } | ||
147 | |||
148 | root->cached = BTRFS_CACHE_STARTED; | ||
149 | spin_unlock(&root->cache_lock); | ||
150 | |||
151 | ret = load_free_ino_cache(root->fs_info, root); | ||
152 | if (ret == 1) { | ||
153 | spin_lock(&root->cache_lock); | ||
154 | root->cached = BTRFS_CACHE_FINISHED; | ||
155 | spin_unlock(&root->cache_lock); | ||
156 | return; | ||
157 | } | ||
158 | |||
159 | tsk = kthread_run(caching_kthread, root, "btrfs-ino-cache-%llu\n", | ||
160 | root->root_key.objectid); | ||
161 | BUG_ON(IS_ERR(tsk)); | ||
162 | } | ||
163 | |||
164 | int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid) | ||
165 | { | ||
166 | again: | ||
167 | *objectid = btrfs_find_ino_for_alloc(root); | ||
168 | |||
169 | if (*objectid != 0) | ||
170 | return 0; | ||
171 | |||
172 | start_caching(root); | ||
173 | |||
174 | wait_event(root->cache_wait, | ||
175 | root->cached == BTRFS_CACHE_FINISHED || | ||
176 | root->free_ino_ctl->free_space > 0); | ||
177 | |||
178 | if (root->cached == BTRFS_CACHE_FINISHED && | ||
179 | root->free_ino_ctl->free_space == 0) | ||
180 | return -ENOSPC; | ||
181 | else | ||
182 | goto again; | ||
183 | } | ||
184 | |||
185 | void btrfs_return_ino(struct btrfs_root *root, u64 objectid) | ||
186 | { | ||
187 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
188 | struct btrfs_free_space_ctl *pinned = root->free_ino_pinned; | ||
189 | again: | ||
190 | if (root->cached == BTRFS_CACHE_FINISHED) { | ||
191 | __btrfs_add_free_space(ctl, objectid, 1); | ||
192 | } else { | ||
193 | /* | ||
194 | * If we are in the process of caching free ino chunks, | ||
195 | * to avoid adding the same inode number to the free_ino | ||
196 | * tree twice due to cross transaction, we'll leave it | ||
197 | * in the pinned tree until a transaction is committed | ||
198 | * or the caching work is done. | ||
199 | */ | ||
200 | |||
201 | mutex_lock(&root->fs_commit_mutex); | ||
202 | spin_lock(&root->cache_lock); | ||
203 | if (root->cached == BTRFS_CACHE_FINISHED) { | ||
204 | spin_unlock(&root->cache_lock); | ||
205 | mutex_unlock(&root->fs_commit_mutex); | ||
206 | goto again; | ||
207 | } | ||
208 | spin_unlock(&root->cache_lock); | ||
209 | |||
210 | start_caching(root); | ||
211 | |||
212 | if (objectid <= root->cache_progress) | ||
213 | __btrfs_add_free_space(ctl, objectid, 1); | ||
214 | else | ||
215 | __btrfs_add_free_space(pinned, objectid, 1); | ||
216 | |||
217 | mutex_unlock(&root->fs_commit_mutex); | ||
218 | } | ||
219 | } | ||
220 | |||
221 | /* | ||
222 | * When a transaction is committed, we'll move those inode numbers which | ||
223 | * are smaller than root->cache_progress from pinned tree to free_ino tree, | ||
224 | * and others will just be dropped, because the commit root we were | ||
225 | * searching has changed. | ||
226 | * | ||
227 | * Must be called with root->fs_commit_mutex held | ||
228 | */ | ||
229 | void btrfs_unpin_free_ino(struct btrfs_root *root) | ||
230 | { | ||
231 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
232 | struct rb_root *rbroot = &root->free_ino_pinned->free_space_offset; | ||
233 | struct btrfs_free_space *info; | ||
234 | struct rb_node *n; | ||
235 | u64 count; | ||
236 | |||
237 | while (1) { | ||
238 | n = rb_first(rbroot); | ||
239 | if (!n) | ||
240 | break; | ||
241 | |||
242 | info = rb_entry(n, struct btrfs_free_space, offset_index); | ||
243 | BUG_ON(info->bitmap); | ||
244 | |||
245 | if (info->offset > root->cache_progress) | ||
246 | goto free; | ||
247 | else if (info->offset + info->bytes > root->cache_progress) | ||
248 | count = root->cache_progress - info->offset + 1; | ||
249 | else | ||
250 | count = info->bytes; | ||
251 | |||
252 | __btrfs_add_free_space(ctl, info->offset, count); | ||
253 | free: | ||
254 | rb_erase(&info->offset_index, rbroot); | ||
255 | kfree(info); | ||
256 | } | ||
257 | } | ||
258 | |||
259 | #define INIT_THRESHOLD (((1024 * 32) / 2) / sizeof(struct btrfs_free_space)) | ||
260 | #define INODES_PER_BITMAP (PAGE_CACHE_SIZE * 8) | ||
261 | |||
262 | /* | ||
263 | * The goal is to keep the memory used by the free_ino tree won't | ||
264 | * exceed the memory if we use bitmaps only. | ||
265 | */ | ||
266 | static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl) | ||
267 | { | ||
268 | struct btrfs_free_space *info; | ||
269 | struct rb_node *n; | ||
270 | int max_ino; | ||
271 | int max_bitmaps; | ||
272 | |||
273 | n = rb_last(&ctl->free_space_offset); | ||
274 | if (!n) { | ||
275 | ctl->extents_thresh = INIT_THRESHOLD; | ||
276 | return; | ||
277 | } | ||
278 | info = rb_entry(n, struct btrfs_free_space, offset_index); | ||
279 | |||
280 | /* | ||
281 | * Find the maximum inode number in the filesystem. Note we | ||
282 | * ignore the fact that this can be a bitmap, because we are | ||
283 | * not doing precise calculation. | ||
284 | */ | ||
285 | max_ino = info->bytes - 1; | ||
286 | |||
287 | max_bitmaps = ALIGN(max_ino, INODES_PER_BITMAP) / INODES_PER_BITMAP; | ||
288 | if (max_bitmaps <= ctl->total_bitmaps) { | ||
289 | ctl->extents_thresh = 0; | ||
290 | return; | ||
291 | } | ||
292 | |||
293 | ctl->extents_thresh = (max_bitmaps - ctl->total_bitmaps) * | ||
294 | PAGE_CACHE_SIZE / sizeof(*info); | ||
295 | } | ||
296 | |||
297 | /* | ||
298 | * We don't fall back to bitmap, if we are below the extents threshold | ||
299 | * or this chunk of inode numbers is a big one. | ||
300 | */ | ||
301 | static bool use_bitmap(struct btrfs_free_space_ctl *ctl, | ||
302 | struct btrfs_free_space *info) | ||
303 | { | ||
304 | if (ctl->free_extents < ctl->extents_thresh || | ||
305 | info->bytes > INODES_PER_BITMAP / 10) | ||
306 | return false; | ||
307 | |||
308 | return true; | ||
309 | } | ||
310 | |||
311 | static struct btrfs_free_space_op free_ino_op = { | ||
312 | .recalc_thresholds = recalculate_thresholds, | ||
313 | .use_bitmap = use_bitmap, | ||
314 | }; | ||
315 | |||
316 | static void pinned_recalc_thresholds(struct btrfs_free_space_ctl *ctl) | ||
317 | { | ||
318 | } | ||
319 | |||
320 | static bool pinned_use_bitmap(struct btrfs_free_space_ctl *ctl, | ||
321 | struct btrfs_free_space *info) | ||
322 | { | ||
323 | /* | ||
324 | * We always use extents for two reasons: | ||
325 | * | ||
326 | * - The pinned tree is only used during the process of caching | ||
327 | * work. | ||
328 | * - Make code simpler. See btrfs_unpin_free_ino(). | ||
329 | */ | ||
330 | return false; | ||
331 | } | ||
332 | |||
333 | static struct btrfs_free_space_op pinned_free_ino_op = { | ||
334 | .recalc_thresholds = pinned_recalc_thresholds, | ||
335 | .use_bitmap = pinned_use_bitmap, | ||
336 | }; | ||
337 | |||
338 | void btrfs_init_free_ino_ctl(struct btrfs_root *root) | ||
339 | { | ||
340 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
341 | struct btrfs_free_space_ctl *pinned = root->free_ino_pinned; | ||
342 | |||
343 | spin_lock_init(&ctl->tree_lock); | ||
344 | ctl->unit = 1; | ||
345 | ctl->start = 0; | ||
346 | ctl->private = NULL; | ||
347 | ctl->op = &free_ino_op; | ||
348 | |||
349 | /* | ||
350 | * Initially we allow to use 16K of ram to cache chunks of | ||
351 | * inode numbers before we resort to bitmaps. This is somewhat | ||
352 | * arbitrary, but it will be adjusted in runtime. | ||
353 | */ | ||
354 | ctl->extents_thresh = INIT_THRESHOLD; | ||
355 | |||
356 | spin_lock_init(&pinned->tree_lock); | ||
357 | pinned->unit = 1; | ||
358 | pinned->start = 0; | ||
359 | pinned->private = NULL; | ||
360 | pinned->extents_thresh = 0; | ||
361 | pinned->op = &pinned_free_ino_op; | ||
362 | } | ||
363 | |||
364 | int btrfs_save_ino_cache(struct btrfs_root *root, | ||
365 | struct btrfs_trans_handle *trans) | ||
366 | { | ||
367 | struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; | ||
368 | struct btrfs_path *path; | ||
369 | struct inode *inode; | ||
370 | u64 alloc_hint = 0; | ||
371 | int ret; | ||
372 | int prealloc; | ||
373 | bool retry = false; | ||
374 | |||
375 | path = btrfs_alloc_path(); | ||
376 | if (!path) | ||
377 | return -ENOMEM; | ||
378 | again: | ||
379 | inode = lookup_free_ino_inode(root, path); | ||
380 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { | ||
381 | ret = PTR_ERR(inode); | ||
382 | goto out; | ||
383 | } | ||
384 | |||
385 | if (IS_ERR(inode)) { | ||
386 | BUG_ON(retry); | ||
387 | retry = true; | ||
388 | |||
389 | ret = create_free_ino_inode(root, trans, path); | ||
390 | if (ret) | ||
391 | goto out; | ||
392 | goto again; | ||
393 | } | ||
394 | |||
395 | BTRFS_I(inode)->generation = 0; | ||
396 | ret = btrfs_update_inode(trans, root, inode); | ||
397 | WARN_ON(ret); | ||
398 | |||
399 | if (i_size_read(inode) > 0) { | ||
400 | ret = btrfs_truncate_free_space_cache(root, trans, path, inode); | ||
401 | if (ret) | ||
402 | goto out_put; | ||
403 | } | ||
404 | |||
405 | spin_lock(&root->cache_lock); | ||
406 | if (root->cached != BTRFS_CACHE_FINISHED) { | ||
407 | ret = -1; | ||
408 | spin_unlock(&root->cache_lock); | ||
409 | goto out_put; | ||
410 | } | ||
411 | spin_unlock(&root->cache_lock); | ||
412 | |||
413 | spin_lock(&ctl->tree_lock); | ||
414 | prealloc = sizeof(struct btrfs_free_space) * ctl->free_extents; | ||
415 | prealloc = ALIGN(prealloc, PAGE_CACHE_SIZE); | ||
416 | prealloc += ctl->total_bitmaps * PAGE_CACHE_SIZE; | ||
417 | spin_unlock(&ctl->tree_lock); | ||
418 | |||
419 | /* Just to make sure we have enough space */ | ||
420 | prealloc += 8 * PAGE_CACHE_SIZE; | ||
421 | |||
422 | ret = btrfs_check_data_free_space(inode, prealloc); | ||
423 | if (ret) | ||
424 | goto out_put; | ||
425 | |||
426 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, prealloc, | ||
427 | prealloc, prealloc, &alloc_hint); | ||
428 | if (ret) | ||
429 | goto out_put; | ||
430 | btrfs_free_reserved_data_space(inode, prealloc); | ||
431 | |||
432 | out_put: | ||
433 | iput(inode); | ||
434 | out: | ||
435 | if (ret == 0) | ||
436 | ret = btrfs_write_out_ino_cache(root, trans, path); | ||
437 | |||
438 | btrfs_free_path(path); | ||
439 | return ret; | ||
440 | } | ||
441 | |||
442 | static int btrfs_find_highest_objectid(struct btrfs_root *root, u64 *objectid) | ||
24 | { | 443 | { |
25 | struct btrfs_path *path; | 444 | struct btrfs_path *path; |
26 | int ret; | 445 | int ret; |
@@ -55,15 +474,14 @@ error: | |||
55 | return ret; | 474 | return ret; |
56 | } | 475 | } |
57 | 476 | ||
58 | int btrfs_find_free_objectid(struct btrfs_trans_handle *trans, | 477 | int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid) |
59 | struct btrfs_root *root, | ||
60 | u64 dirid, u64 *objectid) | ||
61 | { | 478 | { |
62 | int ret; | 479 | int ret; |
63 | mutex_lock(&root->objectid_mutex); | 480 | mutex_lock(&root->objectid_mutex); |
64 | 481 | ||
65 | if (unlikely(root->highest_objectid < BTRFS_FIRST_FREE_OBJECTID)) { | 482 | if (unlikely(root->highest_objectid < BTRFS_FIRST_FREE_OBJECTID)) { |
66 | ret = btrfs_find_highest_inode(root, &root->highest_objectid); | 483 | ret = btrfs_find_highest_objectid(root, |
484 | &root->highest_objectid); | ||
67 | if (ret) | 485 | if (ret) |
68 | goto out; | 486 | goto out; |
69 | } | 487 | } |
diff --git a/fs/btrfs/inode-map.h b/fs/btrfs/inode-map.h new file mode 100644 index 000000000000..ddb347bfee23 --- /dev/null +++ b/fs/btrfs/inode-map.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef __BTRFS_INODE_MAP | ||
2 | #define __BTRFS_INODE_MAP | ||
3 | |||
4 | void btrfs_init_free_ino_ctl(struct btrfs_root *root); | ||
5 | void btrfs_unpin_free_ino(struct btrfs_root *root); | ||
6 | void btrfs_return_ino(struct btrfs_root *root, u64 objectid); | ||
7 | int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid); | ||
8 | int btrfs_save_ino_cache(struct btrfs_root *root, | ||
9 | struct btrfs_trans_handle *trans); | ||
10 | |||
11 | int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid); | ||
12 | |||
13 | #endif | ||
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 3470f67c6258..6cef48572e9e 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include "compression.h" | 51 | #include "compression.h" |
52 | #include "locking.h" | 52 | #include "locking.h" |
53 | #include "free-space-cache.h" | 53 | #include "free-space-cache.h" |
54 | #include "inode-map.h" | ||
54 | 55 | ||
55 | struct btrfs_iget_args { | 56 | struct btrfs_iget_args { |
56 | u64 ino; | 57 | u64 ino; |
@@ -138,7 +139,7 @@ static noinline int insert_inline_extent(struct btrfs_trans_handle *trans, | |||
138 | path->leave_spinning = 1; | 139 | path->leave_spinning = 1; |
139 | btrfs_set_trans_block_group(trans, inode); | 140 | btrfs_set_trans_block_group(trans, inode); |
140 | 141 | ||
141 | key.objectid = inode->i_ino; | 142 | key.objectid = btrfs_ino(inode); |
142 | key.offset = start; | 143 | key.offset = start; |
143 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); | 144 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); |
144 | datasize = btrfs_file_extent_calc_inline_size(cur_size); | 145 | datasize = btrfs_file_extent_calc_inline_size(cur_size); |
@@ -745,6 +746,15 @@ static u64 get_extent_allocation_hint(struct inode *inode, u64 start, | |||
745 | return alloc_hint; | 746 | return alloc_hint; |
746 | } | 747 | } |
747 | 748 | ||
749 | static inline bool is_free_space_inode(struct btrfs_root *root, | ||
750 | struct inode *inode) | ||
751 | { | ||
752 | if (root == root->fs_info->tree_root || | ||
753 | BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) | ||
754 | return true; | ||
755 | return false; | ||
756 | } | ||
757 | |||
748 | /* | 758 | /* |
749 | * when extent_io.c finds a delayed allocation range in the file, | 759 | * when extent_io.c finds a delayed allocation range in the file, |
750 | * the call backs end up in this code. The basic idea is to | 760 | * the call backs end up in this code. The basic idea is to |
@@ -777,7 +787,7 @@ static noinline int cow_file_range(struct inode *inode, | |||
777 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 787 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
778 | int ret = 0; | 788 | int ret = 0; |
779 | 789 | ||
780 | BUG_ON(root == root->fs_info->tree_root); | 790 | BUG_ON(is_free_space_inode(root, inode)); |
781 | trans = btrfs_join_transaction(root, 1); | 791 | trans = btrfs_join_transaction(root, 1); |
782 | BUG_ON(IS_ERR(trans)); | 792 | BUG_ON(IS_ERR(trans)); |
783 | btrfs_set_trans_block_group(trans, inode); | 793 | btrfs_set_trans_block_group(trans, inode); |
@@ -1049,29 +1059,31 @@ static noinline int run_delalloc_nocow(struct inode *inode, | |||
1049 | int type; | 1059 | int type; |
1050 | int nocow; | 1060 | int nocow; |
1051 | int check_prev = 1; | 1061 | int check_prev = 1; |
1052 | bool nolock = false; | 1062 | bool nolock; |
1063 | u64 ino = btrfs_ino(inode); | ||
1053 | 1064 | ||
1054 | path = btrfs_alloc_path(); | 1065 | path = btrfs_alloc_path(); |
1055 | BUG_ON(!path); | 1066 | BUG_ON(!path); |
1056 | if (root == root->fs_info->tree_root) { | 1067 | |
1057 | nolock = true; | 1068 | nolock = is_free_space_inode(root, inode); |
1069 | |||
1070 | if (nolock) | ||
1058 | trans = btrfs_join_transaction_nolock(root, 1); | 1071 | trans = btrfs_join_transaction_nolock(root, 1); |
1059 | } else { | 1072 | else |
1060 | trans = btrfs_join_transaction(root, 1); | 1073 | trans = btrfs_join_transaction(root, 1); |
1061 | } | ||
1062 | BUG_ON(IS_ERR(trans)); | 1074 | BUG_ON(IS_ERR(trans)); |
1063 | 1075 | ||
1064 | cow_start = (u64)-1; | 1076 | cow_start = (u64)-1; |
1065 | cur_offset = start; | 1077 | cur_offset = start; |
1066 | while (1) { | 1078 | while (1) { |
1067 | ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino, | 1079 | ret = btrfs_lookup_file_extent(trans, root, path, ino, |
1068 | cur_offset, 0); | 1080 | cur_offset, 0); |
1069 | BUG_ON(ret < 0); | 1081 | BUG_ON(ret < 0); |
1070 | if (ret > 0 && path->slots[0] > 0 && check_prev) { | 1082 | if (ret > 0 && path->slots[0] > 0 && check_prev) { |
1071 | leaf = path->nodes[0]; | 1083 | leaf = path->nodes[0]; |
1072 | btrfs_item_key_to_cpu(leaf, &found_key, | 1084 | btrfs_item_key_to_cpu(leaf, &found_key, |
1073 | path->slots[0] - 1); | 1085 | path->slots[0] - 1); |
1074 | if (found_key.objectid == inode->i_ino && | 1086 | if (found_key.objectid == ino && |
1075 | found_key.type == BTRFS_EXTENT_DATA_KEY) | 1087 | found_key.type == BTRFS_EXTENT_DATA_KEY) |
1076 | path->slots[0]--; | 1088 | path->slots[0]--; |
1077 | } | 1089 | } |
@@ -1092,7 +1104,7 @@ next_slot: | |||
1092 | num_bytes = 0; | 1104 | num_bytes = 0; |
1093 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 1105 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
1094 | 1106 | ||
1095 | if (found_key.objectid > inode->i_ino || | 1107 | if (found_key.objectid > ino || |
1096 | found_key.type > BTRFS_EXTENT_DATA_KEY || | 1108 | found_key.type > BTRFS_EXTENT_DATA_KEY || |
1097 | found_key.offset > end) | 1109 | found_key.offset > end) |
1098 | break; | 1110 | break; |
@@ -1127,7 +1139,7 @@ next_slot: | |||
1127 | goto out_check; | 1139 | goto out_check; |
1128 | if (btrfs_extent_readonly(root, disk_bytenr)) | 1140 | if (btrfs_extent_readonly(root, disk_bytenr)) |
1129 | goto out_check; | 1141 | goto out_check; |
1130 | if (btrfs_cross_ref_exist(trans, root, inode->i_ino, | 1142 | if (btrfs_cross_ref_exist(trans, root, ino, |
1131 | found_key.offset - | 1143 | found_key.offset - |
1132 | extent_offset, disk_bytenr)) | 1144 | extent_offset, disk_bytenr)) |
1133 | goto out_check; | 1145 | goto out_check; |
@@ -1316,8 +1328,7 @@ static int btrfs_set_bit_hook(struct inode *inode, | |||
1316 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { | 1328 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
1317 | struct btrfs_root *root = BTRFS_I(inode)->root; | 1329 | struct btrfs_root *root = BTRFS_I(inode)->root; |
1318 | u64 len = state->end + 1 - state->start; | 1330 | u64 len = state->end + 1 - state->start; |
1319 | int do_list = (root->root_key.objectid != | 1331 | bool do_list = !is_free_space_inode(root, inode); |
1320 | BTRFS_ROOT_TREE_OBJECTID); | ||
1321 | 1332 | ||
1322 | if (*bits & EXTENT_FIRST_DELALLOC) | 1333 | if (*bits & EXTENT_FIRST_DELALLOC) |
1323 | *bits &= ~EXTENT_FIRST_DELALLOC; | 1334 | *bits &= ~EXTENT_FIRST_DELALLOC; |
@@ -1350,8 +1361,7 @@ static int btrfs_clear_bit_hook(struct inode *inode, | |||
1350 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { | 1361 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
1351 | struct btrfs_root *root = BTRFS_I(inode)->root; | 1362 | struct btrfs_root *root = BTRFS_I(inode)->root; |
1352 | u64 len = state->end + 1 - state->start; | 1363 | u64 len = state->end + 1 - state->start; |
1353 | int do_list = (root->root_key.objectid != | 1364 | bool do_list = !is_free_space_inode(root, inode); |
1354 | BTRFS_ROOT_TREE_OBJECTID); | ||
1355 | 1365 | ||
1356 | if (*bits & EXTENT_FIRST_DELALLOC) | 1366 | if (*bits & EXTENT_FIRST_DELALLOC) |
1357 | *bits &= ~EXTENT_FIRST_DELALLOC; | 1367 | *bits &= ~EXTENT_FIRST_DELALLOC; |
@@ -1458,7 +1468,7 @@ static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio, | |||
1458 | 1468 | ||
1459 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; | 1469 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
1460 | 1470 | ||
1461 | if (root == root->fs_info->tree_root) | 1471 | if (is_free_space_inode(root, inode)) |
1462 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2); | 1472 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2); |
1463 | else | 1473 | else |
1464 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); | 1474 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); |
@@ -1644,7 +1654,7 @@ static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, | |||
1644 | &hint, 0); | 1654 | &hint, 0); |
1645 | BUG_ON(ret); | 1655 | BUG_ON(ret); |
1646 | 1656 | ||
1647 | ins.objectid = inode->i_ino; | 1657 | ins.objectid = btrfs_ino(inode); |
1648 | ins.offset = file_pos; | 1658 | ins.offset = file_pos; |
1649 | ins.type = BTRFS_EXTENT_DATA_KEY; | 1659 | ins.type = BTRFS_EXTENT_DATA_KEY; |
1650 | ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi)); | 1660 | ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi)); |
@@ -1675,7 +1685,7 @@ static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, | |||
1675 | ins.type = BTRFS_EXTENT_ITEM_KEY; | 1685 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
1676 | ret = btrfs_alloc_reserved_file_extent(trans, root, | 1686 | ret = btrfs_alloc_reserved_file_extent(trans, root, |
1677 | root->root_key.objectid, | 1687 | root->root_key.objectid, |
1678 | inode->i_ino, file_pos, &ins); | 1688 | btrfs_ino(inode), file_pos, &ins); |
1679 | BUG_ON(ret); | 1689 | BUG_ON(ret); |
1680 | btrfs_free_path(path); | 1690 | btrfs_free_path(path); |
1681 | 1691 | ||
@@ -1701,7 +1711,7 @@ static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | |||
1701 | struct extent_state *cached_state = NULL; | 1711 | struct extent_state *cached_state = NULL; |
1702 | int compress_type = 0; | 1712 | int compress_type = 0; |
1703 | int ret; | 1713 | int ret; |
1704 | bool nolock = false; | 1714 | bool nolock; |
1705 | 1715 | ||
1706 | ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, | 1716 | ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, |
1707 | end - start + 1); | 1717 | end - start + 1); |
@@ -1709,7 +1719,7 @@ static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | |||
1709 | return 0; | 1719 | return 0; |
1710 | BUG_ON(!ordered_extent); | 1720 | BUG_ON(!ordered_extent); |
1711 | 1721 | ||
1712 | nolock = (root == root->fs_info->tree_root); | 1722 | nolock = is_free_space_inode(root, inode); |
1713 | 1723 | ||
1714 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { | 1724 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { |
1715 | BUG_ON(!list_empty(&ordered_extent->list)); | 1725 | BUG_ON(!list_empty(&ordered_extent->list)); |
@@ -2005,8 +2015,9 @@ good: | |||
2005 | 2015 | ||
2006 | zeroit: | 2016 | zeroit: |
2007 | if (printk_ratelimit()) { | 2017 | if (printk_ratelimit()) { |
2008 | printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u " | 2018 | printk(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u " |
2009 | "private %llu\n", page->mapping->host->i_ino, | 2019 | "private %llu\n", |
2020 | (unsigned long long)btrfs_ino(page->mapping->host), | ||
2010 | (unsigned long long)start, csum, | 2021 | (unsigned long long)start, csum, |
2011 | (unsigned long long)private); | 2022 | (unsigned long long)private); |
2012 | } | 2023 | } |
@@ -2244,7 +2255,7 @@ int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode) | |||
2244 | 2255 | ||
2245 | /* insert an orphan item to track this unlinked/truncated file */ | 2256 | /* insert an orphan item to track this unlinked/truncated file */ |
2246 | if (insert >= 1) { | 2257 | if (insert >= 1) { |
2247 | ret = btrfs_insert_orphan_item(trans, root, inode->i_ino); | 2258 | ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode)); |
2248 | BUG_ON(ret); | 2259 | BUG_ON(ret); |
2249 | } | 2260 | } |
2250 | 2261 | ||
@@ -2281,7 +2292,7 @@ int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode) | |||
2281 | spin_unlock(&root->orphan_lock); | 2292 | spin_unlock(&root->orphan_lock); |
2282 | 2293 | ||
2283 | if (trans && delete_item) { | 2294 | if (trans && delete_item) { |
2284 | ret = btrfs_del_orphan_item(trans, root, inode->i_ino); | 2295 | ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode)); |
2285 | BUG_ON(ret); | 2296 | BUG_ON(ret); |
2286 | } | 2297 | } |
2287 | 2298 | ||
@@ -2543,7 +2554,8 @@ static void btrfs_read_locked_inode(struct inode *inode) | |||
2543 | * try to precache a NULL acl entry for files that don't have | 2554 | * try to precache a NULL acl entry for files that don't have |
2544 | * any xattrs or acls | 2555 | * any xattrs or acls |
2545 | */ | 2556 | */ |
2546 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino); | 2557 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], |
2558 | btrfs_ino(inode)); | ||
2547 | if (!maybe_acls) | 2559 | if (!maybe_acls) |
2548 | cache_no_acl(inode); | 2560 | cache_no_acl(inode); |
2549 | 2561 | ||
@@ -2653,7 +2665,7 @@ noinline int btrfs_update_inode(struct btrfs_trans_handle *trans, | |||
2653 | * when committing the transaction, so they needn't delaye to | 2665 | * when committing the transaction, so they needn't delaye to |
2654 | * be updated, or deadlock will occured. | 2666 | * be updated, or deadlock will occured. |
2655 | */ | 2667 | */ |
2656 | if (likely(root != root->fs_info->tree_root)) { | 2668 | if (!is_free_space_inode(root, inode)) { |
2657 | ret = btrfs_delayed_update_inode(trans, root, inode); | 2669 | ret = btrfs_delayed_update_inode(trans, root, inode); |
2658 | if (!ret) | 2670 | if (!ret) |
2659 | btrfs_set_inode_last_trans(trans, inode); | 2671 | btrfs_set_inode_last_trans(trans, inode); |
@@ -2703,6 +2715,8 @@ static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, | |||
2703 | struct btrfs_dir_item *di; | 2715 | struct btrfs_dir_item *di; |
2704 | struct btrfs_key key; | 2716 | struct btrfs_key key; |
2705 | u64 index; | 2717 | u64 index; |
2718 | u64 ino = btrfs_ino(inode); | ||
2719 | u64 dir_ino = btrfs_ino(dir); | ||
2706 | 2720 | ||
2707 | path = btrfs_alloc_path(); | 2721 | path = btrfs_alloc_path(); |
2708 | if (!path) { | 2722 | if (!path) { |
@@ -2711,7 +2725,7 @@ static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, | |||
2711 | } | 2725 | } |
2712 | 2726 | ||
2713 | path->leave_spinning = 1; | 2727 | path->leave_spinning = 1; |
2714 | di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino, | 2728 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
2715 | name, name_len, -1); | 2729 | name, name_len, -1); |
2716 | if (IS_ERR(di)) { | 2730 | if (IS_ERR(di)) { |
2717 | ret = PTR_ERR(di); | 2731 | ret = PTR_ERR(di); |
@@ -2728,13 +2742,12 @@ static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, | |||
2728 | goto err; | 2742 | goto err; |
2729 | btrfs_release_path(root, path); | 2743 | btrfs_release_path(root, path); |
2730 | 2744 | ||
2731 | ret = btrfs_del_inode_ref(trans, root, name, name_len, | 2745 | ret = btrfs_del_inode_ref(trans, root, name, name_len, ino, |
2732 | inode->i_ino, | 2746 | dir_ino, &index); |
2733 | dir->i_ino, &index); | ||
2734 | if (ret) { | 2747 | if (ret) { |
2735 | printk(KERN_INFO "btrfs failed to delete reference to %.*s, " | 2748 | printk(KERN_INFO "btrfs failed to delete reference to %.*s, " |
2736 | "inode %lu parent %lu\n", name_len, name, | 2749 | "inode %llu parent %llu\n", name_len, name, |
2737 | inode->i_ino, dir->i_ino); | 2750 | (unsigned long long)ino, (unsigned long long)dir_ino); |
2738 | goto err; | 2751 | goto err; |
2739 | } | 2752 | } |
2740 | 2753 | ||
@@ -2743,7 +2756,7 @@ static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, | |||
2743 | goto err; | 2756 | goto err; |
2744 | 2757 | ||
2745 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, | 2758 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, |
2746 | inode, dir->i_ino); | 2759 | inode, dir_ino); |
2747 | BUG_ON(ret != 0 && ret != -ENOENT); | 2760 | BUG_ON(ret != 0 && ret != -ENOENT); |
2748 | 2761 | ||
2749 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, | 2762 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, |
@@ -2821,12 +2834,14 @@ static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | |||
2821 | int check_link = 1; | 2834 | int check_link = 1; |
2822 | int err = -ENOSPC; | 2835 | int err = -ENOSPC; |
2823 | int ret; | 2836 | int ret; |
2837 | u64 ino = btrfs_ino(inode); | ||
2838 | u64 dir_ino = btrfs_ino(dir); | ||
2824 | 2839 | ||
2825 | trans = btrfs_start_transaction(root, 10); | 2840 | trans = btrfs_start_transaction(root, 10); |
2826 | if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) | 2841 | if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) |
2827 | return trans; | 2842 | return trans; |
2828 | 2843 | ||
2829 | if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) | 2844 | if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
2830 | return ERR_PTR(-ENOSPC); | 2845 | return ERR_PTR(-ENOSPC); |
2831 | 2846 | ||
2832 | /* check if there is someone else holds reference */ | 2847 | /* check if there is someone else holds reference */ |
@@ -2885,7 +2900,7 @@ static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | |||
2885 | 2900 | ||
2886 | if (ret == 0 && S_ISREG(inode->i_mode)) { | 2901 | if (ret == 0 && S_ISREG(inode->i_mode)) { |
2887 | ret = btrfs_lookup_file_extent(trans, root, path, | 2902 | ret = btrfs_lookup_file_extent(trans, root, path, |
2888 | inode->i_ino, (u64)-1, 0); | 2903 | ino, (u64)-1, 0); |
2889 | if (ret < 0) { | 2904 | if (ret < 0) { |
2890 | err = ret; | 2905 | err = ret; |
2891 | goto out; | 2906 | goto out; |
@@ -2901,7 +2916,7 @@ static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | |||
2901 | goto out; | 2916 | goto out; |
2902 | } | 2917 | } |
2903 | 2918 | ||
2904 | di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino, | 2919 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
2905 | dentry->d_name.name, dentry->d_name.len, 0); | 2920 | dentry->d_name.name, dentry->d_name.len, 0); |
2906 | if (IS_ERR(di)) { | 2921 | if (IS_ERR(di)) { |
2907 | err = PTR_ERR(di); | 2922 | err = PTR_ERR(di); |
@@ -2918,7 +2933,7 @@ static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | |||
2918 | 2933 | ||
2919 | ref = btrfs_lookup_inode_ref(trans, root, path, | 2934 | ref = btrfs_lookup_inode_ref(trans, root, path, |
2920 | dentry->d_name.name, dentry->d_name.len, | 2935 | dentry->d_name.name, dentry->d_name.len, |
2921 | inode->i_ino, dir->i_ino, 0); | 2936 | ino, dir_ino, 0); |
2922 | if (IS_ERR(ref)) { | 2937 | if (IS_ERR(ref)) { |
2923 | err = PTR_ERR(ref); | 2938 | err = PTR_ERR(ref); |
2924 | goto out; | 2939 | goto out; |
@@ -2937,7 +2952,7 @@ static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | |||
2937 | * we needn't worry about the delayed insertion of the dir index item | 2952 | * we needn't worry about the delayed insertion of the dir index item |
2938 | * here. | 2953 | * here. |
2939 | */ | 2954 | */ |
2940 | di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index, | 2955 | di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index, |
2941 | dentry->d_name.name, dentry->d_name.len, 0); | 2956 | dentry->d_name.name, dentry->d_name.len, 0); |
2942 | if (IS_ERR(di)) { | 2957 | if (IS_ERR(di)) { |
2943 | err = PTR_ERR(di); | 2958 | err = PTR_ERR(di); |
@@ -3012,12 +3027,13 @@ int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, | |||
3012 | struct btrfs_key key; | 3027 | struct btrfs_key key; |
3013 | u64 index; | 3028 | u64 index; |
3014 | int ret; | 3029 | int ret; |
3030 | u64 dir_ino = btrfs_ino(dir); | ||
3015 | 3031 | ||
3016 | path = btrfs_alloc_path(); | 3032 | path = btrfs_alloc_path(); |
3017 | if (!path) | 3033 | if (!path) |
3018 | return -ENOMEM; | 3034 | return -ENOMEM; |
3019 | 3035 | ||
3020 | di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino, | 3036 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
3021 | name, name_len, -1); | 3037 | name, name_len, -1); |
3022 | BUG_ON(!di || IS_ERR(di)); | 3038 | BUG_ON(!di || IS_ERR(di)); |
3023 | 3039 | ||
@@ -3030,10 +3046,10 @@ int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, | |||
3030 | 3046 | ||
3031 | ret = btrfs_del_root_ref(trans, root->fs_info->tree_root, | 3047 | ret = btrfs_del_root_ref(trans, root->fs_info->tree_root, |
3032 | objectid, root->root_key.objectid, | 3048 | objectid, root->root_key.objectid, |
3033 | dir->i_ino, &index, name, name_len); | 3049 | dir_ino, &index, name, name_len); |
3034 | if (ret < 0) { | 3050 | if (ret < 0) { |
3035 | BUG_ON(ret != -ENOENT); | 3051 | BUG_ON(ret != -ENOENT); |
3036 | di = btrfs_search_dir_index_item(root, path, dir->i_ino, | 3052 | di = btrfs_search_dir_index_item(root, path, dir_ino, |
3037 | name, name_len); | 3053 | name, name_len); |
3038 | BUG_ON(!di || IS_ERR(di)); | 3054 | BUG_ON(!di || IS_ERR(di)); |
3039 | 3055 | ||
@@ -3064,7 +3080,7 @@ static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
3064 | unsigned long nr = 0; | 3080 | unsigned long nr = 0; |
3065 | 3081 | ||
3066 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE || | 3082 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE || |
3067 | inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) | 3083 | btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) |
3068 | return -ENOTEMPTY; | 3084 | return -ENOTEMPTY; |
3069 | 3085 | ||
3070 | trans = __unlink_start_trans(dir, dentry); | 3086 | trans = __unlink_start_trans(dir, dentry); |
@@ -3073,7 +3089,7 @@ static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
3073 | 3089 | ||
3074 | btrfs_set_trans_block_group(trans, dir); | 3090 | btrfs_set_trans_block_group(trans, dir); |
3075 | 3091 | ||
3076 | if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { | 3092 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
3077 | err = btrfs_unlink_subvol(trans, root, dir, | 3093 | err = btrfs_unlink_subvol(trans, root, dir, |
3078 | BTRFS_I(inode)->location.objectid, | 3094 | BTRFS_I(inode)->location.objectid, |
3079 | dentry->d_name.name, | 3095 | dentry->d_name.name, |
@@ -3305,6 +3321,7 @@ int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, | |||
3305 | int encoding; | 3321 | int encoding; |
3306 | int ret; | 3322 | int ret; |
3307 | int err = 0; | 3323 | int err = 0; |
3324 | u64 ino = btrfs_ino(inode); | ||
3308 | 3325 | ||
3309 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); | 3326 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); |
3310 | 3327 | ||
@@ -3324,7 +3341,7 @@ int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, | |||
3324 | BUG_ON(!path); | 3341 | BUG_ON(!path); |
3325 | path->reada = -1; | 3342 | path->reada = -1; |
3326 | 3343 | ||
3327 | key.objectid = inode->i_ino; | 3344 | key.objectid = ino; |
3328 | key.offset = (u64)-1; | 3345 | key.offset = (u64)-1; |
3329 | key.type = (u8)-1; | 3346 | key.type = (u8)-1; |
3330 | 3347 | ||
@@ -3352,7 +3369,7 @@ search_again: | |||
3352 | found_type = btrfs_key_type(&found_key); | 3369 | found_type = btrfs_key_type(&found_key); |
3353 | encoding = 0; | 3370 | encoding = 0; |
3354 | 3371 | ||
3355 | if (found_key.objectid != inode->i_ino) | 3372 | if (found_key.objectid != ino) |
3356 | break; | 3373 | break; |
3357 | 3374 | ||
3358 | if (found_type < min_type) | 3375 | if (found_type < min_type) |
@@ -3471,7 +3488,7 @@ delete: | |||
3471 | ret = btrfs_free_extent(trans, root, extent_start, | 3488 | ret = btrfs_free_extent(trans, root, extent_start, |
3472 | extent_num_bytes, 0, | 3489 | extent_num_bytes, 0, |
3473 | btrfs_header_owner(leaf), | 3490 | btrfs_header_owner(leaf), |
3474 | inode->i_ino, extent_offset); | 3491 | ino, extent_offset); |
3475 | BUG_ON(ret); | 3492 | BUG_ON(ret); |
3476 | } | 3493 | } |
3477 | 3494 | ||
@@ -3480,7 +3497,9 @@ delete: | |||
3480 | 3497 | ||
3481 | if (path->slots[0] == 0 || | 3498 | if (path->slots[0] == 0 || |
3482 | path->slots[0] != pending_del_slot) { | 3499 | path->slots[0] != pending_del_slot) { |
3483 | if (root->ref_cows) { | 3500 | if (root->ref_cows && |
3501 | BTRFS_I(inode)->location.objectid != | ||
3502 | BTRFS_FREE_INO_OBJECTID) { | ||
3484 | err = -EAGAIN; | 3503 | err = -EAGAIN; |
3485 | goto out; | 3504 | goto out; |
3486 | } | 3505 | } |
@@ -3670,7 +3689,7 @@ int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size) | |||
3670 | break; | 3689 | break; |
3671 | 3690 | ||
3672 | err = btrfs_insert_file_extent(trans, root, | 3691 | err = btrfs_insert_file_extent(trans, root, |
3673 | inode->i_ino, cur_offset, 0, | 3692 | btrfs_ino(inode), cur_offset, 0, |
3674 | 0, hole_size, 0, hole_size, | 3693 | 0, hole_size, 0, hole_size, |
3675 | 0, 0, 0); | 3694 | 0, 0, 0); |
3676 | if (err) | 3695 | if (err) |
@@ -3772,7 +3791,7 @@ void btrfs_evict_inode(struct inode *inode) | |||
3772 | 3791 | ||
3773 | truncate_inode_pages(&inode->i_data, 0); | 3792 | truncate_inode_pages(&inode->i_data, 0); |
3774 | if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 || | 3793 | if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 || |
3775 | root == root->fs_info->tree_root)) | 3794 | is_free_space_inode(root, inode))) |
3776 | goto no_delete; | 3795 | goto no_delete; |
3777 | 3796 | ||
3778 | if (is_bad_inode(inode)) { | 3797 | if (is_bad_inode(inode)) { |
@@ -3825,6 +3844,10 @@ void btrfs_evict_inode(struct inode *inode) | |||
3825 | BUG_ON(ret); | 3844 | BUG_ON(ret); |
3826 | } | 3845 | } |
3827 | 3846 | ||
3847 | if (!(root == root->fs_info->tree_root || | ||
3848 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)) | ||
3849 | btrfs_return_ino(root, btrfs_ino(inode)); | ||
3850 | |||
3828 | nr = trans->blocks_used; | 3851 | nr = trans->blocks_used; |
3829 | btrfs_end_transaction(trans, root); | 3852 | btrfs_end_transaction(trans, root); |
3830 | btrfs_btree_balance_dirty(root, nr); | 3853 | btrfs_btree_balance_dirty(root, nr); |
@@ -3850,7 +3873,7 @@ static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry, | |||
3850 | path = btrfs_alloc_path(); | 3873 | path = btrfs_alloc_path(); |
3851 | BUG_ON(!path); | 3874 | BUG_ON(!path); |
3852 | 3875 | ||
3853 | di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name, | 3876 | di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name, |
3854 | namelen, 0); | 3877 | namelen, 0); |
3855 | if (IS_ERR(di)) | 3878 | if (IS_ERR(di)) |
3856 | ret = PTR_ERR(di); | 3879 | ret = PTR_ERR(di); |
@@ -3903,7 +3926,7 @@ static int fixup_tree_root_location(struct btrfs_root *root, | |||
3903 | 3926 | ||
3904 | leaf = path->nodes[0]; | 3927 | leaf = path->nodes[0]; |
3905 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); | 3928 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); |
3906 | if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino || | 3929 | if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) || |
3907 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) | 3930 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) |
3908 | goto out; | 3931 | goto out; |
3909 | 3932 | ||
@@ -3942,6 +3965,7 @@ static void inode_tree_add(struct inode *inode) | |||
3942 | struct btrfs_inode *entry; | 3965 | struct btrfs_inode *entry; |
3943 | struct rb_node **p; | 3966 | struct rb_node **p; |
3944 | struct rb_node *parent; | 3967 | struct rb_node *parent; |
3968 | u64 ino = btrfs_ino(inode); | ||
3945 | again: | 3969 | again: |
3946 | p = &root->inode_tree.rb_node; | 3970 | p = &root->inode_tree.rb_node; |
3947 | parent = NULL; | 3971 | parent = NULL; |
@@ -3954,9 +3978,9 @@ again: | |||
3954 | parent = *p; | 3978 | parent = *p; |
3955 | entry = rb_entry(parent, struct btrfs_inode, rb_node); | 3979 | entry = rb_entry(parent, struct btrfs_inode, rb_node); |
3956 | 3980 | ||
3957 | if (inode->i_ino < entry->vfs_inode.i_ino) | 3981 | if (ino < btrfs_ino(&entry->vfs_inode)) |
3958 | p = &parent->rb_left; | 3982 | p = &parent->rb_left; |
3959 | else if (inode->i_ino > entry->vfs_inode.i_ino) | 3983 | else if (ino > btrfs_ino(&entry->vfs_inode)) |
3960 | p = &parent->rb_right; | 3984 | p = &parent->rb_right; |
3961 | else { | 3985 | else { |
3962 | WARN_ON(!(entry->vfs_inode.i_state & | 3986 | WARN_ON(!(entry->vfs_inode.i_state & |
@@ -4020,9 +4044,9 @@ again: | |||
4020 | prev = node; | 4044 | prev = node; |
4021 | entry = rb_entry(node, struct btrfs_inode, rb_node); | 4045 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
4022 | 4046 | ||
4023 | if (objectid < entry->vfs_inode.i_ino) | 4047 | if (objectid < btrfs_ino(&entry->vfs_inode)) |
4024 | node = node->rb_left; | 4048 | node = node->rb_left; |
4025 | else if (objectid > entry->vfs_inode.i_ino) | 4049 | else if (objectid > btrfs_ino(&entry->vfs_inode)) |
4026 | node = node->rb_right; | 4050 | node = node->rb_right; |
4027 | else | 4051 | else |
4028 | break; | 4052 | break; |
@@ -4030,7 +4054,7 @@ again: | |||
4030 | if (!node) { | 4054 | if (!node) { |
4031 | while (prev) { | 4055 | while (prev) { |
4032 | entry = rb_entry(prev, struct btrfs_inode, rb_node); | 4056 | entry = rb_entry(prev, struct btrfs_inode, rb_node); |
4033 | if (objectid <= entry->vfs_inode.i_ino) { | 4057 | if (objectid <= btrfs_ino(&entry->vfs_inode)) { |
4034 | node = prev; | 4058 | node = prev; |
4035 | break; | 4059 | break; |
4036 | } | 4060 | } |
@@ -4039,7 +4063,7 @@ again: | |||
4039 | } | 4063 | } |
4040 | while (node) { | 4064 | while (node) { |
4041 | entry = rb_entry(node, struct btrfs_inode, rb_node); | 4065 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
4042 | objectid = entry->vfs_inode.i_ino + 1; | 4066 | objectid = btrfs_ino(&entry->vfs_inode) + 1; |
4043 | inode = igrab(&entry->vfs_inode); | 4067 | inode = igrab(&entry->vfs_inode); |
4044 | if (inode) { | 4068 | if (inode) { |
4045 | spin_unlock(&root->inode_lock); | 4069 | spin_unlock(&root->inode_lock); |
@@ -4077,7 +4101,7 @@ static int btrfs_init_locked_inode(struct inode *inode, void *p) | |||
4077 | static int btrfs_find_actor(struct inode *inode, void *opaque) | 4101 | static int btrfs_find_actor(struct inode *inode, void *opaque) |
4078 | { | 4102 | { |
4079 | struct btrfs_iget_args *args = opaque; | 4103 | struct btrfs_iget_args *args = opaque; |
4080 | return args->ino == inode->i_ino && | 4104 | return args->ino == btrfs_ino(inode) && |
4081 | args->root == BTRFS_I(inode)->root; | 4105 | args->root == BTRFS_I(inode)->root; |
4082 | } | 4106 | } |
4083 | 4107 | ||
@@ -4258,9 +4282,7 @@ static int btrfs_real_readdir(struct file *filp, void *dirent, | |||
4258 | 4282 | ||
4259 | /* special case for "." */ | 4283 | /* special case for "." */ |
4260 | if (filp->f_pos == 0) { | 4284 | if (filp->f_pos == 0) { |
4261 | over = filldir(dirent, ".", 1, | 4285 | over = filldir(dirent, ".", 1, 1, btrfs_ino(inode), DT_DIR); |
4262 | 1, inode->i_ino, | ||
4263 | DT_DIR); | ||
4264 | if (over) | 4286 | if (over) |
4265 | return 0; | 4287 | return 0; |
4266 | filp->f_pos = 1; | 4288 | filp->f_pos = 1; |
@@ -4287,7 +4309,7 @@ static int btrfs_real_readdir(struct file *filp, void *dirent, | |||
4287 | 4309 | ||
4288 | btrfs_set_key_type(&key, key_type); | 4310 | btrfs_set_key_type(&key, key_type); |
4289 | key.offset = filp->f_pos; | 4311 | key.offset = filp->f_pos; |
4290 | key.objectid = inode->i_ino; | 4312 | key.objectid = btrfs_ino(inode); |
4291 | 4313 | ||
4292 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 4314 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
4293 | if (ret < 0) | 4315 | if (ret < 0) |
@@ -4413,7 +4435,8 @@ int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc) | |||
4413 | return 0; | 4435 | return 0; |
4414 | 4436 | ||
4415 | smp_mb(); | 4437 | smp_mb(); |
4416 | nolock = (root->fs_info->closing && root == root->fs_info->tree_root); | 4438 | if (root->fs_info->closing && is_free_space_inode(root, inode)) |
4439 | nolock = true; | ||
4417 | 4440 | ||
4418 | if (wbc->sync_mode == WB_SYNC_ALL) { | 4441 | if (wbc->sync_mode == WB_SYNC_ALL) { |
4419 | if (nolock) | 4442 | if (nolock) |
@@ -4458,8 +4481,9 @@ void btrfs_dirty_inode(struct inode *inode) | |||
4458 | if (IS_ERR(trans)) { | 4481 | if (IS_ERR(trans)) { |
4459 | if (printk_ratelimit()) { | 4482 | if (printk_ratelimit()) { |
4460 | printk(KERN_ERR "btrfs: fail to " | 4483 | printk(KERN_ERR "btrfs: fail to " |
4461 | "dirty inode %lu error %ld\n", | 4484 | "dirty inode %llu error %ld\n", |
4462 | inode->i_ino, PTR_ERR(trans)); | 4485 | (unsigned long long)btrfs_ino(inode), |
4486 | PTR_ERR(trans)); | ||
4463 | } | 4487 | } |
4464 | return; | 4488 | return; |
4465 | } | 4489 | } |
@@ -4469,8 +4493,9 @@ void btrfs_dirty_inode(struct inode *inode) | |||
4469 | if (ret) { | 4493 | if (ret) { |
4470 | if (printk_ratelimit()) { | 4494 | if (printk_ratelimit()) { |
4471 | printk(KERN_ERR "btrfs: fail to " | 4495 | printk(KERN_ERR "btrfs: fail to " |
4472 | "dirty inode %lu error %d\n", | 4496 | "dirty inode %llu error %d\n", |
4473 | inode->i_ino, ret); | 4497 | (unsigned long long)btrfs_ino(inode), |
4498 | ret); | ||
4474 | } | 4499 | } |
4475 | } | 4500 | } |
4476 | } | 4501 | } |
@@ -4492,7 +4517,7 @@ static int btrfs_set_inode_index_count(struct inode *inode) | |||
4492 | struct extent_buffer *leaf; | 4517 | struct extent_buffer *leaf; |
4493 | int ret; | 4518 | int ret; |
4494 | 4519 | ||
4495 | key.objectid = inode->i_ino; | 4520 | key.objectid = btrfs_ino(inode); |
4496 | btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY); | 4521 | btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY); |
4497 | key.offset = (u64)-1; | 4522 | key.offset = (u64)-1; |
4498 | 4523 | ||
@@ -4524,7 +4549,7 @@ static int btrfs_set_inode_index_count(struct inode *inode) | |||
4524 | leaf = path->nodes[0]; | 4549 | leaf = path->nodes[0]; |
4525 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 4550 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
4526 | 4551 | ||
4527 | if (found_key.objectid != inode->i_ino || | 4552 | if (found_key.objectid != btrfs_ino(inode) || |
4528 | btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) { | 4553 | btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) { |
4529 | BTRFS_I(inode)->index_cnt = 2; | 4554 | BTRFS_I(inode)->index_cnt = 2; |
4530 | goto out; | 4555 | goto out; |
@@ -4586,6 +4611,12 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, | |||
4586 | return ERR_PTR(-ENOMEM); | 4611 | return ERR_PTR(-ENOMEM); |
4587 | } | 4612 | } |
4588 | 4613 | ||
4614 | /* | ||
4615 | * we have to initialize this early, so we can reclaim the inode | ||
4616 | * number if we fail afterwards in this function. | ||
4617 | */ | ||
4618 | inode->i_ino = objectid; | ||
4619 | |||
4589 | if (dir) { | 4620 | if (dir) { |
4590 | trace_btrfs_inode_request(dir); | 4621 | trace_btrfs_inode_request(dir); |
4591 | 4622 | ||
@@ -4631,7 +4662,6 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, | |||
4631 | goto fail; | 4662 | goto fail; |
4632 | 4663 | ||
4633 | inode_init_owner(inode, dir, mode); | 4664 | inode_init_owner(inode, dir, mode); |
4634 | inode->i_ino = objectid; | ||
4635 | inode_set_bytes(inode, 0); | 4665 | inode_set_bytes(inode, 0); |
4636 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 4666 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
4637 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], | 4667 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
@@ -4695,24 +4725,24 @@ int btrfs_add_link(struct btrfs_trans_handle *trans, | |||
4695 | int ret = 0; | 4725 | int ret = 0; |
4696 | struct btrfs_key key; | 4726 | struct btrfs_key key; |
4697 | struct btrfs_root *root = BTRFS_I(parent_inode)->root; | 4727 | struct btrfs_root *root = BTRFS_I(parent_inode)->root; |
4728 | u64 ino = btrfs_ino(inode); | ||
4729 | u64 parent_ino = btrfs_ino(parent_inode); | ||
4698 | 4730 | ||
4699 | if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 4731 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
4700 | memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key)); | 4732 | memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key)); |
4701 | } else { | 4733 | } else { |
4702 | key.objectid = inode->i_ino; | 4734 | key.objectid = ino; |
4703 | btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY); | 4735 | btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY); |
4704 | key.offset = 0; | 4736 | key.offset = 0; |
4705 | } | 4737 | } |
4706 | 4738 | ||
4707 | if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 4739 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
4708 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, | 4740 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, |
4709 | key.objectid, root->root_key.objectid, | 4741 | key.objectid, root->root_key.objectid, |
4710 | parent_inode->i_ino, | 4742 | parent_ino, index, name, name_len); |
4711 | index, name, name_len); | ||
4712 | } else if (add_backref) { | 4743 | } else if (add_backref) { |
4713 | ret = btrfs_insert_inode_ref(trans, root, | 4744 | ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino, |
4714 | name, name_len, inode->i_ino, | 4745 | parent_ino, index); |
4715 | parent_inode->i_ino, index); | ||
4716 | } | 4746 | } |
4717 | 4747 | ||
4718 | if (ret == 0) { | 4748 | if (ret == 0) { |
@@ -4760,10 +4790,6 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | |||
4760 | if (!new_valid_dev(rdev)) | 4790 | if (!new_valid_dev(rdev)) |
4761 | return -EINVAL; | 4791 | return -EINVAL; |
4762 | 4792 | ||
4763 | err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid); | ||
4764 | if (err) | ||
4765 | return err; | ||
4766 | |||
4767 | /* | 4793 | /* |
4768 | * 2 for inode item and ref | 4794 | * 2 for inode item and ref |
4769 | * 2 for dir items | 4795 | * 2 for dir items |
@@ -4775,8 +4801,12 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | |||
4775 | 4801 | ||
4776 | btrfs_set_trans_block_group(trans, dir); | 4802 | btrfs_set_trans_block_group(trans, dir); |
4777 | 4803 | ||
4804 | err = btrfs_find_free_ino(root, &objectid); | ||
4805 | if (err) | ||
4806 | goto out_unlock; | ||
4807 | |||
4778 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4808 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
4779 | dentry->d_name.len, dir->i_ino, objectid, | 4809 | dentry->d_name.len, btrfs_ino(dir), objectid, |
4780 | BTRFS_I(dir)->block_group, mode, &index); | 4810 | BTRFS_I(dir)->block_group, mode, &index); |
4781 | if (IS_ERR(inode)) { | 4811 | if (IS_ERR(inode)) { |
4782 | err = PTR_ERR(inode); | 4812 | err = PTR_ERR(inode); |
@@ -4823,9 +4853,6 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, | |||
4823 | u64 objectid; | 4853 | u64 objectid; |
4824 | u64 index = 0; | 4854 | u64 index = 0; |
4825 | 4855 | ||
4826 | err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid); | ||
4827 | if (err) | ||
4828 | return err; | ||
4829 | /* | 4856 | /* |
4830 | * 2 for inode item and ref | 4857 | * 2 for inode item and ref |
4831 | * 2 for dir items | 4858 | * 2 for dir items |
@@ -4837,8 +4864,12 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, | |||
4837 | 4864 | ||
4838 | btrfs_set_trans_block_group(trans, dir); | 4865 | btrfs_set_trans_block_group(trans, dir); |
4839 | 4866 | ||
4867 | err = btrfs_find_free_ino(root, &objectid); | ||
4868 | if (err) | ||
4869 | goto out_unlock; | ||
4870 | |||
4840 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4871 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
4841 | dentry->d_name.len, dir->i_ino, objectid, | 4872 | dentry->d_name.len, btrfs_ino(dir), objectid, |
4842 | BTRFS_I(dir)->block_group, mode, &index); | 4873 | BTRFS_I(dir)->block_group, mode, &index); |
4843 | if (IS_ERR(inode)) { | 4874 | if (IS_ERR(inode)) { |
4844 | err = PTR_ERR(inode); | 4875 | err = PTR_ERR(inode); |
@@ -4949,10 +4980,6 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
4949 | u64 index = 0; | 4980 | u64 index = 0; |
4950 | unsigned long nr = 1; | 4981 | unsigned long nr = 1; |
4951 | 4982 | ||
4952 | err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid); | ||
4953 | if (err) | ||
4954 | return err; | ||
4955 | |||
4956 | /* | 4983 | /* |
4957 | * 2 items for inode and ref | 4984 | * 2 items for inode and ref |
4958 | * 2 items for dir items | 4985 | * 2 items for dir items |
@@ -4963,8 +4990,12 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
4963 | return PTR_ERR(trans); | 4990 | return PTR_ERR(trans); |
4964 | btrfs_set_trans_block_group(trans, dir); | 4991 | btrfs_set_trans_block_group(trans, dir); |
4965 | 4992 | ||
4993 | err = btrfs_find_free_ino(root, &objectid); | ||
4994 | if (err) | ||
4995 | goto out_fail; | ||
4996 | |||
4966 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4997 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
4967 | dentry->d_name.len, dir->i_ino, objectid, | 4998 | dentry->d_name.len, btrfs_ino(dir), objectid, |
4968 | BTRFS_I(dir)->block_group, S_IFDIR | mode, | 4999 | BTRFS_I(dir)->block_group, S_IFDIR | mode, |
4969 | &index); | 5000 | &index); |
4970 | if (IS_ERR(inode)) { | 5001 | if (IS_ERR(inode)) { |
@@ -5087,7 +5118,7 @@ struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, | |||
5087 | u64 bytenr; | 5118 | u64 bytenr; |
5088 | u64 extent_start = 0; | 5119 | u64 extent_start = 0; |
5089 | u64 extent_end = 0; | 5120 | u64 extent_end = 0; |
5090 | u64 objectid = inode->i_ino; | 5121 | u64 objectid = btrfs_ino(inode); |
5091 | u32 found_type; | 5122 | u32 found_type; |
5092 | struct btrfs_path *path = NULL; | 5123 | struct btrfs_path *path = NULL; |
5093 | struct btrfs_root *root = BTRFS_I(inode)->root; | 5124 | struct btrfs_root *root = BTRFS_I(inode)->root; |
@@ -5595,7 +5626,7 @@ static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans, | |||
5595 | if (!path) | 5626 | if (!path) |
5596 | return -ENOMEM; | 5627 | return -ENOMEM; |
5597 | 5628 | ||
5598 | ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino, | 5629 | ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode), |
5599 | offset, 0); | 5630 | offset, 0); |
5600 | if (ret < 0) | 5631 | if (ret < 0) |
5601 | goto out; | 5632 | goto out; |
@@ -5612,7 +5643,7 @@ static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans, | |||
5612 | ret = 0; | 5643 | ret = 0; |
5613 | leaf = path->nodes[0]; | 5644 | leaf = path->nodes[0]; |
5614 | btrfs_item_key_to_cpu(leaf, &key, slot); | 5645 | btrfs_item_key_to_cpu(leaf, &key, slot); |
5615 | if (key.objectid != inode->i_ino || | 5646 | if (key.objectid != btrfs_ino(inode) || |
5616 | key.type != BTRFS_EXTENT_DATA_KEY) { | 5647 | key.type != BTRFS_EXTENT_DATA_KEY) { |
5617 | /* not our file or wrong item type, must cow */ | 5648 | /* not our file or wrong item type, must cow */ |
5618 | goto out; | 5649 | goto out; |
@@ -5646,7 +5677,7 @@ static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans, | |||
5646 | * look for other files referencing this extent, if we | 5677 | * look for other files referencing this extent, if we |
5647 | * find any we must cow | 5678 | * find any we must cow |
5648 | */ | 5679 | */ |
5649 | if (btrfs_cross_ref_exist(trans, root, inode->i_ino, | 5680 | if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode), |
5650 | key.offset - backref_offset, disk_bytenr)) | 5681 | key.offset - backref_offset, disk_bytenr)) |
5651 | goto out; | 5682 | goto out; |
5652 | 5683 | ||
@@ -5836,9 +5867,10 @@ static void btrfs_endio_direct_read(struct bio *bio, int err) | |||
5836 | 5867 | ||
5837 | flush_dcache_page(bvec->bv_page); | 5868 | flush_dcache_page(bvec->bv_page); |
5838 | if (csum != *private) { | 5869 | if (csum != *private) { |
5839 | printk(KERN_ERR "btrfs csum failed ino %lu off" | 5870 | printk(KERN_ERR "btrfs csum failed ino %llu off" |
5840 | " %llu csum %u private %u\n", | 5871 | " %llu csum %u private %u\n", |
5841 | inode->i_ino, (unsigned long long)start, | 5872 | (unsigned long long)btrfs_ino(inode), |
5873 | (unsigned long long)start, | ||
5842 | csum, *private); | 5874 | csum, *private); |
5843 | err = -EIO; | 5875 | err = -EIO; |
5844 | } | 5876 | } |
@@ -5985,9 +6017,9 @@ static void btrfs_end_dio_bio(struct bio *bio, int err) | |||
5985 | struct btrfs_dio_private *dip = bio->bi_private; | 6017 | struct btrfs_dio_private *dip = bio->bi_private; |
5986 | 6018 | ||
5987 | if (err) { | 6019 | if (err) { |
5988 | printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu " | 6020 | printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu " |
5989 | "sector %#Lx len %u err no %d\n", | 6021 | "sector %#Lx len %u err no %d\n", |
5990 | dip->inode->i_ino, bio->bi_rw, | 6022 | (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw, |
5991 | (unsigned long long)bio->bi_sector, bio->bi_size, err); | 6023 | (unsigned long long)bio->bi_sector, bio->bi_size, err); |
5992 | dip->errors = 1; | 6024 | dip->errors = 1; |
5993 | 6025 | ||
@@ -6899,8 +6931,8 @@ void btrfs_destroy_inode(struct inode *inode) | |||
6899 | 6931 | ||
6900 | spin_lock(&root->orphan_lock); | 6932 | spin_lock(&root->orphan_lock); |
6901 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { | 6933 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { |
6902 | printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n", | 6934 | printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n", |
6903 | inode->i_ino); | 6935 | (unsigned long long)btrfs_ino(inode)); |
6904 | list_del_init(&BTRFS_I(inode)->i_orphan); | 6936 | list_del_init(&BTRFS_I(inode)->i_orphan); |
6905 | } | 6937 | } |
6906 | spin_unlock(&root->orphan_lock); | 6938 | spin_unlock(&root->orphan_lock); |
@@ -6931,7 +6963,7 @@ int btrfs_drop_inode(struct inode *inode) | |||
6931 | struct btrfs_root *root = BTRFS_I(inode)->root; | 6963 | struct btrfs_root *root = BTRFS_I(inode)->root; |
6932 | 6964 | ||
6933 | if (btrfs_root_refs(&root->root_item) == 0 && | 6965 | if (btrfs_root_refs(&root->root_item) == 0 && |
6934 | root != root->fs_info->tree_root) | 6966 | !is_free_space_inode(root, inode)) |
6935 | return 1; | 6967 | return 1; |
6936 | else | 6968 | else |
6937 | return generic_drop_inode(inode); | 6969 | return generic_drop_inode(inode); |
@@ -7040,16 +7072,17 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7040 | u64 index = 0; | 7072 | u64 index = 0; |
7041 | u64 root_objectid; | 7073 | u64 root_objectid; |
7042 | int ret; | 7074 | int ret; |
7075 | u64 old_ino = btrfs_ino(old_inode); | ||
7043 | 7076 | ||
7044 | if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) | 7077 | if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
7045 | return -EPERM; | 7078 | return -EPERM; |
7046 | 7079 | ||
7047 | /* we only allow rename subvolume link between subvolumes */ | 7080 | /* we only allow rename subvolume link between subvolumes */ |
7048 | if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) | 7081 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) |
7049 | return -EXDEV; | 7082 | return -EXDEV; |
7050 | 7083 | ||
7051 | if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || | 7084 | if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || |
7052 | (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) | 7085 | (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID)) |
7053 | return -ENOTEMPTY; | 7086 | return -ENOTEMPTY; |
7054 | 7087 | ||
7055 | if (S_ISDIR(old_inode->i_mode) && new_inode && | 7088 | if (S_ISDIR(old_inode->i_mode) && new_inode && |
@@ -7065,7 +7098,7 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7065 | filemap_flush(old_inode->i_mapping); | 7098 | filemap_flush(old_inode->i_mapping); |
7066 | 7099 | ||
7067 | /* close the racy window with snapshot create/destroy ioctl */ | 7100 | /* close the racy window with snapshot create/destroy ioctl */ |
7068 | if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) | 7101 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
7069 | down_read(&root->fs_info->subvol_sem); | 7102 | down_read(&root->fs_info->subvol_sem); |
7070 | /* | 7103 | /* |
7071 | * We want to reserve the absolute worst case amount of items. So if | 7104 | * We want to reserve the absolute worst case amount of items. So if |
@@ -7090,15 +7123,15 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7090 | if (ret) | 7123 | if (ret) |
7091 | goto out_fail; | 7124 | goto out_fail; |
7092 | 7125 | ||
7093 | if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 7126 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
7094 | /* force full log commit if subvolume involved. */ | 7127 | /* force full log commit if subvolume involved. */ |
7095 | root->fs_info->last_trans_log_full_commit = trans->transid; | 7128 | root->fs_info->last_trans_log_full_commit = trans->transid; |
7096 | } else { | 7129 | } else { |
7097 | ret = btrfs_insert_inode_ref(trans, dest, | 7130 | ret = btrfs_insert_inode_ref(trans, dest, |
7098 | new_dentry->d_name.name, | 7131 | new_dentry->d_name.name, |
7099 | new_dentry->d_name.len, | 7132 | new_dentry->d_name.len, |
7100 | old_inode->i_ino, | 7133 | old_ino, |
7101 | new_dir->i_ino, index); | 7134 | btrfs_ino(new_dir), index); |
7102 | if (ret) | 7135 | if (ret) |
7103 | goto out_fail; | 7136 | goto out_fail; |
7104 | /* | 7137 | /* |
@@ -7114,10 +7147,8 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7114 | * make sure the inode gets flushed if it is replacing | 7147 | * make sure the inode gets flushed if it is replacing |
7115 | * something. | 7148 | * something. |
7116 | */ | 7149 | */ |
7117 | if (new_inode && new_inode->i_size && | 7150 | if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode)) |
7118 | old_inode && S_ISREG(old_inode->i_mode)) { | ||
7119 | btrfs_add_ordered_operation(trans, root, old_inode); | 7151 | btrfs_add_ordered_operation(trans, root, old_inode); |
7120 | } | ||
7121 | 7152 | ||
7122 | old_dir->i_ctime = old_dir->i_mtime = ctime; | 7153 | old_dir->i_ctime = old_dir->i_mtime = ctime; |
7123 | new_dir->i_ctime = new_dir->i_mtime = ctime; | 7154 | new_dir->i_ctime = new_dir->i_mtime = ctime; |
@@ -7126,7 +7157,7 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7126 | if (old_dentry->d_parent != new_dentry->d_parent) | 7157 | if (old_dentry->d_parent != new_dentry->d_parent) |
7127 | btrfs_record_unlink_dir(trans, old_dir, old_inode, 1); | 7158 | btrfs_record_unlink_dir(trans, old_dir, old_inode, 1); |
7128 | 7159 | ||
7129 | if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 7160 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
7130 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; | 7161 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; |
7131 | ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid, | 7162 | ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid, |
7132 | old_dentry->d_name.name, | 7163 | old_dentry->d_name.name, |
@@ -7143,7 +7174,7 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7143 | 7174 | ||
7144 | if (new_inode) { | 7175 | if (new_inode) { |
7145 | new_inode->i_ctime = CURRENT_TIME; | 7176 | new_inode->i_ctime = CURRENT_TIME; |
7146 | if (unlikely(new_inode->i_ino == | 7177 | if (unlikely(btrfs_ino(new_inode) == |
7147 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { | 7178 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
7148 | root_objectid = BTRFS_I(new_inode)->location.objectid; | 7179 | root_objectid = BTRFS_I(new_inode)->location.objectid; |
7149 | ret = btrfs_unlink_subvol(trans, dest, new_dir, | 7180 | ret = btrfs_unlink_subvol(trans, dest, new_dir, |
@@ -7171,7 +7202,7 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7171 | new_dentry->d_name.len, 0, index); | 7202 | new_dentry->d_name.len, 0, index); |
7172 | BUG_ON(ret); | 7203 | BUG_ON(ret); |
7173 | 7204 | ||
7174 | if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) { | 7205 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID) { |
7175 | struct dentry *parent = dget_parent(new_dentry); | 7206 | struct dentry *parent = dget_parent(new_dentry); |
7176 | btrfs_log_new_name(trans, old_inode, old_dir, parent); | 7207 | btrfs_log_new_name(trans, old_inode, old_dir, parent); |
7177 | dput(parent); | 7208 | dput(parent); |
@@ -7180,7 +7211,7 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
7180 | out_fail: | 7211 | out_fail: |
7181 | btrfs_end_transaction_throttle(trans, root); | 7212 | btrfs_end_transaction_throttle(trans, root); |
7182 | out_notrans: | 7213 | out_notrans: |
7183 | if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) | 7214 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
7184 | up_read(&root->fs_info->subvol_sem); | 7215 | up_read(&root->fs_info->subvol_sem); |
7185 | 7216 | ||
7186 | return ret; | 7217 | return ret; |
@@ -7309,9 +7340,6 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
7309 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root)) | 7340 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root)) |
7310 | return -ENAMETOOLONG; | 7341 | return -ENAMETOOLONG; |
7311 | 7342 | ||
7312 | err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid); | ||
7313 | if (err) | ||
7314 | return err; | ||
7315 | /* | 7343 | /* |
7316 | * 2 items for inode item and ref | 7344 | * 2 items for inode item and ref |
7317 | * 2 items for dir items | 7345 | * 2 items for dir items |
@@ -7323,8 +7351,12 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
7323 | 7351 | ||
7324 | btrfs_set_trans_block_group(trans, dir); | 7352 | btrfs_set_trans_block_group(trans, dir); |
7325 | 7353 | ||
7354 | err = btrfs_find_free_ino(root, &objectid); | ||
7355 | if (err) | ||
7356 | goto out_unlock; | ||
7357 | |||
7326 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 7358 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
7327 | dentry->d_name.len, dir->i_ino, objectid, | 7359 | dentry->d_name.len, btrfs_ino(dir), objectid, |
7328 | BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO, | 7360 | BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO, |
7329 | &index); | 7361 | &index); |
7330 | if (IS_ERR(inode)) { | 7362 | if (IS_ERR(inode)) { |
@@ -7356,7 +7388,7 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | |||
7356 | 7388 | ||
7357 | path = btrfs_alloc_path(); | 7389 | path = btrfs_alloc_path(); |
7358 | BUG_ON(!path); | 7390 | BUG_ON(!path); |
7359 | key.objectid = inode->i_ino; | 7391 | key.objectid = btrfs_ino(inode); |
7360 | key.offset = 0; | 7392 | key.offset = 0; |
7361 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); | 7393 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); |
7362 | datasize = btrfs_file_extent_calc_inline_size(name_len); | 7394 | datasize = btrfs_file_extent_calc_inline_size(name_len); |
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index df59401af742..7ab39db3db0f 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c | |||
@@ -50,6 +50,7 @@ | |||
50 | #include "print-tree.h" | 50 | #include "print-tree.h" |
51 | #include "volumes.h" | 51 | #include "volumes.h" |
52 | #include "locking.h" | 52 | #include "locking.h" |
53 | #include "inode-map.h" | ||
53 | 54 | ||
54 | /* Mask out flags that are inappropriate for the given type of inode. */ | 55 | /* Mask out flags that are inappropriate for the given type of inode. */ |
55 | static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags) | 56 | static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags) |
@@ -329,8 +330,7 @@ static noinline int create_subvol(struct btrfs_root *root, | |||
329 | u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID; | 330 | u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID; |
330 | u64 index = 0; | 331 | u64 index = 0; |
331 | 332 | ||
332 | ret = btrfs_find_free_objectid(NULL, root->fs_info->tree_root, | 333 | ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid); |
333 | 0, &objectid); | ||
334 | if (ret) { | 334 | if (ret) { |
335 | dput(parent); | 335 | dput(parent); |
336 | return ret; | 336 | return ret; |
@@ -433,7 +433,7 @@ static noinline int create_subvol(struct btrfs_root *root, | |||
433 | 433 | ||
434 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, | 434 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, |
435 | objectid, root->root_key.objectid, | 435 | objectid, root->root_key.objectid, |
436 | dir->i_ino, index, name, namelen); | 436 | btrfs_ino(dir), index, name, namelen); |
437 | 437 | ||
438 | BUG_ON(ret); | 438 | BUG_ON(ret); |
439 | 439 | ||
@@ -1129,7 +1129,7 @@ static noinline int btrfs_ioctl_subvol_getflags(struct file *file, | |||
1129 | int ret = 0; | 1129 | int ret = 0; |
1130 | u64 flags = 0; | 1130 | u64 flags = 0; |
1131 | 1131 | ||
1132 | if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) | 1132 | if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) |
1133 | return -EINVAL; | 1133 | return -EINVAL; |
1134 | 1134 | ||
1135 | down_read(&root->fs_info->subvol_sem); | 1135 | down_read(&root->fs_info->subvol_sem); |
@@ -1156,7 +1156,7 @@ static noinline int btrfs_ioctl_subvol_setflags(struct file *file, | |||
1156 | if (root->fs_info->sb->s_flags & MS_RDONLY) | 1156 | if (root->fs_info->sb->s_flags & MS_RDONLY) |
1157 | return -EROFS; | 1157 | return -EROFS; |
1158 | 1158 | ||
1159 | if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) | 1159 | if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) |
1160 | return -EINVAL; | 1160 | return -EINVAL; |
1161 | 1161 | ||
1162 | if (copy_from_user(&flags, arg, sizeof(flags))) | 1162 | if (copy_from_user(&flags, arg, sizeof(flags))) |
@@ -1639,7 +1639,7 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file, | |||
1639 | goto out_dput; | 1639 | goto out_dput; |
1640 | } | 1640 | } |
1641 | 1641 | ||
1642 | if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) { | 1642 | if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) { |
1643 | err = -EINVAL; | 1643 | err = -EINVAL; |
1644 | goto out_dput; | 1644 | goto out_dput; |
1645 | } | 1645 | } |
@@ -1925,7 +1925,7 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, | |||
1925 | } | 1925 | } |
1926 | 1926 | ||
1927 | /* clone data */ | 1927 | /* clone data */ |
1928 | key.objectid = src->i_ino; | 1928 | key.objectid = btrfs_ino(src); |
1929 | key.type = BTRFS_EXTENT_DATA_KEY; | 1929 | key.type = BTRFS_EXTENT_DATA_KEY; |
1930 | key.offset = 0; | 1930 | key.offset = 0; |
1931 | 1931 | ||
@@ -1952,7 +1952,7 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, | |||
1952 | 1952 | ||
1953 | btrfs_item_key_to_cpu(leaf, &key, slot); | 1953 | btrfs_item_key_to_cpu(leaf, &key, slot); |
1954 | if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY || | 1954 | if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY || |
1955 | key.objectid != src->i_ino) | 1955 | key.objectid != btrfs_ino(src)) |
1956 | break; | 1956 | break; |
1957 | 1957 | ||
1958 | if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) { | 1958 | if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) { |
@@ -1995,7 +1995,7 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, | |||
1995 | goto next; | 1995 | goto next; |
1996 | 1996 | ||
1997 | memcpy(&new_key, &key, sizeof(new_key)); | 1997 | memcpy(&new_key, &key, sizeof(new_key)); |
1998 | new_key.objectid = inode->i_ino; | 1998 | new_key.objectid = btrfs_ino(inode); |
1999 | if (off <= key.offset) | 1999 | if (off <= key.offset) |
2000 | new_key.offset = key.offset + destoff - off; | 2000 | new_key.offset = key.offset + destoff - off; |
2001 | else | 2001 | else |
@@ -2049,7 +2049,7 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, | |||
2049 | ret = btrfs_inc_extent_ref(trans, root, | 2049 | ret = btrfs_inc_extent_ref(trans, root, |
2050 | disko, diskl, 0, | 2050 | disko, diskl, 0, |
2051 | root->root_key.objectid, | 2051 | root->root_key.objectid, |
2052 | inode->i_ino, | 2052 | btrfs_ino(inode), |
2053 | new_key.offset - datao); | 2053 | new_key.offset - datao); |
2054 | BUG_ON(ret); | 2054 | BUG_ON(ret); |
2055 | } | 2055 | } |
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c index 199a80134312..4b5b91cf48e2 100644 --- a/fs/btrfs/relocation.c +++ b/fs/btrfs/relocation.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include "btrfs_inode.h" | 30 | #include "btrfs_inode.h" |
31 | #include "async-thread.h" | 31 | #include "async-thread.h" |
32 | #include "free-space-cache.h" | 32 | #include "free-space-cache.h" |
33 | #include "inode-map.h" | ||
33 | 34 | ||
34 | /* | 35 | /* |
35 | * backref_node, mapping_node and tree_block start with this | 36 | * backref_node, mapping_node and tree_block start with this |
@@ -1409,9 +1410,9 @@ again: | |||
1409 | prev = node; | 1410 | prev = node; |
1410 | entry = rb_entry(node, struct btrfs_inode, rb_node); | 1411 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
1411 | 1412 | ||
1412 | if (objectid < entry->vfs_inode.i_ino) | 1413 | if (objectid < btrfs_ino(&entry->vfs_inode)) |
1413 | node = node->rb_left; | 1414 | node = node->rb_left; |
1414 | else if (objectid > entry->vfs_inode.i_ino) | 1415 | else if (objectid > btrfs_ino(&entry->vfs_inode)) |
1415 | node = node->rb_right; | 1416 | node = node->rb_right; |
1416 | else | 1417 | else |
1417 | break; | 1418 | break; |
@@ -1419,7 +1420,7 @@ again: | |||
1419 | if (!node) { | 1420 | if (!node) { |
1420 | while (prev) { | 1421 | while (prev) { |
1421 | entry = rb_entry(prev, struct btrfs_inode, rb_node); | 1422 | entry = rb_entry(prev, struct btrfs_inode, rb_node); |
1422 | if (objectid <= entry->vfs_inode.i_ino) { | 1423 | if (objectid <= btrfs_ino(&entry->vfs_inode)) { |
1423 | node = prev; | 1424 | node = prev; |
1424 | break; | 1425 | break; |
1425 | } | 1426 | } |
@@ -1434,7 +1435,7 @@ again: | |||
1434 | return inode; | 1435 | return inode; |
1435 | } | 1436 | } |
1436 | 1437 | ||
1437 | objectid = entry->vfs_inode.i_ino + 1; | 1438 | objectid = btrfs_ino(&entry->vfs_inode) + 1; |
1438 | if (cond_resched_lock(&root->inode_lock)) | 1439 | if (cond_resched_lock(&root->inode_lock)) |
1439 | goto again; | 1440 | goto again; |
1440 | 1441 | ||
@@ -1470,7 +1471,7 @@ static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr, | |||
1470 | return -ENOMEM; | 1471 | return -ENOMEM; |
1471 | 1472 | ||
1472 | bytenr -= BTRFS_I(reloc_inode)->index_cnt; | 1473 | bytenr -= BTRFS_I(reloc_inode)->index_cnt; |
1473 | ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino, | 1474 | ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(reloc_inode), |
1474 | bytenr, 0); | 1475 | bytenr, 0); |
1475 | if (ret < 0) | 1476 | if (ret < 0) |
1476 | goto out; | 1477 | goto out; |
@@ -1558,11 +1559,11 @@ int replace_file_extents(struct btrfs_trans_handle *trans, | |||
1558 | if (first) { | 1559 | if (first) { |
1559 | inode = find_next_inode(root, key.objectid); | 1560 | inode = find_next_inode(root, key.objectid); |
1560 | first = 0; | 1561 | first = 0; |
1561 | } else if (inode && inode->i_ino < key.objectid) { | 1562 | } else if (inode && btrfs_ino(inode) < key.objectid) { |
1562 | btrfs_add_delayed_iput(inode); | 1563 | btrfs_add_delayed_iput(inode); |
1563 | inode = find_next_inode(root, key.objectid); | 1564 | inode = find_next_inode(root, key.objectid); |
1564 | } | 1565 | } |
1565 | if (inode && inode->i_ino == key.objectid) { | 1566 | if (inode && btrfs_ino(inode) == key.objectid) { |
1566 | end = key.offset + | 1567 | end = key.offset + |
1567 | btrfs_file_extent_num_bytes(leaf, fi); | 1568 | btrfs_file_extent_num_bytes(leaf, fi); |
1568 | WARN_ON(!IS_ALIGNED(key.offset, | 1569 | WARN_ON(!IS_ALIGNED(key.offset, |
@@ -1893,6 +1894,7 @@ static int invalidate_extent_cache(struct btrfs_root *root, | |||
1893 | struct inode *inode = NULL; | 1894 | struct inode *inode = NULL; |
1894 | u64 objectid; | 1895 | u64 objectid; |
1895 | u64 start, end; | 1896 | u64 start, end; |
1897 | u64 ino; | ||
1896 | 1898 | ||
1897 | objectid = min_key->objectid; | 1899 | objectid = min_key->objectid; |
1898 | while (1) { | 1900 | while (1) { |
@@ -1905,17 +1907,18 @@ static int invalidate_extent_cache(struct btrfs_root *root, | |||
1905 | inode = find_next_inode(root, objectid); | 1907 | inode = find_next_inode(root, objectid); |
1906 | if (!inode) | 1908 | if (!inode) |
1907 | break; | 1909 | break; |
1910 | ino = btrfs_ino(inode); | ||
1908 | 1911 | ||
1909 | if (inode->i_ino > max_key->objectid) { | 1912 | if (ino > max_key->objectid) { |
1910 | iput(inode); | 1913 | iput(inode); |
1911 | break; | 1914 | break; |
1912 | } | 1915 | } |
1913 | 1916 | ||
1914 | objectid = inode->i_ino + 1; | 1917 | objectid = ino + 1; |
1915 | if (!S_ISREG(inode->i_mode)) | 1918 | if (!S_ISREG(inode->i_mode)) |
1916 | continue; | 1919 | continue; |
1917 | 1920 | ||
1918 | if (unlikely(min_key->objectid == inode->i_ino)) { | 1921 | if (unlikely(min_key->objectid == ino)) { |
1919 | if (min_key->type > BTRFS_EXTENT_DATA_KEY) | 1922 | if (min_key->type > BTRFS_EXTENT_DATA_KEY) |
1920 | continue; | 1923 | continue; |
1921 | if (min_key->type < BTRFS_EXTENT_DATA_KEY) | 1924 | if (min_key->type < BTRFS_EXTENT_DATA_KEY) |
@@ -1928,7 +1931,7 @@ static int invalidate_extent_cache(struct btrfs_root *root, | |||
1928 | start = 0; | 1931 | start = 0; |
1929 | } | 1932 | } |
1930 | 1933 | ||
1931 | if (unlikely(max_key->objectid == inode->i_ino)) { | 1934 | if (unlikely(max_key->objectid == ino)) { |
1932 | if (max_key->type < BTRFS_EXTENT_DATA_KEY) | 1935 | if (max_key->type < BTRFS_EXTENT_DATA_KEY) |
1933 | continue; | 1936 | continue; |
1934 | if (max_key->type > BTRFS_EXTENT_DATA_KEY) { | 1937 | if (max_key->type > BTRFS_EXTENT_DATA_KEY) { |
@@ -3897,7 +3900,7 @@ struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info, | |||
3897 | if (IS_ERR(trans)) | 3900 | if (IS_ERR(trans)) |
3898 | return ERR_CAST(trans); | 3901 | return ERR_CAST(trans); |
3899 | 3902 | ||
3900 | err = btrfs_find_free_objectid(trans, root, objectid, &objectid); | 3903 | err = btrfs_find_free_objectid(root, &objectid); |
3901 | if (err) | 3904 | if (err) |
3902 | goto out; | 3905 | goto out; |
3903 | 3906 | ||
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index b83ed5e64a32..8e7e72341555 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include "transaction.h" | 27 | #include "transaction.h" |
28 | #include "locking.h" | 28 | #include "locking.h" |
29 | #include "tree-log.h" | 29 | #include "tree-log.h" |
30 | #include "inode-map.h" | ||
30 | 31 | ||
31 | #define BTRFS_ROOT_TRANS_TAG 0 | 32 | #define BTRFS_ROOT_TRANS_TAG 0 |
32 | 33 | ||
@@ -781,8 +782,14 @@ static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, | |||
781 | btrfs_update_reloc_root(trans, root); | 782 | btrfs_update_reloc_root(trans, root); |
782 | btrfs_orphan_commit_root(trans, root); | 783 | btrfs_orphan_commit_root(trans, root); |
783 | 784 | ||
785 | btrfs_save_ino_cache(root, trans); | ||
786 | |||
784 | if (root->commit_root != root->node) { | 787 | if (root->commit_root != root->node) { |
788 | mutex_lock(&root->fs_commit_mutex); | ||
785 | switch_commit_root(root); | 789 | switch_commit_root(root); |
790 | btrfs_unpin_free_ino(root); | ||
791 | mutex_unlock(&root->fs_commit_mutex); | ||
792 | |||
786 | btrfs_set_root_node(&root->root_item, | 793 | btrfs_set_root_node(&root->root_item, |
787 | root->node); | 794 | root->node); |
788 | } | 795 | } |
@@ -951,7 +958,7 @@ static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, | |||
951 | goto fail; | 958 | goto fail; |
952 | } | 959 | } |
953 | 960 | ||
954 | ret = btrfs_find_free_objectid(trans, tree_root, 0, &objectid); | 961 | ret = btrfs_find_free_objectid(tree_root, &objectid); |
955 | if (ret) { | 962 | if (ret) { |
956 | pending->error = ret; | 963 | pending->error = ret; |
957 | goto fail; | 964 | goto fail; |
@@ -1030,7 +1037,7 @@ static noinline int create_pending_snapshot(struct btrfs_trans_handle *trans, | |||
1030 | */ | 1037 | */ |
1031 | ret = btrfs_add_root_ref(trans, tree_root, objectid, | 1038 | ret = btrfs_add_root_ref(trans, tree_root, objectid, |
1032 | parent_root->root_key.objectid, | 1039 | parent_root->root_key.objectid, |
1033 | parent_inode->i_ino, index, | 1040 | btrfs_ino(parent_inode), index, |
1034 | dentry->d_name.name, dentry->d_name.len); | 1041 | dentry->d_name.name, dentry->d_name.len); |
1035 | BUG_ON(ret); | 1042 | BUG_ON(ret); |
1036 | dput(parent); | 1043 | dput(parent); |
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index ae0b72856bfb..183913bac14e 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -519,7 +519,7 @@ static noinline int replay_one_extent(struct btrfs_trans_handle *trans, | |||
519 | * file. This must be done before the btrfs_drop_extents run | 519 | * file. This must be done before the btrfs_drop_extents run |
520 | * so we don't try to drop this extent. | 520 | * so we don't try to drop this extent. |
521 | */ | 521 | */ |
522 | ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino, | 522 | ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode), |
523 | start, 0); | 523 | start, 0); |
524 | 524 | ||
525 | if (ret == 0 && | 525 | if (ret == 0 && |
@@ -832,7 +832,7 @@ again: | |||
832 | read_extent_buffer(eb, name, (unsigned long)(ref + 1), namelen); | 832 | read_extent_buffer(eb, name, (unsigned long)(ref + 1), namelen); |
833 | 833 | ||
834 | /* if we already have a perfect match, we're done */ | 834 | /* if we already have a perfect match, we're done */ |
835 | if (inode_in_dir(root, path, dir->i_ino, inode->i_ino, | 835 | if (inode_in_dir(root, path, btrfs_ino(dir), btrfs_ino(inode), |
836 | btrfs_inode_ref_index(eb, ref), | 836 | btrfs_inode_ref_index(eb, ref), |
837 | name, namelen)) { | 837 | name, namelen)) { |
838 | goto out; | 838 | goto out; |
@@ -960,8 +960,9 @@ static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, | |||
960 | unsigned long ptr; | 960 | unsigned long ptr; |
961 | unsigned long ptr_end; | 961 | unsigned long ptr_end; |
962 | int name_len; | 962 | int name_len; |
963 | u64 ino = btrfs_ino(inode); | ||
963 | 964 | ||
964 | key.objectid = inode->i_ino; | 965 | key.objectid = ino; |
965 | key.type = BTRFS_INODE_REF_KEY; | 966 | key.type = BTRFS_INODE_REF_KEY; |
966 | key.offset = (u64)-1; | 967 | key.offset = (u64)-1; |
967 | 968 | ||
@@ -980,7 +981,7 @@ static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, | |||
980 | } | 981 | } |
981 | btrfs_item_key_to_cpu(path->nodes[0], &key, | 982 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
982 | path->slots[0]); | 983 | path->slots[0]); |
983 | if (key.objectid != inode->i_ino || | 984 | if (key.objectid != ino || |
984 | key.type != BTRFS_INODE_REF_KEY) | 985 | key.type != BTRFS_INODE_REF_KEY) |
985 | break; | 986 | break; |
986 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); | 987 | ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]); |
@@ -1011,10 +1012,10 @@ static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans, | |||
1011 | if (inode->i_nlink == 0) { | 1012 | if (inode->i_nlink == 0) { |
1012 | if (S_ISDIR(inode->i_mode)) { | 1013 | if (S_ISDIR(inode->i_mode)) { |
1013 | ret = replay_dir_deletes(trans, root, NULL, path, | 1014 | ret = replay_dir_deletes(trans, root, NULL, path, |
1014 | inode->i_ino, 1); | 1015 | ino, 1); |
1015 | BUG_ON(ret); | 1016 | BUG_ON(ret); |
1016 | } | 1017 | } |
1017 | ret = insert_orphan_item(trans, root, inode->i_ino); | 1018 | ret = insert_orphan_item(trans, root, ino); |
1018 | BUG_ON(ret); | 1019 | BUG_ON(ret); |
1019 | } | 1020 | } |
1020 | btrfs_free_path(path); | 1021 | btrfs_free_path(path); |
@@ -2197,6 +2198,7 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, | |||
2197 | int ret; | 2198 | int ret; |
2198 | int err = 0; | 2199 | int err = 0; |
2199 | int bytes_del = 0; | 2200 | int bytes_del = 0; |
2201 | u64 dir_ino = btrfs_ino(dir); | ||
2200 | 2202 | ||
2201 | if (BTRFS_I(dir)->logged_trans < trans->transid) | 2203 | if (BTRFS_I(dir)->logged_trans < trans->transid) |
2202 | return 0; | 2204 | return 0; |
@@ -2214,7 +2216,7 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, | |||
2214 | goto out_unlock; | 2216 | goto out_unlock; |
2215 | } | 2217 | } |
2216 | 2218 | ||
2217 | di = btrfs_lookup_dir_item(trans, log, path, dir->i_ino, | 2219 | di = btrfs_lookup_dir_item(trans, log, path, dir_ino, |
2218 | name, name_len, -1); | 2220 | name, name_len, -1); |
2219 | if (IS_ERR(di)) { | 2221 | if (IS_ERR(di)) { |
2220 | err = PTR_ERR(di); | 2222 | err = PTR_ERR(di); |
@@ -2226,7 +2228,7 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, | |||
2226 | BUG_ON(ret); | 2228 | BUG_ON(ret); |
2227 | } | 2229 | } |
2228 | btrfs_release_path(log, path); | 2230 | btrfs_release_path(log, path); |
2229 | di = btrfs_lookup_dir_index_item(trans, log, path, dir->i_ino, | 2231 | di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino, |
2230 | index, name, name_len, -1); | 2232 | index, name, name_len, -1); |
2231 | if (IS_ERR(di)) { | 2233 | if (IS_ERR(di)) { |
2232 | err = PTR_ERR(di); | 2234 | err = PTR_ERR(di); |
@@ -2244,7 +2246,7 @@ int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, | |||
2244 | if (bytes_del) { | 2246 | if (bytes_del) { |
2245 | struct btrfs_key key; | 2247 | struct btrfs_key key; |
2246 | 2248 | ||
2247 | key.objectid = dir->i_ino; | 2249 | key.objectid = dir_ino; |
2248 | key.offset = 0; | 2250 | key.offset = 0; |
2249 | key.type = BTRFS_INODE_ITEM_KEY; | 2251 | key.type = BTRFS_INODE_ITEM_KEY; |
2250 | btrfs_release_path(log, path); | 2252 | btrfs_release_path(log, path); |
@@ -2303,7 +2305,7 @@ int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, | |||
2303 | log = root->log_root; | 2305 | log = root->log_root; |
2304 | mutex_lock(&BTRFS_I(inode)->log_mutex); | 2306 | mutex_lock(&BTRFS_I(inode)->log_mutex); |
2305 | 2307 | ||
2306 | ret = btrfs_del_inode_ref(trans, log, name, name_len, inode->i_ino, | 2308 | ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode), |
2307 | dirid, &index); | 2309 | dirid, &index); |
2308 | mutex_unlock(&BTRFS_I(inode)->log_mutex); | 2310 | mutex_unlock(&BTRFS_I(inode)->log_mutex); |
2309 | if (ret == -ENOSPC) { | 2311 | if (ret == -ENOSPC) { |
@@ -2369,13 +2371,14 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2369 | int nritems; | 2371 | int nritems; |
2370 | u64 first_offset = min_offset; | 2372 | u64 first_offset = min_offset; |
2371 | u64 last_offset = (u64)-1; | 2373 | u64 last_offset = (u64)-1; |
2374 | u64 ino = btrfs_ino(inode); | ||
2372 | 2375 | ||
2373 | log = root->log_root; | 2376 | log = root->log_root; |
2374 | max_key.objectid = inode->i_ino; | 2377 | max_key.objectid = ino; |
2375 | max_key.offset = (u64)-1; | 2378 | max_key.offset = (u64)-1; |
2376 | max_key.type = key_type; | 2379 | max_key.type = key_type; |
2377 | 2380 | ||
2378 | min_key.objectid = inode->i_ino; | 2381 | min_key.objectid = ino; |
2379 | min_key.type = key_type; | 2382 | min_key.type = key_type; |
2380 | min_key.offset = min_offset; | 2383 | min_key.offset = min_offset; |
2381 | 2384 | ||
@@ -2388,9 +2391,8 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2388 | * we didn't find anything from this transaction, see if there | 2391 | * we didn't find anything from this transaction, see if there |
2389 | * is anything at all | 2392 | * is anything at all |
2390 | */ | 2393 | */ |
2391 | if (ret != 0 || min_key.objectid != inode->i_ino || | 2394 | if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) { |
2392 | min_key.type != key_type) { | 2395 | min_key.objectid = ino; |
2393 | min_key.objectid = inode->i_ino; | ||
2394 | min_key.type = key_type; | 2396 | min_key.type = key_type; |
2395 | min_key.offset = (u64)-1; | 2397 | min_key.offset = (u64)-1; |
2396 | btrfs_release_path(root, path); | 2398 | btrfs_release_path(root, path); |
@@ -2399,7 +2401,7 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2399 | btrfs_release_path(root, path); | 2401 | btrfs_release_path(root, path); |
2400 | return ret; | 2402 | return ret; |
2401 | } | 2403 | } |
2402 | ret = btrfs_previous_item(root, path, inode->i_ino, key_type); | 2404 | ret = btrfs_previous_item(root, path, ino, key_type); |
2403 | 2405 | ||
2404 | /* if ret == 0 there are items for this type, | 2406 | /* if ret == 0 there are items for this type, |
2405 | * create a range to tell us the last key of this type. | 2407 | * create a range to tell us the last key of this type. |
@@ -2417,7 +2419,7 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2417 | } | 2419 | } |
2418 | 2420 | ||
2419 | /* go backward to find any previous key */ | 2421 | /* go backward to find any previous key */ |
2420 | ret = btrfs_previous_item(root, path, inode->i_ino, key_type); | 2422 | ret = btrfs_previous_item(root, path, ino, key_type); |
2421 | if (ret == 0) { | 2423 | if (ret == 0) { |
2422 | struct btrfs_key tmp; | 2424 | struct btrfs_key tmp; |
2423 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); | 2425 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
@@ -2452,8 +2454,7 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2452 | for (i = path->slots[0]; i < nritems; i++) { | 2454 | for (i = path->slots[0]; i < nritems; i++) { |
2453 | btrfs_item_key_to_cpu(src, &min_key, i); | 2455 | btrfs_item_key_to_cpu(src, &min_key, i); |
2454 | 2456 | ||
2455 | if (min_key.objectid != inode->i_ino || | 2457 | if (min_key.objectid != ino || min_key.type != key_type) |
2456 | min_key.type != key_type) | ||
2457 | goto done; | 2458 | goto done; |
2458 | ret = overwrite_item(trans, log, dst_path, src, i, | 2459 | ret = overwrite_item(trans, log, dst_path, src, i, |
2459 | &min_key); | 2460 | &min_key); |
@@ -2474,7 +2475,7 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans, | |||
2474 | goto done; | 2475 | goto done; |
2475 | } | 2476 | } |
2476 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); | 2477 | btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]); |
2477 | if (tmp.objectid != inode->i_ino || tmp.type != key_type) { | 2478 | if (tmp.objectid != ino || tmp.type != key_type) { |
2478 | last_offset = (u64)-1; | 2479 | last_offset = (u64)-1; |
2479 | goto done; | 2480 | goto done; |
2480 | } | 2481 | } |
@@ -2500,8 +2501,7 @@ done: | |||
2500 | * is valid | 2501 | * is valid |
2501 | */ | 2502 | */ |
2502 | ret = insert_dir_log_key(trans, log, path, key_type, | 2503 | ret = insert_dir_log_key(trans, log, path, key_type, |
2503 | inode->i_ino, first_offset, | 2504 | ino, first_offset, last_offset); |
2504 | last_offset); | ||
2505 | if (ret) | 2505 | if (ret) |
2506 | err = ret; | 2506 | err = ret; |
2507 | } | 2507 | } |
@@ -2745,6 +2745,7 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans, | |||
2745 | int nritems; | 2745 | int nritems; |
2746 | int ins_start_slot = 0; | 2746 | int ins_start_slot = 0; |
2747 | int ins_nr; | 2747 | int ins_nr; |
2748 | u64 ino = btrfs_ino(inode); | ||
2748 | 2749 | ||
2749 | log = root->log_root; | 2750 | log = root->log_root; |
2750 | 2751 | ||
@@ -2757,11 +2758,11 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans, | |||
2757 | return -ENOMEM; | 2758 | return -ENOMEM; |
2758 | } | 2759 | } |
2759 | 2760 | ||
2760 | min_key.objectid = inode->i_ino; | 2761 | min_key.objectid = ino; |
2761 | min_key.type = BTRFS_INODE_ITEM_KEY; | 2762 | min_key.type = BTRFS_INODE_ITEM_KEY; |
2762 | min_key.offset = 0; | 2763 | min_key.offset = 0; |
2763 | 2764 | ||
2764 | max_key.objectid = inode->i_ino; | 2765 | max_key.objectid = ino; |
2765 | 2766 | ||
2766 | /* today the code can only do partial logging of directories */ | 2767 | /* today the code can only do partial logging of directories */ |
2767 | if (!S_ISDIR(inode->i_mode)) | 2768 | if (!S_ISDIR(inode->i_mode)) |
@@ -2791,8 +2792,7 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans, | |||
2791 | 2792 | ||
2792 | if (inode_only == LOG_INODE_EXISTS) | 2793 | if (inode_only == LOG_INODE_EXISTS) |
2793 | max_key_type = BTRFS_XATTR_ITEM_KEY; | 2794 | max_key_type = BTRFS_XATTR_ITEM_KEY; |
2794 | ret = drop_objectid_items(trans, log, path, | 2795 | ret = drop_objectid_items(trans, log, path, ino, max_key_type); |
2795 | inode->i_ino, max_key_type); | ||
2796 | } else { | 2796 | } else { |
2797 | ret = btrfs_truncate_inode_items(trans, log, inode, 0, 0); | 2797 | ret = btrfs_truncate_inode_items(trans, log, inode, 0, 0); |
2798 | } | 2798 | } |
@@ -2810,7 +2810,7 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans, | |||
2810 | break; | 2810 | break; |
2811 | again: | 2811 | again: |
2812 | /* note, ins_nr might be > 0 here, cleanup outside the loop */ | 2812 | /* note, ins_nr might be > 0 here, cleanup outside the loop */ |
2813 | if (min_key.objectid != inode->i_ino) | 2813 | if (min_key.objectid != ino) |
2814 | break; | 2814 | break; |
2815 | if (min_key.type > max_key.type) | 2815 | if (min_key.type > max_key.type) |
2816 | break; | 2816 | break; |
diff --git a/fs/btrfs/xattr.c b/fs/btrfs/xattr.c index cfd660550ded..4e5a32173c42 100644 --- a/fs/btrfs/xattr.c +++ b/fs/btrfs/xattr.c | |||
@@ -44,7 +44,7 @@ ssize_t __btrfs_getxattr(struct inode *inode, const char *name, | |||
44 | return -ENOMEM; | 44 | return -ENOMEM; |
45 | 45 | ||
46 | /* lookup the xattr by name */ | 46 | /* lookup the xattr by name */ |
47 | di = btrfs_lookup_xattr(NULL, root, path, inode->i_ino, name, | 47 | di = btrfs_lookup_xattr(NULL, root, path, btrfs_ino(inode), name, |
48 | strlen(name), 0); | 48 | strlen(name), 0); |
49 | if (!di) { | 49 | if (!di) { |
50 | ret = -ENODATA; | 50 | ret = -ENODATA; |
@@ -103,7 +103,7 @@ static int do_setxattr(struct btrfs_trans_handle *trans, | |||
103 | return -ENOMEM; | 103 | return -ENOMEM; |
104 | 104 | ||
105 | /* first lets see if we already have this xattr */ | 105 | /* first lets see if we already have this xattr */ |
106 | di = btrfs_lookup_xattr(trans, root, path, inode->i_ino, name, | 106 | di = btrfs_lookup_xattr(trans, root, path, btrfs_ino(inode), name, |
107 | strlen(name), -1); | 107 | strlen(name), -1); |
108 | if (IS_ERR(di)) { | 108 | if (IS_ERR(di)) { |
109 | ret = PTR_ERR(di); | 109 | ret = PTR_ERR(di); |
@@ -136,7 +136,7 @@ static int do_setxattr(struct btrfs_trans_handle *trans, | |||
136 | } | 136 | } |
137 | 137 | ||
138 | /* ok we have to create a completely new xattr */ | 138 | /* ok we have to create a completely new xattr */ |
139 | ret = btrfs_insert_xattr_item(trans, root, path, inode->i_ino, | 139 | ret = btrfs_insert_xattr_item(trans, root, path, btrfs_ino(inode), |
140 | name, name_len, value, size); | 140 | name, name_len, value, size); |
141 | BUG_ON(ret); | 141 | BUG_ON(ret); |
142 | out: | 142 | out: |
@@ -190,7 +190,7 @@ ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size) | |||
190 | * NOTE: we set key.offset = 0; because we want to start with the | 190 | * NOTE: we set key.offset = 0; because we want to start with the |
191 | * first xattr that we find and walk forward | 191 | * first xattr that we find and walk forward |
192 | */ | 192 | */ |
193 | key.objectid = inode->i_ino; | 193 | key.objectid = btrfs_ino(inode); |
194 | btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY); | 194 | btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY); |
195 | key.offset = 0; | 195 | key.offset = 0; |
196 | 196 | ||