Masahiro Yamada
6852d82e6c
modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24}
...
[ Upstream commit 56a24b8ce6 ]
addend_arm_rel() processes R_ARM_PC24, R_ARM_CALL, R_ARM_JUMP24 in a
wrong way.
Here, test code.
[test code for R_ARM_JUMP24]
.section .init.text,"ax"
bar:
bx lr
.section .text,"ax"
.globl foo
foo:
b bar
[test code for R_ARM_CALL]
.section .init.text,"ax"
bar:
bx lr
.section .text,"ax"
.globl foo
foo:
push {lr}
bl bar
pop {pc}
If you compile it with ARM multi_v7_defconfig, modpost will show the
symbol name, (unknown).
WARNING: modpost: vmlinux.o: section mismatch in reference: foo (section: .text) -> (unknown) (section: .init.text)
(You need to use GNU linker instead of LLD to reproduce it.)
Fix the code to make modpost show the correct symbol name.
I imported (with adjustment) sign_extend32() from include/linux/bitops.h.
The '+8' is the compensation for pc-relative instruction. It is
documented in "ELF for the Arm Architecture" [1].
"If the relocation is pc-relative then compensation for the PC bias
(the PC value is 8 bytes ahead of the executing instruction in Arm
state and 4 bytes in Thumb state) must be encoded in the relocation
by the object producer."
[1]: https://github.com/ARM-software/abi-aa/blob/main/aaelf32/aaelf32.rst
Fixes: 56a974fa2d ("kbuild: make better section mismatch reports on arm")
Fixes: 6e2e340b59 ("ARM: 7324/1: modpost: Fix section warnings for ARM for many compilers")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2023-07-19 16:21:41 +02:00
..
2023-02-01 08:34:49 +01:00
2022-05-08 01:33:07 -07:00
2023-03-17 08:50:31 +01:00
2022-08-07 21:30:36 +02:00
2022-09-27 10:36:16 -05:00
2022-08-21 02:47:48 +09:00
2023-03-10 09:33:51 +01:00
2023-05-11 23:03:40 +09:00
2022-05-24 16:33:20 +09:00
2023-03-22 13:33:52 +01:00
2017-03-28 16:16:52 +02:00
2023-07-19 16:21:41 +02:00
2023-03-10 09:33:41 +01:00
2022-09-20 14:12:25 -04:00
2023-02-01 08:34:37 +01:00
2022-09-28 09:02:06 +02:00
2022-05-08 03:16:59 +09:00
2023-06-21 16:01:03 +02:00
2023-04-26 14:28:44 +02:00
2018-07-18 01:18:05 +09:00
2022-07-17 17:31:40 -07:00
2019-06-05 17:37:11 +02:00
2022-08-25 11:49:14 -07:00
2018-06-28 13:36:39 +09:00
2022-09-28 09:02:20 +02:00
2021-09-08 11:50:28 -07:00
2022-09-29 04:40:15 +09:00
2020-02-25 03:35:16 -07:00
2021-08-10 09:13:25 +09:00
2017-11-02 11:10:55 +01:00
2023-03-17 08:50:31 +01:00
2022-10-12 11:00:22 -07:00
2022-07-27 21:18:00 +09:00
2022-05-08 03:16:59 +09:00
2021-08-05 20:55:39 +09:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2021-05-18 11:09:59 +02:00
2021-01-04 10:38:11 +09:00
2022-01-20 08:52:54 +02:00
2022-09-28 09:01:40 +02:00
2022-09-11 21:55:05 -07:00
2021-01-01 12:26:39 -08:00
2020-09-04 18:19:37 +02:00
2023-03-17 08:50:31 +01:00
2021-10-26 09:42:29 -06:00
2020-03-17 08:59:03 +09:00
2019-06-05 17:37:07 +02:00
2022-08-29 13:58:47 +09:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2019-06-05 17:37:10 +02:00
2022-11-16 10:42:10 +01:00
2018-03-26 02:01:24 +09:00
2020-01-27 14:25:06 -07:00
2021-03-08 13:19:05 +01:00
2018-06-25 23:21:13 +09:00
2022-06-26 06:15:05 +09:00
2021-09-03 08:17:21 +09:00
2022-05-08 01:33:07 -07:00
2021-01-14 08:21:09 -08:00
2022-09-28 09:02:06 +02:00
2022-09-28 09:02:45 +02:00
2022-04-24 10:38:44 +02:00
2019-05-24 17:36:45 +02:00
2022-06-30 12:22:17 -06:00
2022-04-29 14:38:00 -07:00
2023-06-28 11:12:22 +02:00
2023-02-25 11:25:42 +01:00
2017-11-02 11:10:55 +01:00
2022-07-27 21:18:00 +09:00
2016-02-26 15:30:20 +00:00
2022-05-11 21:45:53 +09:00
2022-09-28 09:02:06 +02:00
2021-05-17 12:10:03 +09:00
2022-10-10 12:00:45 -07:00
2022-09-29 02:00:29 +09:00
2023-06-21 16:01:03 +02:00
2022-06-13 11:07:45 -06:00
2021-04-25 05:14:26 +09:00
2021-10-15 11:25:13 +02:00
2017-11-02 11:10:55 +01:00
2022-10-03 03:52:58 +09:00
2022-09-28 09:02:20 +02:00
2021-03-15 19:20:48 +09:00
2022-10-15 05:22:29 +09:00
2022-03-21 08:13:03 -07:00
2022-05-08 03:17:00 +09:00
2023-06-21 16:01:03 +02:00
2022-09-28 09:02:20 +02:00
2021-03-15 19:20:48 +09:00
2022-10-10 12:00:45 -07:00
2022-08-16 12:25:53 -07:00
2021-03-15 19:20:48 +09:00
2022-09-28 09:02:20 +02:00
2021-09-24 16:13:35 -07:00
2020-08-10 01:32:59 +09:00
2021-12-09 16:42:27 -08:00
2022-10-03 14:03:19 -07:00
2022-10-10 17:53:04 -07:00
2022-10-10 12:00:45 -07:00
2023-02-09 11:28:11 +01:00
2022-10-28 00:19:40 +09:00
2022-11-24 09:27:57 +09:00
2022-05-08 01:33:07 -07:00
2022-01-20 08:52:55 +02:00
2020-05-17 18:52:01 +09:00
2022-10-03 03:52:58 +09:00
2022-10-03 03:52:58 +09:00
2017-11-02 11:10:55 +01:00
2019-06-05 17:37:10 +02:00
2022-11-09 18:41:16 +01:00
2022-09-29 04:40:15 +09:00
2022-10-03 03:51:58 +09:00
2017-11-02 11:10:55 +01:00
2022-09-26 10:13:13 -07:00
2021-04-25 05:22:42 +09:00
2022-06-08 20:14:13 +09:00
2022-06-05 06:20:57 +09:00
2022-05-12 10:08:43 -07:00
2022-02-22 14:32:44 -08:00
2022-02-02 11:19:33 +01:00
2020-03-26 15:08:27 -07:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2022-05-11 21:46:38 +09:00
2023-05-24 17:32:41 +01:00
2021-06-18 09:09:17 -04:00
2022-03-07 13:54:59 +01:00
2022-08-12 18:39:43 -07:00
2022-09-28 09:02:06 +02:00
2022-09-28 09:02:06 +02:00
2022-01-08 18:03:57 +09:00
2020-12-08 23:30:04 +09:00
2022-08-03 23:56:20 +03:00
2022-06-03 20:09:27 +08:00
2022-01-18 10:17:18 -05:00
2022-06-01 09:32:45 -06:00
2022-05-18 15:34:33 +02:00
2022-05-18 15:35:42 +02:00
2022-03-22 15:57:00 -07:00
2022-07-07 12:47:34 -06:00
2020-12-08 23:30:04 +09:00
2017-11-02 11:10:55 +01:00
2017-11-02 11:10:55 +01:00
2022-06-03 20:09:27 +08:00
2021-07-09 04:00:39 +09:00
2021-08-10 09:13:25 +09:00
2021-07-09 04:00:39 +09:00
2023-07-05 18:27:38 +01:00
2022-02-13 16:50:06 -08:00
2021-06-08 13:09:34 +01:00
2018-11-30 14:45:01 -08:00
2021-05-03 17:23:06 -06:00
2021-08-10 09:13:25 +09:00
2020-06-06 23:42:01 +09:00