commit | 4ca8b41e3fe76cc5774fbcc6cba64259d69e0f96 | [log] [tgz] |
---|---|---|
author | Chris Mason <chris.mason@oracle.com> | Tue Aug 05 13:30:48 2008 -0400 |
committer | Chris Mason <chris.mason@oracle.com> | Thu Sep 25 11:04:06 2008 -0400 |
tree | f3f0b47dc8a72657105eff6f6b005b8d2d3699cc | |
parent | 7ea394f1192bee1af67ea4762c88ef4b7b0487a8 [diff] [blame] |
Btrfs: Avoid calling into the FS for the final iput on fake root inodes Signed-off-by: Chris Mason <chris.mason@oracle.com>
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index c33053b..a26d365 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c
@@ -2092,6 +2092,9 @@ struct btrfs_trans_handle *trans; int ret = 0; + if (root->fs_info->closing > 1) + return 0; + if (wait) { trans = btrfs_join_transaction(root, 1); btrfs_set_trans_block_group(trans, inode);