X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=urcu.c;h=b71e162b3fca1e29f83e02b6cd405e68b154147e;hb=0771c88bd5d2389101a082d76a09ba9969c96096;hp=2a225c4ed19d4c626b8f7fb9af5efa702bf3f371;hpb=8a5fb4c96a1e49623fd9358a048b2cfec3a917f8;p=urcu.git diff --git a/urcu.c b/urcu.c index 2a225c4..b71e162 100644 --- a/urcu.c +++ b/urcu.c @@ -254,12 +254,11 @@ void synchronize_rcu(void) */ /* - * Current RCU formal verification model assumes sequential execution of - * the write-side. Add core synchronization instructions. Can be removed - * if the formal model is extended to prove that reordering is still - * correct. + * Adding a smp_mb() which is _not_ formally required, but makes the + * model easier to understand. It does not have a big performance impact + * anyway, given this is the write-side. */ - sync_core(); /* Formal model assumes serialized execution */ + smp_mb(); /* * Wait for previous parity to be empty of readers. @@ -274,7 +273,12 @@ void synchronize_rcu(void) * Ensured by STORE_SHARED and LOAD_SHARED. */ - sync_core(); /* Formal model assumes serialized execution */ + /* + * Adding a smp_mb() which is _not_ formally required, but makes the + * model easier to understand. It does not have a big performance impact + * anyway, given this is the write-side. + */ + smp_mb(); switch_next_urcu_qparity(); /* 1 -> 0 */ @@ -286,7 +290,12 @@ void synchronize_rcu(void) * Ensured by STORE_SHARED and LOAD_SHARED. */ - sync_core(); /* Formal model assumes serialized execution */ + /* + * Adding a smp_mb() which is _not_ formally required, but makes the + * model easier to understand. It does not have a big performance impact + * anyway, given this is the write-side. + */ + smp_mb(); /* * Wait for previous parity to be empty of readers.