diff options
author | 2014-02-10 17:37:25 +0800 | |
---|---|---|
committer | 2014-03-10 15:16:38 -0400 | |
commit | 7813b3db0a9ec77ff1f4b3ee3fb4925848395d59 (patch) | |
tree | 7c4b3e305c56b6dfdb541baa9322389d441f5321 | |
parent | Btrfs: fix possible deadlock in btrfs_cleanup_transaction (diff) | |
download | linux-dev-7813b3db0a9ec77ff1f4b3ee3fb4925848395d59.tar.xz linux-dev-7813b3db0a9ec77ff1f4b3ee3fb4925848395d59.zip |
Btrfs: avoid warning bomb of btrfs_invalidate_inodes
So after transaction is aborted, we need to cleanup inode resources by
calling btrfs_invalidate_inodes(), and btrfs_invalidate_inodes() hopes
roots' refs to be zero in old times and sets a WARN_ON(), however, this
is not always true within cleaning up transaction, so we get to detect
transaction abortion and not warn at all.
Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
-rw-r--r-- | fs/btrfs/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index b88f6221b48b..8dba152883d3 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -4926,7 +4926,8 @@ void btrfs_invalidate_inodes(struct btrfs_root *root) struct inode *inode; u64 objectid = 0; - WARN_ON(btrfs_root_refs(&root->root_item) != 0); + if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) + WARN_ON(btrfs_root_refs(&root->root_item) != 0); spin_lock(&root->inode_lock); again: |