Dmitrii Dolgov
b13e20cc58
perf stat: Separate bperf from bpf_profiler
...
[ Upstream commit ecc68ee216 ]
It seems that perf stat -b <prog id> doesn't produce any results:
$ perf stat -e cycles -b 4 -I 10000 -vvv
Control descriptor is not initialized
cycles: 0 0 0
time counts unit events
10.007641640 <not supported> cycles
Looks like this happens because fentry/fexit progs are getting loaded, but the
corresponding perf event is not enabled and not added into the events bpf map.
I think there is some mixing up between two type of bpf support, one for bperf
and one for bpf_profiler. Both are identified via evsel__is_bpf, based on which
perf events are enabled, but for the latter (bpf_profiler) a perf event is
required. Using evsel__is_bperf to check only bperf produces expected results:
$ perf stat -e cycles -b 4 -I 10000 -vvv
Control descriptor is not initialized
------------------------------------------------------------
perf_event_attr:
size 136
sample_type IDENTIFIER
read_format TOTAL_TIME_ENABLED|TOTAL_TIME_RUNNING
disabled 1
exclude_guest 1
------------------------------------------------------------
sys_perf_event_open: pid -1 cpu 0 group_fd -1 flags 0x8 = 3
------------------------------------------------------------
[...perf_event_attr for other CPUs...]
------------------------------------------------------------
cycles: 309426 169009 169009
time counts unit events
10.010091271 309426 cycles
The final numbers correspond (at least in the level of magnitude) to the
same metric obtained via bpftool.
Fixes: 112cb56164 ("perf stat: Introduce config stat.bpf-counter-events")
Reviewed-by: Song Liu <song@kernel.org >
Signed-off-by: Dmitrii Dolgov <9erthalion6@gmail.com >
Tested-by: Song Liu <song@kernel.org >
Cc: Ian Rogers <irogers@google.com >
Cc: Ingo Molnar <mingo@redhat.com >
Cc: Jiri Olsa <jolsa@kernel.org >
Cc: Namhyung Kim <namhyung@kernel.org >
Cc: Song Liu <song@kernel.org >
Link: https://lore.kernel.org/r/20230412182316.11628-1-9erthalion6@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2023-05-17 11:50:21 +02:00
..
2021-04-07 16:23:20 -03:00
2022-09-28 11:11:52 +02:00
2020-01-14 12:02:19 -03:00
2021-09-03 08:17:25 -03:00
2020-11-12 17:55:41 -03:00
2023-05-11 23:00:40 +09:00
2021-03-23 17:13:43 -03:00
2021-09-03 08:18:25 -03:00
2021-09-08 11:50:27 -07:00
2019-11-28 08:08:38 -03:00
2021-09-10 18:15:21 -03:00
2023-03-17 08:49:04 +01:00
2021-03-06 16:42:31 -03:00
2019-03-11 11:56:02 -03:00
2022-06-29 09:03:24 +02:00
2018-01-17 10:23:31 -03:00
2023-05-11 23:00:40 +09:00
2021-08-31 15:12:00 -03:00
2021-04-07 16:18:49 -03:00
2020-03-09 21:43:25 -03:00
2019-01-25 15:12:09 +01:00
2019-01-25 15:12:09 +01:00
2021-07-09 14:04:28 -03:00
2021-07-29 17:23:52 -07:00
2023-01-18 11:48:56 +01:00
2019-02-19 16:11:56 -03:00
2019-02-19 16:11:56 -03:00
2022-05-25 09:57:34 +02:00
2020-05-05 16:35:29 -03:00
2022-02-23 12:03:13 +01:00
2020-11-04 09:42:40 -03:00
2020-06-09 12:40:04 -03:00
2017-11-02 11:10:55 +01:00
2019-09-20 09:19:20 -03:00
2020-05-28 10:03:27 -03:00
2021-09-10 18:15:21 -03:00
2022-06-29 09:03:31 +02:00
2021-02-18 16:41:40 -03:00
2017-11-02 11:10:55 +01:00
2019-08-29 17:38:32 -03:00
2019-08-26 11:58:29 -03:00
2019-07-09 10:13:27 -03:00
2021-03-23 17:13:43 -03:00
2021-03-23 17:13:43 -03:00
2020-10-14 13:34:26 -03:00
2019-08-14 10:48:39 -03:00
2020-04-16 12:19:08 -03:00
2023-01-12 11:59:16 +01:00
2021-07-05 14:16:57 -03:00
2020-08-06 09:33:57 -03:00
2020-08-06 09:33:57 -03:00
2020-05-28 10:03:26 -03:00
2017-11-02 11:10:55 +01:00
2019-08-31 22:24:10 -03:00
2019-08-31 22:24:10 -03:00
2019-01-25 15:12:08 +01:00
2019-07-09 10:13:26 -03:00
2019-01-25 15:12:09 +01:00
2019-05-15 16:36:49 -03:00
2021-09-27 09:32:28 -03:00
2021-01-20 14:34:21 -03:00
2019-10-15 12:05:18 -03:00
2019-09-25 09:51:49 -03:00
2020-05-28 10:03:27 -03:00
2020-05-28 10:03:27 -03:00
2019-02-06 10:00:39 -03:00
2020-12-24 10:05:28 -03:00
2020-12-24 10:05:28 -03:00
2021-05-17 10:55:10 -03:00
2021-05-17 10:55:10 -03:00
2021-09-03 08:18:24 -03:00
2021-09-03 08:15:10 -03:00
2021-08-02 10:06:51 -03:00
2021-08-02 10:06:51 -03:00
2021-04-29 10:30:58 -03:00
2023-01-12 11:59:15 +01:00
2022-06-09 10:22:52 +02:00
2021-05-25 10:07:17 -03:00
2021-05-25 10:07:17 -03:00
2022-12-31 13:14:45 +01:00
2021-08-03 17:03:18 -03:00
2021-03-23 17:13:43 -03:00
2017-11-02 11:10:55 +01:00
2021-03-30 12:45:59 -03:00
2021-02-17 15:15:06 -03:00
2019-09-20 09:19:20 -03:00
2017-11-02 11:10:55 +01:00
2021-08-11 09:35:44 -03:00
2021-08-11 09:35:44 -03:00
2021-09-11 16:04:47 -03:00
2021-08-03 17:04:08 -03:00
2022-08-17 14:24:09 +02:00
2019-11-19 19:12:26 -03:00
2018-12-28 16:33:02 -03:00
2018-12-28 16:33:02 -03:00
2023-01-12 11:59:06 +01:00
2021-07-18 09:31:15 -03:00
2021-03-01 14:47:50 -03:00
2021-11-25 09:48:33 +01:00
2021-11-25 09:48:33 +01:00
2021-02-08 17:09:11 -03:00
2021-05-21 16:41:37 -03:00
2021-09-03 08:29:55 -03:00
2022-03-02 11:47:52 +01:00
2021-08-11 16:07:32 -03:00
2023-05-17 11:50:21 +02:00
2023-05-17 11:50:21 +02:00
2020-05-28 10:03:24 -03:00
2021-01-20 14:34:21 -03:00
2020-05-28 10:03:24 -03:00
2022-01-27 11:05:27 +01:00
2023-05-17 11:50:21 +02:00
2020-11-30 09:48:07 -03:00
2019-08-15 12:25:55 -03:00
2020-11-16 14:09:18 -03:00
2021-03-23 17:13:43 -03:00
2020-06-22 16:28:09 -03:00
2020-11-16 14:09:18 -03:00
2019-01-08 13:28:13 -03:00
2019-11-28 08:08:38 -03:00
2019-11-28 08:08:38 -03:00
2020-05-29 16:51:38 -03:00
2022-09-28 11:11:52 +02:00
2022-09-28 11:11:52 +02:00
2018-04-12 10:33:31 -03:00
2021-08-30 10:06:16 -03:00
2019-07-09 10:13:26 -03:00
2020-11-03 08:26:55 -03:00
2020-11-27 14:19:33 -03:00
2021-09-08 12:55:35 -07:00
2021-08-02 10:09:05 -03:00
2019-07-09 10:13:26 -03:00
2015-12-14 12:30:37 -03:00
2021-12-08 09:04:40 +01:00
2021-12-08 09:04:41 +01:00
2020-05-05 16:35:30 -03:00
2019-06-05 17:36:37 +02:00
2023-03-10 09:39:33 +01:00
2019-06-05 17:36:37 +02:00
2021-02-08 17:02:00 -03:00
2021-02-08 17:02:00 -03:00
2021-04-20 08:40:20 -03:00
2021-04-20 08:40:20 -03:00
2021-02-03 13:10:44 -03:00
2021-04-29 10:31:00 -03:00
2020-05-28 10:03:27 -03:00
2019-09-20 10:28:26 -03:00
2021-03-23 17:13:43 -03:00
2017-11-02 11:10:55 +01:00
2023-03-10 09:39:32 +01:00
2019-08-29 17:38:32 -03:00
2021-07-15 17:30:22 -03:00
2022-09-15 11:30:08 +02:00
2021-02-18 16:14:33 -03:00
2020-12-19 17:52:24 -03:00
2021-07-30 18:26:22 -03:00
2021-03-23 17:13:43 -03:00
2019-11-26 11:07:46 -03:00
2020-11-04 09:42:40 -03:00
2019-08-31 19:10:40 -03:00
2021-06-16 15:05:24 -03:00
2021-06-01 11:04:59 -03:00
2017-11-02 11:10:55 +01:00
2019-09-20 09:19:22 -03:00
2021-09-08 11:50:27 -07:00
2021-04-08 14:23:39 -03:00
2021-09-08 11:50:27 -07:00
2021-08-31 16:21:17 -03:00
2021-02-03 13:10:44 -03:00
2021-02-03 13:10:44 -03:00
2020-04-30 10:48:32 -03:00
2020-05-28 10:03:27 -03:00
2019-08-31 19:10:19 -03:00
2017-11-02 11:10:55 +01:00
2021-09-11 16:00:34 -03:00
2021-04-29 10:30:59 -03:00
2022-10-29 10:12:58 +02:00
2021-04-29 10:30:59 -03:00
2021-05-19 14:23:23 -03:00
2022-10-12 09:53:28 +02:00
2020-12-17 14:36:16 -03:00
2019-05-15 16:36:49 -03:00
2020-08-14 09:15:47 -03:00
2021-08-24 15:01:31 -03:00
2019-08-31 22:24:10 -03:00
2019-08-31 22:24:10 -03:00
2021-06-01 10:32:00 -03:00
2021-06-01 10:32:00 -03:00
2021-09-11 15:58:36 -03:00
2019-10-10 09:29:33 -03:00
2021-02-18 16:24:43 -03:00
2016-11-29 12:13:27 -03:00
2019-09-20 09:19:20 -03:00
2017-11-02 11:10:55 +01:00
2019-05-28 18:37:44 -03:00
2021-07-14 10:05:35 -03:00
2020-05-29 16:51:38 -03:00
2021-04-29 10:30:59 -03:00
2021-05-17 10:55:10 -03:00
2023-05-17 11:50:20 +02:00
2022-10-29 10:12:58 +02:00
2022-10-29 10:12:58 +02:00
2022-10-29 10:12:58 +02:00
2020-10-01 12:10:56 -03:00
2017-11-07 10:30:18 +01:00
2022-08-25 11:40:15 +02:00
2021-07-18 09:31:15 -03:00
2021-07-18 09:27:37 -03:00
2019-11-18 19:08:02 -03:00
2021-07-18 09:31:15 -03:00
2021-07-18 09:31:15 -03:00
2020-05-28 10:03:27 -03:00
2017-11-02 11:10:55 +01:00
2021-04-29 10:30:59 -03:00
2021-07-09 14:04:28 -03:00
2019-01-25 15:12:10 +01:00
2019-06-05 17:37:04 +02:00
2019-01-25 15:12:10 +01:00
2021-07-09 14:04:31 -03:00
2021-01-20 14:34:20 -03:00
2019-07-09 14:59:11 -03:00
2019-07-09 14:59:11 -03:00
2019-09-20 09:19:20 -03:00
2017-09-21 13:28:06 -03:00
2020-04-16 12:19:15 -03:00
2018-08-08 15:26:48 -03:00
2021-03-23 17:13:43 -03:00
2018-08-03 10:34:18 -03:00
2021-04-08 14:24:14 -03:00
2021-09-10 18:15:21 -03:00
2021-09-10 18:15:21 -03:00
2022-04-13 20:59:20 +02:00
2021-08-02 10:09:05 -03:00
2019-07-09 10:13:26 -03:00
2022-04-13 20:59:26 +02:00
2020-11-30 14:56:52 -03:00
2021-12-14 10:57:18 +01:00
2017-08-22 12:09:04 -03:00
2023-05-17 11:50:20 +02:00
2021-12-08 09:04:40 +01:00
2019-10-11 10:57:00 -03:00
2019-10-11 10:57:00 -03:00
2021-06-08 09:36:36 -03:00
2019-02-06 10:00:38 -03:00
2020-01-30 11:55:26 +01:00
2019-01-25 15:12:09 +01:00
2022-11-16 09:58:20 +01:00
2021-07-09 14:04:31 -03:00
2023-03-17 08:48:54 +01:00
2023-03-17 08:48:54 +01:00
2019-08-31 19:10:19 -03:00
2021-03-23 17:13:43 -03:00
2021-07-09 14:04:28 -03:00
2020-10-14 13:34:26 -03:00
2019-07-09 10:13:26 -03:00
2021-03-23 17:13:43 -03:00
2021-02-17 15:15:06 -03:00
2021-02-17 15:15:06 -03:00
2019-07-09 10:13:26 -03:00
2019-01-25 15:12:10 +01:00
2019-09-20 09:19:21 -03:00
2019-08-29 17:38:31 -03:00
2021-02-08 17:09:11 -03:00
2021-03-08 11:17:51 -03:00
2023-05-17 11:50:21 +02:00
2020-10-14 08:46:42 -03:00
2022-05-09 09:14:44 +02:00
2022-05-09 09:14:44 +02:00
2019-08-31 22:24:05 -03:00
2022-09-28 11:11:53 +02:00
2021-08-02 10:14:34 -03:00
2021-03-01 14:49:28 -03:00
2020-05-29 16:50:26 -03:00
2021-01-20 14:25:28 -03:00
2023-03-17 08:48:54 +01:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-08-29 08:36:12 -03:00
2019-08-29 08:36:12 -03:00
2020-05-05 16:35:29 -03:00
2021-03-25 08:59:10 -03:00
2020-04-18 09:05:01 -03:00
2020-04-18 09:05:01 -03:00
2019-10-15 08:36:22 -03:00
2019-10-15 08:36:22 -03:00
2020-07-10 08:20:01 -03:00
2020-05-05 16:35:30 -03:00
2020-05-05 16:35:29 -03:00
2020-09-17 15:47:58 -03:00
2020-09-17 15:47:58 -03:00
2021-02-03 13:13:53 -03:00
2019-11-05 08:39:27 -03:00
2021-03-06 16:54:26 -03:00
2021-06-01 10:03:17 -03:00
2019-09-20 09:19:20 -03:00
2021-09-03 08:18:25 -03:00
2019-08-29 17:38:32 -03:00
2021-04-29 10:31:00 -03:00
2021-04-29 10:31:00 -03:00
2021-03-15 11:36:54 -03:00
2021-03-15 11:36:54 -03:00
2021-02-18 14:20:32 -03:00
2017-11-02 11:10:55 +01:00
2021-03-23 17:13:43 -03:00
2019-11-26 11:07:46 -03:00
2019-11-26 11:07:46 -03:00
2019-09-20 09:19:20 -03:00
2021-12-08 09:04:41 +01:00
2021-12-08 09:04:41 +01:00
2019-08-31 19:10:19 -03:00
2017-11-02 11:10:55 +01:00
2021-03-24 10:38:56 -03:00
2017-11-02 11:10:55 +01:00
2019-09-20 09:19:20 -03:00
2020-09-01 12:15:21 -03:00