xref: /linux/tools/perf/util/evlist.c (revision 38fe0e0156c037c060f81fe4e36549fae760322d)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
4  *
5  * Parts came from builtin-{top,stat,record}.c, see those files for further
6  * copyright notes.
7  */
8 #include <api/fs/fs.h>
9 #include <errno.h>
10 #include <inttypes.h>
11 #include <poll.h>
12 #include "cpumap.h"
13 #include "util/mmap.h"
14 #include "thread_map.h"
15 #include "target.h"
16 #include "evlist.h"
17 #include "evsel.h"
18 #include "debug.h"
19 #include "units.h"
20 #include "bpf_counter.h"
21 #include <internal/lib.h> // page_size
22 #include "affinity.h"
23 #include "../perf.h"
24 #include "asm/bug.h"
25 #include "bpf-event.h"
26 #include "util/string2.h"
27 #include "util/perf_api_probe.h"
28 #include "util/evsel_fprintf.h"
29 #include "util/evlist-hybrid.h"
30 #include <signal.h>
31 #include <unistd.h>
32 #include <sched.h>
33 #include <stdlib.h>
34 
35 #include "parse-events.h"
36 #include <subcmd/parse-options.h>
37 
38 #include <fcntl.h>
39 #include <sys/ioctl.h>
40 #include <sys/mman.h>
41 #include <sys/prctl.h>
42 
43 #include <linux/bitops.h>
44 #include <linux/hash.h>
45 #include <linux/log2.h>
46 #include <linux/err.h>
47 #include <linux/string.h>
48 #include <linux/zalloc.h>
49 #include <perf/evlist.h>
50 #include <perf/evsel.h>
51 #include <perf/cpumap.h>
52 #include <perf/mmap.h>
53 
54 #include <internal/xyarray.h>
55 
56 #ifdef LACKS_SIGQUEUE_PROTOTYPE
57 int sigqueue(pid_t pid, int sig, const union sigval value);
58 #endif
59 
60 #define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
61 #define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
62 
63 void evlist__init(struct evlist *evlist, struct perf_cpu_map *cpus,
64 		  struct perf_thread_map *threads)
65 {
66 	perf_evlist__init(&evlist->core);
67 	perf_evlist__set_maps(&evlist->core, cpus, threads);
68 	evlist->workload.pid = -1;
69 	evlist->bkw_mmap_state = BKW_MMAP_NOTREADY;
70 	evlist->ctl_fd.fd = -1;
71 	evlist->ctl_fd.ack = -1;
72 	evlist->ctl_fd.pos = -1;
73 }
74 
75 struct evlist *evlist__new(void)
76 {
77 	struct evlist *evlist = zalloc(sizeof(*evlist));
78 
79 	if (evlist != NULL)
80 		evlist__init(evlist, NULL, NULL);
81 
82 	return evlist;
83 }
84 
85 struct evlist *evlist__new_default(void)
86 {
87 	struct evlist *evlist = evlist__new();
88 
89 	if (evlist && evlist__add_default(evlist)) {
90 		evlist__delete(evlist);
91 		evlist = NULL;
92 	}
93 
94 	return evlist;
95 }
96 
97 struct evlist *evlist__new_dummy(void)
98 {
99 	struct evlist *evlist = evlist__new();
100 
101 	if (evlist && evlist__add_dummy(evlist)) {
102 		evlist__delete(evlist);
103 		evlist = NULL;
104 	}
105 
106 	return evlist;
107 }
108 
109 /**
110  * evlist__set_id_pos - set the positions of event ids.
111  * @evlist: selected event list
112  *
113  * Events with compatible sample types all have the same id_pos
114  * and is_pos.  For convenience, put a copy on evlist.
115  */
116 void evlist__set_id_pos(struct evlist *evlist)
117 {
118 	struct evsel *first = evlist__first(evlist);
119 
120 	evlist->id_pos = first->id_pos;
121 	evlist->is_pos = first->is_pos;
122 }
123 
124 static void evlist__update_id_pos(struct evlist *evlist)
125 {
126 	struct evsel *evsel;
127 
128 	evlist__for_each_entry(evlist, evsel)
129 		evsel__calc_id_pos(evsel);
130 
131 	evlist__set_id_pos(evlist);
132 }
133 
134 static void evlist__purge(struct evlist *evlist)
135 {
136 	struct evsel *pos, *n;
137 
138 	evlist__for_each_entry_safe(evlist, n, pos) {
139 		list_del_init(&pos->core.node);
140 		pos->evlist = NULL;
141 		evsel__delete(pos);
142 	}
143 
144 	evlist->core.nr_entries = 0;
145 }
146 
147 void evlist__exit(struct evlist *evlist)
148 {
149 	zfree(&evlist->mmap);
150 	zfree(&evlist->overwrite_mmap);
151 	perf_evlist__exit(&evlist->core);
152 }
153 
154 void evlist__delete(struct evlist *evlist)
155 {
156 	if (evlist == NULL)
157 		return;
158 
159 	evlist__munmap(evlist);
160 	evlist__close(evlist);
161 	evlist__purge(evlist);
162 	evlist__exit(evlist);
163 	free(evlist);
164 }
165 
166 void evlist__add(struct evlist *evlist, struct evsel *entry)
167 {
168 	perf_evlist__add(&evlist->core, &entry->core);
169 	entry->evlist = evlist;
170 	entry->tracking = !entry->core.idx;
171 
172 	if (evlist->core.nr_entries == 1)
173 		evlist__set_id_pos(evlist);
174 }
175 
176 void evlist__remove(struct evlist *evlist, struct evsel *evsel)
177 {
178 	evsel->evlist = NULL;
179 	perf_evlist__remove(&evlist->core, &evsel->core);
180 }
181 
182 void evlist__splice_list_tail(struct evlist *evlist, struct list_head *list)
183 {
184 	while (!list_empty(list)) {
185 		struct evsel *evsel, *temp, *leader = NULL;
186 
187 		__evlist__for_each_entry_safe(list, temp, evsel) {
188 			list_del_init(&evsel->core.node);
189 			evlist__add(evlist, evsel);
190 			leader = evsel;
191 			break;
192 		}
193 
194 		__evlist__for_each_entry_safe(list, temp, evsel) {
195 			if (evsel->leader == leader) {
196 				list_del_init(&evsel->core.node);
197 				evlist__add(evlist, evsel);
198 			}
199 		}
200 	}
201 }
202 
203 int __evlist__set_tracepoints_handlers(struct evlist *evlist,
204 				       const struct evsel_str_handler *assocs, size_t nr_assocs)
205 {
206 	size_t i;
207 	int err;
208 
209 	for (i = 0; i < nr_assocs; i++) {
210 		// Adding a handler for an event not in this evlist, just ignore it.
211 		struct evsel *evsel = evlist__find_tracepoint_by_name(evlist, assocs[i].name);
212 		if (evsel == NULL)
213 			continue;
214 
215 		err = -EEXIST;
216 		if (evsel->handler != NULL)
217 			goto out;
218 		evsel->handler = assocs[i].handler;
219 	}
220 
221 	err = 0;
222 out:
223 	return err;
224 }
225 
226 void __evlist__set_leader(struct list_head *list)
227 {
228 	struct evsel *evsel, *leader;
229 
230 	leader = list_entry(list->next, struct evsel, core.node);
231 	evsel = list_entry(list->prev, struct evsel, core.node);
232 
233 	leader->core.nr_members = evsel->core.idx - leader->core.idx + 1;
234 
235 	__evlist__for_each_entry(list, evsel) {
236 		evsel->leader = leader;
237 	}
238 }
239 
240 void evlist__set_leader(struct evlist *evlist)
241 {
242 	if (evlist->core.nr_entries) {
243 		evlist->nr_groups = evlist->core.nr_entries > 1 ? 1 : 0;
244 		__evlist__set_leader(&evlist->core.entries);
245 	}
246 }
247 
248 int __evlist__add_default(struct evlist *evlist, bool precise)
249 {
250 	struct evsel *evsel;
251 
252 	evsel = evsel__new_cycles(precise, PERF_TYPE_HARDWARE,
253 				  PERF_COUNT_HW_CPU_CYCLES);
254 	if (evsel == NULL)
255 		return -ENOMEM;
256 
257 	evlist__add(evlist, evsel);
258 	return 0;
259 }
260 
261 int evlist__add_dummy(struct evlist *evlist)
262 {
263 	struct perf_event_attr attr = {
264 		.type	= PERF_TYPE_SOFTWARE,
265 		.config = PERF_COUNT_SW_DUMMY,
266 		.size	= sizeof(attr), /* to capture ABI version */
267 	};
268 	struct evsel *evsel = evsel__new_idx(&attr, evlist->core.nr_entries);
269 
270 	if (evsel == NULL)
271 		return -ENOMEM;
272 
273 	evlist__add(evlist, evsel);
274 	return 0;
275 }
276 
277 static int evlist__add_attrs(struct evlist *evlist, struct perf_event_attr *attrs, size_t nr_attrs)
278 {
279 	struct evsel *evsel, *n;
280 	LIST_HEAD(head);
281 	size_t i;
282 
283 	for (i = 0; i < nr_attrs; i++) {
284 		evsel = evsel__new_idx(attrs + i, evlist->core.nr_entries + i);
285 		if (evsel == NULL)
286 			goto out_delete_partial_list;
287 		list_add_tail(&evsel->core.node, &head);
288 	}
289 
290 	evlist__splice_list_tail(evlist, &head);
291 
292 	return 0;
293 
294 out_delete_partial_list:
295 	__evlist__for_each_entry_safe(&head, n, evsel)
296 		evsel__delete(evsel);
297 	return -1;
298 }
299 
300 int __evlist__add_default_attrs(struct evlist *evlist, struct perf_event_attr *attrs, size_t nr_attrs)
301 {
302 	size_t i;
303 
304 	for (i = 0; i < nr_attrs; i++)
305 		event_attr_init(attrs + i);
306 
307 	return evlist__add_attrs(evlist, attrs, nr_attrs);
308 }
309 
310 __weak int arch_evlist__add_default_attrs(struct evlist *evlist __maybe_unused)
311 {
312 	return 0;
313 }
314 
315 struct evsel *evlist__find_tracepoint_by_id(struct evlist *evlist, int id)
316 {
317 	struct evsel *evsel;
318 
319 	evlist__for_each_entry(evlist, evsel) {
320 		if (evsel->core.attr.type   == PERF_TYPE_TRACEPOINT &&
321 		    (int)evsel->core.attr.config == id)
322 			return evsel;
323 	}
324 
325 	return NULL;
326 }
327 
328 struct evsel *evlist__find_tracepoint_by_name(struct evlist *evlist, const char *name)
329 {
330 	struct evsel *evsel;
331 
332 	evlist__for_each_entry(evlist, evsel) {
333 		if ((evsel->core.attr.type == PERF_TYPE_TRACEPOINT) &&
334 		    (strcmp(evsel->name, name) == 0))
335 			return evsel;
336 	}
337 
338 	return NULL;
339 }
340 
341 int evlist__add_newtp(struct evlist *evlist, const char *sys, const char *name, void *handler)
342 {
343 	struct evsel *evsel = evsel__newtp(sys, name);
344 
345 	if (IS_ERR(evsel))
346 		return -1;
347 
348 	evsel->handler = handler;
349 	evlist__add(evlist, evsel);
350 	return 0;
351 }
352 
353 static int evlist__nr_threads(struct evlist *evlist, struct evsel *evsel)
354 {
355 	if (evsel->core.system_wide)
356 		return 1;
357 	else
358 		return perf_thread_map__nr(evlist->core.threads);
359 }
360 
361 void evlist__cpu_iter_start(struct evlist *evlist)
362 {
363 	struct evsel *pos;
364 
365 	/*
366 	 * Reset the per evsel cpu_iter. This is needed because
367 	 * each evsel's cpumap may have a different index space,
368 	 * and some operations need the index to modify
369 	 * the FD xyarray (e.g. open, close)
370 	 */
371 	evlist__for_each_entry(evlist, pos)
372 		pos->cpu_iter = 0;
373 }
374 
375 bool evsel__cpu_iter_skip_no_inc(struct evsel *ev, int cpu)
376 {
377 	if (ev->cpu_iter >= ev->core.cpus->nr)
378 		return true;
379 	if (cpu >= 0 && ev->core.cpus->map[ev->cpu_iter] != cpu)
380 		return true;
381 	return false;
382 }
383 
384 bool evsel__cpu_iter_skip(struct evsel *ev, int cpu)
385 {
386 	if (!evsel__cpu_iter_skip_no_inc(ev, cpu)) {
387 		ev->cpu_iter++;
388 		return false;
389 	}
390 	return true;
391 }
392 
393 static int evsel__strcmp(struct evsel *pos, char *evsel_name)
394 {
395 	if (!evsel_name)
396 		return 0;
397 	if (evsel__is_dummy_event(pos))
398 		return 1;
399 	return strcmp(pos->name, evsel_name);
400 }
401 
402 static int evlist__is_enabled(struct evlist *evlist)
403 {
404 	struct evsel *pos;
405 
406 	evlist__for_each_entry(evlist, pos) {
407 		if (!evsel__is_group_leader(pos) || !pos->core.fd)
408 			continue;
409 		/* If at least one event is enabled, evlist is enabled. */
410 		if (!pos->disabled)
411 			return true;
412 	}
413 	return false;
414 }
415 
416 static void __evlist__disable(struct evlist *evlist, char *evsel_name)
417 {
418 	struct evsel *pos;
419 	struct affinity affinity;
420 	int cpu, i, imm = 0;
421 	bool has_imm = false;
422 
423 	if (affinity__setup(&affinity) < 0)
424 		return;
425 
426 	/* Disable 'immediate' events last */
427 	for (imm = 0; imm <= 1; imm++) {
428 		evlist__for_each_cpu(evlist, i, cpu) {
429 			affinity__set(&affinity, cpu);
430 
431 			evlist__for_each_entry(evlist, pos) {
432 				if (evsel__strcmp(pos, evsel_name))
433 					continue;
434 				if (evsel__cpu_iter_skip(pos, cpu))
435 					continue;
436 				if (pos->disabled || !evsel__is_group_leader(pos) || !pos->core.fd)
437 					continue;
438 				if (pos->immediate)
439 					has_imm = true;
440 				if (pos->immediate != imm)
441 					continue;
442 				evsel__disable_cpu(pos, pos->cpu_iter - 1);
443 			}
444 		}
445 		if (!has_imm)
446 			break;
447 	}
448 
449 	affinity__cleanup(&affinity);
450 	evlist__for_each_entry(evlist, pos) {
451 		if (evsel__strcmp(pos, evsel_name))
452 			continue;
453 		if (!evsel__is_group_leader(pos) || !pos->core.fd)
454 			continue;
455 		pos->disabled = true;
456 	}
457 
458 	/*
459 	 * If we disabled only single event, we need to check
460 	 * the enabled state of the evlist manually.
461 	 */
462 	if (evsel_name)
463 		evlist->enabled = evlist__is_enabled(evlist);
464 	else
465 		evlist->enabled = false;
466 }
467 
468 void evlist__disable(struct evlist *evlist)
469 {
470 	__evlist__disable(evlist, NULL);
471 }
472 
473 void evlist__disable_evsel(struct evlist *evlist, char *evsel_name)
474 {
475 	__evlist__disable(evlist, evsel_name);
476 }
477 
478 static void __evlist__enable(struct evlist *evlist, char *evsel_name)
479 {
480 	struct evsel *pos;
481 	struct affinity affinity;
482 	int cpu, i;
483 
484 	if (affinity__setup(&affinity) < 0)
485 		return;
486 
487 	evlist__for_each_cpu(evlist, i, cpu) {
488 		affinity__set(&affinity, cpu);
489 
490 		evlist__for_each_entry(evlist, pos) {
491 			if (evsel__strcmp(pos, evsel_name))
492 				continue;
493 			if (evsel__cpu_iter_skip(pos, cpu))
494 				continue;
495 			if (!evsel__is_group_leader(pos) || !pos->core.fd)
496 				continue;
497 			evsel__enable_cpu(pos, pos->cpu_iter - 1);
498 		}
499 	}
500 	affinity__cleanup(&affinity);
501 	evlist__for_each_entry(evlist, pos) {
502 		if (evsel__strcmp(pos, evsel_name))
503 			continue;
504 		if (!evsel__is_group_leader(pos) || !pos->core.fd)
505 			continue;
506 		pos->disabled = false;
507 	}
508 
509 	/*
510 	 * Even single event sets the 'enabled' for evlist,
511 	 * so the toggle can work properly and toggle to
512 	 * 'disabled' state.
513 	 */
514 	evlist->enabled = true;
515 }
516 
517 void evlist__enable(struct evlist *evlist)
518 {
519 	__evlist__enable(evlist, NULL);
520 }
521 
522 void evlist__enable_evsel(struct evlist *evlist, char *evsel_name)
523 {
524 	__evlist__enable(evlist, evsel_name);
525 }
526 
527 void evlist__toggle_enable(struct evlist *evlist)
528 {
529 	(evlist->enabled ? evlist__disable : evlist__enable)(evlist);
530 }
531 
532 static int evlist__enable_event_cpu(struct evlist *evlist, struct evsel *evsel, int cpu)
533 {
534 	int thread;
535 	int nr_threads = evlist__nr_threads(evlist, evsel);
536 
537 	if (!evsel->core.fd)
538 		return -EINVAL;
539 
540 	for (thread = 0; thread < nr_threads; thread++) {
541 		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
542 		if (err)
543 			return err;
544 	}
545 	return 0;
546 }
547 
548 static int evlist__enable_event_thread(struct evlist *evlist, struct evsel *evsel, int thread)
549 {
550 	int cpu;
551 	int nr_cpus = perf_cpu_map__nr(evlist->core.cpus);
552 
553 	if (!evsel->core.fd)
554 		return -EINVAL;
555 
556 	for (cpu = 0; cpu < nr_cpus; cpu++) {
557 		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
558 		if (err)
559 			return err;
560 	}
561 	return 0;
562 }
563 
564 int evlist__enable_event_idx(struct evlist *evlist, struct evsel *evsel, int idx)
565 {
566 	bool per_cpu_mmaps = !perf_cpu_map__empty(evlist->core.cpus);
567 
568 	if (per_cpu_mmaps)
569 		return evlist__enable_event_cpu(evlist, evsel, idx);
570 
571 	return evlist__enable_event_thread(evlist, evsel, idx);
572 }
573 
574 int evlist__add_pollfd(struct evlist *evlist, int fd)
575 {
576 	return perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN, fdarray_flag__default);
577 }
578 
579 int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask)
580 {
581 	return perf_evlist__filter_pollfd(&evlist->core, revents_and_mask);
582 }
583 
584 #ifdef HAVE_EVENTFD_SUPPORT
585 int evlist__add_wakeup_eventfd(struct evlist *evlist, int fd)
586 {
587 	return perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN,
588 				       fdarray_flag__nonfilterable);
589 }
590 #endif
591 
592 int evlist__poll(struct evlist *evlist, int timeout)
593 {
594 	return perf_evlist__poll(&evlist->core, timeout);
595 }
596 
597 struct perf_sample_id *evlist__id2sid(struct evlist *evlist, u64 id)
598 {
599 	struct hlist_head *head;
600 	struct perf_sample_id *sid;
601 	int hash;
602 
603 	hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
604 	head = &evlist->core.heads[hash];
605 
606 	hlist_for_each_entry(sid, head, node)
607 		if (sid->id == id)
608 			return sid;
609 
610 	return NULL;
611 }
612 
613 struct evsel *evlist__id2evsel(struct evlist *evlist, u64 id)
614 {
615 	struct perf_sample_id *sid;
616 
617 	if (evlist->core.nr_entries == 1 || !id)
618 		return evlist__first(evlist);
619 
620 	sid = evlist__id2sid(evlist, id);
621 	if (sid)
622 		return container_of(sid->evsel, struct evsel, core);
623 
624 	if (!evlist__sample_id_all(evlist))
625 		return evlist__first(evlist);
626 
627 	return NULL;
628 }
629 
630 struct evsel *evlist__id2evsel_strict(struct evlist *evlist, u64 id)
631 {
632 	struct perf_sample_id *sid;
633 
634 	if (!id)
635 		return NULL;
636 
637 	sid = evlist__id2sid(evlist, id);
638 	if (sid)
639 		return container_of(sid->evsel, struct evsel, core);
640 
641 	return NULL;
642 }
643 
644 static int evlist__event2id(struct evlist *evlist, union perf_event *event, u64 *id)
645 {
646 	const __u64 *array = event->sample.array;
647 	ssize_t n;
648 
649 	n = (event->header.size - sizeof(event->header)) >> 3;
650 
651 	if (event->header.type == PERF_RECORD_SAMPLE) {
652 		if (evlist->id_pos >= n)
653 			return -1;
654 		*id = array[evlist->id_pos];
655 	} else {
656 		if (evlist->is_pos > n)
657 			return -1;
658 		n -= evlist->is_pos;
659 		*id = array[n];
660 	}
661 	return 0;
662 }
663 
664 struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event)
665 {
666 	struct evsel *first = evlist__first(evlist);
667 	struct hlist_head *head;
668 	struct perf_sample_id *sid;
669 	int hash;
670 	u64 id;
671 
672 	if (evlist->core.nr_entries == 1)
673 		return first;
674 
675 	if (!first->core.attr.sample_id_all &&
676 	    event->header.type != PERF_RECORD_SAMPLE)
677 		return first;
678 
679 	if (evlist__event2id(evlist, event, &id))
680 		return NULL;
681 
682 	/* Synthesized events have an id of zero */
683 	if (!id)
684 		return first;
685 
686 	hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
687 	head = &evlist->core.heads[hash];
688 
689 	hlist_for_each_entry(sid, head, node) {
690 		if (sid->id == id)
691 			return container_of(sid->evsel, struct evsel, core);
692 	}
693 	return NULL;
694 }
695 
696 static int evlist__set_paused(struct evlist *evlist, bool value)
697 {
698 	int i;
699 
700 	if (!evlist->overwrite_mmap)
701 		return 0;
702 
703 	for (i = 0; i < evlist->core.nr_mmaps; i++) {
704 		int fd = evlist->overwrite_mmap[i].core.fd;
705 		int err;
706 
707 		if (fd < 0)
708 			continue;
709 		err = ioctl(fd, PERF_EVENT_IOC_PAUSE_OUTPUT, value ? 1 : 0);
710 		if (err)
711 			return err;
712 	}
713 	return 0;
714 }
715 
716 static int evlist__pause(struct evlist *evlist)
717 {
718 	return evlist__set_paused(evlist, true);
719 }
720 
721 static int evlist__resume(struct evlist *evlist)
722 {
723 	return evlist__set_paused(evlist, false);
724 }
725 
726 static void evlist__munmap_nofree(struct evlist *evlist)
727 {
728 	int i;
729 
730 	if (evlist->mmap)
731 		for (i = 0; i < evlist->core.nr_mmaps; i++)
732 			perf_mmap__munmap(&evlist->mmap[i].core);
733 
734 	if (evlist->overwrite_mmap)
735 		for (i = 0; i < evlist->core.nr_mmaps; i++)
736 			perf_mmap__munmap(&evlist->overwrite_mmap[i].core);
737 }
738 
739 void evlist__munmap(struct evlist *evlist)
740 {
741 	evlist__munmap_nofree(evlist);
742 	zfree(&evlist->mmap);
743 	zfree(&evlist->overwrite_mmap);
744 }
745 
746 static void perf_mmap__unmap_cb(struct perf_mmap *map)
747 {
748 	struct mmap *m = container_of(map, struct mmap, core);
749 
750 	mmap__munmap(m);
751 }
752 
753 static struct mmap *evlist__alloc_mmap(struct evlist *evlist,
754 				       bool overwrite)
755 {
756 	int i;
757 	struct mmap *map;
758 
759 	map = zalloc(evlist->core.nr_mmaps * sizeof(struct mmap));
760 	if (!map)
761 		return NULL;
762 
763 	for (i = 0; i < evlist->core.nr_mmaps; i++) {
764 		struct perf_mmap *prev = i ? &map[i - 1].core : NULL;
765 
766 		/*
767 		 * When the perf_mmap() call is made we grab one refcount, plus
768 		 * one extra to let perf_mmap__consume() get the last
769 		 * events after all real references (perf_mmap__get()) are
770 		 * dropped.
771 		 *
772 		 * Each PERF_EVENT_IOC_SET_OUTPUT points to this mmap and
773 		 * thus does perf_mmap__get() on it.
774 		 */
775 		perf_mmap__init(&map[i].core, prev, overwrite, perf_mmap__unmap_cb);
776 	}
777 
778 	return map;
779 }
780 
781 static void
782 perf_evlist__mmap_cb_idx(struct perf_evlist *_evlist,
783 			 struct perf_mmap_param *_mp,
784 			 int idx, bool per_cpu)
785 {
786 	struct evlist *evlist = container_of(_evlist, struct evlist, core);
787 	struct mmap_params *mp = container_of(_mp, struct mmap_params, core);
788 
789 	auxtrace_mmap_params__set_idx(&mp->auxtrace_mp, evlist, idx, per_cpu);
790 }
791 
792 static struct perf_mmap*
793 perf_evlist__mmap_cb_get(struct perf_evlist *_evlist, bool overwrite, int idx)
794 {
795 	struct evlist *evlist = container_of(_evlist, struct evlist, core);
796 	struct mmap *maps;
797 
798 	maps = overwrite ? evlist->overwrite_mmap : evlist->mmap;
799 
800 	if (!maps) {
801 		maps = evlist__alloc_mmap(evlist, overwrite);
802 		if (!maps)
803 			return NULL;
804 
805 		if (overwrite) {
806 			evlist->overwrite_mmap = maps;
807 			if (evlist->bkw_mmap_state == BKW_MMAP_NOTREADY)
808 				evlist__toggle_bkw_mmap(evlist, BKW_MMAP_RUNNING);
809 		} else {
810 			evlist->mmap = maps;
811 		}
812 	}
813 
814 	return &maps[idx].core;
815 }
816 
817 static int
818 perf_evlist__mmap_cb_mmap(struct perf_mmap *_map, struct perf_mmap_param *_mp,
819 			  int output, int cpu)
820 {
821 	struct mmap *map = container_of(_map, struct mmap, core);
822 	struct mmap_params *mp = container_of(_mp, struct mmap_params, core);
823 
824 	return mmap__mmap(map, mp, output, cpu);
825 }
826 
827 unsigned long perf_event_mlock_kb_in_pages(void)
828 {
829 	unsigned long pages;
830 	int max;
831 
832 	if (sysctl__read_int("kernel/perf_event_mlock_kb", &max) < 0) {
833 		/*
834 		 * Pick a once upon a time good value, i.e. things look
835 		 * strange since we can't read a sysctl value, but lets not
836 		 * die yet...
837 		 */
838 		max = 512;
839 	} else {
840 		max -= (page_size / 1024);
841 	}
842 
843 	pages = (max * 1024) / page_size;
844 	if (!is_power_of_2(pages))
845 		pages = rounddown_pow_of_two(pages);
846 
847 	return pages;
848 }
849 
850 size_t evlist__mmap_size(unsigned long pages)
851 {
852 	if (pages == UINT_MAX)
853 		pages = perf_event_mlock_kb_in_pages();
854 	else if (!is_power_of_2(pages))
855 		return 0;
856 
857 	return (pages + 1) * page_size;
858 }
859 
860 static long parse_pages_arg(const char *str, unsigned long min,
861 			    unsigned long max)
862 {
863 	unsigned long pages, val;
864 	static struct parse_tag tags[] = {
865 		{ .tag  = 'B', .mult = 1       },
866 		{ .tag  = 'K', .mult = 1 << 10 },
867 		{ .tag  = 'M', .mult = 1 << 20 },
868 		{ .tag  = 'G', .mult = 1 << 30 },
869 		{ .tag  = 0 },
870 	};
871 
872 	if (str == NULL)
873 		return -EINVAL;
874 
875 	val = parse_tag_value(str, tags);
876 	if (val != (unsigned long) -1) {
877 		/* we got file size value */
878 		pages = PERF_ALIGN(val, page_size) / page_size;
879 	} else {
880 		/* we got pages count value */
881 		char *eptr;
882 		pages = strtoul(str, &eptr, 10);
883 		if (*eptr != '\0')
884 			return -EINVAL;
885 	}
886 
887 	if (pages == 0 && min == 0) {
888 		/* leave number of pages at 0 */
889 	} else if (!is_power_of_2(pages)) {
890 		char buf[100];
891 
892 		/* round pages up to next power of 2 */
893 		pages = roundup_pow_of_two(pages);
894 		if (!pages)
895 			return -EINVAL;
896 
897 		unit_number__scnprintf(buf, sizeof(buf), pages * page_size);
898 		pr_info("rounding mmap pages size to %s (%lu pages)\n",
899 			buf, pages);
900 	}
901 
902 	if (pages > max)
903 		return -EINVAL;
904 
905 	return pages;
906 }
907 
908 int __evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str)
909 {
910 	unsigned long max = UINT_MAX;
911 	long pages;
912 
913 	if (max > SIZE_MAX / page_size)
914 		max = SIZE_MAX / page_size;
915 
916 	pages = parse_pages_arg(str, 1, max);
917 	if (pages < 0) {
918 		pr_err("Invalid argument for --mmap_pages/-m\n");
919 		return -1;
920 	}
921 
922 	*mmap_pages = pages;
923 	return 0;
924 }
925 
926 int evlist__parse_mmap_pages(const struct option *opt, const char *str, int unset __maybe_unused)
927 {
928 	return __evlist__parse_mmap_pages(opt->value, str);
929 }
930 
931 /**
932  * evlist__mmap_ex - Create mmaps to receive events.
933  * @evlist: list of events
934  * @pages: map length in pages
935  * @overwrite: overwrite older events?
936  * @auxtrace_pages - auxtrace map length in pages
937  * @auxtrace_overwrite - overwrite older auxtrace data?
938  *
939  * If @overwrite is %false the user needs to signal event consumption using
940  * perf_mmap__write_tail().  Using evlist__mmap_read() does this
941  * automatically.
942  *
943  * Similarly, if @auxtrace_overwrite is %false the user needs to signal data
944  * consumption using auxtrace_mmap__write_tail().
945  *
946  * Return: %0 on success, negative error code otherwise.
947  */
948 int evlist__mmap_ex(struct evlist *evlist, unsigned int pages,
949 			 unsigned int auxtrace_pages,
950 			 bool auxtrace_overwrite, int nr_cblocks, int affinity, int flush,
951 			 int comp_level)
952 {
953 	/*
954 	 * Delay setting mp.prot: set it before calling perf_mmap__mmap.
955 	 * Its value is decided by evsel's write_backward.
956 	 * So &mp should not be passed through const pointer.
957 	 */
958 	struct mmap_params mp = {
959 		.nr_cblocks	= nr_cblocks,
960 		.affinity	= affinity,
961 		.flush		= flush,
962 		.comp_level	= comp_level
963 	};
964 	struct perf_evlist_mmap_ops ops = {
965 		.idx  = perf_evlist__mmap_cb_idx,
966 		.get  = perf_evlist__mmap_cb_get,
967 		.mmap = perf_evlist__mmap_cb_mmap,
968 	};
969 
970 	evlist->core.mmap_len = evlist__mmap_size(pages);
971 	pr_debug("mmap size %zuB\n", evlist->core.mmap_len);
972 
973 	auxtrace_mmap_params__init(&mp.auxtrace_mp, evlist->core.mmap_len,
974 				   auxtrace_pages, auxtrace_overwrite);
975 
976 	return perf_evlist__mmap_ops(&evlist->core, &ops, &mp.core);
977 }
978 
979 int evlist__mmap(struct evlist *evlist, unsigned int pages)
980 {
981 	return evlist__mmap_ex(evlist, pages, 0, false, 0, PERF_AFFINITY_SYS, 1, 0);
982 }
983 
984 int evlist__create_maps(struct evlist *evlist, struct target *target)
985 {
986 	bool all_threads = (target->per_thread && target->system_wide);
987 	struct perf_cpu_map *cpus;
988 	struct perf_thread_map *threads;
989 
990 	/*
991 	 * If specify '-a' and '--per-thread' to perf record, perf record
992 	 * will override '--per-thread'. target->per_thread = false and
993 	 * target->system_wide = true.
994 	 *
995 	 * If specify '--per-thread' only to perf record,
996 	 * target->per_thread = true and target->system_wide = false.
997 	 *
998 	 * So target->per_thread && target->system_wide is false.
999 	 * For perf record, thread_map__new_str doesn't call
1000 	 * thread_map__new_all_cpus. That will keep perf record's
1001 	 * current behavior.
1002 	 *
1003 	 * For perf stat, it allows the case that target->per_thread and
1004 	 * target->system_wide are all true. It means to collect system-wide
1005 	 * per-thread data. thread_map__new_str will call
1006 	 * thread_map__new_all_cpus to enumerate all threads.
1007 	 */
1008 	threads = thread_map__new_str(target->pid, target->tid, target->uid,
1009 				      all_threads);
1010 
1011 	if (!threads)
1012 		return -1;
1013 
1014 	if (target__uses_dummy_map(target))
1015 		cpus = perf_cpu_map__dummy_new();
1016 	else
1017 		cpus = perf_cpu_map__new(target->cpu_list);
1018 
1019 	if (!cpus)
1020 		goto out_delete_threads;
1021 
1022 	evlist->core.has_user_cpus = !!target->cpu_list;
1023 
1024 	perf_evlist__set_maps(&evlist->core, cpus, threads);
1025 
1026 	/* as evlist now has references, put count here */
1027 	perf_cpu_map__put(cpus);
1028 	perf_thread_map__put(threads);
1029 
1030 	return 0;
1031 
1032 out_delete_threads:
1033 	perf_thread_map__put(threads);
1034 	return -1;
1035 }
1036 
1037 int evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel)
1038 {
1039 	struct evsel *evsel;
1040 	int err = 0;
1041 
1042 	evlist__for_each_entry(evlist, evsel) {
1043 		if (evsel->filter == NULL)
1044 			continue;
1045 
1046 		/*
1047 		 * filters only work for tracepoint event, which doesn't have cpu limit.
1048 		 * So evlist and evsel should always be same.
1049 		 */
1050 		err = perf_evsel__apply_filter(&evsel->core, evsel->filter);
1051 		if (err) {
1052 			*err_evsel = evsel;
1053 			break;
1054 		}
1055 	}
1056 
1057 	return err;
1058 }
1059 
1060 int evlist__set_tp_filter(struct evlist *evlist, const char *filter)
1061 {
1062 	struct evsel *evsel;
1063 	int err = 0;
1064 
1065 	if (filter == NULL)
1066 		return -1;
1067 
1068 	evlist__for_each_entry(evlist, evsel) {
1069 		if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT)
1070 			continue;
1071 
1072 		err = evsel__set_filter(evsel, filter);
1073 		if (err)
1074 			break;
1075 	}
1076 
1077 	return err;
1078 }
1079 
1080 int evlist__append_tp_filter(struct evlist *evlist, const char *filter)
1081 {
1082 	struct evsel *evsel;
1083 	int err = 0;
1084 
1085 	if (filter == NULL)
1086 		return -1;
1087 
1088 	evlist__for_each_entry(evlist, evsel) {
1089 		if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT)
1090 			continue;
1091 
1092 		err = evsel__append_tp_filter(evsel, filter);
1093 		if (err)
1094 			break;
1095 	}
1096 
1097 	return err;
1098 }
1099 
1100 char *asprintf__tp_filter_pids(size_t npids, pid_t *pids)
1101 {
1102 	char *filter;
1103 	size_t i;
1104 
1105 	for (i = 0; i < npids; ++i) {
1106 		if (i == 0) {
1107 			if (asprintf(&filter, "common_pid != %d", pids[i]) < 0)
1108 				return NULL;
1109 		} else {
1110 			char *tmp;
1111 
1112 			if (asprintf(&tmp, "%s && common_pid != %d", filter, pids[i]) < 0)
1113 				goto out_free;
1114 
1115 			free(filter);
1116 			filter = tmp;
1117 		}
1118 	}
1119 
1120 	return filter;
1121 out_free:
1122 	free(filter);
1123 	return NULL;
1124 }
1125 
1126 int evlist__set_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids)
1127 {
1128 	char *filter = asprintf__tp_filter_pids(npids, pids);
1129 	int ret = evlist__set_tp_filter(evlist, filter);
1130 
1131 	free(filter);
1132 	return ret;
1133 }
1134 
1135 int evlist__set_tp_filter_pid(struct evlist *evlist, pid_t pid)
1136 {
1137 	return evlist__set_tp_filter_pids(evlist, 1, &pid);
1138 }
1139 
1140 int evlist__append_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids)
1141 {
1142 	char *filter = asprintf__tp_filter_pids(npids, pids);
1143 	int ret = evlist__append_tp_filter(evlist, filter);
1144 
1145 	free(filter);
1146 	return ret;
1147 }
1148 
1149 int evlist__append_tp_filter_pid(struct evlist *evlist, pid_t pid)
1150 {
1151 	return evlist__append_tp_filter_pids(evlist, 1, &pid);
1152 }
1153 
1154 bool evlist__valid_sample_type(struct evlist *evlist)
1155 {
1156 	struct evsel *pos;
1157 
1158 	if (evlist->core.nr_entries == 1)
1159 		return true;
1160 
1161 	if (evlist->id_pos < 0 || evlist->is_pos < 0)
1162 		return false;
1163 
1164 	evlist__for_each_entry(evlist, pos) {
1165 		if (pos->id_pos != evlist->id_pos ||
1166 		    pos->is_pos != evlist->is_pos)
1167 			return false;
1168 	}
1169 
1170 	return true;
1171 }
1172 
1173 u64 __evlist__combined_sample_type(struct evlist *evlist)
1174 {
1175 	struct evsel *evsel;
1176 
1177 	if (evlist->combined_sample_type)
1178 		return evlist->combined_sample_type;
1179 
1180 	evlist__for_each_entry(evlist, evsel)
1181 		evlist->combined_sample_type |= evsel->core.attr.sample_type;
1182 
1183 	return evlist->combined_sample_type;
1184 }
1185 
1186 u64 evlist__combined_sample_type(struct evlist *evlist)
1187 {
1188 	evlist->combined_sample_type = 0;
1189 	return __evlist__combined_sample_type(evlist);
1190 }
1191 
1192 u64 evlist__combined_branch_type(struct evlist *evlist)
1193 {
1194 	struct evsel *evsel;
1195 	u64 branch_type = 0;
1196 
1197 	evlist__for_each_entry(evlist, evsel)
1198 		branch_type |= evsel->core.attr.branch_sample_type;
1199 	return branch_type;
1200 }
1201 
1202 bool evlist__valid_read_format(struct evlist *evlist)
1203 {
1204 	struct evsel *first = evlist__first(evlist), *pos = first;
1205 	u64 read_format = first->core.attr.read_format;
1206 	u64 sample_type = first->core.attr.sample_type;
1207 
1208 	evlist__for_each_entry(evlist, pos) {
1209 		if (read_format != pos->core.attr.read_format) {
1210 			pr_debug("Read format differs %#" PRIx64 " vs %#" PRIx64 "\n",
1211 				 read_format, (u64)pos->core.attr.read_format);
1212 		}
1213 	}
1214 
1215 	/* PERF_SAMPLE_READ implies PERF_FORMAT_ID. */
1216 	if ((sample_type & PERF_SAMPLE_READ) &&
1217 	    !(read_format & PERF_FORMAT_ID)) {
1218 		return false;
1219 	}
1220 
1221 	return true;
1222 }
1223 
1224 u16 evlist__id_hdr_size(struct evlist *evlist)
1225 {
1226 	struct evsel *first = evlist__first(evlist);
1227 	struct perf_sample *data;
1228 	u64 sample_type;
1229 	u16 size = 0;
1230 
1231 	if (!first->core.attr.sample_id_all)
1232 		goto out;
1233 
1234 	sample_type = first->core.attr.sample_type;
1235 
1236 	if (sample_type & PERF_SAMPLE_TID)
1237 		size += sizeof(data->tid) * 2;
1238 
1239        if (sample_type & PERF_SAMPLE_TIME)
1240 		size += sizeof(data->time);
1241 
1242 	if (sample_type & PERF_SAMPLE_ID)
1243 		size += sizeof(data->id);
1244 
1245 	if (sample_type & PERF_SAMPLE_STREAM_ID)
1246 		size += sizeof(data->stream_id);
1247 
1248 	if (sample_type & PERF_SAMPLE_CPU)
1249 		size += sizeof(data->cpu) * 2;
1250 
1251 	if (sample_type & PERF_SAMPLE_IDENTIFIER)
1252 		size += sizeof(data->id);
1253 out:
1254 	return size;
1255 }
1256 
1257 bool evlist__valid_sample_id_all(struct evlist *evlist)
1258 {
1259 	struct evsel *first = evlist__first(evlist), *pos = first;
1260 
1261 	evlist__for_each_entry_continue(evlist, pos) {
1262 		if (first->core.attr.sample_id_all != pos->core.attr.sample_id_all)
1263 			return false;
1264 	}
1265 
1266 	return true;
1267 }
1268 
1269 bool evlist__sample_id_all(struct evlist *evlist)
1270 {
1271 	struct evsel *first = evlist__first(evlist);
1272 	return first->core.attr.sample_id_all;
1273 }
1274 
1275 void evlist__set_selected(struct evlist *evlist, struct evsel *evsel)
1276 {
1277 	evlist->selected = evsel;
1278 }
1279 
1280 void evlist__close(struct evlist *evlist)
1281 {
1282 	struct evsel *evsel;
1283 	struct affinity affinity;
1284 	int cpu, i;
1285 
1286 	/*
1287 	 * With perf record core.cpus is usually NULL.
1288 	 * Use the old method to handle this for now.
1289 	 */
1290 	if (!evlist->core.cpus) {
1291 		evlist__for_each_entry_reverse(evlist, evsel)
1292 			evsel__close(evsel);
1293 		return;
1294 	}
1295 
1296 	if (affinity__setup(&affinity) < 0)
1297 		return;
1298 	evlist__for_each_cpu(evlist, i, cpu) {
1299 		affinity__set(&affinity, cpu);
1300 
1301 		evlist__for_each_entry_reverse(evlist, evsel) {
1302 			if (evsel__cpu_iter_skip(evsel, cpu))
1303 			    continue;
1304 			perf_evsel__close_cpu(&evsel->core, evsel->cpu_iter - 1);
1305 		}
1306 	}
1307 	affinity__cleanup(&affinity);
1308 	evlist__for_each_entry_reverse(evlist, evsel) {
1309 		perf_evsel__free_fd(&evsel->core);
1310 		perf_evsel__free_id(&evsel->core);
1311 	}
1312 	perf_evlist__reset_id_hash(&evlist->core);
1313 }
1314 
1315 static int evlist__create_syswide_maps(struct evlist *evlist)
1316 {
1317 	struct perf_cpu_map *cpus;
1318 	struct perf_thread_map *threads;
1319 	int err = -ENOMEM;
1320 
1321 	/*
1322 	 * Try reading /sys/devices/system/cpu/online to get
1323 	 * an all cpus map.
1324 	 *
1325 	 * FIXME: -ENOMEM is the best we can do here, the cpu_map
1326 	 * code needs an overhaul to properly forward the
1327 	 * error, and we may not want to do that fallback to a
1328 	 * default cpu identity map :-\
1329 	 */
1330 	cpus = perf_cpu_map__new(NULL);
1331 	if (!cpus)
1332 		goto out;
1333 
1334 	threads = perf_thread_map__new_dummy();
1335 	if (!threads)
1336 		goto out_put;
1337 
1338 	perf_evlist__set_maps(&evlist->core, cpus, threads);
1339 
1340 	perf_thread_map__put(threads);
1341 out_put:
1342 	perf_cpu_map__put(cpus);
1343 out:
1344 	return err;
1345 }
1346 
1347 int evlist__open(struct evlist *evlist)
1348 {
1349 	struct evsel *evsel;
1350 	int err;
1351 
1352 	/*
1353 	 * Default: one fd per CPU, all threads, aka systemwide
1354 	 * as sys_perf_event_open(cpu = -1, thread = -1) is EINVAL
1355 	 */
1356 	if (evlist->core.threads == NULL && evlist->core.cpus == NULL) {
1357 		err = evlist__create_syswide_maps(evlist);
1358 		if (err < 0)
1359 			goto out_err;
1360 	}
1361 
1362 	evlist__update_id_pos(evlist);
1363 
1364 	evlist__for_each_entry(evlist, evsel) {
1365 		err = evsel__open(evsel, evsel->core.cpus, evsel->core.threads);
1366 		if (err < 0)
1367 			goto out_err;
1368 	}
1369 
1370 	return 0;
1371 out_err:
1372 	evlist__close(evlist);
1373 	errno = -err;
1374 	return err;
1375 }
1376 
1377 int evlist__prepare_workload(struct evlist *evlist, struct target *target, const char *argv[],
1378 			     bool pipe_output, void (*exec_error)(int signo, siginfo_t *info, void *ucontext))
1379 {
1380 	int child_ready_pipe[2], go_pipe[2];
1381 	char bf;
1382 
1383 	if (pipe(child_ready_pipe) < 0) {
1384 		perror("failed to create 'ready' pipe");
1385 		return -1;
1386 	}
1387 
1388 	if (pipe(go_pipe) < 0) {
1389 		perror("failed to create 'go' pipe");
1390 		goto out_close_ready_pipe;
1391 	}
1392 
1393 	evlist->workload.pid = fork();
1394 	if (evlist->workload.pid < 0) {
1395 		perror("failed to fork");
1396 		goto out_close_pipes;
1397 	}
1398 
1399 	if (!evlist->workload.pid) {
1400 		int ret;
1401 
1402 		if (pipe_output)
1403 			dup2(2, 1);
1404 
1405 		signal(SIGTERM, SIG_DFL);
1406 
1407 		close(child_ready_pipe[0]);
1408 		close(go_pipe[1]);
1409 		fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
1410 
1411 		/*
1412 		 * Change the name of this process not to confuse --exclude-perf users
1413 		 * that sees 'perf' in the window up to the execvp() and thinks that
1414 		 * perf samples are not being excluded.
1415 		 */
1416 		prctl(PR_SET_NAME, "perf-exec");
1417 
1418 		/*
1419 		 * Tell the parent we're ready to go
1420 		 */
1421 		close(child_ready_pipe[1]);
1422 
1423 		/*
1424 		 * Wait until the parent tells us to go.
1425 		 */
1426 		ret = read(go_pipe[0], &bf, 1);
1427 		/*
1428 		 * The parent will ask for the execvp() to be performed by
1429 		 * writing exactly one byte, in workload.cork_fd, usually via
1430 		 * evlist__start_workload().
1431 		 *
1432 		 * For cancelling the workload without actually running it,
1433 		 * the parent will just close workload.cork_fd, without writing
1434 		 * anything, i.e. read will return zero and we just exit()
1435 		 * here.
1436 		 */
1437 		if (ret != 1) {
1438 			if (ret == -1)
1439 				perror("unable to read pipe");
1440 			exit(ret);
1441 		}
1442 
1443 		execvp(argv[0], (char **)argv);
1444 
1445 		if (exec_error) {
1446 			union sigval val;
1447 
1448 			val.sival_int = errno;
1449 			if (sigqueue(getppid(), SIGUSR1, val))
1450 				perror(argv[0]);
1451 		} else
1452 			perror(argv[0]);
1453 		exit(-1);
1454 	}
1455 
1456 	if (exec_error) {
1457 		struct sigaction act = {
1458 			.sa_flags     = SA_SIGINFO,
1459 			.sa_sigaction = exec_error,
1460 		};
1461 		sigaction(SIGUSR1, &act, NULL);
1462 	}
1463 
1464 	if (target__none(target)) {
1465 		if (evlist->core.threads == NULL) {
1466 			fprintf(stderr, "FATAL: evlist->threads need to be set at this point (%s:%d).\n",
1467 				__func__, __LINE__);
1468 			goto out_close_pipes;
1469 		}
1470 		perf_thread_map__set_pid(evlist->core.threads, 0, evlist->workload.pid);
1471 	}
1472 
1473 	close(child_ready_pipe[1]);
1474 	close(go_pipe[0]);
1475 	/*
1476 	 * wait for child to settle
1477 	 */
1478 	if (read(child_ready_pipe[0], &bf, 1) == -1) {
1479 		perror("unable to read pipe");
1480 		goto out_close_pipes;
1481 	}
1482 
1483 	fcntl(go_pipe[1], F_SETFD, FD_CLOEXEC);
1484 	evlist->workload.cork_fd = go_pipe[1];
1485 	close(child_ready_pipe[0]);
1486 	return 0;
1487 
1488 out_close_pipes:
1489 	close(go_pipe[0]);
1490 	close(go_pipe[1]);
1491 out_close_ready_pipe:
1492 	close(child_ready_pipe[0]);
1493 	close(child_ready_pipe[1]);
1494 	return -1;
1495 }
1496 
1497 int evlist__start_workload(struct evlist *evlist)
1498 {
1499 	if (evlist->workload.cork_fd > 0) {
1500 		char bf = 0;
1501 		int ret;
1502 		/*
1503 		 * Remove the cork, let it rip!
1504 		 */
1505 		ret = write(evlist->workload.cork_fd, &bf, 1);
1506 		if (ret < 0)
1507 			perror("unable to write to pipe");
1508 
1509 		close(evlist->workload.cork_fd);
1510 		return ret;
1511 	}
1512 
1513 	return 0;
1514 }
1515 
1516 int evlist__parse_sample(struct evlist *evlist, union perf_event *event, struct perf_sample *sample)
1517 {
1518 	struct evsel *evsel = evlist__event2evsel(evlist, event);
1519 
1520 	if (!evsel)
1521 		return -EFAULT;
1522 	return evsel__parse_sample(evsel, event, sample);
1523 }
1524 
1525 int evlist__parse_sample_timestamp(struct evlist *evlist, union perf_event *event, u64 *timestamp)
1526 {
1527 	struct evsel *evsel = evlist__event2evsel(evlist, event);
1528 
1529 	if (!evsel)
1530 		return -EFAULT;
1531 	return evsel__parse_sample_timestamp(evsel, event, timestamp);
1532 }
1533 
1534 int evlist__strerror_open(struct evlist *evlist, int err, char *buf, size_t size)
1535 {
1536 	int printed, value;
1537 	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1538 
1539 	switch (err) {
1540 	case EACCES:
1541 	case EPERM:
1542 		printed = scnprintf(buf, size,
1543 				    "Error:\t%s.\n"
1544 				    "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg);
1545 
1546 		value = perf_event_paranoid();
1547 
1548 		printed += scnprintf(buf + printed, size - printed, "\nHint:\t");
1549 
1550 		if (value >= 2) {
1551 			printed += scnprintf(buf + printed, size - printed,
1552 					     "For your workloads it needs to be <= 1\nHint:\t");
1553 		}
1554 		printed += scnprintf(buf + printed, size - printed,
1555 				     "For system wide tracing it needs to be set to -1.\n");
1556 
1557 		printed += scnprintf(buf + printed, size - printed,
1558 				    "Hint:\tTry: 'sudo sh -c \"echo -1 > /proc/sys/kernel/perf_event_paranoid\"'\n"
1559 				    "Hint:\tThe current value is %d.", value);
1560 		break;
1561 	case EINVAL: {
1562 		struct evsel *first = evlist__first(evlist);
1563 		int max_freq;
1564 
1565 		if (sysctl__read_int("kernel/perf_event_max_sample_rate", &max_freq) < 0)
1566 			goto out_default;
1567 
1568 		if (first->core.attr.sample_freq < (u64)max_freq)
1569 			goto out_default;
1570 
1571 		printed = scnprintf(buf, size,
1572 				    "Error:\t%s.\n"
1573 				    "Hint:\tCheck /proc/sys/kernel/perf_event_max_sample_rate.\n"
1574 				    "Hint:\tThe current value is %d and %" PRIu64 " is being requested.",
1575 				    emsg, max_freq, first->core.attr.sample_freq);
1576 		break;
1577 	}
1578 	default:
1579 out_default:
1580 		scnprintf(buf, size, "%s", emsg);
1581 		break;
1582 	}
1583 
1584 	return 0;
1585 }
1586 
1587 int evlist__strerror_mmap(struct evlist *evlist, int err, char *buf, size_t size)
1588 {
1589 	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1590 	int pages_attempted = evlist->core.mmap_len / 1024, pages_max_per_user, printed = 0;
1591 
1592 	switch (err) {
1593 	case EPERM:
1594 		sysctl__read_int("kernel/perf_event_mlock_kb", &pages_max_per_user);
1595 		printed += scnprintf(buf + printed, size - printed,
1596 				     "Error:\t%s.\n"
1597 				     "Hint:\tCheck /proc/sys/kernel/perf_event_mlock_kb (%d kB) setting.\n"
1598 				     "Hint:\tTried using %zd kB.\n",
1599 				     emsg, pages_max_per_user, pages_attempted);
1600 
1601 		if (pages_attempted >= pages_max_per_user) {
1602 			printed += scnprintf(buf + printed, size - printed,
1603 					     "Hint:\tTry 'sudo sh -c \"echo %d > /proc/sys/kernel/perf_event_mlock_kb\"', or\n",
1604 					     pages_max_per_user + pages_attempted);
1605 		}
1606 
1607 		printed += scnprintf(buf + printed, size - printed,
1608 				     "Hint:\tTry using a smaller -m/--mmap-pages value.");
1609 		break;
1610 	default:
1611 		scnprintf(buf, size, "%s", emsg);
1612 		break;
1613 	}
1614 
1615 	return 0;
1616 }
1617 
1618 void evlist__to_front(struct evlist *evlist, struct evsel *move_evsel)
1619 {
1620 	struct evsel *evsel, *n;
1621 	LIST_HEAD(move);
1622 
1623 	if (move_evsel == evlist__first(evlist))
1624 		return;
1625 
1626 	evlist__for_each_entry_safe(evlist, n, evsel) {
1627 		if (evsel->leader == move_evsel->leader)
1628 			list_move_tail(&evsel->core.node, &move);
1629 	}
1630 
1631 	list_splice(&move, &evlist->core.entries);
1632 }
1633 
1634 struct evsel *evlist__get_tracking_event(struct evlist *evlist)
1635 {
1636 	struct evsel *evsel;
1637 
1638 	evlist__for_each_entry(evlist, evsel) {
1639 		if (evsel->tracking)
1640 			return evsel;
1641 	}
1642 
1643 	return evlist__first(evlist);
1644 }
1645 
1646 void evlist__set_tracking_event(struct evlist *evlist, struct evsel *tracking_evsel)
1647 {
1648 	struct evsel *evsel;
1649 
1650 	if (tracking_evsel->tracking)
1651 		return;
1652 
1653 	evlist__for_each_entry(evlist, evsel) {
1654 		if (evsel != tracking_evsel)
1655 			evsel->tracking = false;
1656 	}
1657 
1658 	tracking_evsel->tracking = true;
1659 }
1660 
1661 struct evsel *evlist__find_evsel_by_str(struct evlist *evlist, const char *str)
1662 {
1663 	struct evsel *evsel;
1664 
1665 	evlist__for_each_entry(evlist, evsel) {
1666 		if (!evsel->name)
1667 			continue;
1668 		if (strcmp(str, evsel->name) == 0)
1669 			return evsel;
1670 	}
1671 
1672 	return NULL;
1673 }
1674 
1675 void evlist__toggle_bkw_mmap(struct evlist *evlist, enum bkw_mmap_state state)
1676 {
1677 	enum bkw_mmap_state old_state = evlist->bkw_mmap_state;
1678 	enum action {
1679 		NONE,
1680 		PAUSE,
1681 		RESUME,
1682 	} action = NONE;
1683 
1684 	if (!evlist->overwrite_mmap)
1685 		return;
1686 
1687 	switch (old_state) {
1688 	case BKW_MMAP_NOTREADY: {
1689 		if (state != BKW_MMAP_RUNNING)
1690 			goto state_err;
1691 		break;
1692 	}
1693 	case BKW_MMAP_RUNNING: {
1694 		if (state != BKW_MMAP_DATA_PENDING)
1695 			goto state_err;
1696 		action = PAUSE;
1697 		break;
1698 	}
1699 	case BKW_MMAP_DATA_PENDING: {
1700 		if (state != BKW_MMAP_EMPTY)
1701 			goto state_err;
1702 		break;
1703 	}
1704 	case BKW_MMAP_EMPTY: {
1705 		if (state != BKW_MMAP_RUNNING)
1706 			goto state_err;
1707 		action = RESUME;
1708 		break;
1709 	}
1710 	default:
1711 		WARN_ONCE(1, "Shouldn't get there\n");
1712 	}
1713 
1714 	evlist->bkw_mmap_state = state;
1715 
1716 	switch (action) {
1717 	case PAUSE:
1718 		evlist__pause(evlist);
1719 		break;
1720 	case RESUME:
1721 		evlist__resume(evlist);
1722 		break;
1723 	case NONE:
1724 	default:
1725 		break;
1726 	}
1727 
1728 state_err:
1729 	return;
1730 }
1731 
1732 bool evlist__exclude_kernel(struct evlist *evlist)
1733 {
1734 	struct evsel *evsel;
1735 
1736 	evlist__for_each_entry(evlist, evsel) {
1737 		if (!evsel->core.attr.exclude_kernel)
1738 			return false;
1739 	}
1740 
1741 	return true;
1742 }
1743 
1744 /*
1745  * Events in data file are not collect in groups, but we still want
1746  * the group display. Set the artificial group and set the leader's
1747  * forced_leader flag to notify the display code.
1748  */
1749 void evlist__force_leader(struct evlist *evlist)
1750 {
1751 	if (!evlist->nr_groups) {
1752 		struct evsel *leader = evlist__first(evlist);
1753 
1754 		evlist__set_leader(evlist);
1755 		leader->forced_leader = true;
1756 	}
1757 }
1758 
1759 struct evsel *evlist__reset_weak_group(struct evlist *evsel_list, struct evsel *evsel, bool close)
1760 {
1761 	struct evsel *c2, *leader;
1762 	bool is_open = true;
1763 
1764 	leader = evsel->leader;
1765 	pr_debug("Weak group for %s/%d failed\n",
1766 			leader->name, leader->core.nr_members);
1767 
1768 	/*
1769 	 * for_each_group_member doesn't work here because it doesn't
1770 	 * include the first entry.
1771 	 */
1772 	evlist__for_each_entry(evsel_list, c2) {
1773 		if (c2 == evsel)
1774 			is_open = false;
1775 		if (c2->leader == leader) {
1776 			if (is_open && close)
1777 				perf_evsel__close(&c2->core);
1778 			c2->leader = c2;
1779 			c2->core.nr_members = 0;
1780 			/*
1781 			 * Set this for all former members of the group
1782 			 * to indicate they get reopened.
1783 			 */
1784 			c2->reset_group = true;
1785 		}
1786 	}
1787 	return leader;
1788 }
1789 
1790 static int evlist__parse_control_fifo(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close)
1791 {
1792 	char *s, *p;
1793 	int ret = 0, fd;
1794 
1795 	if (strncmp(str, "fifo:", 5))
1796 		return -EINVAL;
1797 
1798 	str += 5;
1799 	if (!*str || *str == ',')
1800 		return -EINVAL;
1801 
1802 	s = strdup(str);
1803 	if (!s)
1804 		return -ENOMEM;
1805 
1806 	p = strchr(s, ',');
1807 	if (p)
1808 		*p = '\0';
1809 
1810 	/*
1811 	 * O_RDWR avoids POLLHUPs which is necessary to allow the other
1812 	 * end of a FIFO to be repeatedly opened and closed.
1813 	 */
1814 	fd = open(s, O_RDWR | O_NONBLOCK | O_CLOEXEC);
1815 	if (fd < 0) {
1816 		pr_err("Failed to open '%s'\n", s);
1817 		ret = -errno;
1818 		goto out_free;
1819 	}
1820 	*ctl_fd = fd;
1821 	*ctl_fd_close = true;
1822 
1823 	if (p && *++p) {
1824 		/* O_RDWR | O_NONBLOCK means the other end need not be open */
1825 		fd = open(p, O_RDWR | O_NONBLOCK | O_CLOEXEC);
1826 		if (fd < 0) {
1827 			pr_err("Failed to open '%s'\n", p);
1828 			ret = -errno;
1829 			goto out_free;
1830 		}
1831 		*ctl_fd_ack = fd;
1832 	}
1833 
1834 out_free:
1835 	free(s);
1836 	return ret;
1837 }
1838 
1839 int evlist__parse_control(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close)
1840 {
1841 	char *comma = NULL, *endptr = NULL;
1842 
1843 	*ctl_fd_close = false;
1844 
1845 	if (strncmp(str, "fd:", 3))
1846 		return evlist__parse_control_fifo(str, ctl_fd, ctl_fd_ack, ctl_fd_close);
1847 
1848 	*ctl_fd = strtoul(&str[3], &endptr, 0);
1849 	if (endptr == &str[3])
1850 		return -EINVAL;
1851 
1852 	comma = strchr(str, ',');
1853 	if (comma) {
1854 		if (endptr != comma)
1855 			return -EINVAL;
1856 
1857 		*ctl_fd_ack = strtoul(comma + 1, &endptr, 0);
1858 		if (endptr == comma + 1 || *endptr != '\0')
1859 			return -EINVAL;
1860 	}
1861 
1862 	return 0;
1863 }
1864 
1865 void evlist__close_control(int ctl_fd, int ctl_fd_ack, bool *ctl_fd_close)
1866 {
1867 	if (*ctl_fd_close) {
1868 		*ctl_fd_close = false;
1869 		close(ctl_fd);
1870 		if (ctl_fd_ack >= 0)
1871 			close(ctl_fd_ack);
1872 	}
1873 }
1874 
1875 int evlist__initialize_ctlfd(struct evlist *evlist, int fd, int ack)
1876 {
1877 	if (fd == -1) {
1878 		pr_debug("Control descriptor is not initialized\n");
1879 		return 0;
1880 	}
1881 
1882 	evlist->ctl_fd.pos = perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN,
1883 						     fdarray_flag__nonfilterable);
1884 	if (evlist->ctl_fd.pos < 0) {
1885 		evlist->ctl_fd.pos = -1;
1886 		pr_err("Failed to add ctl fd entry: %m\n");
1887 		return -1;
1888 	}
1889 
1890 	evlist->ctl_fd.fd = fd;
1891 	evlist->ctl_fd.ack = ack;
1892 
1893 	return 0;
1894 }
1895 
1896 bool evlist__ctlfd_initialized(struct evlist *evlist)
1897 {
1898 	return evlist->ctl_fd.pos >= 0;
1899 }
1900 
1901 int evlist__finalize_ctlfd(struct evlist *evlist)
1902 {
1903 	struct pollfd *entries = evlist->core.pollfd.entries;
1904 
1905 	if (!evlist__ctlfd_initialized(evlist))
1906 		return 0;
1907 
1908 	entries[evlist->ctl_fd.pos].fd = -1;
1909 	entries[evlist->ctl_fd.pos].events = 0;
1910 	entries[evlist->ctl_fd.pos].revents = 0;
1911 
1912 	evlist->ctl_fd.pos = -1;
1913 	evlist->ctl_fd.ack = -1;
1914 	evlist->ctl_fd.fd = -1;
1915 
1916 	return 0;
1917 }
1918 
1919 static int evlist__ctlfd_recv(struct evlist *evlist, enum evlist_ctl_cmd *cmd,
1920 			      char *cmd_data, size_t data_size)
1921 {
1922 	int err;
1923 	char c;
1924 	size_t bytes_read = 0;
1925 
1926 	*cmd = EVLIST_CTL_CMD_UNSUPPORTED;
1927 	memset(cmd_data, 0, data_size);
1928 	data_size--;
1929 
1930 	do {
1931 		err = read(evlist->ctl_fd.fd, &c, 1);
1932 		if (err > 0) {
1933 			if (c == '\n' || c == '\0')
1934 				break;
1935 			cmd_data[bytes_read++] = c;
1936 			if (bytes_read == data_size)
1937 				break;
1938 			continue;
1939 		} else if (err == -1) {
1940 			if (errno == EINTR)
1941 				continue;
1942 			if (errno == EAGAIN || errno == EWOULDBLOCK)
1943 				err = 0;
1944 			else
1945 				pr_err("Failed to read from ctlfd %d: %m\n", evlist->ctl_fd.fd);
1946 		}
1947 		break;
1948 	} while (1);
1949 
1950 	pr_debug("Message from ctl_fd: \"%s%s\"\n", cmd_data,
1951 		 bytes_read == data_size ? "" : c == '\n' ? "\\n" : "\\0");
1952 
1953 	if (bytes_read > 0) {
1954 		if (!strncmp(cmd_data, EVLIST_CTL_CMD_ENABLE_TAG,
1955 			     (sizeof(EVLIST_CTL_CMD_ENABLE_TAG)-1))) {
1956 			*cmd = EVLIST_CTL_CMD_ENABLE;
1957 		} else if (!strncmp(cmd_data, EVLIST_CTL_CMD_DISABLE_TAG,
1958 				    (sizeof(EVLIST_CTL_CMD_DISABLE_TAG)-1))) {
1959 			*cmd = EVLIST_CTL_CMD_DISABLE;
1960 		} else if (!strncmp(cmd_data, EVLIST_CTL_CMD_SNAPSHOT_TAG,
1961 				    (sizeof(EVLIST_CTL_CMD_SNAPSHOT_TAG)-1))) {
1962 			*cmd = EVLIST_CTL_CMD_SNAPSHOT;
1963 			pr_debug("is snapshot\n");
1964 		} else if (!strncmp(cmd_data, EVLIST_CTL_CMD_EVLIST_TAG,
1965 				    (sizeof(EVLIST_CTL_CMD_EVLIST_TAG)-1))) {
1966 			*cmd = EVLIST_CTL_CMD_EVLIST;
1967 		} else if (!strncmp(cmd_data, EVLIST_CTL_CMD_STOP_TAG,
1968 				    (sizeof(EVLIST_CTL_CMD_STOP_TAG)-1))) {
1969 			*cmd = EVLIST_CTL_CMD_STOP;
1970 		} else if (!strncmp(cmd_data, EVLIST_CTL_CMD_PING_TAG,
1971 				    (sizeof(EVLIST_CTL_CMD_PING_TAG)-1))) {
1972 			*cmd = EVLIST_CTL_CMD_PING;
1973 		}
1974 	}
1975 
1976 	return bytes_read ? (int)bytes_read : err;
1977 }
1978 
1979 int evlist__ctlfd_ack(struct evlist *evlist)
1980 {
1981 	int err;
1982 
1983 	if (evlist->ctl_fd.ack == -1)
1984 		return 0;
1985 
1986 	err = write(evlist->ctl_fd.ack, EVLIST_CTL_CMD_ACK_TAG,
1987 		    sizeof(EVLIST_CTL_CMD_ACK_TAG));
1988 	if (err == -1)
1989 		pr_err("failed to write to ctl_ack_fd %d: %m\n", evlist->ctl_fd.ack);
1990 
1991 	return err;
1992 }
1993 
1994 static int get_cmd_arg(char *cmd_data, size_t cmd_size, char **arg)
1995 {
1996 	char *data = cmd_data + cmd_size;
1997 
1998 	/* no argument */
1999 	if (!*data)
2000 		return 0;
2001 
2002 	/* there's argument */
2003 	if (*data == ' ') {
2004 		*arg = data + 1;
2005 		return 1;
2006 	}
2007 
2008 	/* malformed */
2009 	return -1;
2010 }
2011 
2012 static int evlist__ctlfd_enable(struct evlist *evlist, char *cmd_data, bool enable)
2013 {
2014 	struct evsel *evsel;
2015 	char *name;
2016 	int err;
2017 
2018 	err = get_cmd_arg(cmd_data,
2019 			  enable ? sizeof(EVLIST_CTL_CMD_ENABLE_TAG) - 1 :
2020 				   sizeof(EVLIST_CTL_CMD_DISABLE_TAG) - 1,
2021 			  &name);
2022 	if (err < 0) {
2023 		pr_info("failed: wrong command\n");
2024 		return -1;
2025 	}
2026 
2027 	if (err) {
2028 		evsel = evlist__find_evsel_by_str(evlist, name);
2029 		if (evsel) {
2030 			if (enable)
2031 				evlist__enable_evsel(evlist, name);
2032 			else
2033 				evlist__disable_evsel(evlist, name);
2034 			pr_info("Event %s %s\n", evsel->name,
2035 				enable ? "enabled" : "disabled");
2036 		} else {
2037 			pr_info("failed: can't find '%s' event\n", name);
2038 		}
2039 	} else {
2040 		if (enable) {
2041 			evlist__enable(evlist);
2042 			pr_info(EVLIST_ENABLED_MSG);
2043 		} else {
2044 			evlist__disable(evlist);
2045 			pr_info(EVLIST_DISABLED_MSG);
2046 		}
2047 	}
2048 
2049 	return 0;
2050 }
2051 
2052 static int evlist__ctlfd_list(struct evlist *evlist, char *cmd_data)
2053 {
2054 	struct perf_attr_details details = { .verbose = false, };
2055 	struct evsel *evsel;
2056 	char *arg;
2057 	int err;
2058 
2059 	err = get_cmd_arg(cmd_data,
2060 			  sizeof(EVLIST_CTL_CMD_EVLIST_TAG) - 1,
2061 			  &arg);
2062 	if (err < 0) {
2063 		pr_info("failed: wrong command\n");
2064 		return -1;
2065 	}
2066 
2067 	if (err) {
2068 		if (!strcmp(arg, "-v")) {
2069 			details.verbose = true;
2070 		} else if (!strcmp(arg, "-g")) {
2071 			details.event_group = true;
2072 		} else if (!strcmp(arg, "-F")) {
2073 			details.freq = true;
2074 		} else {
2075 			pr_info("failed: wrong command\n");
2076 			return -1;
2077 		}
2078 	}
2079 
2080 	evlist__for_each_entry(evlist, evsel)
2081 		evsel__fprintf(evsel, &details, stderr);
2082 
2083 	return 0;
2084 }
2085 
2086 int evlist__ctlfd_process(struct evlist *evlist, enum evlist_ctl_cmd *cmd)
2087 {
2088 	int err = 0;
2089 	char cmd_data[EVLIST_CTL_CMD_MAX_LEN];
2090 	int ctlfd_pos = evlist->ctl_fd.pos;
2091 	struct pollfd *entries = evlist->core.pollfd.entries;
2092 
2093 	if (!evlist__ctlfd_initialized(evlist) || !entries[ctlfd_pos].revents)
2094 		return 0;
2095 
2096 	if (entries[ctlfd_pos].revents & POLLIN) {
2097 		err = evlist__ctlfd_recv(evlist, cmd, cmd_data,
2098 					 EVLIST_CTL_CMD_MAX_LEN);
2099 		if (err > 0) {
2100 			switch (*cmd) {
2101 			case EVLIST_CTL_CMD_ENABLE:
2102 			case EVLIST_CTL_CMD_DISABLE:
2103 				err = evlist__ctlfd_enable(evlist, cmd_data,
2104 							   *cmd == EVLIST_CTL_CMD_ENABLE);
2105 				break;
2106 			case EVLIST_CTL_CMD_EVLIST:
2107 				err = evlist__ctlfd_list(evlist, cmd_data);
2108 				break;
2109 			case EVLIST_CTL_CMD_SNAPSHOT:
2110 			case EVLIST_CTL_CMD_STOP:
2111 			case EVLIST_CTL_CMD_PING:
2112 				break;
2113 			case EVLIST_CTL_CMD_ACK:
2114 			case EVLIST_CTL_CMD_UNSUPPORTED:
2115 			default:
2116 				pr_debug("ctlfd: unsupported %d\n", *cmd);
2117 				break;
2118 			}
2119 			if (!(*cmd == EVLIST_CTL_CMD_ACK || *cmd == EVLIST_CTL_CMD_UNSUPPORTED ||
2120 			      *cmd == EVLIST_CTL_CMD_SNAPSHOT))
2121 				evlist__ctlfd_ack(evlist);
2122 		}
2123 	}
2124 
2125 	if (entries[ctlfd_pos].revents & (POLLHUP | POLLERR))
2126 		evlist__finalize_ctlfd(evlist);
2127 	else
2128 		entries[ctlfd_pos].revents = 0;
2129 
2130 	return err;
2131 }
2132 
2133 struct evsel *evlist__find_evsel(struct evlist *evlist, int idx)
2134 {
2135 	struct evsel *evsel;
2136 
2137 	evlist__for_each_entry(evlist, evsel) {
2138 		if (evsel->core.idx == idx)
2139 			return evsel;
2140 	}
2141 	return NULL;
2142 }
2143 
2144 int evlist__scnprintf_evsels(struct evlist *evlist, size_t size, char *bf)
2145 {
2146 	struct evsel *evsel;
2147 	int printed = 0;
2148 
2149 	evlist__for_each_entry(evlist, evsel) {
2150 		if (evsel__is_dummy_event(evsel))
2151 			continue;
2152 		if (size > (strlen(evsel__name(evsel)) + (printed ? 2 : 1))) {
2153 			printed += scnprintf(bf + printed, size - printed, "%s%s", printed ? "," : "", evsel__name(evsel));
2154 		} else {
2155 			printed += scnprintf(bf + printed, size - printed, "%s...", printed ? "," : "");
2156 			break;
2157 		}
2158 	}
2159 
2160 	return printed;
2161 }
2162 
2163 void evlist__check_mem_load_aux(struct evlist *evlist)
2164 {
2165 	struct evsel *leader, *evsel, *pos;
2166 
2167 	/*
2168 	 * For some platforms, the 'mem-loads' event is required to use
2169 	 * together with 'mem-loads-aux' within a group and 'mem-loads-aux'
2170 	 * must be the group leader. Now we disable this group before reporting
2171 	 * because 'mem-loads-aux' is just an auxiliary event. It doesn't carry
2172 	 * any valid memory load information.
2173 	 */
2174 	evlist__for_each_entry(evlist, evsel) {
2175 		leader = evsel->leader;
2176 		if (leader == evsel)
2177 			continue;
2178 
2179 		if (leader->name && strstr(leader->name, "mem-loads-aux")) {
2180 			for_each_group_evsel(pos, leader) {
2181 				pos->leader = pos;
2182 				pos->core.nr_members = 0;
2183 			}
2184 		}
2185 	}
2186 }
2187