mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
btrfs: fix second lock in btrfs_delete_delayed_items()
Fix a real bug caught by coccinelle. fs/btrfs/delayed-inode.c:1013:1-11: second lock on line 1013 Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
This commit is contained in:
committed by
Chris Mason
parent
c329861da4
commit
6209526531
@@ -1028,9 +1028,10 @@ static int btrfs_delete_delayed_items(struct btrfs_trans_handle *trans,
|
||||
btrfs_release_delayed_item(prev);
|
||||
ret = 0;
|
||||
btrfs_release_path(path);
|
||||
if (curr)
|
||||
if (curr) {
|
||||
mutex_unlock(&node->mutex);
|
||||
goto do_again;
|
||||
else
|
||||
} else
|
||||
goto delete_fail;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user