Commit | Line | Data |
---|---|---|
1a43bbd8 | 1 | #ifndef _INCLUDE_API_H |
0578089f PM |
2 | #define _INCLUDE_API_H |
3 | ||
76ca5685 | 4 | #define _GNU_SOURCE |
d8540fc5 PA |
5 | #include "../config.h" |
6 | ||
0578089f PM |
7 | /* |
8 | * common.h: Common Linux kernel-isms. | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or modify | |
11 | * it under the terms of the GNU General Public License as published by | |
12 | * the Free Software Foundation; but version 2 of the License only due | |
13 | * to code included from the Linux kernel. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | * GNU General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public License | |
21 | * along with this program; if not, write to the Free Software | |
3282a76b | 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
0578089f PM |
23 | * |
24 | * Copyright (c) 2006 Paul E. McKenney, IBM. | |
25 | * | |
26 | * Much code taken from the Linux kernel. For such code, the option | |
27 | * to redistribute under later versions of GPL might not be available. | |
28 | */ | |
29 | ||
78bec10c | 30 | #include <urcu/compiler.h> |
3c570c9c | 31 | #include <urcu/arch.h> |
108a92e5 | 32 | #include "cpuset.h" |
3c570c9c | 33 | |
0578089f PM |
34 | /* |
35 | * Machine parameters. | |
36 | */ | |
37 | ||
0578089f | 38 | #define ____cacheline_internodealigned_in_smp \ |
901bbb44 | 39 | __attribute__((__aligned__(CAA_CACHE_LINE_SIZE))) |
6ee91d83 | 40 | |
0578089f PM |
41 | /* |
42 | * api_pthreads.h: API mapping to pthreads environment. | |
43 | * | |
44 | * This program is free software; you can redistribute it and/or modify | |
45 | * it under the terms of the GNU General Public License as published by | |
46 | * the Free Software Foundation; either version 2 of the License, or | |
47 | * (at your option) any later version. However, please note that much | |
48 | * of the code in this file derives from the Linux kernel, and that such | |
49 | * code may not be available except under GPLv2. | |
50 | * | |
51 | * This program is distributed in the hope that it will be useful, | |
52 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
53 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
54 | * GNU General Public License for more details. | |
55 | * | |
56 | * You should have received a copy of the GNU General Public License | |
57 | * along with this program; if not, write to the Free Software | |
3282a76b | 58 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
0578089f PM |
59 | * |
60 | * Copyright (c) 2006 Paul E. McKenney, IBM. | |
61 | */ | |
62 | ||
63 | #include <stdio.h> | |
64 | #include <stdlib.h> | |
65 | #include <errno.h> | |
66 | #include <limits.h> | |
67 | #include <sys/types.h> | |
0578089f | 68 | #include <pthread.h> |
0578089f PM |
69 | #include <sys/param.h> |
70 | /* #include "atomic.h" */ | |
71 | ||
0578089f PM |
72 | /* |
73 | * Exclusive locking primitives. | |
74 | */ | |
75 | ||
76 | typedef pthread_mutex_t spinlock_t; | |
77 | ||
78 | #define DEFINE_SPINLOCK(lock) spinlock_t lock = PTHREAD_MUTEX_INITIALIZER; | |
79 | #define __SPIN_LOCK_UNLOCKED(lockp) PTHREAD_MUTEX_INITIALIZER | |
80 | ||
81 | static void spin_lock_init(spinlock_t *sp) | |
82 | { | |
83 | if (pthread_mutex_init(sp, NULL) != 0) { | |
84 | perror("spin_lock_init:pthread_mutex_init"); | |
85 | exit(-1); | |
86 | } | |
87 | } | |
88 | ||
89 | static void spin_lock(spinlock_t *sp) | |
90 | { | |
91 | if (pthread_mutex_lock(sp) != 0) { | |
92 | perror("spin_lock:pthread_mutex_lock"); | |
93 | exit(-1); | |
94 | } | |
95 | } | |
96 | ||
97 | static void spin_unlock(spinlock_t *sp) | |
98 | { | |
99 | if (pthread_mutex_unlock(sp) != 0) { | |
100 | perror("spin_unlock:pthread_mutex_unlock"); | |
101 | exit(-1); | |
102 | } | |
103 | } | |
104 | ||
105 | #define spin_lock_irqsave(l, f) do { f = 1; spin_lock(l); } while (0) | |
106 | #define spin_unlock_irqrestore(l, f) do { f = 0; spin_unlock(l); } while (0) | |
107 | ||
108 | /* | |
109 | * Thread creation/destruction primitives. | |
110 | */ | |
111 | ||
112 | typedef pthread_t thread_id_t; | |
113 | ||
114 | #define NR_THREADS 128 | |
115 | ||
3c570c9c PB |
116 | #define __THREAD_ID_MAP_EMPTY ((thread_id_t) 0) |
117 | #define __THREAD_ID_MAP_WAITING ((thread_id_t) 1) | |
0578089f PM |
118 | thread_id_t __thread_id_map[NR_THREADS]; |
119 | spinlock_t __thread_id_map_mutex; | |
120 | ||
121 | #define for_each_thread(t) \ | |
122 | for (t = 0; t < NR_THREADS; t++) | |
123 | ||
124 | #define for_each_running_thread(t) \ | |
125 | for (t = 0; t < NR_THREADS; t++) \ | |
126 | if ((__thread_id_map[t] != __THREAD_ID_MAP_EMPTY) && \ | |
127 | (__thread_id_map[t] != __THREAD_ID_MAP_WAITING)) | |
128 | ||
3c570c9c PB |
129 | #define for_each_tid(t, tid) \ |
130 | for (t = 0; t < NR_THREADS; t++) \ | |
131 | if ((((tid) = __thread_id_map[t]) != __THREAD_ID_MAP_EMPTY) && \ | |
132 | ((tid) != __THREAD_ID_MAP_WAITING)) | |
133 | ||
0578089f PM |
134 | pthread_key_t thread_id_key; |
135 | ||
136 | static int __smp_thread_id(void) | |
137 | { | |
138 | int i; | |
139 | thread_id_t tid = pthread_self(); | |
140 | ||
141 | for (i = 0; i < NR_THREADS; i++) { | |
142 | if (__thread_id_map[i] == tid) { | |
143 | long v = i + 1; /* must be non-NULL. */ | |
144 | ||
145 | if (pthread_setspecific(thread_id_key, (void *)v) != 0) { | |
146 | perror("pthread_setspecific"); | |
147 | exit(-1); | |
148 | } | |
149 | return i; | |
150 | } | |
151 | } | |
152 | spin_lock(&__thread_id_map_mutex); | |
153 | for (i = 0; i < NR_THREADS; i++) { | |
154 | if (__thread_id_map[i] == tid) | |
155 | spin_unlock(&__thread_id_map_mutex); | |
156 | return i; | |
157 | } | |
158 | spin_unlock(&__thread_id_map_mutex); | |
665eb3ef MD |
159 | fprintf(stderr, "smp_thread_id: Rogue thread, id: %lu(%#lx)\n", |
160 | (unsigned long) tid, (unsigned long) tid); | |
0578089f PM |
161 | exit(-1); |
162 | } | |
163 | ||
164 | static int smp_thread_id(void) | |
165 | { | |
166 | void *id; | |
167 | ||
168 | id = pthread_getspecific(thread_id_key); | |
169 | if (id == NULL) | |
170 | return __smp_thread_id(); | |
171 | return (long)(id - 1); | |
172 | } | |
173 | ||
174 | static thread_id_t create_thread(void *(*func)(void *), void *arg) | |
175 | { | |
176 | thread_id_t tid; | |
177 | int i; | |
178 | ||
179 | spin_lock(&__thread_id_map_mutex); | |
180 | for (i = 0; i < NR_THREADS; i++) { | |
181 | if (__thread_id_map[i] == __THREAD_ID_MAP_EMPTY) | |
182 | break; | |
183 | } | |
184 | if (i >= NR_THREADS) { | |
185 | spin_unlock(&__thread_id_map_mutex); | |
186 | fprintf(stderr, "Thread limit of %d exceeded!\n", NR_THREADS); | |
187 | exit(-1); | |
188 | } | |
189 | __thread_id_map[i] = __THREAD_ID_MAP_WAITING; | |
190 | spin_unlock(&__thread_id_map_mutex); | |
191 | if (pthread_create(&tid, NULL, func, arg) != 0) { | |
192 | perror("create_thread:pthread_create"); | |
193 | exit(-1); | |
194 | } | |
195 | __thread_id_map[i] = tid; | |
196 | return tid; | |
197 | } | |
198 | ||
199 | static void *wait_thread(thread_id_t tid) | |
200 | { | |
201 | int i; | |
202 | void *vp; | |
203 | ||
204 | for (i = 0; i < NR_THREADS; i++) { | |
205 | if (__thread_id_map[i] == tid) | |
206 | break; | |
207 | } | |
208 | if (i >= NR_THREADS){ | |
665eb3ef MD |
209 | fprintf(stderr, "wait_thread: bad tid = %lu(%#lx)\n", |
210 | (unsigned long)tid, (unsigned long)tid); | |
0578089f PM |
211 | exit(-1); |
212 | } | |
213 | if (pthread_join(tid, &vp) != 0) { | |
214 | perror("wait_thread:pthread_join"); | |
215 | exit(-1); | |
216 | } | |
217 | __thread_id_map[i] = __THREAD_ID_MAP_EMPTY; | |
218 | return vp; | |
219 | } | |
220 | ||
221 | static void wait_all_threads(void) | |
222 | { | |
223 | int i; | |
224 | thread_id_t tid; | |
225 | ||
226 | for (i = 1; i < NR_THREADS; i++) { | |
227 | tid = __thread_id_map[i]; | |
228 | if (tid != __THREAD_ID_MAP_EMPTY && | |
229 | tid != __THREAD_ID_MAP_WAITING) | |
230 | (void)wait_thread(tid); | |
231 | } | |
232 | } | |
233 | ||
234 | static void run_on(int cpu) | |
235 | { | |
d8540fc5 | 236 | #if HAVE_SCHED_SETAFFINITY |
0578089f PM |
237 | cpu_set_t mask; |
238 | ||
239 | CPU_ZERO(&mask); | |
240 | CPU_SET(cpu, &mask); | |
d8540fc5 PA |
241 | #if SCHED_SETAFFINITY_ARGS == 2 |
242 | sched_setaffinity(0, &mask); | |
243 | #else | |
0578089f | 244 | sched_setaffinity(0, sizeof(mask), &mask); |
d8540fc5 PA |
245 | #endif |
246 | #endif /* HAVE_SCHED_SETAFFINITY */ | |
0578089f PM |
247 | } |
248 | ||
249 | /* | |
250 | * timekeeping -- very crude -- should use MONOTONIC... | |
251 | */ | |
252 | ||
253 | long long get_microseconds(void) | |
254 | { | |
255 | struct timeval tv; | |
256 | ||
257 | if (gettimeofday(&tv, NULL) != 0) | |
258 | abort(); | |
259 | return ((long long)tv.tv_sec) * 1000000LL + (long long)tv.tv_usec; | |
260 | } | |
261 | ||
262 | /* | |
263 | * Per-thread variables. | |
264 | */ | |
265 | ||
266 | #define DEFINE_PER_THREAD(type, name) \ | |
267 | struct { \ | |
268 | __typeof__(type) v \ | |
06f22bdb | 269 | __attribute__((__aligned__(CAA_CACHE_LINE_SIZE))); \ |
0578089f PM |
270 | } __per_thread_##name[NR_THREADS]; |
271 | #define DECLARE_PER_THREAD(type, name) extern DEFINE_PER_THREAD(type, name) | |
272 | ||
273 | #define per_thread(name, thread) __per_thread_##name[thread].v | |
274 | #define __get_thread_var(name) per_thread(name, smp_thread_id()) | |
275 | ||
276 | #define init_per_thread(name, v) \ | |
277 | do { \ | |
278 | int __i_p_t_i; \ | |
279 | for (__i_p_t_i = 0; __i_p_t_i < NR_THREADS; __i_p_t_i++) \ | |
280 | per_thread(name, __i_p_t_i) = v; \ | |
281 | } while (0) | |
282 | ||
0578089f PM |
283 | DEFINE_PER_THREAD(int, smp_processor_id); |
284 | ||
0578089f PM |
285 | /* |
286 | * Bug checks. | |
287 | */ | |
288 | ||
289 | #define BUG_ON(c) do { if (!(c)) abort(); } while (0) | |
290 | ||
291 | /* | |
292 | * Initialization -- Must be called before calling any primitives. | |
293 | */ | |
294 | ||
295 | static void smp_init(void) | |
296 | { | |
297 | int i; | |
298 | ||
299 | spin_lock_init(&__thread_id_map_mutex); | |
300 | __thread_id_map[0] = pthread_self(); | |
301 | for (i = 1; i < NR_THREADS; i++) | |
302 | __thread_id_map[i] = __THREAD_ID_MAP_EMPTY; | |
303 | init_per_thread(smp_processor_id, 0); | |
304 | if (pthread_key_create(&thread_id_key, NULL) != 0) { | |
305 | perror("pthread_key_create"); | |
306 | exit(-1); | |
307 | } | |
308 | } | |
309 | ||
1a43bbd8 | 310 | #endif |