1 // SPDX-License-Identifier: GPL-2.0
8 #include <linux/string.h>
11 #include "util/debug.h"
12 #include "util/evsel.h"
13 #include "util/evlist.h"
14 #include "util/cpumap.h"
15 #include "util/mmap.h"
16 #include "util/sample.h"
17 #include "util/thread_map.h"
18 #include <perf/evlist.h>
19 #include <perf/mmap.h>
21 #define NR_LOOPS 10000000
24 * This test will open software clock events (cpu-clock, task-clock)
25 * then check their frequency -> period conversion has no artifact of
26 * setting period to 1 forcefully.
28 static int __test__sw_clock_freq(enum perf_sw_ids clock_id
)
32 u64 total_periods
= 0;
34 char sbuf
[STRERR_BUFSIZE
];
35 union perf_event
*event
;
37 struct evlist
*evlist
;
38 struct perf_event_attr attr
= {
39 .type
= PERF_TYPE_SOFTWARE
,
41 .sample_type
= PERF_SAMPLE_PERIOD
,
46 struct perf_cpu_map
*cpus
= NULL
;
47 struct perf_thread_map
*threads
= NULL
;
50 attr
.sample_freq
= 500;
52 evlist
= evlist__new();
54 pr_debug("evlist__new\n");
58 evsel
= evsel__new(&attr
);
60 pr_debug("evsel__new\n");
61 goto out_delete_evlist
;
63 evlist__add(evlist
, evsel
);
65 cpus
= perf_cpu_map__new_any_cpu();
66 threads
= thread_map__new_by_tid(getpid());
67 if (!cpus
|| !threads
) {
69 pr_debug("Not enough memory to create thread/cpu maps\n");
70 goto out_delete_evlist
;
73 perf_evlist__set_maps(&evlist
->core
, cpus
, threads
);
75 if (evlist__open(evlist
)) {
76 const char *knob
= "/proc/sys/kernel/perf_event_max_sample_rate";
79 pr_debug("Couldn't open evlist: %s\nHint: check %s, using %" PRIu64
" in this test.\n",
80 str_error_r(errno
, sbuf
, sizeof(sbuf
)),
81 knob
, (u64
)attr
.sample_freq
);
82 goto out_delete_evlist
;
85 err
= evlist__mmap(evlist
, 128);
87 pr_debug("failed to mmap event: %d (%s)\n", errno
,
88 str_error_r(errno
, sbuf
, sizeof(sbuf
)));
89 goto out_delete_evlist
;
92 evlist__enable(evlist
);
95 for (i
= 0; i
< NR_LOOPS
; i
++)
98 evlist__disable(evlist
);
100 md
= &evlist
->mmap
[0];
101 if (perf_mmap__read_init(&md
->core
) < 0)
104 while ((event
= perf_mmap__read_event(&md
->core
)) != NULL
) {
105 struct perf_sample sample
;
107 if (event
->header
.type
!= PERF_RECORD_SAMPLE
)
110 err
= evlist__parse_sample(evlist
, event
, &sample
);
112 pr_debug("Error during parse sample\n");
113 goto out_delete_evlist
;
116 total_periods
+= sample
.period
;
119 perf_mmap__consume(&md
->core
);
121 perf_mmap__read_done(&md
->core
);
124 if ((u64
) nr_samples
== total_periods
) {
125 pr_debug("All (%d) samples have period value of 1!\n",
131 perf_cpu_map__put(cpus
);
132 perf_thread_map__put(threads
);
133 evlist__delete(evlist
);
137 static int test__sw_clock_freq(struct test_suite
*test __maybe_unused
, int subtest __maybe_unused
)
141 ret
= __test__sw_clock_freq(PERF_COUNT_SW_CPU_CLOCK
);
143 ret
= __test__sw_clock_freq(PERF_COUNT_SW_TASK_CLOCK
);
148 DEFINE_SUITE("Software clock events period values", sw_clock_freq
);