Btrfs: Avoid calling into the FS for the final iput on fake root inodes
Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
7ea394f119
commit
4ca8b41e3f
2 changed files with 4 additions and 0 deletions
|
@ -1739,6 +1739,7 @@ int close_ctree(struct btrfs_root *root)
|
||||||
free_extent_buffer(root->fs_info->dev_root->node);
|
free_extent_buffer(root->fs_info->dev_root->node);
|
||||||
|
|
||||||
btrfs_free_block_groups(root->fs_info);
|
btrfs_free_block_groups(root->fs_info);
|
||||||
|
fs_info->closing = 2;
|
||||||
del_fs_roots(fs_info);
|
del_fs_roots(fs_info);
|
||||||
|
|
||||||
filemap_write_and_wait(fs_info->btree_inode->i_mapping);
|
filemap_write_and_wait(fs_info->btree_inode->i_mapping);
|
||||||
|
|
|
@ -2092,6 +2092,9 @@ int btrfs_write_inode(struct inode *inode, int wait)
|
||||||
struct btrfs_trans_handle *trans;
|
struct btrfs_trans_handle *trans;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
if (root->fs_info->closing > 1)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (wait) {
|
if (wait) {
|
||||||
trans = btrfs_join_transaction(root, 1);
|
trans = btrfs_join_transaction(root, 1);
|
||||||
btrfs_set_trans_block_group(trans, inode);
|
btrfs_set_trans_block_group(trans, inode);
|
||||||
|
|
Loading…
Reference in a new issue