arch: Make __mutex_fastpath_lock_retval return whether fastpath succeeded or not
[deliverable/linux.git] / arch / x86 / include / asm / mutex_64.h
CommitLineData
b8aa0361
IM
1/*
2 * Assembly implementation of the mutex fastpath, based on atomic
3 * decrement/increment.
4 *
5 * started by Ingo Molnar:
6 *
7 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 */
1965aae3
PA
9#ifndef _ASM_X86_MUTEX_64_H
10#define _ASM_X86_MUTEX_64_H
b8aa0361
IM
11
12/**
13 * __mutex_fastpath_lock - decrement and call function if negative
14 * @v: pointer of type atomic_t
15 * @fail_fn: function to call if the result is negative
16 *
17 * Atomically decrements @v and calls <fail_fn> if the result is negative.
18 */
2c4e8830
JP
19#define __mutex_fastpath_lock(v, fail_fn) \
20do { \
21 unsigned long dummy; \
22 \
23 typecheck(atomic_t *, v); \
24 typecheck_fn(void (*)(atomic_t *), fail_fn); \
25 \
26 asm volatile(LOCK_PREFIX " decl (%%rdi)\n" \
27 " jns 1f \n" \
28 " call " #fail_fn "\n" \
29 "1:" \
30 : "=D" (dummy) \
31 : "D" (v) \
32 : "rax", "rsi", "rdx", "rcx", \
33 "r8", "r9", "r10", "r11", "memory"); \
b8aa0361
IM
34} while (0)
35
36/**
37 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
38 * from 1 to a 0 value
39 * @count: pointer of type atomic_t
b8aa0361 40 *
a41b56ef
ML
41 * Change the count from 1 to a value lower than 1. This function returns 0
42 * if the fastpath succeeds, or -1 otherwise.
b8aa0361 43 */
a41b56ef 44static inline int __mutex_fastpath_lock_retval(atomic_t *count)
b8aa0361
IM
45{
46 if (unlikely(atomic_dec_return(count) < 0))
a41b56ef 47 return -1;
b8aa0361
IM
48 else
49 return 0;
50}
51
52/**
53 * __mutex_fastpath_unlock - increment and call function if nonpositive
54 * @v: pointer of type atomic_t
55 * @fail_fn: function to call if the result is nonpositive
56 *
57 * Atomically increments @v and calls <fail_fn> if the result is nonpositive.
58 */
2c4e8830
JP
59#define __mutex_fastpath_unlock(v, fail_fn) \
60do { \
61 unsigned long dummy; \
62 \
63 typecheck(atomic_t *, v); \
64 typecheck_fn(void (*)(atomic_t *), fail_fn); \
65 \
66 asm volatile(LOCK_PREFIX " incl (%%rdi)\n" \
67 " jg 1f\n" \
68 " call " #fail_fn "\n" \
69 "1:" \
70 : "=D" (dummy) \
71 : "D" (v) \
72 : "rax", "rsi", "rdx", "rcx", \
73 "r8", "r9", "r10", "r11", "memory"); \
b8aa0361
IM
74} while (0)
75
76#define __mutex_slowpath_needs_to_unlock() 1
77
78/**
79 * __mutex_fastpath_trylock - try to acquire the mutex, without waiting
80 *
81 * @count: pointer of type atomic_t
82 * @fail_fn: fallback function
83 *
84 * Change the count from 1 to 0 and return 1 (success), or return 0 (failure)
85 * if it wasn't 1 originally. [the fallback function is never used on
86 * x86_64, because all x86_64 CPUs have a CMPXCHG instruction.]
87 */
2c4e8830
JP
88static inline int __mutex_fastpath_trylock(atomic_t *count,
89 int (*fail_fn)(atomic_t *))
b8aa0361 90{
4cec8736 91 if (likely(atomic_cmpxchg(count, 1, 0) == 1))
b8aa0361
IM
92 return 1;
93 else
94 return 0;
95}
96
1965aae3 97#endif /* _ASM_X86_MUTEX_64_H */
This page took 0.609739 seconds and 5 git commands to generate.