1 // SPDX-License-Identifier: GPL-2.0
6 #include "thread_map.h"
12 #include <linux/string.h>
13 #include <perf/cpumap.h>
14 #include <perf/evlist.h>
15 #include <perf/mmap.h>
20 static void sig_handler(int sig __maybe_unused
)
26 * evlist__prepare_workload will send a SIGUSR1 if the fork fails, since
27 * we asked by setting its exec_error to this handler.
29 static void workload_exec_failed_signal(int signo __maybe_unused
,
30 siginfo_t
*info __maybe_unused
,
31 void *ucontext __maybe_unused
)
38 * This test will start a workload that does nothing then it checks
39 * if the number of exit event reported by the kernel is 1 or not
40 * in order to check the kernel returns correct number of event.
42 static int test__task_exit(struct test_suite
*test __maybe_unused
, int subtest __maybe_unused
)
45 union perf_event
*event
;
47 struct evlist
*evlist
;
48 struct target target
= {
52 const char *argv
[] = { "true", NULL
};
53 char sbuf
[STRERR_BUFSIZE
];
54 struct perf_cpu_map
*cpus
;
55 struct perf_thread_map
*threads
;
59 signal(SIGCHLD
, sig_handler
);
61 evlist
= evlist__new_dummy();
63 pr_debug("evlist__new_dummy\n");
68 * Create maps of threads and cpus to monitor. In this case
69 * we start with all threads and cpus (-1, -1) but then in
70 * evlist__prepare_workload we'll fill in the only thread
71 * we're monitoring, the one forked there.
73 cpus
= perf_cpu_map__new_any_cpu();
74 threads
= thread_map__new_by_tid(-1);
75 if (!cpus
|| !threads
) {
77 pr_debug("Not enough memory to create thread/cpu maps\n");
78 goto out_delete_evlist
;
81 perf_evlist__set_maps(&evlist
->core
, cpus
, threads
);
83 err
= evlist__prepare_workload(evlist
, &target
, argv
, false, workload_exec_failed_signal
);
85 pr_debug("Couldn't run the workload!\n");
86 goto out_delete_evlist
;
89 evsel
= evlist__first(evlist
);
90 evsel
->core
.attr
.task
= 1;
92 evsel
->core
.attr
.sample_freq
= 1000000;
94 evsel
->core
.attr
.sample_freq
= 1;
96 evsel
->core
.attr
.inherit
= 0;
97 evsel
->core
.attr
.watermark
= 0;
98 evsel
->core
.attr
.wakeup_events
= 1;
99 evsel
->core
.attr
.exclude_kernel
= 1;
101 err
= evlist__open(evlist
);
103 pr_debug("Couldn't open the evlist: %s\n",
104 str_error_r(-err
, sbuf
, sizeof(sbuf
)));
105 goto out_delete_evlist
;
108 if (evlist__mmap(evlist
, 128) < 0) {
109 pr_debug("failed to mmap events: %d (%s)\n", errno
,
110 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
112 goto out_delete_evlist
;
115 evlist__start_workload(evlist
);
118 md
= &evlist
->mmap
[0];
119 if (perf_mmap__read_init(&md
->core
) < 0)
122 while ((event
= perf_mmap__read_event(&md
->core
)) != NULL
) {
123 if (event
->header
.type
== PERF_RECORD_EXIT
)
126 perf_mmap__consume(&md
->core
);
128 perf_mmap__read_done(&md
->core
);
131 if (!exited
|| !nr_exit
) {
132 evlist__poll(evlist
, -1);
134 if (retry_count
++ > 1000) {
135 pr_debug("Failed after retrying 1000 times\n");
137 goto out_delete_evlist
;
144 pr_debug("received %d EXIT records\n", nr_exit
);
149 perf_cpu_map__put(cpus
);
150 perf_thread_map__put(threads
);
151 evlist__delete(evlist
);
155 struct test_case tests__task_exit
[] = {
156 TEST_CASE_EXCLUSIVE("Number of exit events of a simple workload", task_exit
),
159 struct test_suite suite__task_exit
= {
160 .desc
= "Number of exit events of a simple workload",
161 .test_cases
= tests__task_exit
,