Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2015 Davidlohr Bueso.
  4 *
  5 * Block a bunch of threads and let parallel waker threads wakeup an
  6 * equal amount of them. The program output reflects the avg latency
  7 * for each individual thread to service its share of work. Ultimately
  8 * it can be used to measure futex_wake() changes.
  9 */
 10#include "bench.h"
 11#include <linux/compiler.h>
 12#include "../util/debug.h"
 
 13
 14#ifndef HAVE_PTHREAD_BARRIER
 15int bench_futex_wake_parallel(int argc __maybe_unused, const char **argv __maybe_unused)
 16{
 17	pr_err("%s: pthread_barrier_t unavailable, disabling this test...\n", __func__);
 18	return 0;
 19}
 20#else /* HAVE_PTHREAD_BARRIER */
 21/* For the CLR_() macros */
 22#include <string.h>
 23#include <pthread.h>
 24
 25#include <signal.h>
 26#include "../util/stat.h"
 27#include <subcmd/parse-options.h>
 28#include <linux/kernel.h>
 29#include <linux/time64.h>
 30#include <errno.h>
 31#include "futex.h"
 32#include <internal/cpumap.h>
 33#include <perf/cpumap.h>
 34
 35#include <err.h>
 36#include <stdlib.h>
 37#include <sys/time.h>
 
 38
 39struct thread_data {
 40	pthread_t worker;
 41	unsigned int nwoken;
 42	struct timeval runtime;
 43};
 44
 45static unsigned int nwakes = 1;
 46
 47/* all threads will block on the same futex -- hash bucket chaos ;) */
 48static u_int32_t futex = 0;
 49
 50static pthread_t *blocked_worker;
 51static bool done = false, silent = false, fshared = false;
 52static unsigned int nblocked_threads = 0, nwaking_threads = 0;
 53static pthread_mutex_t thread_lock;
 54static pthread_cond_t thread_parent, thread_worker;
 55static pthread_barrier_t barrier;
 56static struct stats waketime_stats, wakeup_stats;
 57static unsigned int threads_starting;
 58static int futex_flag = 0;
 59
 
 
 60static const struct option options[] = {
 61	OPT_UINTEGER('t', "threads", &nblocked_threads, "Specify amount of threads"),
 62	OPT_UINTEGER('w', "nwakers", &nwaking_threads, "Specify amount of waking threads"),
 63	OPT_BOOLEAN( 's', "silent",  &silent,   "Silent mode: do not display data/details"),
 64	OPT_BOOLEAN( 'S', "shared",  &fshared,  "Use shared futexes instead of private ones"),
 
 
 65	OPT_END()
 66};
 67
 68static const char * const bench_futex_wake_parallel_usage[] = {
 69	"perf bench futex wake-parallel <options>",
 70	NULL
 71};
 72
 73static void *waking_workerfn(void *arg)
 74{
 75	struct thread_data *waker = (struct thread_data *) arg;
 76	struct timeval start, end;
 77
 78	pthread_barrier_wait(&barrier);
 79
 80	gettimeofday(&start, NULL);
 81
 82	waker->nwoken = futex_wake(&futex, nwakes, futex_flag);
 83	if (waker->nwoken != nwakes)
 84		warnx("couldn't wakeup all tasks (%d/%d)",
 85		      waker->nwoken, nwakes);
 86
 87	gettimeofday(&end, NULL);
 88	timersub(&end, &start, &waker->runtime);
 89
 90	pthread_exit(NULL);
 91	return NULL;
 92}
 93
 94static void wakeup_threads(struct thread_data *td, pthread_attr_t thread_attr)
 95{
 96	unsigned int i;
 97
 98	pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE);
 99
