1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
6 #include <perf/cpumap.h>
7 #include <perf/evlist.h>
11 #include "parse-events.h"
15 #include "thread_map.h"
17 #include "util/mmap.h"
19 #define CHECK__(x) { \
21 pr_debug(#x " failed!\n"); \
26 #define CHECK_NOT_NULL__(x) { \
27 while ((x) == NULL) { \
28 pr_debug(#x " failed!\n"); \
33 static int find_comm(struct evlist *evlist, const char *comm)
35 union perf_event *event;
40 for (i = 0; i < evlist->core.nr_mmaps; i++) {
41 md = &evlist->mmap[i];
42 if (perf_mmap__read_init(&md->core) < 0)
44 while ((event = perf_mmap__read_event(&md->core)) != NULL) {
45 if (event->header.type == PERF_RECORD_COMM &&
46 (pid_t)event->comm.pid == getpid() &&
47 (pid_t)event->comm.tid == getpid() &&
48 strcmp(event->comm.comm, comm) == 0)
50 perf_mmap__consume(&md->core);
52 perf_mmap__read_done(&md->core);
58 * test__keep_tracking - test using a dummy software event to keep tracking.
60 * This function implements a test that checks that tracking events continue
61 * when an event is disabled but a dummy software event is not disabled. If the
62 * test passes %0 is returned, otherwise %-1 is returned.
64 int test__keep_tracking(struct test *test __maybe_unused, int subtest __maybe_unused)
66 struct record_opts opts = {
67 .mmap_pages = UINT_MAX,
68 .user_freq = UINT_MAX,
69 .user_interval = ULLONG_MAX,
74 struct perf_thread_map *threads = NULL;
75 struct perf_cpu_map *cpus = NULL;
76 struct evlist *evlist = NULL;
77 struct evsel *evsel = NULL;
81 threads = thread_map__new(-1, getpid(), UINT_MAX);
82 CHECK_NOT_NULL__(threads);
84 cpus = perf_cpu_map__new(NULL);
85 CHECK_NOT_NULL__(cpus);
87 evlist = evlist__new();
88 CHECK_NOT_NULL__(evlist);
90 perf_evlist__set_maps(&evlist->core, cpus, threads);
92 CHECK__(parse_events(evlist, "dummy:u", NULL));
93 CHECK__(parse_events(evlist, "cycles:u", NULL));
95 evlist__config(evlist, &opts, NULL);
97 evsel = evlist__first(evlist);
99 evsel->core.attr.comm = 1;
100 evsel->core.attr.disabled = 1;
101 evsel->core.attr.enable_on_exec = 0;
103 if (evlist__open(evlist) < 0) {
104 pr_debug("Unable to open dummy and cycles event\n");
109 CHECK__(evlist__mmap(evlist, UINT_MAX));
112 * First, test that a 'comm' event can be found when the event is
116 evlist__enable(evlist);
118 comm = "Test COMM 1";
119 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm, 0, 0, 0));
121 evlist__disable(evlist);
123 found = find_comm(evlist, comm);
125 pr_debug("First time, failed to find tracking event.\n");
130 * Secondly, test that a 'comm' event can be found when the event is
131 * disabled with the dummy event still enabled.
134 evlist__enable(evlist);
136 evsel = evlist__last(evlist);
138 CHECK__(evsel__disable(evsel));
140 comm = "Test COMM 2";
141 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm, 0, 0, 0));
143 evlist__disable(evlist);
145 found = find_comm(evlist, comm);
147 pr_debug("Second time, failed to find tracking event.\n");
155 evlist__disable(evlist);
156 evlist__delete(evlist);
158 perf_cpu_map__put(cpus);
159 perf_thread_map__put(threads);