|
@@ -2967,19 +2967,15 @@ out:
|
|
|
|
|
|
int btrfs_write_out_ino_cache(struct btrfs_root *root,
|
|
|
struct btrfs_trans_handle *trans,
|
|
|
- struct btrfs_path *path)
|
|
|
+ struct btrfs_path *path,
|
|
|
+ struct inode *inode)
|
|
|
{
|
|
|
struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
|
|
|
- struct inode *inode;
|
|
|
int ret;
|
|
|
|
|
|
if (!btrfs_test_opt(root, INODE_MAP_CACHE))
|
|
|
return 0;
|
|
|
|
|
|
- inode = lookup_free_ino_inode(root, path);
|
|
|
- if (IS_ERR(inode))
|
|
|
- return 0;
|
|
|
-
|
|
|
ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
|
|
|
if (ret) {
|
|
|
btrfs_delalloc_release_metadata(inode, inode->i_size);
|
|
@@ -2990,7 +2986,6 @@ int btrfs_write_out_ino_cache(struct btrfs_root *root,
|
|
|
#endif
|
|
|
}
|
|
|
|
|
|
- iput(inode);
|
|
|
return ret;
|
|
|
}
|
|
|
|