diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-06-06 15:09:40 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2021-06-12 17:20:49 -0700 |
commit | 5d2388dbf84adebeb6d9742164be8d32728e4269 (patch) | |
tree | e3410ea87a1c0c08eccdb169bbbdefa7e63958c6 /arch/riscv | |
parent | 0ddd7eaffa644baa78e247bbd220ab7195b1eed6 (diff) | |
download | linux-stable-5d2388dbf84adebeb6d9742164be8d32728e4269.tar.gz linux-stable-5d2388dbf84adebeb6d9742164be8d32728e4269.tar.bz2 linux-stable-5d2388dbf84adebeb6d9742164be8d32728e4269.zip |
riscv32: Use medany C model for modules
When CONFIG_CMODEL_MEDLOW is used it ends up generating riscv_hi20_rela
relocations in modules which are not resolved during runtime and
following errors would be seen
[ 4.802714] virtio_input: target 00000000c1539090 can not be addressed by the 32-bit offset from PC = 39148b7b
[ 4.854800] virtio_input: target 00000000c1539090 can not be addressed by the 32-bit offset from PC = 9774456d
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index 4be020695428..99ecd8bcfd77 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -16,7 +16,7 @@ ifeq ($(CONFIG_DYNAMIC_FTRACE),y) CC_FLAGS_FTRACE := -fpatchable-function-entry=8 endif -ifeq ($(CONFIG_64BIT)$(CONFIG_CMODEL_MEDLOW),yy) +ifeq ($(CONFIG_CMODEL_MEDLOW),y) KBUILD_CFLAGS_MODULE += -mcmodel=medany endif |