1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2d65817b4SDavidlohr Bueso /*
3d65817b4SDavidlohr Bueso * Copyright (C) 2015 Davidlohr Bueso.
4d65817b4SDavidlohr Bueso *
5d65817b4SDavidlohr Bueso * Block a bunch of threads and let parallel waker threads wakeup an
6d65817b4SDavidlohr Bueso * equal amount of them. The program output reflects the avg latency
7d65817b4SDavidlohr Bueso * for each individual thread to service its share of work. Ultimately
8d65817b4SDavidlohr Bueso * it can be used to measure futex_wake() changes.
9d65817b4SDavidlohr Bueso */
108085e5abSJames Yang #include "bench.h"
118085e5abSJames Yang #include <linux/compiler.h>
128085e5abSJames Yang #include "../util/debug.h"
13a64d3af5SIan Rogers #include "../util/mutex.h"
14d65817b4SDavidlohr Bueso
158085e5abSJames Yang #ifndef HAVE_PTHREAD_BARRIER
bench_futex_wake_parallel(int argc __maybe_unused,const char ** argv __maybe_unused)168085e5abSJames Yang int bench_futex_wake_parallel(int argc __maybe_unused, const char **argv __maybe_unused)
178085e5abSJames Yang {
188085e5abSJames Yang pr_err("%s: pthread_barrier_t unavailable, disabling this test...\n", __func__);
198085e5abSJames Yang return 0;
208085e5abSJames Yang }
218085e5abSJames Yang #else /* HAVE_PTHREAD_BARRIER */
228a158589SArnaldo Carvalho de Melo /* For the CLR_() macros */
23a0f213e1SArnaldo Carvalho de Melo #include <string.h>
248a158589SArnaldo Carvalho de Melo #include <pthread.h>
258a158589SArnaldo Carvalho de Melo
269c304f6cSArnaldo Carvalho de Melo #include <signal.h>
27d65817b4SDavidlohr Bueso #include "../util/stat.h"
284b6ab94eSJosh Poimboeuf #include <subcmd/parse-options.h>
299c304f6cSArnaldo Carvalho de Melo #include <linux/kernel.h>
30565e6911SArnaldo Carvalho de Melo #include <linux/time64.h>
319c304f6cSArnaldo Carvalho de Melo #include <errno.h>
32d65817b4SDavidlohr Bueso #include "futex.h"
3387ffb6c6SArnaldo Carvalho de Melo #include <perf/cpumap.h>
34d65817b4SDavidlohr Bueso
35d65817b4SDavidlohr Bueso #include <err.h>
36d65817b4SDavidlohr Bueso #include <stdlib.h>
37d65817b4SDavidlohr Bueso #include <sys/time.h>
389f9a3ffeSDavidlohr Bueso #include <sys/mman.h>
39d65817b4SDavidlohr Bueso
40d65817b4SDavidlohr Bueso struct thread_data {
41d65817b4SDavidlohr Bueso pthread_t worker;
42d65817b4SDavidlohr Bueso unsigned int nwoken;
43d65817b4SDavidlohr Bueso struct timeval runtime;
44d65817b4SDavidlohr Bueso };
45d65817b4SDavidlohr Bueso
46d65817b4SDavidlohr Bueso static unsigned int nwakes = 1;
47d65817b4SDavidlohr Bueso
48d65817b4SDavidlohr Bueso /* all threads will block on the same futex -- hash bucket chaos ;) */
49d65817b4SDavidlohr Bueso static u_int32_t futex = 0;
50d65817b4SDavidlohr Bueso
51d65817b4SDavidlohr Bueso static pthread_t *blocked_worker;
5209590463SDavidlohr Bueso static bool done = false;
53a64d3af5SIan Rogers static struct mutex thread_lock;
54a64d3af5SIan Rogers static struct cond thread_parent, thread_worker;
558085e5abSJames Yang static pthread_barrier_t barrier;
56d65817b4SDavidlohr Bueso static struct stats waketime_stats, wakeup_stats;
573b2323c2SDavidlohr Bueso static unsigned int threads_starting;
58d65817b4SDavidlohr Bueso static int futex_flag = 0;
59d65817b4SDavidlohr Bueso
6009590463SDavidlohr Bueso static struct bench_futex_parameters params;
6109590463SDavidlohr Bueso
62d65817b4SDavidlohr Bueso static const struct option options[] = {
6309590463SDavidlohr Bueso OPT_UINTEGER('t', "threads", ¶ms.nthreads, "Specify amount of threads"),
6409590463SDavidlohr Bueso OPT_UINTEGER('w', "nwakers", ¶ms.nwakes, "Specify amount of waking threads"),
6509590463SDavidlohr Bueso OPT_BOOLEAN( 's', "silent", ¶ms.silent, "Silent mode: do not display data/details"),
6609590463SDavidlohr Bueso OPT_BOOLEAN( 'S', "shared", ¶ms.fshared, "Use shared futexes instead of private ones"),
679f9a3ffeSDavidlohr Bueso OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
689f9a3ffeSDavidlohr Bueso
69d65817b4SDavidlohr Bueso OPT_END()
70d65817b4SDavidlohr Bueso };
71d65817b4SDavidlohr Bueso
72d65817b4SDavidlohr Bueso static const char * const bench_futex_wake_parallel_usage[] = {
73d65817b4SDavidlohr Bueso "perf bench futex wake-parallel <options>",
74d65817b4SDavidlohr Bueso NULL
75d65817b4SDavidlohr Bueso };
76d65817b4SDavidlohr Bueso
waking_workerfn(void * arg)77d65817b4SDavidlohr Bueso static void *waking_workerfn(void *arg)
78d65817b4SDavidlohr Bueso {
79d65817b4SDavidlohr Bueso struct thread_data *waker = (struct thread_data *) arg;
80d65817b4SDavidlohr Bueso struct timeval start, end;
81d65817b4SDavidlohr Bueso
828085e5abSJames Yang pthread_barrier_wait(&barrier);
838085e5abSJames Yang
84d65817b4SDavidlohr Bueso gettimeofday(&start, NULL);
85d65817b4SDavidlohr Bueso
86d65817b4SDavidlohr Bueso waker->nwoken = futex_wake(&futex, nwakes, futex_flag);
87d65817b4SDavidlohr Bueso if (waker->nwoken != nwakes)
88d65817b4SDavidlohr Bueso warnx("couldn't wakeup all tasks (%d/%d)",
89d65817b4SDavidlohr Bueso waker->nwoken, nwakes);
90d65817b4SDavidlohr Bueso
91d65817b4SDavidlohr Bueso gettimeofday(&end, NULL);
92d65817b4SDavidlohr Bueso timersub(&end, &start, &waker->runtime);
93d65817b4SDavidlohr Bueso
94d65817b4SDavidlohr Bueso pthread_exit(NULL);
95d65817b4SDavidlohr Bueso return NULL;
96d65817b4SDavidlohr Bueso }
97d65817b4SDavidlohr Bueso
wakeup_threads(struct thread_data * td)98*8351498dSIan Rogers static void wakeup_threads(struct thread_data *td)
99d65817b4SDavidlohr Bueso {
100d65817b4SDavidlohr Bueso unsigned int i;
101*8351498dSIan Rogers pthread_attr_t thread_attr;
102d65817b4SDavidlohr Bueso
103*8351498dSIan Rogers pthread_attr_init(&thread_attr);
104d65817b4SDavidlohr Bueso pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE);
105d65817b4SDavidlohr Bueso
10609590463SDavidlohr Bueso pthread_barrier_init(&barrier, NULL, params.nwakes + 1);
1078085e5abSJames Yang
108d65817b4SDavidlohr Bueso /* create and block all threads */
10909590463SDavidlohr Bueso for (i = 0; i < params.nwakes; i++) {
110d65817b4SDavidlohr Bueso /*
111d65817b4SDavidlohr Bueso * Thread creation order will impact per-thread latency
112d65817b4SDavidlohr Bueso * as it will affect the order to acquire the hb spinlock.
113d65817b4SDavidlohr Bueso * For now let the scheduler decide.
114d65817b4SDavidlohr Bueso */
115d65817b4SDavidlohr Bueso if (pthread_create(&td[i].worker, &thread_attr,
116d65817b4SDavidlohr Bueso waking_workerfn, (void *)&td[i]))
117d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "pthread_create");
118d65817b4SDavidlohr Bueso }
119d65817b4SDavidlohr Bueso
1208085e5abSJames Yang pthread_barrier_wait(&barrier);
1218085e5abSJames Yang
12209590463SDavidlohr Bueso for (i = 0; i < params.nwakes; i++)
123d65817b4SDavidlohr Bueso if (pthread_join(td[i].worker, NULL))
124d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "pthread_join");
1258085e5abSJames Yang
1268085e5abSJames Yang pthread_barrier_destroy(&barrier);
127*8351498dSIan Rogers pthread_attr_destroy(&thread_attr);
128d65817b4SDavidlohr Bueso }
129d65817b4SDavidlohr Bueso
blocked_workerfn(void * arg __maybe_unused)130d65817b4SDavidlohr Bueso static void *blocked_workerfn(void *arg __maybe_unused)
131d65817b4SDavidlohr Bueso {
132a64d3af5SIan Rogers mutex_lock(&thread_lock);
133d65817b4SDavidlohr Bueso threads_starting--;
134d65817b4SDavidlohr Bueso if (!threads_starting)
135a64d3af5SIan Rogers cond_signal(&thread_parent);
136a64d3af5SIan Rogers cond_wait(&thread_worker, &thread_lock);
137a64d3af5SIan Rogers mutex_unlock(&thread_lock);
138d65817b4SDavidlohr Bueso
139d65817b4SDavidlohr Bueso while (1) { /* handle spurious wakeups */
140d65817b4SDavidlohr Bueso if (futex_wait(&futex, 0, NULL, futex_flag) != EINTR)
141d65817b4SDavidlohr Bueso break;
142d65817b4SDavidlohr Bueso }
143d65817b4SDavidlohr Bueso
144d65817b4SDavidlohr Bueso pthread_exit(NULL);
145d65817b4SDavidlohr Bueso return NULL;
146d65817b4SDavidlohr Bueso }
147d65817b4SDavidlohr Bueso
block_threads(pthread_t * w,struct perf_cpu_map * cpu)148*8351498dSIan Rogers static void block_threads(pthread_t *w, struct perf_cpu_map *cpu)
149d65817b4SDavidlohr Bueso {
150c9c2a427SAthira Rajeev cpu_set_t *cpuset;
151d65817b4SDavidlohr Bueso unsigned int i;
152c9c2a427SAthira Rajeev int nrcpus = perf_cpu_map__nr(cpu);
153c9c2a427SAthira Rajeev size_t size;
154d65817b4SDavidlohr Bueso
15509590463SDavidlohr Bueso threads_starting = params.nthreads;
156d65817b4SDavidlohr Bueso
157c9c2a427SAthira Rajeev cpuset = CPU_ALLOC(nrcpus);
158c9c2a427SAthira Rajeev BUG_ON(!cpuset);
159c9c2a427SAthira Rajeev size = CPU_ALLOC_SIZE(nrcpus);
160c9c2a427SAthira Rajeev
161d65817b4SDavidlohr Bueso /* create and block all threads */
16209590463SDavidlohr Bueso for (i = 0; i < params.nthreads; i++) {
163*8351498dSIan Rogers pthread_attr_t thread_attr;
164*8351498dSIan Rogers
165*8351498dSIan Rogers pthread_attr_init(&thread_attr);
166c9c2a427SAthira Rajeev CPU_ZERO_S(size, cpuset);
167c9c2a427SAthira Rajeev CPU_SET_S(perf_cpu_map__cpu(cpu, i % perf_cpu_map__nr(cpu)).cpu, size, cpuset);
168d65817b4SDavidlohr Bueso
169c9c2a427SAthira Rajeev if (pthread_attr_setaffinity_np(&thread_attr, size, cpuset)) {
170c9c2a427SAthira Rajeev CPU_FREE(cpuset);
171d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
172c9c2a427SAthira Rajeev }
173d65817b4SDavidlohr Bueso
174c9c2a427SAthira Rajeev if (pthread_create(&w[i], &thread_attr, blocked_workerfn, NULL)) {
175c9c2a427SAthira Rajeev CPU_FREE(cpuset);
176d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "pthread_create");
177d65817b4SDavidlohr Bueso }
178*8351498dSIan Rogers pthread_attr_destroy(&thread_attr);
179d65817b4SDavidlohr Bueso }
180c9c2a427SAthira Rajeev CPU_FREE(cpuset);
181c9c2a427SAthira Rajeev }
182d65817b4SDavidlohr Bueso
print_run(struct thread_data * waking_worker,unsigned int run_num)183d65817b4SDavidlohr Bueso static void print_run(struct thread_data *waking_worker, unsigned int run_num)
184d65817b4SDavidlohr Bueso {
185d65817b4SDavidlohr Bueso unsigned int i, wakeup_avg;
186d65817b4SDavidlohr Bueso double waketime_avg, waketime_stddev;
187d65817b4SDavidlohr Bueso struct stats __waketime_stats, __wakeup_stats;
188d65817b4SDavidlohr Bueso
189d65817b4SDavidlohr Bueso init_stats(&__wakeup_stats);
190d65817b4SDavidlohr Bueso init_stats(&__waketime_stats);
191d65817b4SDavidlohr Bueso
19209590463SDavidlohr Bueso for (i = 0; i < params.nwakes; i++) {
193d65817b4SDavidlohr Bueso update_stats(&__waketime_stats, waking_worker[i].runtime.tv_usec);
194d65817b4SDavidlohr Bueso update_stats(&__wakeup_stats, waking_worker[i].nwoken);
195d65817b4SDavidlohr Bueso }
196d65817b4SDavidlohr Bueso
197d65817b4SDavidlohr Bueso waketime_avg = avg_stats(&__waketime_stats);
198d65817b4SDavidlohr Bueso waketime_stddev = stddev_stats(&__waketime_stats);
199d65817b4SDavidlohr Bueso wakeup_avg = avg_stats(&__wakeup_stats);
200d65817b4SDavidlohr Bueso
201d65817b4SDavidlohr Bueso printf("[Run %d]: Avg per-thread latency (waking %d/%d threads) "
202d65817b4SDavidlohr Bueso "in %.4f ms (+-%.2f%%)\n", run_num + 1, wakeup_avg,
20309590463SDavidlohr Bueso params.nthreads, waketime_avg / USEC_PER_MSEC,
204d65817b4SDavidlohr Bueso rel_stddev_stats(waketime_stddev, waketime_avg));
205d65817b4SDavidlohr Bueso }
206d65817b4SDavidlohr Bueso
print_summary(void)207d65817b4SDavidlohr Bueso static void print_summary(void)
208d65817b4SDavidlohr Bueso {
209d65817b4SDavidlohr Bueso unsigned int wakeup_avg;
210d65817b4SDavidlohr Bueso double waketime_avg, waketime_stddev;
211d65817b4SDavidlohr Bueso
212d65817b4SDavidlohr Bueso waketime_avg = avg_stats(&waketime_stats);
213d65817b4SDavidlohr Bueso waketime_stddev = stddev_stats(&waketime_stats);
214d65817b4SDavidlohr Bueso wakeup_avg = avg_stats(&wakeup_stats);
215d65817b4SDavidlohr Bueso
216d65817b4SDavidlohr Bueso printf("Avg per-thread latency (waking %d/%d threads) in %.4f ms (+-%.2f%%)\n",
217d65817b4SDavidlohr Bueso wakeup_avg,
21809590463SDavidlohr Bueso params.nthreads,
219565e6911SArnaldo Carvalho de Melo waketime_avg / USEC_PER_MSEC,
220d65817b4SDavidlohr Bueso rel_stddev_stats(waketime_stddev, waketime_avg));
221d65817b4SDavidlohr Bueso }
222d65817b4SDavidlohr Bueso
223d65817b4SDavidlohr Bueso
do_run_stats(struct thread_data * waking_worker)224d65817b4SDavidlohr Bueso static void do_run_stats(struct thread_data *waking_worker)
225d65817b4SDavidlohr Bueso {
226d65817b4SDavidlohr Bueso unsigned int i;
227d65817b4SDavidlohr Bueso
22809590463SDavidlohr Bueso for (i = 0; i < params.nwakes; i++) {
229d65817b4SDavidlohr Bueso update_stats(&waketime_stats, waking_worker[i].runtime.tv_usec);
230d65817b4SDavidlohr Bueso update_stats(&wakeup_stats, waking_worker[i].nwoken);
231d65817b4SDavidlohr Bueso }
232d65817b4SDavidlohr Bueso
233d65817b4SDavidlohr Bueso }
234d65817b4SDavidlohr Bueso
toggle_done(int sig __maybe_unused,siginfo_t * info __maybe_unused,void * uc __maybe_unused)235d65817b4SDavidlohr Bueso static void toggle_done(int sig __maybe_unused,
236d65817b4SDavidlohr Bueso siginfo_t *info __maybe_unused,
237d65817b4SDavidlohr Bueso void *uc __maybe_unused)
238d65817b4SDavidlohr Bueso {
239d65817b4SDavidlohr Bueso done = true;
240d65817b4SDavidlohr Bueso }
241d65817b4SDavidlohr Bueso
bench_futex_wake_parallel(int argc,const char ** argv)242b0ad8ea6SArnaldo Carvalho de Melo int bench_futex_wake_parallel(int argc, const char **argv)
243d65817b4SDavidlohr Bueso {
244d65817b4SDavidlohr Bueso int ret = 0;
245d65817b4SDavidlohr Bueso unsigned int i, j;
246d65817b4SDavidlohr Bueso struct sigaction act;
247d65817b4SDavidlohr Bueso struct thread_data *waking_worker;
248f854839bSJiri Olsa struct perf_cpu_map *cpu;
249d65817b4SDavidlohr Bueso
250d65817b4SDavidlohr Bueso argc = parse_options(argc, argv, options,
251d65817b4SDavidlohr Bueso bench_futex_wake_parallel_usage, 0);
252d65817b4SDavidlohr Bueso if (argc) {
253d65817b4SDavidlohr Bueso usage_with_options(bench_futex_wake_parallel_usage, options);
254d65817b4SDavidlohr Bueso exit(EXIT_FAILURE);
255d65817b4SDavidlohr Bueso }
256d65817b4SDavidlohr Bueso
2577b919a53STommi Rantala memset(&act, 0, sizeof(act));
258d65817b4SDavidlohr Bueso sigfillset(&act.sa_mask);
259d65817b4SDavidlohr Bueso act.sa_sigaction = toggle_done;
260d65817b4SDavidlohr Bueso sigaction(SIGINT, &act, NULL);
261d65817b4SDavidlohr Bueso
2629f9a3ffeSDavidlohr Bueso if (params.mlockall) {
2639f9a3ffeSDavidlohr Bueso if (mlockall(MCL_CURRENT | MCL_FUTURE))
2649f9a3ffeSDavidlohr Bueso err(EXIT_FAILURE, "mlockall");
2659f9a3ffeSDavidlohr Bueso }
2669f9a3ffeSDavidlohr Bueso
2679c3516d1SJiri Olsa cpu = perf_cpu_map__new(NULL);
2683b2323c2SDavidlohr Bueso if (!cpu)
2693b2323c2SDavidlohr Bueso err(EXIT_FAILURE, "calloc");
2703b2323c2SDavidlohr Bueso
27109590463SDavidlohr Bueso if (!params.nthreads)
27244028699SIan Rogers params.nthreads = perf_cpu_map__nr(cpu);
273d65817b4SDavidlohr Bueso
274d65817b4SDavidlohr Bueso /* some sanity checks */
27509590463SDavidlohr Bueso if (params.nwakes > params.nthreads ||
27609590463SDavidlohr Bueso !params.nwakes)
27709590463SDavidlohr Bueso params.nwakes = params.nthreads;
278d65817b4SDavidlohr Bueso
27909590463SDavidlohr Bueso if (params.nthreads % params.nwakes)
280d65817b4SDavidlohr Bueso errx(EXIT_FAILURE, "Must be perfectly divisible");
281d65817b4SDavidlohr Bueso /*
282d65817b4SDavidlohr Bueso * Each thread will wakeup nwakes tasks in
283d65817b4SDavidlohr Bueso * a single futex_wait call.
284d65817b4SDavidlohr Bueso */
28509590463SDavidlohr Bueso nwakes = params.nthreads/params.nwakes;
286d65817b4SDavidlohr Bueso
28709590463SDavidlohr Bueso blocked_worker = calloc(params.nthreads, sizeof(*blocked_worker));
288d65817b4SDavidlohr Bueso if (!blocked_worker)
289d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "calloc");
290d65817b4SDavidlohr Bueso
29109590463SDavidlohr Bueso if (!params.fshared)
292d65817b4SDavidlohr Bueso futex_flag = FUTEX_PRIVATE_FLAG;
293d65817b4SDavidlohr Bueso
294d65817b4SDavidlohr Bueso printf("Run summary [PID %d]: blocking on %d threads (at [%s] "
295d65817b4SDavidlohr Bueso "futex %p), %d threads waking up %d at a time.\n\n",
29609590463SDavidlohr Bueso getpid(), params.nthreads, params.fshared ? "shared":"private",
29709590463SDavidlohr Bueso &futex, params.nwakes, nwakes);
298d65817b4SDavidlohr Bueso
299d65817b4SDavidlohr Bueso init_stats(&wakeup_stats);
300d65817b4SDavidlohr Bueso init_stats(&waketime_stats);
301d65817b4SDavidlohr Bueso
302a64d3af5SIan Rogers mutex_init(&thread_lock);
303a64d3af5SIan Rogers cond_init(&thread_parent);
304a64d3af5SIan Rogers cond_init(&thread_worker);
305d65817b4SDavidlohr Bueso
306d65817b4SDavidlohr Bueso for (j = 0; j < bench_repeat && !done; j++) {
30709590463SDavidlohr Bueso waking_worker = calloc(params.nwakes, sizeof(*waking_worker));
308d65817b4SDavidlohr Bueso if (!waking_worker)
309d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "calloc");
310d65817b4SDavidlohr Bueso
311d65817b4SDavidlohr Bueso /* create, launch & block all threads */
312*8351498dSIan Rogers block_threads(blocked_worker, cpu);
313d65817b4SDavidlohr Bueso
314d65817b4SDavidlohr Bueso /* make sure all threads are already blocked */
315a64d3af5SIan Rogers mutex_lock(&thread_lock);
316d65817b4SDavidlohr Bueso while (threads_starting)
317a64d3af5SIan Rogers cond_wait(&thread_parent, &thread_lock);
318a64d3af5SIan Rogers cond_broadcast(&thread_worker);
319a64d3af5SIan Rogers mutex_unlock(&thread_lock);
320d65817b4SDavidlohr Bueso
321d65817b4SDavidlohr Bueso usleep(100000);
322d65817b4SDavidlohr Bueso
323d65817b4SDavidlohr Bueso /* Ok, all threads are patiently blocked, start waking folks up */
324*8351498dSIan Rogers wakeup_threads(waking_worker);
325d65817b4SDavidlohr Bueso
32609590463SDavidlohr Bueso for (i = 0; i < params.nthreads; i++) {
327d65817b4SDavidlohr Bueso ret = pthread_join(blocked_worker[i], NULL);
328d65817b4SDavidlohr Bueso if (ret)
329d65817b4SDavidlohr Bueso err(EXIT_FAILURE, "pthread_join");
330d65817b4SDavidlohr Bueso }
331d65817b4SDavidlohr Bueso
332d65817b4SDavidlohr Bueso do_run_stats(waking_worker);
33309590463SDavidlohr Bueso if (!params.silent)
334d65817b4SDavidlohr Bueso print_run(waking_worker, j);
335d65817b4SDavidlohr Bueso
336d65817b4SDavidlohr Bueso free(waking_worker);
337d65817b4SDavidlohr Bueso }
338d65817b4SDavidlohr Bueso
339d65817b4SDavidlohr Bueso /* cleanup & report results */
340a64d3af5SIan Rogers cond_destroy(&thread_parent);
341a64d3af5SIan Rogers cond_destroy(&thread_worker);
342a64d3af5SIan Rogers mutex_destroy(&thread_lock);
343d65817b4SDavidlohr Bueso
344d65817b4SDavidlohr Bueso print_summary();
345d65817b4SDavidlohr Bueso
346d65817b4SDavidlohr Bueso free(blocked_worker);
34788e48238SSohaib Mohamed perf_cpu_map__put(cpu);
348d65817b4SDavidlohr Bueso return ret;
349d65817b4SDavidlohr Bueso }
3508085e5abSJames Yang #endif /* HAVE_PTHREAD_BARRIER */
351