]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
MIPS: lib: Mark intrinsics notrace
authorHarvey Hunt <harvey.hunt@imgtec.com>
Wed, 25 May 2016 10:06:35 +0000 (11:06 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Jun 2016 01:18:47 +0000 (18:18 -0700)
commit895daf6989bc552954253319a625c1c2c20df0c1
tree578737f8ddc3e1fc169be79bae6e7c0ccf0af2f2
parentcf12a51b3e9eeb56ba3fa3f7df9ebb2f18693d33
MIPS: lib: Mark intrinsics notrace

commit aedcfbe06558a9f53002e82d5be64c6c94687726 upstream.

On certain MIPS32 devices, the ftrace tracer "function_graph" uses
__lshrdi3() during the capturing of trace data. ftrace then attempts to
trace __lshrdi3() which leads to infinite recursion and a stack overflow.
Fix this by marking __lshrdi3() as notrace. Mark the other compiler
intrinsics as notrace in case the compiler decides to use them in the
ftrace path.

Signed-off-by: Harvey Hunt <harvey.hunt@imgtec.com>
Cc: <linux-mips@linux-mips.org>
Cc: <linux-kernel@vger.kernel.org>
Patchwork: https://patchwork.linux-mips.org/patch/13354/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/mips/lib/ashldi3.c
arch/mips/lib/ashrdi3.c
arch/mips/lib/bswapdi.c
arch/mips/lib/bswapsi.c
arch/mips/lib/cmpdi2.c
arch/mips/lib/lshrdi3.c
arch/mips/lib/ucmpdi2.c