Lines Matching full:side
15 read side critical section is even and the same sequence count value is
17 be copied out inside the read side critical section. If the sequence
24 the end of the write side critical section the sequence count becomes
27 A sequence counter write side critical section must never be preempted
28 or interrupted by read side sections. Otherwise the reader will spin for
43 multiple writers. Write side critical sections must thus be serialized
48 write side section. If the read section can be invoked from hardirq or
76 /* ... [[write-side critical section]] ... */
85 /* ... [[read-side critical section]] ... */
95 As discussed at :ref:`seqcount_t`, sequence count write side critical
99 side critical sections are properly serialized.
104 injected at the beginning of the write side critical section to validate
108 protection is enforced in the write side function.
151 read path to safely interrupt its own write side critical section.
153 Use seqcount_latch_t when the write side sections cannot be protected
155 side can be invoked from NMI handlers.
168 If the read side section can be invoked from hardirq or softirq context,
169 use the write side function variants which disable interrupts or bottom
190 /* ... [[write-side critical section]] ... */
203 /* ... [[read-side critical section]] ... */
214 /* ... [[read-side critical section]] ... */
231 /* ... [[read-side critical section]] ... */