提交 a8c9e576 编写于 作者: J Josef Bacik

Btrfs: fix orphan cleanup regression

In fixing how we deal with bad inodes, we had a regression in the orphan cleanup
code, since it expects to get a bad inode back.  So fix it to deal with getting
-ESTALE back by deleting the orphan item manually and moving on.  Thanks,
Reported-by: NSimon Kirby <sim@hostway.ca>
Signed-off-by: NJosef Bacik <josef@redhat.com>
上级 3b16a4e3
...@@ -2285,37 +2285,35 @@ int btrfs_orphan_cleanup(struct btrfs_root *root) ...@@ -2285,37 +2285,35 @@ int btrfs_orphan_cleanup(struct btrfs_root *root)
found_key.type = BTRFS_INODE_ITEM_KEY; found_key.type = BTRFS_INODE_ITEM_KEY;
found_key.offset = 0; found_key.offset = 0;
inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
if (IS_ERR(inode)) { ret = PTR_RET(inode);
ret = PTR_ERR(inode); if (ret && ret != -ESTALE)
goto out; goto out;
}
/*
* add this inode to the orphan list so btrfs_orphan_del does
* the proper thing when we hit it
*/
spin_lock(&root->orphan_lock);
list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
spin_unlock(&root->orphan_lock);
/* /*
* if this is a bad inode, means we actually succeeded in * Inode is already gone but the orphan item is still there,
* removing the inode, but not the orphan record, which means * kill the orphan item.
* we need to manually delete the orphan since iput will just
* do a destroy_inode
*/ */
if (is_bad_inode(inode)) { if (ret == -ESTALE) {
trans = btrfs_start_transaction(root, 0); trans = btrfs_start_transaction(root, 1);
if (IS_ERR(trans)) { if (IS_ERR(trans)) {
ret = PTR_ERR(trans); ret = PTR_ERR(trans);
goto out; goto out;
} }
btrfs_orphan_del(trans, inode); ret = btrfs_del_orphan_item(trans, root,
found_key.objectid);
BUG_ON(ret);
btrfs_end_transaction(trans, root); btrfs_end_transaction(trans, root);
iput(inode);
continue; continue;
} }
/*
* add this inode to the orphan list so btrfs_orphan_del does
* the proper thing when we hit it
*/
spin_lock(&root->orphan_lock);
list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
spin_unlock(&root->orphan_lock);
/* if we have links, this was a truncate, lets do that */ /* if we have links, this was a truncate, lets do that */
if (inode->i_nlink) { if (inode->i_nlink) {
if (!S_ISREG(inode->i_mode)) { if (!S_ISREG(inode->i_mode)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册