seqc: tidy up

- avoid hand-rolled read
- match begin/end in terms of fence style
This commit is contained in:
Mateusz Guzik 2020-03-08 00:22:32 +00:00
parent 54007ce8ae
commit a6924f5db3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=358733

View File

@ -66,7 +66,8 @@ static __inline void
seqc_write_end(seqc_t *seqcp)
{
atomic_store_rel_int(seqcp, *seqcp + 1);
atomic_thread_fence_rel();
*seqcp += 1;
MPASS(!seqc_in_modify(*seqcp));
critical_exit();
}
@ -84,7 +85,7 @@ seqc_read(const seqc_t *seqcp)
seqc_t ret;
for (;;) {
ret = atomic_load_acq_int(__DECONST(seqc_t *, seqcp));
ret = seqc_read_any(seqcp);
if (__predict_false(seqc_in_modify(ret))) {
cpu_spinwait();
continue;