Linux Audio

Check our new training course

Loading...
v3.15
 
  1/*
  2 * Copyright (C) 2013  Davidlohr Bueso <davidlohr@hp.com>
  3 *
  4 * futex-hash: Stress the hell out of the Linux kernel futex uaddr hashing.
  5 *
  6 * This program is particularly useful for measuring the kernel's futex hash
  7 * table/function implementation. In order for it to make sense, use with as
  8 * many threads and futexes as possible.
  9 */
 10
 11#include "../perf.h"
 12#include "../util/util.h"
 
 
 
 
 
 
 
 
 
 13#include "../util/stat.h"
 14#include "../util/parse-options.h"
 15#include "../util/header.h"
 16#include "bench.h"
 17#include "futex.h"
 
 18
 19#include <err.h>
 20#include <stdlib.h>
 21#include <sys/time.h>
 22#include <pthread.h>
 23
 24static unsigned int nthreads = 0;
 25static unsigned int nsecs    = 10;
 26/* amount of futexes per thread */
 27static unsigned int nfutexes = 1024;
 28static bool fshared = false, done = false, silent = false;
 
 29
 30struct timeval start, end, runtime;
 31static pthread_mutex_t thread_lock;
 32static unsigned int threads_starting;
 33static struct stats throughput_stats;
 34static pthread_cond_t thread_parent, thread_worker;
 35
 36struct worker {
 37	int tid;
 38	u_int32_t *futex;
 39	pthread_t thread;
 40	unsigned long ops;
 41};
 42
 43static const struct option options[] = {
 44	OPT_UINTEGER('t', "threads", &nthreads, "Specify amount of threads"),
 45	OPT_UINTEGER('r', "runtime", &nsecs,    "Specify runtime (in seconds)"),
 46	OPT_UINTEGER('f', "futexes", &nfutexes, "Specify amount of futexes per threads"),
 47	OPT_BOOLEAN( 's', "silent",  &silent,   "Silent mode: do not display data/details"),
 48	OPT_BOOLEAN( 'S', "shared",  &fshared,  "Use shared futexes instead of private ones"),
 49	OPT_END()
 50};
 51
 52static const char * const bench_futex_hash_usage[] = {
 53	"perf bench futex hash <options>",
 54	NULL
 55};
 56
 57static void *workerfn(void *arg)
 58{
 59	int ret;
 60	unsigned int i;
 61	struct worker *w = (struct worker *) arg;
 
 
 62
 63	pthread_mutex_lock(&thread_lock);
 64	threads_starting--;
 65	if (!threads_starting)
 66		pthread_cond_signal(&thread_parent);
 67	pthread_cond_wait(&thread_worker, &thread_lock);
 68	pthread_mutex_unlock(&thread_lock);
 69
 70	do {
 71		for (i = 0; i < nfutexes; i++, w->ops++) {
 72			/*
 73			 * We want the futex calls to fail in order to stress
 74			 * the hashing of uaddr and not measure other steps,
 75			 * such as internal waitqueue handling, thus enlarging
 76			 * the critical region protected by hb->lock.
 77			 */
 78			ret = futex_wait(&w->futex[i], 1234, NULL,
 79					 fshared ? 0 : FUTEX_PRIVATE_FLAG);
 80			if (!silent &&
 81			    (!ret || errno != EAGAIN || errno != EWOULDBLOCK))
 82				warn("Non-expected futex return call");
 83		}
 84	}  while (!done);
 85
 
 86	return NULL;
 87}
 88
 89static void toggle_done(int sig __maybe_unused,
 90			siginfo_t *info __maybe_unused,
 91			void *uc __maybe_unused)
 92{
 93	/* inform all threads that we're done for the day */
 94	done = true;
 95	gettimeofday(&end, NULL);
 96	timersub(&end, &start, &runtime);
 97}
 98
 99static void print_summary(void)
