Re: bit fields && data tearing

From: James Bottomley
Date: Thu Sep 04 2014 - 22:11:46 EST


On Thu, 2014-09-04 at 17:17 -0700, Paul E. McKenney wrote:
> +And there are anti-guarantees:
> +
> + (*) These guarantees do not apply to bitfields, because compilers often
> + generate code to modify these using non-atomic read-modify-write
> + sequences. Do not attempt to use bitfields to synchronize parallel
> + algorithms.
> +
> + (*) Even in cases where bitfields are protected by locks, all fields
> + in a given bitfield must be protected by one lock. If two fields
> + in a given bitfield are protected by different locks, the compiler's
> + non-atomic read-modify-write sequences can cause an update to one
> + field to corrupt the value of an adjacent field.
> +
> + (*) These guarantees apply only to properly aligned and sized scalar
> + variables. "Properly sized" currently means "int" and "long",
> + because some CPU families do not support loads and stores of
> + other sizes. ("Some CPU families" is currently believed to
> + be only Alpha 21064. If this is actually the case, a different
> + non-guarantee is likely to be formulated.)

This is a bit unclear. Presumably you're talking about definiteness of
the outcome (as in what's seen after multiple stores to the same
variable). The guarantees are only for natural width on Parisc as well,
so you would get a mess if you did byte stores to adjacent memory
locations. But multiple 32 bit stores guarantees to see one of the
stored values as the final outcome.

James


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/