7 #include "util/evsel.h"
8 #include "util/evlist.h"
9 #include "util/cpumap.h"
10 #include "util/thread_map.h"
12 #define NR_LOOPS 10000000
15 * This test will open software clock events (cpu-clock, task-clock)
16 * then check their frequency -> period conversion has no artifact of
17 * setting period to 1 forcefully.
19 static int __test__sw_clock_freq(enum perf_sw_ids clock_id
)
23 u64 total_periods
= 0;
25 char sbuf
[STRERR_BUFSIZE
];
26 union perf_event
*event
;
27 struct perf_evsel
*evsel
;
28 struct perf_evlist
*evlist
;
29 struct perf_event_attr attr
= {
30 .type
= PERF_TYPE_SOFTWARE
,
32 .sample_type
= PERF_SAMPLE_PERIOD
,
38 struct thread_map
*threads
;
40 attr
.sample_freq
= 500;
42 evlist
= perf_evlist__new();
44 pr_debug("perf_evlist__new\n");
48 evsel
= perf_evsel__new(&attr
);
50 pr_debug("perf_evsel__new\n");
51 goto out_delete_evlist
;
53 perf_evlist__add(evlist
, evsel
);
55 cpus
= cpu_map__dummy_new();
56 threads
= thread_map__new_by_tid(getpid());
57 if (!cpus
|| !threads
) {
59 pr_debug("Not enough memory to create thread/cpu maps\n");
63 perf_evlist__set_maps(evlist
, cpus
, threads
);
68 if (perf_evlist__open(evlist
)) {
69 const char *knob
= "/proc/sys/kernel/perf_event_max_sample_rate";
72 pr_debug("Couldn't open evlist: %s\nHint: check %s, using %" PRIu64
" in this test.\n",
73 strerror_r(errno
, sbuf
, sizeof(sbuf
)),
74 knob
, (u64
)attr
.sample_freq
);
75 goto out_delete_evlist
;
78 err
= perf_evlist__mmap(evlist
, 128, true);
80 pr_debug("failed to mmap event: %d (%s)\n", errno
,
81 strerror_r(errno
, sbuf
, sizeof(sbuf
)));
82 goto out_delete_evlist
;
85 perf_evlist__enable(evlist
);
88 for (i
= 0; i
< NR_LOOPS
; i
++)
91 perf_evlist__disable(evlist
);
93 while ((event
= perf_evlist__mmap_read(evlist
, 0)) != NULL
) {
94 struct perf_sample sample
;
96 if (event
->header
.type
!= PERF_RECORD_SAMPLE
)
99 err
= perf_evlist__parse_sample(evlist
, event
, &sample
);
101 pr_debug("Error during parse sample\n");
102 goto out_delete_evlist
;
105 total_periods
+= sample
.period
;
108 perf_evlist__mmap_consume(evlist
, 0);
111 if ((u64
) nr_samples
== total_periods
) {
112 pr_debug("All (%d) samples have period value of 1!\n",
119 thread_map__put(threads
);
121 perf_evlist__delete(evlist
);
125 int test__sw_clock_freq(int subtest __maybe_unused
)
129 ret
= __test__sw_clock_freq(PERF_COUNT_SW_CPU_CLOCK
);
131 ret
= __test__sw_clock_freq(PERF_COUNT_SW_TASK_CLOCK
);