100{
101	unsigned long avg = avg_stats(&throughput_stats);
102	double stddev = stddev_stats(&throughput_stats);
103
104	printf("%sAveraged %ld operations/sec (+- %.2f%%), total secs = %d\n",
105	       !silent ? "\n" : "", avg, rel_stddev_stats(stddev, avg),
106	       (int) runtime.tv_sec);
107}
108
109int bench_futex_hash(int argc, const char **argv,
110		     const char *prefix __maybe_unused)
111{
112	int ret = 0;
113	cpu_set_t cpu;
114	struct sigaction act;
115	unsigned int i, ncpus;
116	pthread_attr_t thread_attr;
117	struct worker *worker = NULL;
 
118
119	argc = parse_options(argc, argv, options, bench_futex_hash_usage, 0);
120	if (argc) {
121		usage_with_options(bench_futex_hash_usage, options);
122		exit(EXIT_FAILURE);
123	}
124
125	ncpus = sysconf(_SC_NPROCESSORS_ONLN);
 
 
126
127	sigfillset(&act.sa_mask);
128	act.sa_sigaction = toggle_done;
129	sigaction(SIGINT, &act, NULL);
130
131	if (!nthreads) /* default to the number of CPUs */
132		nthreads = ncpus;
133
134	worker = calloc(nthreads, sizeof(*worker));
135	if (!worker)
136		goto errmem;
137
 
 
 
138	printf("Run summary [PID %d]: %d threads, each operating on %d [%s] futexes for %d secs.\n\n",
139	       getpid(), nthreads, nfutexes, fshared ? "shared":"private", nsecs);
140
141	init_stats(&throughput_stats);
142	pthread_mutex_init(&thread_lock, NULL);
143	pthread_cond_init(&thread_parent, NULL);
144	pthread_cond_init(&thread_worker, NULL);
145
146	threads_starting = nthreads;
147	pthread_attr_init(&thread_attr);
148	gettimeofday(&start, NULL);
149	for (i = 0; i < nthreads; i++) {
150		worker[i].tid = i;
151		worker[i].futex = calloc(nfutexes, sizeof(*worker[i].futex));
152		if (!worker[i].futex)
153			goto errmem;
154
155		CPU_ZERO(&cpu);
156		CPU_SET(i % ncpus, &cpu);
157
158		ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cpu_set_t), &cpu);
159		if (ret)
160			err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
161
162		ret = pthread_create(&worker[i].thread, &thread_attr, workerfn,
163				     (void *)(struct worker *) &worker[i]);
164		if (ret)
165			err(EXIT_FAILURE, "pthread_create");
166
167	}
168	pthread_attr_destroy(&thread_attr);
169
170	pthread_mutex_lock(&thread_lock);
171	while (threads_starting)
172		pthread_cond_wait(&thread_parent, &thread_lock);
173	pthread_cond_broadcast(&thread_worker);
174	pthread_mutex_unlock(&thread_lock);
175
176	sleep(nsecs);
177	toggle_done(0, NULL, NULL);
178
179	for (i = 0; i < nthreads; i++) {
180		ret = pthread_join(worker[i].thread, NULL);
181		if (ret)
182			err(EXIT_FAILURE, "pthread_join");
183	}
184
185	/* cleanup & report results */
186	pthread_cond_destroy(&thread_parent);
187	pthread_cond_destroy(&thread_worker);
188	pthread_mutex_destroy(&thread_lock);
189
190	for (i = 0; i < nthreads; i++) {
191		unsigned long t = worker[i].ops/runtime.tv_sec;
192		update_stats(&throughput_stats, t);
193		if (!silent) {
194			if (nfutexes == 1)
195				printf("[thread %2d] futex: %p [ %ld ops/sec ]\n",
196				       worker[i].tid, &worker[i].futex[0], t);
197			else
198				printf("[thread %2d] futexes: %p ... %p [ %ld ops/sec ]\n",
199				       worker[i].tid, &worker[i].futex[0],
200				       &worker[i].futex[nfutexes-1], t);
201		}
202
203		free(worker[i].futex);
204	}
205
206	print_summary();
207
208	free(worker);
 
