mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-11 07:28:10 +09:00
commit aedcfbe065 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>
28 lines
443 B
C
28 lines
443 B
C
#include <linux/module.h>
|
|
|
|
#include "libgcc.h"
|
|
|
|
word_type notrace __cmpdi2(long long a, long long b)
|
|
{
|
|
const DWunion au = {
|
|
.ll = a
|
|
};
|
|
const DWunion bu = {
|
|
.ll = b
|
|
};
|
|
|
|
if (au.s.high < bu.s.high)
|
|
return 0;
|
|
else if (au.s.high > bu.s.high)
|
|
return 2;
|
|
|
|
if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
|
|
return 0;
|
|
else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
|
|
return 2;
|
|
|
|
return 1;
|
|
}
|
|
|
|
EXPORT_SYMBOL(__cmpdi2);
|