Merge commit 'spi/fix/rcar' into spi-linus
[linux-2.6/btrfs-unstable.git] / include / linux / seqlock.h
blobcf87a24c0f92f1963081c93d7b0cce2356025358
1 #ifndef __LINUX_SEQLOCK_H
2 #define __LINUX_SEQLOCK_H
3 /*
4 * Reader/writer consistent mechanism without starving writers. This type of
5 * lock for data where the reader wants a consistent set of information
6 * and is willing to retry if the information changes. There are two types
7 * of readers:
8 * 1. Sequence readers which never block a writer but they may have to retry
9 * if a writer is in progress by detecting change in sequence number.
10 * Writers do not wait for a sequence reader.
11 * 2. Locking readers which will wait if a writer or another locking reader
12 * is in progress. A locking reader in progress will also block a writer
13 * from going forward. Unlike the regular rwlock, the read lock here is
14 * exclusive so that only one locking reader can get it.
16 * This is not as cache friendly as brlock. Also, this may not work well
17 * for data that contains pointers, because any writer could
18 * invalidate a pointer that a reader was following.
20 * Expected non-blocking reader usage:
21 * do {
22 * seq = read_seqbegin(&foo);
23 * ...
24 * } while (read_seqretry(&foo, seq));
27 * On non-SMP the spin locks disappear but the writer still needs
28 * to increment the sequence variables because an interrupt routine could
29 * change the state of the data.
31 * Based on x86_64 vsyscall gettimeofday
32 * by Keith Owens and Andrea Arcangeli
35 #include <linux/spinlock.h>
36 #include <linux/preempt.h>
37 #include <linux/lockdep.h>
38 #include <asm/processor.h>
41 * Version using sequence counter only.
42 * This can be used when code has its own mutex protecting the
43 * updating starting before the write_seqcountbeqin() and ending
44 * after the write_seqcount_end().
46 typedef struct seqcount {
47 unsigned sequence;
48 #ifdef CONFIG_DEBUG_LOCK_ALLOC
49 struct lockdep_map dep_map;
50 #endif
51 } seqcount_t;
53 static inline void __seqcount_init(seqcount_t *s, const char *name,
54 struct lock_class_key *key)
57 * Make sure we are not reinitializing a held lock:
59 lockdep_init_map(&s->dep_map, name, key, 0);
60 s->sequence = 0;
63 #ifdef CONFIG_DEBUG_LOCK_ALLOC
64 # define SEQCOUNT_DEP_MAP_INIT(lockname) \
65 .dep_map = { .name = #lockname } \
67 # define seqcount_init(s) \
68 do { \
69 static struct lock_class_key __key; \
70 __seqcount_init((s), #s, &__key); \
71 } while (0)
73 static inline void seqcount_lockdep_reader_access(const seqcount_t *s)
75 seqcount_t *l = (seqcount_t *)s;
76 unsigned long flags;
78 local_irq_save(flags);
79 seqcount_acquire_read(&l->dep_map, 0, 0, _RET_IP_);
80 seqcount_release(&l->dep_map, 1, _RET_IP_);
81 local_irq_restore(flags);
84 #else
85 # define SEQCOUNT_DEP_MAP_INIT(lockname)
86 # define seqcount_init(s) __seqcount_init(s, NULL, NULL)
87 # define seqcount_lockdep_reader_access(x)
88 #endif
90 #define SEQCNT_ZERO(lockname) { .sequence = 0, SEQCOUNT_DEP_MAP_INIT(lockname)}
93 /**
94 * __read_seqcount_begin - begin a seq-read critical section (without barrier)
95 * @s: pointer to seqcount_t
96 * Returns: count to be passed to read_seqcount_retry
98 * __read_seqcount_begin is like read_seqcount_begin, but has no smp_rmb()
99 * barrier. Callers should ensure that smp_rmb() or equivalent ordering is
100 * provided before actually loading any of the variables that are to be
101 * protected in this critical section.
103 * Use carefully, only in critical code, and comment how the barrier is
104 * provided.
106 static inline unsigned __read_seqcount_begin(const seqcount_t *s)
108 unsigned ret;
110 repeat:
111 ret = ACCESS_ONCE(s->sequence);
112 if (unlikely(ret & 1)) {
113 cpu_relax();
114 goto repeat;
116 return ret;
120 * read_seqcount_begin_no_lockdep - start seq-read critical section w/o lockdep
121 * @s: pointer to seqcount_t
122 * Returns: count to be passed to read_seqcount_retry
124 * read_seqcount_begin_no_lockdep opens a read critical section of the given
125 * seqcount, but without any lockdep checking. Validity of the critical
126 * section is tested by checking read_seqcount_retry function.
128 static inline unsigned read_seqcount_begin_no_lockdep(const seqcount_t *s)
130 unsigned ret = __read_seqcount_begin(s);
131 smp_rmb();
132 return ret;
136 * read_seqcount_begin - begin a seq-read critical section
137 * @s: pointer to seqcount_t
138 * Returns: count to be passed to read_seqcount_retry
140 * read_seqcount_begin opens a read critical section of the given seqcount.
141 * Validity of the critical section is tested by checking read_seqcount_retry
142 * function.
144 static inline unsigned read_seqcount_begin(const seqcount_t *s)
146 seqcount_lockdep_reader_access(s);
147 return read_seqcount_begin_no_lockdep(s);
151 * raw_seqcount_begin - begin a seq-read critical section
152 * @s: pointer to seqcount_t
153 * Returns: count to be passed to read_seqcount_retry
155 * raw_seqcount_begin opens a read critical section of the given seqcount.
156 * Validity of the critical section is tested by checking read_seqcount_retry
157 * function.
159 * Unlike read_seqcount_begin(), this function will not wait for the count
160 * to stabilize. If a writer is active when we begin, we will fail the
161 * read_seqcount_retry() instead of stabilizing at the beginning of the
162 * critical section.
164 static inline unsigned raw_seqcount_begin(const seqcount_t *s)
166 unsigned ret = ACCESS_ONCE(s->sequence);
168 seqcount_lockdep_reader_access(s);
169 smp_rmb();
170 return ret & ~1;
174 * __read_seqcount_retry - end a seq-read critical section (without barrier)
175 * @s: pointer to seqcount_t
176 * @start: count, from read_seqcount_begin
177 * Returns: 1 if retry is required, else 0
179 * __read_seqcount_retry is like read_seqcount_retry, but has no smp_rmb()
180 * barrier. Callers should ensure that smp_rmb() or equivalent ordering is
181 * provided before actually loading any of the variables that are to be
182 * protected in this critical section.
184 * Use carefully, only in critical code, and comment how the barrier is
185 * provided.
187 static inline int __read_seqcount_retry(const seqcount_t *s, unsigned start)
189 return unlikely(s->sequence != start);
193 * read_seqcount_retry - end a seq-read critical section
194 * @s: pointer to seqcount_t
195 * @start: count, from read_seqcount_begin
196 * Returns: 1 if retry is required, else 0
198 * read_seqcount_retry closes a read critical section of the given seqcount.
199 * If the critical section was invalid, it must be ignored (and typically
200 * retried).
202 static inline int read_seqcount_retry(const seqcount_t *s, unsigned start)
204 smp_rmb();
205 return __read_seqcount_retry(s, start);
210 * Sequence counter only version assumes that callers are using their
211 * own mutexing.
213 static inline void write_seqcount_begin_nested(seqcount_t *s, int subclass)
215 s->sequence++;
216 smp_wmb();
217 seqcount_acquire(&s->dep_map, subclass, 0, _RET_IP_);
220 static inline void write_seqcount_begin(seqcount_t *s)
222 write_seqcount_begin_nested(s, 0);
225 static inline void write_seqcount_end(seqcount_t *s)
227 seqcount_release(&s->dep_map, 1, _RET_IP_);
228 smp_wmb();
229 s->sequence++;
233 * write_seqcount_barrier - invalidate in-progress read-side seq operations
234 * @s: pointer to seqcount_t
236 * After write_seqcount_barrier, no read-side seq operations will complete
237 * successfully and see data older than this.
239 static inline void write_seqcount_barrier(seqcount_t *s)
241 smp_wmb();
242 s->sequence+=2;
245 typedef struct {
246 struct seqcount seqcount;
247 spinlock_t lock;
248 } seqlock_t;
251 * These macros triggered gcc-3.x compile-time problems. We think these are
252 * OK now. Be cautious.
254 #define __SEQLOCK_UNLOCKED(lockname) \
256 .seqcount = SEQCNT_ZERO(lockname), \
257 .lock = __SPIN_LOCK_UNLOCKED(lockname) \
260 #define seqlock_init(x) \
261 do { \
262 seqcount_init(&(x)->seqcount); \
263 spin_lock_init(&(x)->lock); \
264 } while (0)
266 #define DEFINE_SEQLOCK(x) \
267 seqlock_t x = __SEQLOCK_UNLOCKED(x)
270 * Read side functions for starting and finalizing a read side section.
272 static inline unsigned read_seqbegin(const seqlock_t *sl)
274 return read_seqcount_begin(&sl->seqcount);
277 static inline unsigned read_seqretry(const seqlock_t *sl, unsigned start)
279 return read_seqcount_retry(&sl->seqcount, start);
283 * Lock out other writers and update the count.
284 * Acts like a normal spin_lock/unlock.
285 * Don't need preempt_disable() because that is in the spin_lock already.
287 static inline void write_seqlock(seqlock_t *sl)
289 spin_lock(&sl->lock);
290 write_seqcount_begin(&sl->seqcount);
293 static inline void write_sequnlock(seqlock_t *sl)
295 write_seqcount_end(&sl->seqcount);
296 spin_unlock(&sl->lock);
299 static inline void write_seqlock_bh(seqlock_t *sl)
301 spin_lock_bh(&sl->lock);
302 write_seqcount_begin(&sl->seqcount);
305 static inline void write_sequnlock_bh(seqlock_t *sl)
307 write_seqcount_end(&sl->seqcount);
308 spin_unlock_bh(&sl->lock);
311 static inline void write_seqlock_irq(seqlock_t *sl)
313 spin_lock_irq(&sl->lock);
314 write_seqcount_begin(&sl->seqcount);
317 static inline void write_sequnlock_irq(seqlock_t *sl)
319 write_seqcount_end(&sl->seqcount);
320 spin_unlock_irq(&sl->lock);
323 static inline unsigned long __write_seqlock_irqsave(seqlock_t *sl)
325 unsigned long flags;
327 spin_lock_irqsave(&sl->lock, flags);
328 write_seqcount_begin(&sl->seqcount);
329 return flags;
332 #define write_seqlock_irqsave(lock, flags) \
333 do { flags = __write_seqlock_irqsave(lock); } while (0)
335 static inline void
336 write_sequnlock_irqrestore(seqlock_t *sl, unsigned long flags)
338 write_seqcount_end(&sl->seqcount);
339 spin_unlock_irqrestore(&sl->lock, flags);
343 * A locking reader exclusively locks out other writers and locking readers,
344 * but doesn't update the sequence number. Acts like a normal spin_lock/unlock.
345 * Don't need preempt_disable() because that is in the spin_lock already.
347 static inline void read_seqlock_excl(seqlock_t *sl)
349 spin_lock(&sl->lock);
352 static inline void read_sequnlock_excl(seqlock_t *sl)
354 spin_unlock(&sl->lock);
358 * read_seqbegin_or_lock - begin a sequence number check or locking block
359 * @lock: sequence lock
360 * @seq : sequence number to be checked
362 * First try it once optimistically without taking the lock. If that fails,
363 * take the lock. The sequence number is also used as a marker for deciding
364 * whether to be a reader (even) or writer (odd).
365 * N.B. seq must be initialized to an even number to begin with.
367 static inline void read_seqbegin_or_lock(seqlock_t *lock, int *seq)
369 if (!(*seq & 1)) /* Even */
370 *seq = read_seqbegin(lock);
371 else /* Odd */
372 read_seqlock_excl(lock);
375 static inline int need_seqretry(seqlock_t *lock, int seq)
377 return !(seq & 1) && read_seqretry(lock, seq);
380 static inline void done_seqretry(seqlock_t *lock, int seq)
382 if (seq & 1)
383 read_sequnlock_excl(lock);
386 static inline void read_seqlock_excl_bh(seqlock_t *sl)
388 spin_lock_bh(&sl->lock);
391 static inline void read_sequnlock_excl_bh(seqlock_t *sl)
393 spin_unlock_bh(&sl->lock);
396 static inline void read_seqlock_excl_irq(seqlock_t *sl)
398 spin_lock_irq(&sl->lock);
401 static inline void read_sequnlock_excl_irq(seqlock_t *sl)
403 spin_unlock_irq(&sl->lock);
406 static inline unsigned long __read_seqlock_excl_irqsave(seqlock_t *sl)
408 unsigned long flags;
410 spin_lock_irqsave(&sl->lock, flags);
411 return flags;
414 #define read_seqlock_excl_irqsave(lock, flags) \
415 do { flags = __read_seqlock_excl_irqsave(lock); } while (0)
417 static inline void
418 read_sequnlock_excl_irqrestore(seqlock_t *sl, unsigned long flags)
420 spin_unlock_irqrestore(&sl->lock, flags);
423 #endif /* __LINUX_SEQLOCK_H */