1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/export.h>
4 #include <linux/log2.h>
5 #include <linux/percpu.h>
6 #include <linux/preempt.h>
7 #include <linux/rcupdate.h>
8 #include <linux/sched.h>
9 #include <linux/sched/clock.h>
10 #include <linux/sched/rt.h>
11 #include <linux/sched/task.h>
12 #include <linux/slab.h>
14 #include <trace/events/lock.h>
19 #define EBUG_ON(cond) BUG_ON(cond)
21 #define EBUG_ON(cond) do {} while (0)
24 #define six_acquire(l, t, r, ip) lock_acquire(l, 0, t, r, 1, NULL, ip)
25 #define six_release(l, ip) lock_release(l, ip)
27 static void do_six_unlock_type(struct six_lock *lock, enum six_lock_type type);
29 #define SIX_LOCK_HELD_read_OFFSET 0
30 #define SIX_LOCK_HELD_read ~(~0U << 26)
31 #define SIX_LOCK_HELD_intent (1U << 26)
32 #define SIX_LOCK_HELD_write (1U << 27)
33 #define SIX_LOCK_WAITING_read (1U << (28 + SIX_LOCK_read))
34 #define SIX_LOCK_WAITING_write (1U << (28 + SIX_LOCK_write))
35 #define SIX_LOCK_NOSPIN (1U << 31)
37 struct six_lock_vals {
38 /* Value we add to the lock in order to take the lock: */
41 /* If the lock has this value (used as a mask), taking the lock fails: */
44 /* Mask that indicates lock is held for this type: */
47 /* Waitlist we wakeup when releasing the lock: */
48 enum six_lock_type unlock_wakeup;
51 static const struct six_lock_vals l[] = {
53 .lock_val = 1U << SIX_LOCK_HELD_read_OFFSET,
54 .lock_fail = SIX_LOCK_HELD_write,
55 .held_mask = SIX_LOCK_HELD_read,
56 .unlock_wakeup = SIX_LOCK_write,
59 .lock_val = SIX_LOCK_HELD_intent,
60 .lock_fail = SIX_LOCK_HELD_intent,
61 .held_mask = SIX_LOCK_HELD_intent,
62 .unlock_wakeup = SIX_LOCK_intent,
65 .lock_val = SIX_LOCK_HELD_write,
66 .lock_fail = SIX_LOCK_HELD_read,
67 .held_mask = SIX_LOCK_HELD_write,
68 .unlock_wakeup = SIX_LOCK_read,
72 static inline void six_set_bitmask(struct six_lock *lock, u32 mask)
74 if ((atomic_read(&lock->state) & mask) != mask)
75 atomic_or(mask, &lock->state);
78 static inline void six_clear_bitmask(struct six_lock *lock, u32 mask)
80 if (atomic_read(&lock->state) & mask)
81 atomic_and(~mask, &lock->state);
84 static inline void six_set_owner(struct six_lock *lock, enum six_lock_type type,
85 u32 old, struct task_struct *owner)
87 if (type != SIX_LOCK_intent)
90 if (!(old & SIX_LOCK_HELD_intent)) {
94 EBUG_ON(lock->owner != current);
98 static inline unsigned pcpu_read_count(struct six_lock *lock)
100 unsigned read_count = 0;
103 for_each_possible_cpu(cpu)
104 read_count += *per_cpu_ptr(lock->readers, cpu);
109 * __do_six_trylock() - main trylock routine
111 * Returns 1 on success, 0 on failure
113 * In percpu reader mode, a failed trylock may cause a spurious trylock failure
114 * for anoter thread taking the competing lock type, and we may havve to do a
115 * wakeup: when a wakeup is required, we return -1 - wakeup_type.
117 static int __do_six_trylock(struct six_lock *lock, enum six_lock_type type,
118 struct task_struct *task, bool try)
123 EBUG_ON(type == SIX_LOCK_write && lock->owner != task);
124 EBUG_ON(type == SIX_LOCK_write &&
125 (try != !(atomic_read(&lock->state) & SIX_LOCK_HELD_write)));
128 * Percpu reader mode:
130 * The basic idea behind this algorithm is that you can implement a lock
131 * between two threads without any atomics, just memory barriers:
133 * For two threads you'll need two variables, one variable for "thread a
134 * has the lock" and another for "thread b has the lock".
136 * To take the lock, a thread sets its variable indicating that it holds
137 * the lock, then issues a full memory barrier, then reads from the
138 * other thread's variable to check if the other thread thinks it has
139 * the lock. If we raced, we backoff and retry/sleep.
141 * Failure to take the lock may cause a spurious trylock failure in
142 * another thread, because we temporarily set the lock to indicate that
143 * we held it. This would be a problem for a thread in six_lock(), when
144 * they are calling trylock after adding themself to the waitlist and
147 * Therefore, if we fail to get the lock, and there were waiters of the
148 * type we conflict with, we will have to issue a wakeup.
150 * Since we may be called under wait_lock (and by the wakeup code
151 * itself), we return that the wakeup has to be done instead of doing it
154 if (type == SIX_LOCK_read && lock->readers) {
156 this_cpu_inc(*lock->readers); /* signal that we own lock */
160 old = atomic_read(&lock->state);
161 ret = !(old & l[type].lock_fail);
163 this_cpu_sub(*lock->readers, !ret);
166 if (!ret && (old & SIX_LOCK_WAITING_write))
167 ret = -1 - SIX_LOCK_write;
168 } else if (type == SIX_LOCK_write && lock->readers) {
170 atomic_add(SIX_LOCK_HELD_write, &lock->state);
171 smp_mb__after_atomic();
174 ret = !pcpu_read_count(lock);
177 old = atomic_sub_return(SIX_LOCK_HELD_write, &lock->state);
178 if (old & SIX_LOCK_WAITING_read)
179 ret = -1 - SIX_LOCK_read;
182 old = atomic_read(&lock->state);
184 ret = !(old & l[type].lock_fail);
185 if (!ret || (type == SIX_LOCK_write && !try)) {
189 } while (!atomic_try_cmpxchg_acquire(&lock->state, &old, old + l[type].lock_val));
191 EBUG_ON(ret && !(atomic_read(&lock->state) & l[type].held_mask));
195 six_set_owner(lock, type, old, task);
197 EBUG_ON(type == SIX_LOCK_write && try && ret <= 0 &&
198 (atomic_read(&lock->state) & SIX_LOCK_HELD_write));
203 static void __six_lock_wakeup(struct six_lock *lock, enum six_lock_type lock_type)
205 struct six_lock_waiter *w, *next;
206 struct task_struct *task;
212 raw_spin_lock(&lock->wait_lock);
214 list_for_each_entry_safe(w, next, &lock->wait_list, list) {
215 if (w->lock_want != lock_type)
218 if (saw_one && lock_type != SIX_LOCK_read)
222 ret = __do_six_trylock(lock, lock_type, w->task, false);
227 * Similar to percpu_rwsem_wake_function(), we need to guard
228 * against the wakee noticing w->lock_acquired, returning, and
229 * then exiting before we do the wakeup:
231 task = get_task_struct(w->task);
232 __list_del(w->list.prev, w->list.next);
234 * The release barrier here ensures the ordering of the
235 * __list_del before setting w->lock_acquired; @w is on the
236 * stack of the thread doing the waiting and will be reused
237 * after it sees w->lock_acquired with no other locking:
238 * pairs with smp_load_acquire() in six_lock_slowpath()
240 smp_store_release(&w->lock_acquired, true);
241 wake_up_process(task);
242 put_task_struct(task);
245 six_clear_bitmask(lock, SIX_LOCK_WAITING_read << lock_type);
247 raw_spin_unlock(&lock->wait_lock);
250 lock_type = -ret - 1;
256 static void six_lock_wakeup(struct six_lock *lock, u32 state,
257 enum six_lock_type lock_type)
259 if (lock_type == SIX_LOCK_write && (state & SIX_LOCK_HELD_read))
262 if (!(state & (SIX_LOCK_WAITING_read << lock_type)))
265 __six_lock_wakeup(lock, lock_type);
269 static bool do_six_trylock(struct six_lock *lock, enum six_lock_type type, bool try)
273 ret = __do_six_trylock(lock, type, current, try);
275 __six_lock_wakeup(lock, -ret - 1);
281 * six_trylock_ip - attempt to take a six lock without blocking
282 * @lock: lock to take
283 * @type: SIX_LOCK_read, SIX_LOCK_intent, or SIX_LOCK_write
284 * @ip: ip parameter for lockdep/lockstat, i.e. _THIS_IP_
286 * Return: true on success, false on failure.
288 bool six_trylock_ip(struct six_lock *lock, enum six_lock_type type, unsigned long ip)
290 if (!do_six_trylock(lock, type, true))
293 if (type != SIX_LOCK_write)
294 six_acquire(&lock->dep_map, 1, type == SIX_LOCK_read, ip);
297 EXPORT_SYMBOL_GPL(six_trylock_ip);
300 * six_relock_ip - attempt to re-take a lock that was held previously
301 * @lock: lock to take
302 * @type: SIX_LOCK_read, SIX_LOCK_intent, or SIX_LOCK_write
303 * @seq: lock sequence number obtained from six_lock_seq() while lock was
305 * @ip: ip parameter for lockdep/lockstat, i.e. _THIS_IP_
307 * Return: true on success, false on failure.
309 bool six_relock_ip(struct six_lock *lock, enum six_lock_type type,
310 unsigned seq, unsigned long ip)
312 if (six_lock_seq(lock) != seq || !six_trylock_ip(lock, type, ip))
315 if (six_lock_seq(lock) != seq) {
316 six_unlock_ip(lock, type, ip);
322 EXPORT_SYMBOL_GPL(six_relock_ip);
324 #ifdef CONFIG_SIX_LOCK_SPIN_ON_OWNER
326 static inline bool six_can_spin_on_owner(struct six_lock *lock)
328 struct task_struct *owner;
335 owner = READ_ONCE(lock->owner);
336 ret = !owner || owner_on_cpu(owner);
342 static inline bool six_spin_on_owner(struct six_lock *lock,
343 struct task_struct *owner,
350 while (lock->owner == owner) {
352 * Ensure we emit the owner->on_cpu, dereference _after_
353 * checking lock->owner still matches owner. If that fails,
354 * owner might point to freed memory. If it still matches,
355 * the rcu_read_lock() ensures the memory stays valid.
359 if (!owner_on_cpu(owner) || need_resched()) {
364 if (!(++loop & 0xf) && (time_after64(sched_clock(), end_time))) {
365 six_set_bitmask(lock, SIX_LOCK_NOSPIN);
377 static inline bool six_optimistic_spin(struct six_lock *lock, enum six_lock_type type)
379 struct task_struct *task = current;
382 if (type == SIX_LOCK_write)
386 if (!six_can_spin_on_owner(lock))
389 if (!osq_lock(&lock->osq))
392 end_time = sched_clock() + 10 * NSEC_PER_USEC;
395 struct task_struct *owner;
398 * If there's an owner, wait for it to either
399 * release the lock or go to sleep.
401 owner = READ_ONCE(lock->owner);
402 if (owner && !six_spin_on_owner(lock, owner, end_time))
405 if (do_six_trylock(lock, type, false)) {
406 osq_unlock(&lock->osq);
412 * When there's no owner, we might have preempted between the
413 * owner acquiring the lock and setting the owner field. If
414 * we're an RT task that will live-lock because we won't let
415 * the owner complete.
417 if (!owner && (need_resched() || rt_task(task)))
421 * The cpu_relax() call is a compiler barrier which forces
422 * everything in this loop to be re-loaded. We don't need
423 * memory barriers as we'll eventually observe the right
424 * values at the cost of a few extra spins.
429 osq_unlock(&lock->osq);
434 * If we fell out of the spin path because of need_resched(),
435 * reschedule now, before we try-lock again. This avoids getting
436 * scheduled out right after we obtained the lock.
444 #else /* CONFIG_SIX_LOCK_SPIN_ON_OWNER */
446 static inline bool six_optimistic_spin(struct six_lock *lock, enum six_lock_type type)
454 static int six_lock_slowpath(struct six_lock *lock, enum six_lock_type type,
455 struct six_lock_waiter *wait,
456 six_lock_should_sleep_fn should_sleep_fn, void *p,
461 if (type == SIX_LOCK_write) {
462 EBUG_ON(atomic_read(&lock->state) & SIX_LOCK_HELD_write);
463 atomic_add(SIX_LOCK_HELD_write, &lock->state);
464 smp_mb__after_atomic();
467 trace_contention_begin(lock, 0);
468 lock_contended(&lock->dep_map, ip);
470 if (six_optimistic_spin(lock, type))
473 wait->task = current;
474 wait->lock_want = type;
475 wait->lock_acquired = false;
477 raw_spin_lock(&lock->wait_lock);
478 six_set_bitmask(lock, SIX_LOCK_WAITING_read << type);
480 * Retry taking the lock after taking waitlist lock, in case we raced
483 ret = __do_six_trylock(lock, type, current, false);
485 wait->start_time = local_clock();
487 if (!list_empty(&lock->wait_list)) {
488 struct six_lock_waiter *last =
489 list_last_entry(&lock->wait_list,
490 struct six_lock_waiter, list);
492 if (time_before_eq64(wait->start_time, last->start_time))
493 wait->start_time = last->start_time + 1;
496 list_add_tail(&wait->list, &lock->wait_list);
498 raw_spin_unlock(&lock->wait_lock);
500 if (unlikely(ret > 0)) {
505 if (unlikely(ret < 0)) {
506 __six_lock_wakeup(lock, -ret - 1);
511 set_current_state(TASK_UNINTERRUPTIBLE);
514 * Ensures that writes to the waitlist entry happen after we see
515 * wait->lock_acquired: pairs with the smp_store_release in
518 if (smp_load_acquire(&wait->lock_acquired))
521 ret = should_sleep_fn ? should_sleep_fn(lock, p) : 0;
526 * If should_sleep_fn() returns an error, we are
527 * required to return that error even if we already
528 * acquired the lock - should_sleep_fn() might have
529 * modified external state (e.g. when the deadlock cycle
530 * detector in bcachefs issued a transaction restart)
532 raw_spin_lock(&lock->wait_lock);
533 acquired = wait->lock_acquired;
535 list_del(&wait->list);
536 raw_spin_unlock(&lock->wait_lock);
538 if (unlikely(acquired))
539 do_six_unlock_type(lock, type);
546 __set_current_state(TASK_RUNNING);
548 if (ret && type == SIX_LOCK_write) {
549 six_clear_bitmask(lock, SIX_LOCK_HELD_write);
550 six_lock_wakeup(lock, atomic_read(&lock->state), SIX_LOCK_read);
552 trace_contention_end(lock, 0);
558 * six_lock_ip_waiter - take a lock, with full waitlist interface
559 * @lock: lock to take
560 * @type: SIX_LOCK_read, SIX_LOCK_intent, or SIX_LOCK_write
561 * @wait: pointer to wait object, which will be added to lock's waitlist
562 * @should_sleep_fn: callback run after adding to waitlist, immediately prior
564 * @p: passed through to @should_sleep_fn
565 * @ip: ip parameter for lockdep/lockstat, i.e. _THIS_IP_
567 * This is the most general six_lock() variant, with parameters to support full
568 * cycle detection for deadlock avoidance.
570 * The code calling this function must implement tracking of held locks, and the
571 * @wait object should be embedded into the struct that tracks held locks -
572 * which must also be accessible in a thread-safe way.
574 * @should_sleep_fn should invoke the cycle detector; it should walk each
575 * lock's waiters, and for each waiter recursively walk their held locks.
577 * When this function must block, @wait will be added to @lock's waitlist before
578 * calling trylock, and before calling @should_sleep_fn, and @wait will not be
579 * removed from the lock waitlist until the lock has been successfully acquired,
582 * @wait.start_time will be monotonically increasing for any given waitlist, and
583 * thus may be used as a loop cursor.
585 * Return: 0 on success, or the return code from @should_sleep_fn on failure.
587 int six_lock_ip_waiter(struct six_lock *lock, enum six_lock_type type,
588 struct six_lock_waiter *wait,
589 six_lock_should_sleep_fn should_sleep_fn, void *p,
594 wait->start_time = 0;
596 if (type != SIX_LOCK_write)
597 six_acquire(&lock->dep_map, 0, type == SIX_LOCK_read, ip);
599 ret = do_six_trylock(lock, type, true) ? 0
600 : six_lock_slowpath(lock, type, wait, should_sleep_fn, p, ip);
602 if (ret && type != SIX_LOCK_write)
603 six_release(&lock->dep_map, ip);
605 lock_acquired(&lock->dep_map, ip);
609 EXPORT_SYMBOL_GPL(six_lock_ip_waiter);
612 static void do_six_unlock_type(struct six_lock *lock, enum six_lock_type type)
616 if (type == SIX_LOCK_intent)
619 if (type == SIX_LOCK_read &&
621 smp_mb(); /* unlock barrier */
622 this_cpu_dec(*lock->readers);
623 smp_mb(); /* between unlocking and checking for waiters */
624 state = atomic_read(&lock->state);
626 u32 v = l[type].lock_val;
628 if (type != SIX_LOCK_read)
629 v += atomic_read(&lock->state) & SIX_LOCK_NOSPIN;
631 EBUG_ON(!(atomic_read(&lock->state) & l[type].held_mask));
632 state = atomic_sub_return_release(v, &lock->state);
635 six_lock_wakeup(lock, state, l[type].unlock_wakeup);
639 * six_unlock_ip - drop a six lock
640 * @lock: lock to unlock
641 * @type: SIX_LOCK_read, SIX_LOCK_intent, or SIX_LOCK_write
642 * @ip: ip parameter for lockdep/lockstat, i.e. _THIS_IP_
644 * When a lock is held multiple times (because six_lock_incement()) was used),
645 * this decrements the 'lock held' counter by one.
648 * six_lock_read(&foo->lock); read count 1
649 * six_lock_increment(&foo->lock, SIX_LOCK_read); read count 2
650 * six_lock_unlock(&foo->lock, SIX_LOCK_read); read count 1
651 * six_lock_unlock(&foo->lock, SIX_LOCK_read); read count 0
653 void six_unlock_ip(struct six_lock *lock, enum six_lock_type type, unsigned long ip)
655 EBUG_ON(type == SIX_LOCK_write &&
656 !(atomic_read(&lock->state) & SIX_LOCK_HELD_intent));
657 EBUG_ON((type == SIX_LOCK_write ||
658 type == SIX_LOCK_intent) &&
659 lock->owner != current);
661 if (type != SIX_LOCK_write)
662 six_release(&lock->dep_map, ip);
666 if (type == SIX_LOCK_intent &&
667 lock->intent_lock_recurse) {
668 --lock->intent_lock_recurse;
672 do_six_unlock_type(lock, type);
674 EXPORT_SYMBOL_GPL(six_unlock_ip);
677 * six_lock_downgrade - convert an intent lock to a read lock
678 * @lock: lock to dowgrade
680 * @lock will have read count incremented and intent count decremented
682 void six_lock_downgrade(struct six_lock *lock)
684 six_lock_increment(lock, SIX_LOCK_read);
685 six_unlock_intent(lock);
687 EXPORT_SYMBOL_GPL(six_lock_downgrade);
690 * six_lock_tryupgrade - attempt to convert read lock to an intent lock
691 * @lock: lock to upgrade
693 * On success, @lock will have intent count incremented and read count
696 * Return: true on success, false on failure
698 bool six_lock_tryupgrade(struct six_lock *lock)
700 u32 old = atomic_read(&lock->state), new;
705 if (new & SIX_LOCK_HELD_intent)
708 if (!lock->readers) {
709 EBUG_ON(!(new & SIX_LOCK_HELD_read));
710 new -= l[SIX_LOCK_read].lock_val;
713 new |= SIX_LOCK_HELD_intent;
714 } while (!atomic_try_cmpxchg_acquire(&lock->state, &old, new));
717 this_cpu_dec(*lock->readers);
719 six_set_owner(lock, SIX_LOCK_intent, old, current);
723 EXPORT_SYMBOL_GPL(six_lock_tryupgrade);
726 * six_trylock_convert - attempt to convert a held lock from one type to another
727 * @lock: lock to upgrade
728 * @from: SIX_LOCK_read or SIX_LOCK_intent
729 * @to: SIX_LOCK_read or SIX_LOCK_intent
731 * On success, @lock will have intent count incremented and read count
734 * Return: true on success, false on failure
736 bool six_trylock_convert(struct six_lock *lock,
737 enum six_lock_type from,
738 enum six_lock_type to)
740 EBUG_ON(to == SIX_LOCK_write || from == SIX_LOCK_write);
745 if (to == SIX_LOCK_read) {
746 six_lock_downgrade(lock);
749 return six_lock_tryupgrade(lock);
752 EXPORT_SYMBOL_GPL(six_trylock_convert);
755 * six_lock_increment - increase held lock count on a lock that is already held
756 * @lock: lock to increment
757 * @type: SIX_LOCK_read or SIX_LOCK_intent
759 * @lock must already be held, with a lock type that is greater than or equal to
762 * A corresponding six_unlock_type() call will be required for @lock to be fully
765 void six_lock_increment(struct six_lock *lock, enum six_lock_type type)
767 six_acquire(&lock->dep_map, 0, type == SIX_LOCK_read, _RET_IP_);
769 /* XXX: assert already locked, and that we don't overflow: */
774 this_cpu_inc(*lock->readers);
776 EBUG_ON(!(atomic_read(&lock->state) &
778 SIX_LOCK_HELD_intent)));
779 atomic_add(l[type].lock_val, &lock->state);
782 case SIX_LOCK_intent:
783 EBUG_ON(!(atomic_read(&lock->state) & SIX_LOCK_HELD_intent));
784 lock->intent_lock_recurse++;
791 EXPORT_SYMBOL_GPL(six_lock_increment);
794 * six_lock_wakeup_all - wake up all waiters on @lock
795 * @lock: lock to wake up waiters for
797 * Wakeing up waiters will cause them to re-run should_sleep_fn, which may then
798 * abort the lock operation.
800 * This function is never needed in a bug-free program; it's only useful in
801 * debug code, e.g. to determine if a cycle detector is at fault.
803 void six_lock_wakeup_all(struct six_lock *lock)
805 u32 state = atomic_read(&lock->state);
806 struct six_lock_waiter *w;
808 six_lock_wakeup(lock, state, SIX_LOCK_read);
809 six_lock_wakeup(lock, state, SIX_LOCK_intent);
810 six_lock_wakeup(lock, state, SIX_LOCK_write);
812 raw_spin_lock(&lock->wait_lock);
813 list_for_each_entry(w, &lock->wait_list, list)
814 wake_up_process(w->task);
815 raw_spin_unlock(&lock->wait_lock);
817 EXPORT_SYMBOL_GPL(six_lock_wakeup_all);
820 * six_lock_counts - return held lock counts, for each lock type
821 * @lock: lock to return counters for
823 * Return: the number of times a lock is held for read, intent and write.
825 struct six_lock_count six_lock_counts(struct six_lock *lock)
827 struct six_lock_count ret;
829 ret.n[SIX_LOCK_read] = !lock->readers
830 ? atomic_read(&lock->state) & SIX_LOCK_HELD_read
831 : pcpu_read_count(lock);
832 ret.n[SIX_LOCK_intent] = !!(atomic_read(&lock->state) & SIX_LOCK_HELD_intent) +
833 lock->intent_lock_recurse;
834 ret.n[SIX_LOCK_write] = !!(atomic_read(&lock->state) & SIX_LOCK_HELD_write);
838 EXPORT_SYMBOL_GPL(six_lock_counts);
841 * six_lock_readers_add - directly manipulate reader count of a lock
842 * @lock: lock to add/subtract readers for
843 * @nr: reader count to add/subtract
845 * When an upper layer is implementing lock reentrency, we may have both read
846 * and intent locks on the same lock.
848 * When we need to take a write lock, the read locks will cause self-deadlock,
849 * because six locks themselves do not track which read locks are held by the
850 * current thread and which are held by a different thread - it does no
851 * per-thread tracking of held locks.
853 * The upper layer that is tracking held locks may however, if trylock() has
854 * failed, count up its own read locks, subtract them, take the write lock, and
857 * As in any other situation when taking a write lock, @lock must be held for
858 * intent one (or more) times, so @lock will never be left unlocked.
860 void six_lock_readers_add(struct six_lock *lock, int nr)
863 this_cpu_add(*lock->readers, nr);
865 EBUG_ON((int) (atomic_read(&lock->state) & SIX_LOCK_HELD_read) + nr < 0);
866 /* reader count starts at bit 0 */
867 atomic_add(nr, &lock->state);
870 EXPORT_SYMBOL_GPL(six_lock_readers_add);
873 * six_lock_exit - release resources held by a lock prior to freeing
874 * @lock: lock to exit
876 * When a lock was initialized in percpu mode (SIX_OLCK_INIT_PCPU), this is
877 * required to free the percpu read counts.
879 void six_lock_exit(struct six_lock *lock)
881 WARN_ON(lock->readers && pcpu_read_count(lock));
882 WARN_ON(atomic_read(&lock->state) & SIX_LOCK_HELD_read);
884 free_percpu(lock->readers);
885 lock->readers = NULL;
887 EXPORT_SYMBOL_GPL(six_lock_exit);
889 void __six_lock_init(struct six_lock *lock, const char *name,
890 struct lock_class_key *key, enum six_lock_init_flags flags)
892 atomic_set(&lock->state, 0);
893 raw_spin_lock_init(&lock->wait_lock);
894 INIT_LIST_HEAD(&lock->wait_list);
895 #ifdef CONFIG_DEBUG_LOCK_ALLOC
896 debug_check_no_locks_freed((void *) lock, sizeof(*lock));
897 lockdep_init_map(&lock->dep_map, name, key, 0);
901 * Don't assume that we have real percpu variables available in
905 if (flags & SIX_LOCK_INIT_PCPU) {
907 * We don't return an error here on memory allocation failure
908 * since percpu is an optimization, and locks will work with the
909 * same semantics in non-percpu mode: callers can check for
910 * failure if they wish by checking lock->readers, but generally
911 * will not want to treat it as an error.
913 lock->readers = alloc_percpu(unsigned);
917 EXPORT_SYMBOL_GPL(__six_lock_init);