The patch titled kbuild: fix and improve MIPS REL handling has been removed from the -mm tree. Its filename was kbuild-fix-and-improve-mips-rel-handling.patch This patch was dropped because it isn't in the present -mm lineup ------------------------------------------------------ Subject: kbuild: fix and improve MIPS REL handling From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Add R_MIPS_32 relocation case. And there is no need to do sign-extention on calculation of addend. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/mod/modpost.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletion(-) diff -puN scripts/mod/modpost.c~kbuild-fix-and-improve-mips-rel-handling scripts/mod/modpost.c --- a/scripts/mod/modpost.c~kbuild-fix-and-improve-mips-rel-handling +++ a/scripts/mod/modpost.c @@ -951,11 +951,14 @@ static int addend_mips_rel(struct elf_in inst = TO_NATIVE(*location); switch (r_typ) { case R_MIPS_LO16: - r->r_addend = ((inst & 0xffff) ^ 0x8000) - 0x8000; + r->r_addend = inst & 0xffff; break; case R_MIPS_26: r->r_addend = (inst & 0x03ffffff) << 2; break; + case R_MIPS_32: + r->r_addend = inst; + break; } return 0; } _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are origin.patch spi-driver-hotplug-coldplug-fixes-fix.patch serial_txx9-cleanup-includes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html