Lines Matching refs:access
74 Protect the access with a lock and an smp_mb__after_spinlock()
79 Protect the access with a lock in one process, and use an
84 As below, but with the second access of the writer process
85 and the first access of reader process protected by a lock.
94 As below, but with the first access of the writer process
95 and the second access of reader process protected by a lock.
214 accesses with descriptions of the second access in the pair.
223 P0()'s second access is a READ_ONCE(), as opposed to (for example)
226 P0()'s third access is also a READ_ONCE(), but to y rather than x.
227 This is related to P0()'s second access by program order ("po"),
229 The resulting descriptor is "PodRR". Because P0()'s third access is
233 access, and the resulting descriptor is "Fre". P1()'s first access is
238 "Rfi Once PodRR Once". Another fre links P1()'s last access to
239 P0()'s first access, which is WRITE_ONCE(), so we add "Fre Once".