From: Alano Song <[email protected]> Correct typo in atomics.rst
Signed-off-by: Alano Song <[email protected]> Reviewed-by: Christian Schoenebeck <[email protected]> Reviewed-by: Thomas Huth <[email protected]> [AJB: fixed author entry] Signed-off-by: Alex Bennée <[email protected]> --- docs/devel/atomics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/devel/atomics.rst b/docs/devel/atomics.rst index 95c7b77c01e..ea4ede4b8c4 100644 --- a/docs/devel/atomics.rst +++ b/docs/devel/atomics.rst @@ -266,7 +266,7 @@ Splitting a loop can also be useful to reduce the number of barriers: | n = 0; | smp_mb_release(); | | for (i = 0; i < 10; i++) { | for (i = 0; i < 10; i++) | | qatomic_store_release(&a[i], false); | qatomic_set(&a[i], false); | - | smp_mb(); | smb_mb(); | + | smp_mb(); | smp_mb(); | | n += qatomic_read(&b[i]); | n = 0; | | } | for (i = 0; i < 10; i++) | | | n += qatomic_read(&b[i]); | @@ -283,7 +283,7 @@ as well) ``smp_wmb()``: | | smp_mb_release(); | | for (i = 0; i < 10; i++) { | for (i = 0; i < 10; i++) | | qatomic_store_release(&a[i], false); | qatomic_set(&a[i], false); | - | qatomic_store_release(&b[i], false); | smb_wmb(); | + | qatomic_store_release(&b[i], false); | smp_wmb(); | | } | for (i = 0; i < 10; i++) | | | qatomic_set(&b[i], false); | +------------------------------------------+----------------------------------+ -- 2.47.3
