mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-09 08:23:32 +07:00
btrfs: update barrier in should_cow_block
Once there was a simple int force_cow that was used with the plain barriers, and then converted to a bit, so we should use the appropriate barrier helper. Other variables in the complex if condition do not depend on a barrier, so we should be fine in case the atomic barrier becomes a no-op. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
a32bf9a302
commit
d1980131ca
@ -1441,8 +1441,8 @@ static inline int should_cow_block(struct btrfs_trans_handle *trans,
|
|||||||
if (btrfs_is_testing(root->fs_info))
|
if (btrfs_is_testing(root->fs_info))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/* ensure we can see the force_cow */
|
/* Ensure we can see the FORCE_COW bit */
|
||||||
smp_rmb();
|
smp_mb__before_atomic();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We do not need to cow a block if
|
* We do not need to cow a block if
|
||||||
|
Loading…
Reference in New Issue
Block a user