Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Davidlohr Bueso. |
| 4 | */ |
| 5 | |
Arnaldo Carvalho de Melo | 8a15858 | 2016-07-06 12:14:56 -0300 | [diff] [blame] | 6 | /* For the CLR_() macros */ |
Arnaldo Carvalho de Melo | a0f213e14 | 2017-03-02 15:44:19 -0300 | [diff] [blame] | 7 | #include <string.h> |
Arnaldo Carvalho de Melo | 8a15858 | 2016-07-06 12:14:56 -0300 | [diff] [blame] | 8 | #include <pthread.h> |
| 9 | |
Arnaldo Carvalho de Melo | 9c304f6 | 2016-07-07 11:01:46 -0300 | [diff] [blame] | 10 | #include <signal.h> |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 11 | #include "../util/stat.h" |
Josh Poimboeuf | 4b6ab94 | 2015-12-15 09:39:39 -0600 | [diff] [blame] | 12 | #include <subcmd/parse-options.h> |
Arnaldo Carvalho de Melo | 86695f5 | 2016-07-11 10:05:52 -0300 | [diff] [blame] | 13 | #include <linux/compiler.h> |
Arnaldo Carvalho de Melo | 9c304f6 | 2016-07-07 11:01:46 -0300 | [diff] [blame] | 14 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | d8f9da2 | 2019-07-04 12:06:20 -0300 | [diff] [blame] | 15 | #include <linux/zalloc.h> |
Arnaldo Carvalho de Melo | 9c304f6 | 2016-07-07 11:01:46 -0300 | [diff] [blame] | 16 | #include <errno.h> |
Jiri Olsa | 9c3516d | 2019-07-21 13:24:30 +0200 | [diff] [blame] | 17 | #include <perf/cpumap.h> |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 18 | #include "bench.h" |
| 19 | #include "futex.h" |
| 20 | |
| 21 | #include <err.h> |
| 22 | #include <stdlib.h> |
| 23 | #include <sys/time.h> |
Davidlohr Bueso | 9f9a3ff | 2021-08-08 21:32:58 -0700 | [diff] [blame] | 24 | #include <sys/mman.h> |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 25 | |
| 26 | struct worker { |
| 27 | int tid; |
| 28 | u_int32_t *futex; |
| 29 | pthread_t thread; |
| 30 | unsigned long ops; |
| 31 | }; |
| 32 | |
| 33 | static u_int32_t global_futex = 0; |
| 34 | static struct worker *worker; |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 35 | static bool done = false; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 36 | static int futex_flag = 0; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 37 | static pthread_mutex_t thread_lock; |
| 38 | static unsigned int threads_starting; |
| 39 | static struct stats throughput_stats; |
| 40 | static pthread_cond_t thread_parent, thread_worker; |
| 41 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 42 | static struct bench_futex_parameters params = { |
| 43 | .runtime = 10, |
| 44 | }; |
| 45 | |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 46 | static const struct option options[] = { |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 47 | OPT_UINTEGER('t', "threads", ¶ms.nthreads, "Specify amount of threads"), |
| 48 | OPT_UINTEGER('r', "runtime", ¶ms.runtime, "Specify runtime (in seconds)"), |
| 49 | OPT_BOOLEAN( 'M', "multi", ¶ms.multi, "Use multiple futexes"), |
| 50 | OPT_BOOLEAN( 's', "silent", ¶ms.silent, "Silent mode: do not display data/details"), |
| 51 | OPT_BOOLEAN( 'S', "shared", ¶ms.fshared, "Use shared futexes instead of private ones"), |
Davidlohr Bueso | 9f9a3ff | 2021-08-08 21:32:58 -0700 | [diff] [blame] | 52 | OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"), |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 53 | OPT_END() |
| 54 | }; |
| 55 | |
| 56 | static const char * const bench_futex_lock_pi_usage[] = { |
Davidlohr Bueso | 9de3ffa | 2016-12-15 11:36:24 -0800 | [diff] [blame] | 57 | "perf bench futex lock-pi <options>", |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 58 | NULL |
| 59 | }; |
| 60 | |
| 61 | static void print_summary(void) |
| 62 | { |
| 63 | unsigned long avg = avg_stats(&throughput_stats); |
| 64 | double stddev = stddev_stats(&throughput_stats); |
| 65 | |
| 66 | printf("%sAveraged %ld operations/sec (+- %.2f%%), total secs = %d\n", |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 67 | !params.silent ? "\n" : "", avg, rel_stddev_stats(stddev, avg), |
Arnaldo Carvalho de Melo | e4d9b04 | 2020-03-02 12:09:38 -0300 | [diff] [blame] | 68 | (int)bench__runtime.tv_sec); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static void toggle_done(int sig __maybe_unused, |
| 72 | siginfo_t *info __maybe_unused, |
| 73 | void *uc __maybe_unused) |
| 74 | { |
| 75 | /* inform all threads that we're done for the day */ |
| 76 | done = true; |
Arnaldo Carvalho de Melo | e4d9b04 | 2020-03-02 12:09:38 -0300 | [diff] [blame] | 77 | gettimeofday(&bench__end, NULL); |
| 78 | timersub(&bench__end, &bench__start, &bench__runtime); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void *workerfn(void *arg) |
| 82 | { |
| 83 | struct worker *w = (struct worker *) arg; |
Davidlohr Bueso | e2e1680 | 2016-10-24 13:56:52 -0700 | [diff] [blame] | 84 | unsigned long ops = w->ops; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 85 | |
| 86 | pthread_mutex_lock(&thread_lock); |
| 87 | threads_starting--; |
| 88 | if (!threads_starting) |
| 89 | pthread_cond_signal(&thread_parent); |
| 90 | pthread_cond_wait(&thread_worker, &thread_lock); |
| 91 | pthread_mutex_unlock(&thread_lock); |
| 92 | |
| 93 | do { |
| 94 | int ret; |
| 95 | again: |
Davidlohr Bueso | 73b1794 | 2016-04-20 20:14:07 -0700 | [diff] [blame] | 96 | ret = futex_lock_pi(w->futex, NULL, futex_flag); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 97 | |
| 98 | if (ret) { /* handle lock acquisition */ |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 99 | if (!params.silent) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 100 | warn("thread %d: Could not lock pi-lock for %p (%d)", |
| 101 | w->tid, w->futex, ret); |
| 102 | if (done) |
| 103 | break; |
| 104 | |
| 105 | goto again; |
| 106 | } |
| 107 | |
| 108 | usleep(1); |
| 109 | ret = futex_unlock_pi(w->futex, futex_flag); |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 110 | if (ret && !params.silent) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 111 | warn("thread %d: Could not unlock pi-lock for %p (%d)", |
| 112 | w->tid, w->futex, ret); |
Davidlohr Bueso | e2e1680 | 2016-10-24 13:56:52 -0700 | [diff] [blame] | 113 | ops++; /* account for thread's share of work */ |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 114 | } while (!done); |
| 115 | |
Davidlohr Bueso | e2e1680 | 2016-10-24 13:56:52 -0700 | [diff] [blame] | 116 | w->ops = ops; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 117 | return NULL; |
| 118 | } |
| 119 | |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 120 | static void create_threads(struct worker *w, pthread_attr_t thread_attr, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 121 | struct perf_cpu_map *cpu) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 122 | { |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 123 | cpu_set_t cpuset; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 124 | unsigned int i; |
| 125 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 126 | threads_starting = params.nthreads; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 127 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 128 | for (i = 0; i < params.nthreads; i++) { |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 129 | worker[i].tid = i; |
| 130 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 131 | if (params.multi) { |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 132 | worker[i].futex = calloc(1, sizeof(u_int32_t)); |
| 133 | if (!worker[i].futex) |
| 134 | err(EXIT_FAILURE, "calloc"); |
| 135 | } else |
| 136 | worker[i].futex = &global_futex; |
| 137 | |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 138 | CPU_ZERO(&cpuset); |
Ian Rogers | 6d18804 | 2022-01-04 22:13:51 -0800 | [diff] [blame^] | 139 | CPU_SET(perf_cpu_map__cpu(cpu, i % perf_cpu_map__nr(cpu)).cpu, &cpuset); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 140 | |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 141 | if (pthread_attr_setaffinity_np(&thread_attr, sizeof(cpu_set_t), &cpuset)) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 142 | err(EXIT_FAILURE, "pthread_attr_setaffinity_np"); |
| 143 | |
| 144 | if (pthread_create(&w[i].thread, &thread_attr, workerfn, &worker[i])) |
| 145 | err(EXIT_FAILURE, "pthread_create"); |
| 146 | } |
| 147 | } |
| 148 | |
Arnaldo Carvalho de Melo | b0ad8ea | 2017-03-27 11:47:20 -0300 | [diff] [blame] | 149 | int bench_futex_lock_pi(int argc, const char **argv) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 150 | { |
| 151 | int ret = 0; |
| 152 | unsigned int i; |
| 153 | struct sigaction act; |
| 154 | pthread_attr_t thread_attr; |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 155 | struct perf_cpu_map *cpu; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 156 | |
| 157 | argc = parse_options(argc, argv, options, bench_futex_lock_pi_usage, 0); |
| 158 | if (argc) |
| 159 | goto err; |
| 160 | |
Jiri Olsa | 9c3516d | 2019-07-21 13:24:30 +0200 | [diff] [blame] | 161 | cpu = perf_cpu_map__new(NULL); |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 162 | if (!cpu) |
| 163 | err(EXIT_FAILURE, "calloc"); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 164 | |
Tommi Rantala | 7b919a5 | 2020-03-05 10:37:14 +0200 | [diff] [blame] | 165 | memset(&act, 0, sizeof(act)); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 166 | sigfillset(&act.sa_mask); |
| 167 | act.sa_sigaction = toggle_done; |
| 168 | sigaction(SIGINT, &act, NULL); |
| 169 | |
Davidlohr Bueso | 9f9a3ff | 2021-08-08 21:32:58 -0700 | [diff] [blame] | 170 | if (params.mlockall) { |
| 171 | if (mlockall(MCL_CURRENT | MCL_FUTURE)) |
| 172 | err(EXIT_FAILURE, "mlockall"); |
| 173 | } |
| 174 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 175 | if (!params.nthreads) |
| 176 | params.nthreads = cpu->nr; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 177 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 178 | worker = calloc(params.nthreads, sizeof(*worker)); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 179 | if (!worker) |
| 180 | err(EXIT_FAILURE, "calloc"); |
| 181 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 182 | if (!params.fshared) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 183 | futex_flag = FUTEX_PRIVATE_FLAG; |
| 184 | |
| 185 | printf("Run summary [PID %d]: %d threads doing pi lock/unlock pairing for %d secs.\n\n", |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 186 | getpid(), params.nthreads, params.runtime); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 187 | |
| 188 | init_stats(&throughput_stats); |
| 189 | pthread_mutex_init(&thread_lock, NULL); |
| 190 | pthread_cond_init(&thread_parent, NULL); |
| 191 | pthread_cond_init(&thread_worker, NULL); |
| 192 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 193 | threads_starting = params.nthreads; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 194 | pthread_attr_init(&thread_attr); |
Arnaldo Carvalho de Melo | e4d9b04 | 2020-03-02 12:09:38 -0300 | [diff] [blame] | 195 | gettimeofday(&bench__start, NULL); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 196 | |
Davidlohr Bueso | 3b2323c | 2017-11-26 20:20:59 -0800 | [diff] [blame] | 197 | create_threads(worker, thread_attr, cpu); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 198 | pthread_attr_destroy(&thread_attr); |
| 199 | |
| 200 | pthread_mutex_lock(&thread_lock); |
| 201 | while (threads_starting) |
| 202 | pthread_cond_wait(&thread_parent, &thread_lock); |
| 203 | pthread_cond_broadcast(&thread_worker); |
| 204 | pthread_mutex_unlock(&thread_lock); |
| 205 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 206 | sleep(params.runtime); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 207 | toggle_done(0, NULL, NULL); |
| 208 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 209 | for (i = 0; i < params.nthreads; i++) { |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 210 | ret = pthread_join(worker[i].thread, NULL); |
| 211 | if (ret) |
| 212 | err(EXIT_FAILURE, "pthread_join"); |
| 213 | } |
| 214 | |
| 215 | /* cleanup & report results */ |
| 216 | pthread_cond_destroy(&thread_parent); |
| 217 | pthread_cond_destroy(&thread_worker); |
| 218 | pthread_mutex_destroy(&thread_lock); |
| 219 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 220 | for (i = 0; i < params.nthreads; i++) { |
Tommi Rantala | 41e7c32 | 2020-04-17 16:23:29 +0300 | [diff] [blame] | 221 | unsigned long t = bench__runtime.tv_sec > 0 ? |
| 222 | worker[i].ops / bench__runtime.tv_sec : 0; |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 223 | |
| 224 | update_stats(&throughput_stats, t); |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 225 | if (!params.silent) |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 226 | printf("[thread %3d] futex: %p [ %ld ops/sec ]\n", |
| 227 | worker[i].tid, worker[i].futex, t); |
| 228 | |
Davidlohr Bueso | 0959046 | 2021-08-08 21:32:55 -0700 | [diff] [blame] | 229 | if (params.multi) |
Arnaldo Carvalho de Melo | d8f9da2 | 2019-07-04 12:06:20 -0300 | [diff] [blame] | 230 | zfree(&worker[i].futex); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | print_summary(); |
| 234 | |
| 235 | free(worker); |
Sohaib Mohamed | 88e4823 | 2021-11-12 22:11:33 +0200 | [diff] [blame] | 236 | perf_cpu_map__put(cpu); |
Davidlohr Bueso | d2f3f5d | 2015-07-07 01:55:53 -0700 | [diff] [blame] | 237 | return ret; |
| 238 | err: |
| 239 | usage_with_options(bench_futex_lock_pi_usage, options); |
| 240 | exit(EXIT_FAILURE); |
| 241 | } |