Michael Petlan
3cf6a32f3f
perf symbols: Fix symbol size calculation condition
...
Before this patch, the symbol end address fixup to be called, needed two
conditions being met:
if (prev->end == prev->start && prev->end != curr->start)
Where
"prev->end == prev->start" means that prev is zero-long
(and thus needs a fixup)
and
"prev->end != curr->start" means that fixup hasn't been applied yet
However, this logic is incorrect in the following situation:
*curr = {rb_node = {__rb_parent_color = 278218928,
rb_right = 0x0, rb_left = 0x0},
start = 0xc000000000062354,
end = 0xc000000000062354, namelen = 40, type = 2 '\002',
binding = 0 '\000', idle = 0 '\000', ignore = 0 '\000',
inlined = 0 '\000', arch_sym = 0 '\000', annotate2 = false,
name = 0x1159739e "kprobe_optinsn_page\t[__builtin__kprobes]"}
*prev = {rb_node = {__rb_parent_color = 278219041,
rb_right = 0x109548b0, rb_left = 0x109547c0},
start = 0xc000000000062354,
end = 0xc000000000062354, namelen = 12, type = 2 '\002',
binding = 1 '\001', idle = 0 '\000', ignore = 0 '\000',
inlined = 0 '\000', arch_sym = 0 '\000', annotate2 = false,
name = 0x1095486e "optinsn_slot"}
In this case, prev->start == prev->end == curr->start == curr->end,
thus the condition above thinks that "we need a fixup due to zero
length of prev symbol, but it has been probably done, since the
prev->end == curr->start", which is wrong.
After the patch, the execution path proceeds to arch__symbols__fixup_end
function which fixes up the size of prev symbol by adding page_size to
its end offset.
Fixes: 3b01a413c196c910 ("perf symbols: Improve kallsyms symbol end addr calculation")
Signed-off-by: Michael Petlan <mpetlan@redhat.com>
Cc: Athira Jajeev <atrajeev@linux.vnet.ibm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: http://lore.kernel.org/lkml/20220317135536.805-1-mpetlan@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-03-18 18:39:09 -03:00
..
2021-12-16 12:18:11 -03:00
2021-12-16 12:18:12 -03:00
2021-11-13 18:11:49 -03:00
2021-09-03 08:17:25 -03:00
2020-11-12 17:55:41 -03:00
2021-12-11 08:19:47 -03:00
2021-12-16 12:18:12 -03:00
2022-01-22 17:08:42 -03:00
2022-01-18 09:24:58 -03:00
2019-11-28 08:08:38 -03:00
2021-09-10 18:15:21 -03:00
2022-02-06 09:03:06 -03:00
2021-11-13 18:11:51 -03:00
2019-03-11 11:56:02 -03:00
2022-01-14 11:36:03 -03:00
2021-12-21 18:37:13 -03:00
2021-12-17 22:44:10 -03:00
2018-01-17 10:23:31 -03:00
2022-01-22 17:08:42 -03:00
2022-01-12 14:28:23 -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
2022-02-06 09:03:06 -03:00
2022-01-13 10:20:59 -03:00
2022-01-12 14:28:23 -03:00
2022-01-12 14:28:23 -03:00
2019-02-19 16:11:56 -03:00
2019-02-19 16:11:56 -03:00
2021-11-13 18:11:51 -03:00
2021-11-01 18:16:40 -03:00
2022-02-17 07:15:09 -03:00
2020-11-04 09:42:40 -03:00
2020-06-09 12:40:04 -03:00
2021-11-01 18:16:40 -03:00
2021-11-01 18:16:40 -03:00
2019-09-20 09:19:20 -03:00
2020-05-28 10:03:27 -03:00
2021-12-21 18:37:13 -03:00
2021-02-18 16:41:40 -03:00
2021-02-18 16:41:40 -03: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-12-21 18:35:44 -03:00
2021-12-21 18:35:44 -03:00
2019-08-14 10:48:39 -03:00
2020-04-16 12:19:08 -03:00
2021-07-09 14:04:31 -03: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
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
2022-01-22 17:08:42 -03:00
2022-01-12 14:28:22 -03:00
2019-02-06 10:00:39 -03:00
2022-01-12 14:28:23 -03:00
2022-01-22 17:12:23 -03:00
2022-01-22 17:08:42 -03:00
2021-11-13 18:11:50 -03:00
2022-02-16 13:49:25 -03:00
2021-09-03 08:15:10 -03:00
2021-12-06 15:37:22 -05:00
2021-08-02 10:06:51 -03:00
2021-04-29 10:30:58 -03:00
2022-02-22 17:34:16 -03:00
2021-05-12 12:43:10 -03:00
2021-05-25 10:07:17 -03:00
2021-05-25 10:07:17 -03:00
2022-01-12 14:28:21 -03:00
2021-08-03 17:03:18 -03:00
2021-03-23 17:13:43 -03: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
2021-08-11 09:35:44 -03:00
2021-08-11 09:35:44 -03:00
2021-11-01 18:16:40 -03:00
2021-10-25 13:47:42 -03:00
2020-10-14 11:28:52 -03: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
2021-07-18 09:31:15 -03:00
2021-07-18 09:31:15 -03:00
2021-03-01 14:47:50 -03:00
2022-01-12 14:28:23 -03:00
2022-01-12 14:28:23 -03:00
2021-10-20 11:22:27 -03:00
2021-12-11 08:19:46 -03:00
2021-09-03 08:29:55 -03:00
2022-02-18 09:59:26 -03:00
2021-08-11 16:07:32 -03:00
2022-01-18 09:24:58 -03:00
2022-01-12 14:28:23 -03:00
2020-05-28 10:03:24 -03:00
2021-10-27 20:56:36 -03:00
2020-05-28 10:03:24 -03:00
2022-01-22 17:15:47 -03:00
2022-01-22 17:08:42 -03:00
2020-11-30 09:48:07 -03:00
2019-08-15 12:25:55 -03:00
2022-01-12 15:02:48 -03:00
2021-11-13 18:11:50 -03:00
2021-11-13 18:11:50 -03:00
2021-11-13 18:11:50 -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
2021-12-16 12:18:12 -03:00
2020-05-29 16:51:38 -03:00
2019-11-29 12:20:45 -03:00
2021-11-07 12:27:38 -03: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
2022-01-12 14:28:23 -03:00
2021-08-02 10:09:05 -03:00
2019-07-09 10:13:26 -03:00
2022-01-10 15:39:00 -03:00
2022-01-10 15:39:00 -03:00
2021-11-07 12:27:38 -03:00
2019-06-05 17:36:37 +02:00
2021-12-28 17:26:25 -03: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
2021-08-31 15:18:16 -03:00
2019-08-29 17:38:32 -03:00
2021-07-15 17:30:22 -03:00
2022-02-06 09:03:06 -03:00
2021-12-21 18:37:13 -03:00
2022-02-06 09:03:06 -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-12-22 09:34:43 -03:00
2021-06-01 11:04:59 -03:00
2019-09-20 09:19:22 -03:00
2022-01-15 17:07:05 -03:00
2021-10-25 13:47:42 -03:00
2022-01-22 17:08:42 -03:00
2022-01-12 14:28:23 -03:00
2021-12-16 12:18:12 -03:00
2021-12-16 12:18:12 -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
2021-12-07 22:18:25 -03:00
2021-10-20 10:54:44 -03:00
2022-03-12 11:04:55 -03:00
2022-01-22 17:20:12 -03:00
2022-01-22 17:20:12 -03:00
2022-01-22 17:20:12 -03: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
2022-01-22 17:08:42 -03:00
2021-06-01 10:32:00 -03:00
2022-02-06 09:03:06 -03:00
2021-12-16 12:18:12 -03:00
2021-12-21 18:35:44 -03:00
2019-09-20 09:19:20 -03:00
2019-05-28 18:37:44 -03:00
2021-10-20 10:54:44 -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
2022-01-02 11:29:05 -03:00
2021-11-06 17:54:42 -03:00
2020-10-01 12:10:56 -03:00
2022-01-18 09:24:58 -03: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
2021-10-20 10:30:59 -03:00
2022-01-22 17:04:33 -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
2022-01-22 17:08:42 -03:00
2021-09-17 08:55:00 -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
2020-04-16 12:19:15 -03:00
2018-08-08 15:26:48 -03:00
2021-11-07 12:27:38 -03:00
2018-08-03 10:34:18 -03:00
2021-10-20 10:32:33 -03:00
2021-09-10 18:15:21 -03:00
2021-09-10 18:15:21 -03:00
2022-02-06 09:03:06 -03:00
2021-10-25 13:47:41 -03:00
2019-07-09 10:13:26 -03:00
2021-01-20 14:34:21 -03:00
2020-11-30 14:56:52 -03:00
2022-01-12 14:43:34 -03:00
2022-02-06 09:03:06 -03:00
2022-01-10 15:39:00 -03: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
2021-10-04 09:29:07 -03:00
2019-01-25 15:12:09 +01:00
2022-02-06 09:03:06 -03:00
2022-01-12 14:28:23 -03:00
2022-01-12 14:28:23 -03:00
2022-01-12 14:28:23 -03: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
2022-01-22 17:08:42 -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
2021-07-07 10:28:10 -03:00
2020-10-14 08:46:42 -03:00
2022-03-18 18:39:09 -03:00
2021-11-13 18:11:51 -03:00
2019-08-31 22:24:05 -03:00
2022-02-06 09:03:06 -03:00
2022-01-12 14:28:23 -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
2021-08-11 16:04:33 -03: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
2021-10-20 11:22:27 -03:00
2022-01-22 17:08:42 -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
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
2022-01-15 17:41:25 -03:00
2022-01-15 17:41:25 -03:00
2019-08-31 19:10:19 -03:00
2021-03-24 10:38:56 -03:00
2019-09-20 09:19:20 -03:00
2020-09-01 12:15:21 -03:00