1 // SPDX-License-Identifier: GPL-2.0
5 * futex-hash: Stress the hell out of the Linux kernel futex uaddr hashing.
7 * This program is particularly useful for measuring the kernel's futex hash
8 * table/function implementation. In order for it to make sense, use with as
9 * many threads and futexes as possible.
12 /* For the CLR_() macros */
19 #include <linux/compiler.h>
20 #include <linux/kernel.h>
21 #include <linux/zalloc.h>
23 #include <internal/cpumap.h>
24 #include <perf/cpumap.h>
26 #include "../util/stat.h"
27 #include <subcmd/parse-options.h>
33 static unsigned int nthreads = 0;
34 static unsigned int nsecs = 10;
35 /* amount of futexes per thread */
36 static unsigned int nfutexes = 1024;
37 static bool fshared = false, done = false, silent = false;
38 static int futex_flag = 0;
40 struct timeval start, end, runtime;
41 static pthread_mutex_t thread_lock;
42 static unsigned int threads_starting;
43 static struct stats throughput_stats;
44 static pthread_cond_t thread_parent, thread_worker;
53 static const struct option options[] = {
54 OPT_UINTEGER('t', "threads", &nthreads, "Specify amount of threads"),
55 OPT_UINTEGER('r', "runtime", &nsecs, "Specify runtime (in seconds)"),
56 OPT_UINTEGER('f', "futexes", &nfutexes, "Specify amount of futexes per threads"),
57 OPT_BOOLEAN( 's', "silent", &silent, "Silent mode: do not display data/details"),
58 OPT_BOOLEAN( 'S', "shared", &fshared, "Use shared futexes instead of private ones"),
62 static const char * const bench_futex_hash_usage[] = {
63 "perf bench futex hash <options>",
67 static void *workerfn(void *arg)
70 struct worker *w = (struct worker *) arg;
72 unsigned long ops = w->ops; /* avoid cacheline bouncing */
74 pthread_mutex_lock(&thread_lock);
76 if (!threads_starting)
77 pthread_cond_signal(&thread_parent);
78 pthread_cond_wait(&thread_worker, &thread_lock);
79 pthread_mutex_unlock(&thread_lock);
82 for (i = 0; i < nfutexes; i++, ops++) {
84 * We want the futex calls to fail in order to stress
85 * the hashing of uaddr and not measure other steps,
86 * such as internal waitqueue handling, thus enlarging
87 * the critical region protected by hb->lock.
89 ret = futex_wait(&w->futex[i], 1234, NULL, futex_flag);
91 (!ret || errno != EAGAIN || errno != EWOULDBLOCK))
92 warn("Non-expected futex return call");
100 static void toggle_done(int sig __maybe_unused,
101 siginfo_t *info __maybe_unused,
102 void *uc __maybe_unused)
104 /* inform all threads that we're done for the day */
106 gettimeofday(&end, NULL);
107 timersub(&end, &start, &runtime);
110 static void print_summary(void)
112 unsigned long avg = avg_stats(&throughput_stats);
113 double stddev = stddev_stats(&throughput_stats);
115 printf("%sAveraged %ld operations/sec (+- %.2f%%), total secs = %d\n",
116 !silent ? "\n" : "", avg, rel_stddev_stats(stddev, avg),
117 (int) runtime.tv_sec);
120 int bench_futex_hash(int argc, const char **argv)
124 struct sigaction act;
126 pthread_attr_t thread_attr;
127 struct worker *worker = NULL;
128 struct perf_cpu_map *cpu;
130 argc = parse_options(argc, argv, options, bench_futex_hash_usage, 0);
132 usage_with_options(bench_futex_hash_usage, options);
136 cpu = perf_cpu_map__new(NULL);
140 sigfillset(&act.sa_mask);
141 act.sa_sigaction = toggle_done;
142 sigaction(SIGINT, &act, NULL);
144 if (!nthreads) /* default to the number of CPUs */
147 worker = calloc(nthreads, sizeof(*worker));
152 futex_flag = FUTEX_PRIVATE_FLAG;
154 printf("Run summary [PID %d]: %d threads, each operating on %d [%s] futexes for %d secs.\n\n",
155 getpid(), nthreads, nfutexes, fshared ? "shared":"private", nsecs);
157 init_stats(&throughput_stats);
158 pthread_mutex_init(&thread_lock, NULL);
159 pthread_cond_init(&thread_parent, NULL);
160 pthread_cond_init(&thread_worker, NULL);
162 threads_starting = nthreads;
163 pthread_attr_init(&thread_attr);
164 gettimeofday(&start, NULL);
165 for (i = 0; i < nthreads; i++) {
167 worker[i].futex = calloc(nfutexes, sizeof(*worker[i].futex));
168 if (!worker[i].futex)
172 CPU_SET(cpu->map[i % cpu->nr], &cpuset);
174 ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cpu_set_t), &cpuset);
176 err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
178 ret = pthread_create(&worker[i].thread, &thread_attr, workerfn,
179 (void *)(struct worker *) &worker[i]);
181 err(EXIT_FAILURE, "pthread_create");
184 pthread_attr_destroy(&thread_attr);
186 pthread_mutex_lock(&thread_lock);
187 while (threads_starting)
188 pthread_cond_wait(&thread_parent, &thread_lock);
189 pthread_cond_broadcast(&thread_worker);
190 pthread_mutex_unlock(&thread_lock);
193 toggle_done(0, NULL, NULL);
195 for (i = 0; i < nthreads; i++) {
196 ret = pthread_join(worker[i].thread, NULL);
198 err(EXIT_FAILURE, "pthread_join");
201 /* cleanup & report results */
202 pthread_cond_destroy(&thread_parent);
203 pthread_cond_destroy(&thread_worker);
204 pthread_mutex_destroy(&thread_lock);
206 for (i = 0; i < nthreads; i++) {
207 unsigned long t = worker[i].ops/runtime.tv_sec;
208 update_stats(&throughput_stats, t);
211 printf("[thread %2d] futex: %p [ %ld ops/sec ]\n",
212 worker[i].tid, &worker[i].futex[0], t);
214 printf("[thread %2d] futexes: %p ... %p [ %ld ops/sec ]\n",
215 worker[i].tid, &worker[i].futex[0],
216 &worker[i].futex[nfutexes-1], t);
219 zfree(&worker[i].futex);
228 err(EXIT_FAILURE, "calloc");