parisc: fix module loading failure of large kernel modules
authorHelge Deller <deller@gmx.de>
Thu, 1 Jan 2009 21:25:30 +0000 (22:25 +0100)
committerRusty Russell <rusty@rustcorp.com.au>
Sun, 4 Jan 2009 22:10:14 +0000 (08:40 +1030)
commitc298be74492bece102f3379d14015638f1fd1fac
tree92b314dff5ebc41e1eeb5d6d41f84db3a393e668
parent088af9a6e05d51e7c3dc85d45d8b7a52c3ee08d7
parisc: fix module loading failure of large kernel modules

On 32bit (and sometimes 64bit) and with big kernel modules like xfs or
ipv6 the relocation types R_PARISC_PCREL17F and R_PARISC_PCREL22F may
fail to reach their PLT stub if we only create one big stub array for
all sections at the beginning of the core or init section.

With this patch we now instead add individual PLT stub entries
directly in front of the code sections where the stubs are actually
called. This reduces the distance between the PCREL location and the
stub entry so that the relocations can be fulfilled.

While calculating the final layout of the kernel module in memory, the
kernel module loader calls arch_mod_section_prepend() to request the
to be reserved amount of memory in front of each individual section.

Tested with 32- and 64bit kernels.

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
arch/parisc/include/asm/module.h
arch/parisc/kernel/module.c