209	return ret;
210errmem:
211	err(EXIT_FAILURE, "calloc");
212}
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2013  Davidlohr Bueso <davidlohr@hp.com>
  4 *
  5 * futex-hash: Stress the hell out of the Linux kernel futex uaddr hashing.
  6 *
  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.
 10 */
 11
 12/* For the CLR_() macros */
 13#include <string.h>
 14#include <pthread.h>
 15
 16#include <errno.h>
 17#include <signal.h>
 18#include <stdlib.h>
 19#include <linux/compiler.h>
 20#include <linux/kernel.h>
 21#include <sys/time.h>
 22
 23#include "../util/stat.h"
 24#include <subcmd/parse-options.h>
 
 25#include "bench.h"
 26#include "futex.h"
 27#include "cpumap.h"
 28
 29#include <err.h>
 
 
 
 30
 31static unsigned int nthreads = 0;
 32static unsigned int nsecs    = 10;
 33/* amount of futexes per thread */
 34static unsigned int nfutexes = 1024;
 35static bool fshared = false, done = false, silent = false;
 36static int futex_flag = 0;
 37
 38struct timeval start, end, runtime;
 39static pthread_mutex_t thread_lock;
 40static unsigned int threads_starting;
 41static struct stats throughput_stats;
 42static pthread_cond_t thread_parent, thread_worker;
 43
 44struct worker {
 45	int tid;
 46	u_int32_t *futex;
 47	pthread_t thread;
 48	unsigned long ops;
 49};
 50
 51static const struct option options[] = {
 52	OPT_UINTEGER('t', "threads", &nthreads, "Specify amount of threads"),
 53	OPT_UINTEGER('r', "runtime", &nsecs,    "Specify runtime (in seconds)"),
 54	OPT_UINTEGER('f', "futexes", &nfutexes, "Specify amount of futexes per threads"),
 55	OPT_BOOLEAN( 's', "silent",  &silent,   "Silent mode: do not display data/details"),
 56	OPT_BOOLEAN( 'S', "shared",  &fshared,  "Use shared futexes instead of private ones"),
 57	OPT_END()
 58};
 59
 60static const char * const bench_futex_hash_usage[] = {
 61	"perf bench futex hash <options>",
 62	NULL
 63};
 64
 65static void *workerfn(void *arg)
 66{
 67	int ret;
 
 68	struct worker *w = (struct worker *) arg;
 69	unsigned int i;
 70	unsigned long ops = w->ops; /* avoid cacheline bouncing */
 71
 72	pthread_mutex_lock(&thread_lock);
 73	threads_starting--;
 74	if (!threads_starting)
 75		pthread_cond_signal(&thread_parent);
 76	pthread_cond_wait(&thread_worker, &thread_lock);
 77	pthread_mutex_unlock(&thread_lock);
 78
 79	do {
 80		for (i = 0; i < nfutexes; i++, ops++) {
 81			/*
 82			 * We want the futex calls to fail in order to stress
 83			 * the hashing of uaddr and not measure other steps,
 84			 * such as internal waitqueue handling, thus enlarging
 85			 * the critical region protected by hb->lock.
 86			 */
 87			ret = futex_wait(&w->futex[i], 1234, NULL, futex_flag);
 
 88			if (!silent &&
 89			    (!ret || errno != EAGAIN || errno != EWOULDBLOCK))
 90				warn("Non-expected futex return call");
 91		}
 92	}  while (!done);
 93
 94	w->ops = ops;
 95	return NULL;
 96}
 97
 98static void toggle_done(int sig __maybe_unused,
 99			siginfo_t *info __maybe_unused,
100			void *uc __maybe_unused)
101{
102	/* inform all threads that we're done for the day */
103	done = true;
104	gettimeofday(&end, NULL);
105	timersub(&end, &start, &runtime);
106}
107
108static void print_summary(void)
109{
110	unsigned long avg = avg_stats(&throughput_stats);
111	double stddev = stddev_stats(&throughput_stats);
112
113	printf("%sAveraged %ld operations/sec (+- %.2f%%), total secs = %d\n",
114	       !silent ? "\n" : "", avg, rel_stddev_stats(stddev, avg),
115	       (int) runtime.tv_sec);
116}
117
118int bench_futex_hash(int argc, const char **argv)
 
