The patch titled Subject: frv: fix build failure has been removed from the -mm tree. Its filename was frv-fix-build-failure.patch This patch was dropped because an alternative patch was merged ------------------------------------------------------ From: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Subject: frv: fix build failure The frv defconfig build is failing with the error: lib/mpi/mpih-div.o: In function `mpihelp_divrem': mpih-div.c:(.text+0x30c): undefined reference to `abort' The function 'abort' was never defined for the frv architecture. Create 'abort' as is done in other arch like 'arm' and 'unicore32'. Link: http://lkml.kernel.org/r/1511302233-5008-1-git-send-email-sudipm.mukherjee@xxxxxxxxx Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/frv/kernel/traps.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff -puN arch/frv/kernel/traps.c~frv-fix-build-failure arch/frv/kernel/traps.c --- a/arch/frv/kernel/traps.c~frv-fix-build-failure +++ a/arch/frv/kernel/traps.c @@ -633,6 +633,15 @@ void show_backtrace(struct pt_regs *fram } /* end show_backtrace() */ +void abort(void) +{ + BUG(); + + /* if that doesn't kill us, halt */ + panic("Oops failed to kill thread"); +} +EXPORT_SYMBOL(abort); + /*****************************************************************************/ /* * initialise traps _ Patches currently in -mm which might be from sudipm.mukherjee@xxxxxxxxx are arch-define-weak-abort.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