Lines Matching refs:ordering

53  (*) Assumed minimum execution ordering model.
102 abstract CPU, memory operation ordering is very relaxed, and a CPU may actually
327 ordering over the memory operations on either side of the barrier.
349 A write barrier is a partial ordering on stores only; it is not required
369 A data dependency barrier is a partial ordering on interdependent loads
383 showing the ordering constraints.
403 A read barrier is a partial ordering on loads only; it is not required to
420 A general memory barrier is a partial ordering over both loads and stores.
617 However, stores are not speculated. This means that ordering -is- provided
629 counterintuitive effects on ordering.
641 It is tempting to try to enforce ordering on identical stores on both
660 ACCESS_ONCE(b) = p; /* BUG: No ordering vs. load from a!!! */
673 Therefore, if you need ordering in this example, you need explicit
686 ordering is guaranteed only when the stores differ, for example:
721 Given this transformation, the CPU is not required to respect the ordering
725 relying on this ordering, you should make sure that MAX is greater than
784 need the three-CPU example to provide ordering, you will need smp_mb()
795 However, they do -not- guarantee any other sort of ordering:
797 later anything. If you need these other forms of ordering,
809 optimized away the ordering. Careful use of ACCESS_ONCE() can
1062 then the partial ordering imposed by CPU 1 will be perceived correctly by CPU
1256 Transitivity is a deeply intuitive notion about ordering that is not
1636 barrier. Data dependencies do not impose any additional compiler ordering.
1651 [!] Note that SMP memory barriers _must_ be used to control the ordering of
1699 These are for use with consistent memory to guarantee the ordering
1910 Locks and semaphores may not provide any guarantee of ordering on UP compiled
2107 that does affect memory access ordering on other CPUs, within the context of
2359 CPU, that CPU's dependency ordering logic will take care of everything else.
2479 required to enforce ordering.
2512 address register if ordering rules are sufficiently relaxed:
2517 If ordering rules are relaxed, it must be assumed that accesses done inside an
2530 likely, then interrupt-disabling locks should be used to guarantee ordering.
2591 ordering guarantees. Specifically, they do not guarantee ordering with
2593 ordering with respect to LOCK or UNLOCK operations. If the latter is
2908 (*) the CPU's data cache may affect the ordering, and whilst cache-coherency