119{
120	int ret = 0;
121	cpu_set_t cpuset;
122	struct sigaction act;
123	unsigned int i;
124	pthread_attr_t thread_attr;
125	struct worker *worker = NULL;
126	struct cpu_map *cpu;
127
128	argc = parse_options(argc, argv, options, bench_futex_hash_usage, 0);
129	if (argc) {
130		usage_with_options(bench_futex_hash_usage, options);
131		exit(EXIT_FAILURE);
132	}
133
134	cpu = cpu_map__new(NULL);
135	if (!cpu)
136		goto errmem;
137
138	sigfillset(&act.sa_mask);
139	act.sa_sigaction = toggle_done;
140	sigaction(SIGINT, &act, NULL);
141
142	if (!nthreads) /* default to the number of CPUs */
143		nthreads = cpu->nr;
144
145	worker = calloc(nthreads, sizeof(*worker));
146	if (!worker)
147		goto errmem;
148
149	if (!fshared)
150		futex_flag = FUTEX_PRIVATE_FLAG;
151
152	printf("Run summary [PID %d]: %d threads, each operating on %d [%s] futexes for %d secs.\n\n",
153	       getpid(), nthreads, nfutexes, fshared ? "shared":"private", nsecs);
154
155	init_stats(&throughput_stats);
156	pthread_mutex_init(&thread_lock, NULL);
157	pthread_cond_init(&thread_parent, NULL);
158	pthread_cond_init(&thread_worker, NULL);
159
160	threads_starting = nthreads;
161	pthread_attr_init(&thread_attr);
162	gettimeofday(&start, NULL);
163	for (i = 0; i < nthreads; i++) {
164		worker[i].tid = i;
165		worker[i].futex = calloc(nfutexes, sizeof(*worker[i].futex));
166		if (!worker[i].futex)
167			goto errmem;
168
169		CPU_ZERO(&cpuset);
170		CPU_SET(cpu->map[i % cpu->nr], &cpuset);
171
172		ret = pthread_attr_setaffinity_np(&thread_attr, sizeof(cpu_set_t), &cpuset);
173		if (ret)
174			err(EXIT_FAILURE, "pthread_attr_setaffinity_np");
175
176		ret = pthread_create(&worker[i].thread, &thread_attr, workerfn,
177				     (void *)(struct worker *) &worker[i]);
178		if (ret)
179			err(EXIT_FAILURE, "pthread_create");
180
181	}
182	pthread_attr_destroy(&thread_attr);
183
184	pthread_mutex_lock(&thread_lock);
185	while (threads_starting)
186		pthread_cond_wait(&thread_parent, &thread_lock);
187	pthread_cond_broadcast(&thread_worker);
188	pthread_mutex_unlock(&thread_lock);
189
190	sleep(nsecs);
191	toggle_done(0, NULL, NULL);
192
193	for (i = 0; i < nthreads; i++) {
194		ret = pthread_join(worker[i].thread, NULL);
195		if (ret)
196			err(EXIT_FAILURE, "pthread_join");
197	}
198
199	/* cleanup & report results */
200	pthread_cond_destroy(&thread_parent);
201	pthread_cond_destroy(&thread_worker);
202	pthread_mutex_destroy(&thread_lock);
203
204	for (i = 0; i < nthreads; i++) {
205		unsigned long t = worker[i].ops/runtime.tv_sec;
206		update_stats(&throughput_stats, t);
207		if (!silent) {
208			if (nfutexes == 1)
209				printf("[thread %2d] futex: %p [ %ld ops/sec ]\n",
210				       worker[i].tid, &worker[i].futex[0], t);
211			else
212				printf("[thread %2d] futexes: %p ... %p [ %ld ops/sec ]\n",
213				       worker[i].tid, &worker[i].futex[0],
214				       &worker[i].futex[nfutexes-1], t);
215		}
216
217		free(worker[i].futex);
218	}
219
220	print_summary();
221
222	free(worker);
223	free(cpu);
224	return ret;
225errmem:
226	err(EXIT_FAILURE, "calloc");
227}