blob: f169ec064785beea6c8ce4f1bee1d193a9faf079 [file] [log] [blame]
Ingo Molnar620a6fd2006-01-09 15:59:17 -08001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * include/asm-generic/mutex-xchg.h
Ingo Molnar620a6fd2006-01-09 15:59:17 -08003 *
4 * Generic implementation of the mutex fastpath, based on xchg().
5 *
Nicolas Pitree358c1a2006-03-31 02:32:13 -08006 * NOTE: An xchg based implementation might be less optimal than an atomic
Ingo Molnar620a6fd2006-01-09 15:59:17 -08007 * decrement/increment based implementation. If your architecture
8 * has a reasonable atomic dec/inc then you should probably use
9 * asm-generic/mutex-dec.h instead, or you could open-code an
10 * optimized version in asm/mutex.h.
11 */
12#ifndef _ASM_GENERIC_MUTEX_XCHG_H
13#define _ASM_GENERIC_MUTEX_XCHG_H
14
15/**
16 * __mutex_fastpath_lock - try to take the lock by moving the count
17 * from 1 to a 0 value
18 * @count: pointer of type atomic_t
19 * @fail_fn: function to call if the original value was not 1
20 *
21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
22 * wasn't 1 originally. This function MUST leave the value lower than 1
23 * even when the "1" assertion wasn't true.
24 */
Nicolas Pitree358c1a2006-03-31 02:32:13 -080025static inline void
Harvey Harrison144b2a92008-02-08 04:19:56 -080026__mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *))
Nicolas Pitree358c1a2006-03-31 02:32:13 -080027{
28 if (unlikely(atomic_xchg(count, 0) != 1))
Will Deacon0bce9c42012-08-10 15:22:09 +010029 /*
30 * We failed to acquire the lock, so mark it contended
31 * to ensure that any waiting tasks are woken up by the
32 * unlock slow path.
33 */
34 if (likely(atomic_xchg(count, -1) != 1))
35 fail_fn(count);
Nicolas Pitree358c1a2006-03-31 02:32:13 -080036}
Ingo Molnar620a6fd2006-01-09 15:59:17 -080037
38/**
39 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
40 * from 1 to a 0 value
41 * @count: pointer of type atomic_t
Ingo Molnar620a6fd2006-01-09 15:59:17 -080042 *
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +020043 * Change the count from 1 to a value lower than 1. This function returns 0
44 * if the fastpath succeeds, or -1 otherwise.
Ingo Molnar620a6fd2006-01-09 15:59:17 -080045 */
46static inline int
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +020047__mutex_fastpath_lock_retval(atomic_t *count)
Ingo Molnar620a6fd2006-01-09 15:59:17 -080048{
49 if (unlikely(atomic_xchg(count, 0) != 1))
Will Deacon0bce9c42012-08-10 15:22:09 +010050 if (likely(atomic_xchg(count, -1) != 1))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +020051 return -1;
Nick Piggina8ddac72008-10-21 10:59:15 +020052 return 0;
Ingo Molnar620a6fd2006-01-09 15:59:17 -080053}
54
55/**
56 * __mutex_fastpath_unlock - try to promote the mutex from 0 to 1
57 * @count: pointer of type atomic_t
58 * @fail_fn: function to call if the original value was not 0
59 *
60 * try to promote the mutex from 0 to 1. if it wasn't 0, call <function>
61 * In the failure case, this function is allowed to either set the value to
62 * 1, or to set it to a value lower than one.
63 * If the implementation sets it to a value of lower than one, the
64 * __mutex_slowpath_needs_to_unlock() macro needs to return 1, it needs
65 * to return 0 otherwise.
66 */
Nicolas Pitree358c1a2006-03-31 02:32:13 -080067static inline void
Harvey Harrison144b2a92008-02-08 04:19:56 -080068__mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *))
Nicolas Pitree358c1a2006-03-31 02:32:13 -080069{
Nicolas Pitree358c1a2006-03-31 02:32:13 -080070 if (unlikely(atomic_xchg(count, 1) != 0))
71 fail_fn(count);
72}
Ingo Molnar620a6fd2006-01-09 15:59:17 -080073
74#define __mutex_slowpath_needs_to_unlock() 0
75
76/**
77 * __mutex_fastpath_trylock - try to acquire the mutex, without waiting
78 *
79 * @count: pointer of type atomic_t
80 * @fail_fn: spinlock based trylock implementation
81 *
82 * Change the count from 1 to a value lower than 1, and return 0 (failure)
83 * if it wasn't 1 originally, or return 1 (success) otherwise. This function
84 * MUST leave the value lower than 1 even when the "1" assertion wasn't true.
85 * Additionally, if the value was < 0 originally, this function must not leave
86 * it to 0 on failure.
87 *
88 * If the architecture has no effective trylock variant, it should call the
89 * <fail_fn> spinlock-based trylock variant unconditionally.
90 */
91static inline int
92__mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *))
93{
94 int prev = atomic_xchg(count, 0);
95
96 if (unlikely(prev < 0)) {
97 /*
98 * The lock was marked contended so we must restore that
99 * state. If while doing so we get back a prev value of 1
100 * then we just own it.
101 *
102 * [ In the rare case of the mutex going to 1, to 0, to -1
103 * and then back to 0 in this few-instructions window,
104 * this has the potential to trigger the slowpath for the
105 * owner's unlock path needlessly, but that's not a problem
106 * in practice. ]
107 */
108 prev = atomic_xchg(count, prev);
109 if (prev < 0)
110 prev = 0;
111 }
Ingo Molnar620a6fd2006-01-09 15:59:17 -0800112
113 return prev;
114}
115
116#endif