forked from luck/tmp_suning_uos_patched
s390/module: Add missing R_390_NONE relocation type
Allow loading of kernel modules that have relocations of type R_390_NONE. Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
29bde2d932
commit
e80cfc31d8
|
@ -234,6 +234,9 @@ static int apply_rela(Elf_Rela *rela, Elf_Addr base, Elf_Sym *symtab,
|
|||
val = symtab[r_sym].st_value;
|
||||
|
||||
switch (r_type) {
|
||||
case R_390_NONE: /* No relocation. */
|
||||
rc = 0;
|
||||
break;
|
||||
case R_390_8: /* Direct 8 bit. */
|
||||
case R_390_12: /* Direct 12 bit. */
|
||||
case R_390_16: /* Direct 16 bit. */
|
||||
|
|
Loading…
Reference in New Issue
Block a user