100	pthread_barrier_init(&barrier, NULL, nwaking_threads + 1);
101
102	/* create and block all threads */
103	for (i = 0; i < nwaking_threads; i++) {
104		/*
105		 * Thread creation order will impact per-thread latency
106		 * as it will affect the order to acquire the hb spinlock.
107		 * For now let the scheduler decide.
108		 */
109		if (pthread_create(&td[i].worker, &thread_attr,
110				   waking_workerfn, (void *)&td[i]))
111			err(EXIT_FAILURE, "pthread_create");
112	}
113
114	pthread_barrier_wait(&barrier);
115
116	for (i = 0; i < nwaking_threads; i++)
117		if (pthread_join(td[i].worker, NULL))
118			err(EXIT_FAILURE, "pthread_join");
119
120	pthread_barrier_destroy(&barrier);
121}
122
123static void *blocked_workerfn(void *arg __maybe_unused)
124{
125	pthread_mutex_lock(&thread_lock);
126	threads_starting--;
127	if (!threads_starting)
128		pthread_cond_signal(&thread_parent);
129	pthread_cond_wait(&thread_worker, &thread_lock);
130	pthread_mutex_unlock(&thread_lock);
131
132	while (1) { /* handle spurious wakeups */
133		if (futex_wait(&futex, 0, NULL, futex_flag) != EINTR)
134			break;
135	}
136
137	pthread_exit(NULL);
138	return NULL;
139}
140
141static void block_threads(pthread_t *w, pthread_attr_t thread_attr,
142			  struct perf_cpu_map *cpu)
143{
144	cpu_set_t cpuset;
145	unsigned int i;
 
 
146
147	threads_starting = nblocked_threads;
 
 
 
 
148
149	/* create and block all threads */
150	for (i = 0; i < nblocked_threads; i++) {
151		CPU_ZERO(&cpuset);
152		CPU_SET(cpu->map[i % cpu->nr], &cpuset);
153
154		if (pthread_attr_setaffinity_np(&thread_attr, sizeof(cpu_set_t), &cpuset))
 
155			err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
 
156
157		if (pthread_create(&w[i], &thread_attr, blocked_workerfn, NULL))
 
158			err(EXIT_FAILURE, "pthread_create");
 
159	}
 
160}
161
162static void print_run(struct thread_data *waking_worker, unsigned int run_num)
163{
164	unsigned int i, wakeup_avg;
165	double waketime_avg, waketime_stddev;
166	struct stats __waketime_stats, __wakeup_stats;
167
168	init_stats(&__wakeup_stats);
169	init_stats(&__waketime_stats);
170
171	for (i = 0; i < nwaking_threads; i++) {
172		update_stats(&__waketime_stats, waking_worker[i].runtime.tv_usec);
173		update_stats(&__wakeup_stats, waking_worker[i].nwoken);
174	}
175
176	waketime_avg = avg_stats(&__waketime_stats);
177	waketime_stddev = stddev_stats(&__waketime_stats);
178	wakeup_avg = avg_stats(&__wakeup_stats);
179
180	printf("[Run %d]: Avg per-thread latency (waking %d/%d threads) "
181	       "in %.4f ms (+-%.2f%%)\n", run_num + 1, wakeup_avg,
182	       nblocked_threads, waketime_avg / USEC_PER_MSEC,
183	       rel_stddev_stats(waketime_stddev, waketime_avg));
184}
185
186static void print_summary(void)
187{
188	unsigned int wakeup_avg;
189	double waketime_avg, waketime_stddev;
190
191	waketime_avg = avg_stats(&waketime_stats);
192	waketime_stddev = stddev_stats(&waketime_stats);
193	wakeup_avg = avg_stats(&wakeup_stats);
194
195	printf("Avg per-thread latency (waking %d/%d threads) in %.4f ms (+-%.2f%%)\n",
196	       wakeup_avg,
197	       nblocked_threads,
198	       waketime_avg / USEC_PER_MSEC,
199	       rel_stddev_stats(waketime_stddev, waketime_avg));
200}
201
202
203static void do_run_stats(struct thread_data *waking_worker)
204{
205	unsigned int i;
206
207	for (i = 0; i < nwaking_threads; i++) {
208		update_stats(&waketime_stats, waking_worker[i].runtime.tv_usec);
209		update_stats(&wakeup_stats, waking_worker[i].nwoken);
210	}
211
212}
213
214static void toggle_done(int sig __maybe_unused,
215			siginfo_t *info __maybe_unused,
216			void *uc __maybe_unused)
217{
218	done = true;
219}
220
221int bench_futex_wake_parallel(int argc, const char **argv)
222{
223	int ret = 0;
224	unsigned int i, j;
225	struct sigaction act;
226	pthread_attr_t thread_attr;
227	struct thread_data *waking_worker;
228	struct perf_cpu_map *cpu;
229
230	argc = parse_options(argc, argv, options,
231			     bench_futex_wake_parallel_usage, 0);
232	if (argc) {
233		usage_with_options(bench_futex_wake_parallel_usage, options);
234		exit(EXIT_FAILURE);
235	}
236
 
237	sigfillset(&act.sa_mask);
238	act.sa_sigaction = toggle_done;
239	sigaction(SIGINT, &act, NULL);
240
 
 
 
 
 
241	cpu = perf_cpu_map__new(NULL);
242	if (!cpu)
243		err(EXIT_FAILURE, "calloc");
244
245	if (!nblocked_threads)
246		nblocked_threads = cpu->nr;
247
248	/* some sanity checks */
249	if (nwaking_threads > nblocked_threads || !nwaking_threads)
250		nwaking_threads = nblocked_threads;
 
251
252	if (nblocked_threads % nwaking_threads)
253		errx(EXIT_FAILURE, "Must be perfectly divisible");
254	/*
255	 * Each thread will wakeup nwakes tasks in
256	 * a single futex_wait call.
257	 */
258	nwakes = nblocked_threads/nwaking_threads;
259
260	blocked_worker = calloc(nblocked_threads, sizeof(*blocked_worker));
261	if (!blocked_worker)
262		err(EXIT_FAILURE, "calloc");
263
264	if (!fshared)
265		futex_flag = FUTEX_PRIVATE_FLAG;
266
267	printf("Run summary [PID %d]: blocking on %d threads (at [%s] "
268	       "futex %p), %d threads waking up %d at a time.\n\n",
269	       getpid(), nblocked_threads, fshared ? "shared":"private",
270	       &futex, nwaking_threads, nwakes);
271
272	init_stats(&wakeup_stats);
273	init_stats(&waketime_stats);
274
275	pthread_attr_init(&thread_attr);
276	pthread_mutex_init(&thread_lock, NULL);
277	pthread_cond_init(&thread_parent, NULL);
278	pthread_cond_init(&thread_worker, NULL);
279
280	for (j = 0; j < bench_repeat && !done; j++) {
281		waking_worker = calloc(nwaking_threads, sizeof(*waking_worker));
282		if (!waking_worker)
283			err(EXIT_FAILURE, "calloc");
284
285		/* create, launch & block all threads */
286		block_threads(blocked_worker, thread_attr, cpu);
287
288		/* make sure all threads are already blocked */
289		pthread_mutex_lock(&thread_lock);
290		while (threads_starting)
291			pthread_cond_wait(&thread_parent, &thread_lock);
292		pthread_cond_broadcast(&thread_worker);
293		pthread_mutex_unlock(&thread_lock);
294
295		usleep(100000);
296
297		/* Ok, all threads are patiently blocked, start waking folks up */
298		wakeup_threads(waking_worker, thread_attr);
299
300		for (i = 0; i < nblocked_threads; i++) {
301			ret = pthread_join(blocked_worker[i], NULL);
302			if (ret)
303				err(EXIT_FAILURE, "pthread_join");
304		}
305
306		do_run_stats(waking_worker);
307		if (!silent)
308			print_run(waking_worker, j);
309
310		free(waking_worker);
311	}
312
313	/* cleanup & report results */
314	pthread_cond_destroy(&thread_parent);
315	pthread_cond_destroy(&thread_worker);
316	pthread_mutex_destroy(&thread_lock);
317	pthread_attr_destroy(&thread_attr);
318
319	print_summary();
320
321	free(blocked_worker);
 
322	return ret;
323}
324#endif /* HAVE_PTHREAD_BARRIER */
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2015 Davidlohr Bueso.
  4 *
  5 * Block a bunch of threads and let parallel waker threads wakeup an
  6 * equal amount of them. The program output reflects the avg latency
  7 * for each individual thread to service its share of work. Ultimately
  8 * it can be used to measure futex_wake() changes.
  9 */
 10#include "bench.h"
 11#include <linux/compiler.h>
 12#include "../util/debug.h"
 13#include "../util/mutex.h"
 14
 15#ifndef HAVE_PTHREAD_BARRIER
 16int bench_futex_wake_parallel(int argc __maybe_unused, const char **argv __maybe_unused)
 17{
 18	pr_err("%s: pthread_barrier_t unavailable, disabling this test...\n", __func__);
 19	return 0;
 20}
 21#else /* HAVE_PTHREAD_BARRIER */
 22/* For the CLR_() macros */
 23#include <string.h>
 24#include <pthread.h>
 25
 26#include <signal.h>
 27#include "../util/stat.h"
 28#include <subcmd/parse-options.h>
 29#include <linux/kernel.h>
 30#include <linux/time64.h>
 31#include <errno.h>
 32#include "futex.h"
 
 33#include <perf/cpumap.h>
 34
 35#include <err.h>
 36#include <stdlib.h>
 37#include <sys/time.h>
 38#include <sys/mman.h>
 39
 40struct thread_data {
 41	pthread_t worker;
 42	unsigned int nwoken;
 43	struct timeval runtime;
 44};
 45
 46static unsigned int nwakes = 1;
 47
 48/* all threads will block on the same futex -- hash bucket chaos ;) */
 49static u_int32_t futex = 0;
 50
 51static pthread_t *blocked_worker;
 52static bool done = false;
 53static struct mutex thread_lock;
 54static struct cond thread_parent, thread_worker;
 
 55static pthread_barrier_t barrier;
 56static struct stats waketime_stats, wakeup_stats;
 57static unsigned int threads_starting;
 58static int futex_flag = 0;
 59
 60static struct bench_futex_parameters params;
 61
 62static const struct option options[] = {
 63	OPT_UINTEGER('t', "threads", &params.nthreads, "Specify amount of threads"),
 64	OPT_UINTEGER('w', "nwakers", &params.nwakes, "Specify amount of waking threads"),
 65	OPT_BOOLEAN( 's', "silent",  &params.silent, "Silent mode: do not display data/details"),
 66	OPT_BOOLEAN( 'S', "shared",  &params.fshared, "Use shared futexes instead of private ones"),
 67	OPT_BOOLEAN( 'm', "mlockall", &params.mlockall, "Lock all current and future memory"),
 68
 69	OPT_END()
 70};
 71
 72static const char * const bench_futex_wake_parallel_usage[] = {
 73	"perf bench futex wake-parallel <options>",
 74	NULL
 75};
 76
 77static void *waking_workerfn(void *arg)
 78{
 79	struct thread_data *waker = (struct thread_data *) arg;
 80	struct timeval start, end;
 81
 82	pthread_barrier_wait(&barrier);
 83
 84	gettimeofday(&start, NULL);
 85
 86	waker->nwoken = futex_wake(&futex, nwakes, futex_flag);
 87	if (waker->nwoken != nwakes)
 88		warnx("couldn't wakeup all tasks (%d/%d)",
 89		      waker->nwoken, nwakes);
 90
 91	gettimeofday(&end, NULL);
 92	timersub(&end, &start, &waker->runtime);
 93
 94	pthread_exit(NULL);
 95	return NULL;
 96}
 97
 98static void wakeup_threads(struct thread_data *td, pthread_attr_t thread_attr)
 99{
100	unsigned int i;
101
102	pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_JOINABLE);
103
104	pthread_barrier_init(&barrier, NULL, params.nwakes + 1);
105
106	/* create and block all threads */
107	for (i = 0; i < params.nwakes; i++) {
108		/*
109		 * Thread creation order will impact per-thread latency
110		 * as it will affect the order to acquire the hb spinlock.
111		 * For now let the scheduler decide.
112		 */
113		if (pthread_create(&td[i].worker, &thread_attr,
114				   waking_workerfn, (void *)&td[i]))
115			err(EXIT_FAILURE, "pthread_create");
116	}
117
118	pthread_barrier_wait(&barrier);
119
120	for (i = 0; i < params.nwakes; i++)
121		if (pthread_join(td[i].worker, NULL))
122			err(EXIT_FAILURE, "pthread_join");
123
124	pthread_barrier_destroy(&barrier);
125}
126
127static void *blocked_workerfn(void *arg __maybe_unused)
128{
129	mutex_lock(&thread_lock);
130	threads_starting--;
131	if (!threads_starting)
132		cond_signal(&thread_parent);
133	cond_wait(&thread_worker, &thread_lock);
134	mutex_unlock(&thread_lock);
135
136	while (1) { /* handle spurious wakeups */
137		if (futex_wait(&futex, 0, NULL, futex_flag) != EINTR)
138			break;
139	}
140
141	pthread_exit(NULL);
142	return NULL;
143}
144
145static void block_threads(pthread_t *w, pthread_attr_t thread_attr,
146			  struct perf_cpu_map *cpu)
147{
148	cpu_set_t *cpuset;
149	unsigned int i;
150	int nrcpus = perf_cpu_map__nr(cpu);
151	size_t size;
152
153	threads_starting = params.nthreads;
154
155	cpuset = CPU_ALLOC(nrcpus);
156	BUG_ON(!cpuset);
157	size = CPU_ALLOC_SIZE(nrcpus);
158
159	/* create and block all threads */
160	for (i = 0; i < params.nthreads; i++) {
161		CPU_ZERO_S(size, cpuset);
162		CPU_SET_S(perf_cpu_map__cpu(cpu, i % perf_cpu_map__nr(cpu)).cpu, size, cpuset);
163
164		if (pthread_attr_setaffinity_np(&thread_attr, size, cpuset)) {
165			CPU_FREE(cpuset);
166			err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
167		}
168
169		if (pthread_create(&w[i], &thread_attr, blocked_workerfn, NULL)) {
170			CPU_FREE(cpuset);
171			err(EXIT_FAILURE, "pthread_create");
172		}
173	}
174	CPU_FREE(cpuset);
175}
176
177static void print_run(struct thread_data *waking_worker, unsigned int run_num)
178{
179	unsigned int i, wakeup_avg;
180	double waketime_avg, waketime_stddev;
181	struct stats __waketime_stats, __wakeup_stats;
182
183	init_stats(&__wakeup_stats);
184	init_stats(&__waketime_stats);
185
186	for (i = 0; i < params.nwakes; i++) {
187		update_stats(&__waketime_stats, waking_worker[i].runtime.tv_usec);
188		update_stats(&__wakeup_stats, waking_worker[i].nwoken);
189	}
190
191	waketime_avg = avg_stats(&__waketime_stats);
192	waketime_stddev = stddev_stats(&__waketime_stats);
193	wakeup_avg = avg_stats(&__wakeup_stats);
194
195	printf("[Run %d]: Avg per-thread latency (waking %d/%d threads) "
196	       "in %.4f ms (+-%.2f%%)\n", run_num + 1, wakeup_avg,
197	       params.nthreads, waketime_avg / USEC_PER_MSEC,
198	       rel_stddev_stats(waketime_stddev, waketime_avg));
199}
200
201static void print_summary(void)
202{
203	unsigned int wakeup_avg;
204	double waketime_avg, waketime_stddev;
205
206	waketime_avg = avg_stats(&waketime_stats);
207	waketime_stddev = stddev_stats(&waketime_stats);
208	wakeup_avg = avg_stats(&wakeup_stats);
209
210	printf("Avg per-thread latency (waking %d/%d threads) in %.4f ms (+-%.2f%%)\n",
211	       wakeup_avg,
212	       params.nthreads,
213	       waketime_avg / USEC_PER_MSEC,
214	       rel_stddev_stats(waketime_stddev, waketime_avg));
215}
216
217
218static void do_run_stats(struct thread_data *waking_worker)
219{
220	unsigned int i;
221
222	for (i = 0; i < params.nwakes; i++) {
223		update_stats(&waketime_stats, waking_worker[i].runtime.tv_usec);
224		update_stats(&wakeup_stats, waking_worker[i].nwoken);
225	}
226
227}
228
229static void toggle_done(int sig __maybe_unused,
230			siginfo_t *info __maybe_unused,
231			void *uc __maybe_unused)
232{
233	done = true;
234}
235
236int bench_futex_wake_parallel(int argc, const char **argv)
237{
238	int ret = 0;
239	unsigned int i, j;
240	struct sigaction act;
241	pthread_attr_t thread_attr;
242	struct thread_data *waking_worker;
243	struct perf_cpu_map *cpu;
244
245	argc = parse_options(argc, argv, options,
246			     bench_futex_wake_parallel_usage, 0);
247	if (argc) {
248		usage_with_options(bench_futex_wake_parallel_usage, options);
249		exit(EXIT_FAILURE);
250	}
251
252	memset(&act, 0, sizeof(act));
253	sigfillset(&act.sa_mask);
254	act.sa_sigaction = toggle_done;
255	sigaction(SIGINT, &act, NULL);
256
257	if (params.mlockall) {
258		if (mlockall(MCL_CURRENT | MCL_FUTURE))
259			err(EXIT_FAILURE, "mlockall");
260	}
261
262	cpu = perf_cpu_map__new(NULL);
263	if (!cpu)
264		err(EXIT_FAILURE, "calloc");
265
266	if (!params.nthreads)
267		params.nthreads = perf_cpu_map__nr(cpu);
268
269	/* some sanity checks */
270	if (params.nwakes > params.nthreads ||
271	    !params.nwakes)
272		params.nwakes = params.nthreads;
273
274	if (params.nthreads % params.nwakes)
275		errx(EXIT_FAILURE, "Must be perfectly divisible");
276	/*
277	 * Each thread will wakeup nwakes tasks in
278	 * a single futex_wait call.
279	 */
280	nwakes = params.nthreads/params.nwakes;
281
282	blocked_worker = calloc(params.nthreads, sizeof(*blocked_worker));
283	if (!blocked_worker)
284		err(EXIT_FAILURE, "calloc");
285
286	if (!params.fshared)
287		futex_flag = FUTEX_PRIVATE_FLAG;
288
289	printf("Run summary [PID %d]: blocking on %d threads (at [%s] "
290	       "futex %p), %d threads waking up %d at a time.\n\n",
291	       getpid(), params.nthreads, params.fshared ? "shared":"private",
292	       &futex, params.nwakes, nwakes);
293
294	init_stats(&wakeup_stats);
295	init_stats(&waketime_stats);
296
297	pthread_attr_init(&thread_attr);
298	mutex_init(&thread_lock);
299	cond_init(&thread_parent);
300	cond_init(&thread_worker);
301
302	for (j = 0; j < bench_repeat && !done; j++) {
303		waking_worker = calloc(params.nwakes, sizeof(*waking_worker));
304		if (!waking_worker)
305			err(EXIT_FAILURE, "calloc");
306
307		/* create, launch & block all threads */
308		block_threads(blocked_worker, thread_attr, cpu);
309
310		/* make sure all threads are already blocked */
311		mutex_lock(&thread_lock);
312		while (threads_starting)
313			cond_wait(&thread_parent, &thread_lock);
314		cond_broadcast(&thread_worker);
315		mutex_unlock(&thread_lock);
316
317		usleep(100000);
318
319		/* Ok, all threads are patiently blocked, start waking folks up */
320		wakeup_threads(waking_worker, thread_attr);
321
322		for (i = 0; i < params.nthreads; i++) {
323			ret = pthread_join(blocked_worker[i], NULL);
324			if (ret)
325				err(EXIT_FAILURE, "pthread_join");
326		}
327
328		do_run_stats(waking_worker);
329		if (!params.silent)
330			print_run(waking_worker, j);
331
332		free(waking_worker);
333	}
334
335	/* cleanup & report results */
336	cond_destroy(&thread_parent);
337	cond_destroy(&thread_worker);
338	mutex_destroy(&thread_lock);
339	pthread_attr_destroy(&thread_attr);
340
341	print_summary();
342
343	free(blocked_worker);
344	perf_cpu_map__put(cpu);
345	return ret;
346}
347#endif /* HAVE_PTHREAD_BARRIER */