mirror of https://gitee.com/openkylin/linux.git
powerpc/module: Add support for R_PPC64_REL32 relocations
We haven't seen these before, but the soon to be merged relative exception tables support causes them to be generated. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
e3f2c6c393
commit
9f751b82b4
|
@ -652,6 +652,11 @@ int apply_relocate_add(Elf64_Shdr *sechdrs,
|
||||||
*location = value - (unsigned long)location;
|
*location = value - (unsigned long)location;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case R_PPC64_REL32:
|
||||||
|
/* 32 bits relative (used by relative exception tables) */
|
||||||
|
*(u32 *)location = value - (unsigned long)location;
|
||||||
|
break;
|
||||||
|
|
||||||
case R_PPC64_TOCSAVE:
|
case R_PPC64_TOCSAVE:
|
||||||
/*
|
/*
|
||||||
* Marker reloc indicates we don't have to save r2.
|
* Marker reloc indicates we don't have to save r2.
|
||||||
|
|
Loading…
Reference in New Issue