This source file includes following definitions.
- __cpu_simple_lock_init
- __cpu_simple_lock
- __cpu_simple_lock_try
- __cpu_simple_unlock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 #ifndef _I386_LOCK_H_
45 #define _I386_LOCK_H_
46
47 typedef __volatile int __cpu_simple_lock_t;
48
49 #define __SIMPLELOCK_LOCKED 1
50 #define __SIMPLELOCK_UNLOCKED 0
51
52
53
54
55
56
57
58
59
60 #define __lockbarrier() __asm __volatile("": : :"memory")
61
62 #define SPINLOCK_SPIN_HOOK __asm __volatile("pause": : :"memory")
63
64 #ifdef LOCKDEBUG
65
66 extern void __cpu_simple_lock_init(__cpu_simple_lock_t *);
67 extern void __cpu_simple_lock(__cpu_simple_lock_t *);
68 extern int __cpu_simple_lock_try(__cpu_simple_lock_t *);
69 extern void __cpu_simple_unlock(__cpu_simple_lock_t *);
70
71 #else
72
73 #include <machine/atomic.h>
74
75 static __inline void __cpu_simple_lock_init(__cpu_simple_lock_t *)
76 __attribute__((__unused__));
77 static __inline void __cpu_simple_lock(__cpu_simple_lock_t *)
78 __attribute__((__unused__));
79 static __inline int __cpu_simple_lock_try(__cpu_simple_lock_t *)
80 __attribute__((__unused__));
81 static __inline void __cpu_simple_unlock(__cpu_simple_lock_t *)
82 __attribute__((__unused__));
83
84 static __inline void
85 __cpu_simple_lock_init(__cpu_simple_lock_t *lockp)
86 {
87 *lockp = __SIMPLELOCK_UNLOCKED;
88 __lockbarrier();
89 }
90
91 static __inline void
92 __cpu_simple_lock(__cpu_simple_lock_t *lockp)
93 {
94 while (i386_atomic_testset_i(lockp, __SIMPLELOCK_LOCKED)
95 == __SIMPLELOCK_LOCKED)
96 SPINLOCK_SPIN_HOOK;
97 __lockbarrier();
98 }
99
100 static __inline int
101 __cpu_simple_lock_try(__cpu_simple_lock_t *lockp)
102 {
103 int r = (i386_atomic_testset_i(lockp, __SIMPLELOCK_LOCKED)
104 == __SIMPLELOCK_UNLOCKED);
105
106 __lockbarrier();
107
108 return (r);
109 }
110
111 static __inline void
112 __cpu_simple_unlock(__cpu_simple_lock_t *lockp)
113 {
114 __lockbarrier();
115 *lockp = __SIMPLELOCK_UNLOCKED;
116 }
117
118 #endif
119
120 #ifdef _KERNEL
121 extern int rw_cas_486(volatile unsigned long *, unsigned long, unsigned long);
122 #define rw_cas rw_cas_486
123 #endif
124
125 #endif