Btrfs: add a barrier before a waitqueue_active check
We were missing wakeups on the delayed ref waitqueue due to races on waitqueue_active. Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
parent
e9fbcb4220
commit
cd1cfc4915
1 changed files with 1 additions and 0 deletions
|
@ -5294,6 +5294,7 @@ static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
|
||||||
rb_erase(&head->node.rb_node, &delayed_refs->root);
|
rb_erase(&head->node.rb_node, &delayed_refs->root);
|
||||||
|
|
||||||
delayed_refs->num_entries--;
|
delayed_refs->num_entries--;
|
||||||
|
smp_mb();
|
||||||
if (waitqueue_active(&root->fs_info->tree_mod_seq_wait))
|
if (waitqueue_active(&root->fs_info->tree_mod_seq_wait))
|
||||||
wake_up(&root->fs_info->tree_mod_seq_wait);
|
wake_up(&root->fs_info->tree_mod_seq_wait);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue