MIPS: lib: Mark intrinsics notrace
authorHarvey Hunt <harvey.hunt@imgtec.com>
Wed, 25 May 2016 10:06:35 +0000 (11:06 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Sat, 28 May 2016 10:35:11 +0000 (12:35 +0200)
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>
Cc: <stable@vger.kernel.org> # 4.2.x-
Patchwork: https://patchwork.linux-mips.org/patch/13354/
Signed-off-by: Ralf Baechle <ralf@linux-mips.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

index beb80f3160957b3acd833c65158be177c8a6f7ea..927dc94a030f3942dd72723ec080486654c14846 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "libgcc.h"
 
-long long __ashldi3(long long u, word_type b)
+long long notrace __ashldi3(long long u, word_type b)
 {
        DWunion uu, w;
        word_type bm;
index c884a912b660ea28c88abe9d923d2a7214ccadcd..9fdf1a598428a5804937be3515c42cabee401e00 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "libgcc.h"
 
-long long __ashrdi3(long long u, word_type b)
+long long notrace __ashrdi3(long long u, word_type b)
 {
        DWunion uu, w;
        word_type bm;
index 77e5f9c1f0059117de4630247c79d18b5bb7c383..e3e77aa52c957d7971976de7f7a6b5839daee989 100644 (file)
@@ -1,6 +1,6 @@
 #include <linux/module.h>
 
-unsigned long long __bswapdi2(unsigned long long u)
+unsigned long long notrace __bswapdi2(unsigned long long u)
 {
        return (((u) & 0xff00000000000000ull) >> 56) |
               (((u) & 0x00ff000000000000ull) >> 40) |
index 2b302ff121d231c06ca1cfd2a58cf813a2d01935..530a8afe6fda20e345dff0d1e05ff8035cc0950a 100644 (file)
@@ -1,6 +1,6 @@
 #include <linux/module.h>
 
-unsigned int __bswapsi2(unsigned int u)
+unsigned int notrace __bswapsi2(unsigned int u)
 {
        return (((u) & 0xff000000) >> 24) |
               (((u) & 0x00ff0000) >>  8) |
index 8c1306437ed1bc8e29d6845f83900872c2c12aa4..06857da96993c2474879d4f2f3bed382fbf141a1 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "libgcc.h"
 
-word_type __cmpdi2(long long a, long long b)
+word_type notrace __cmpdi2(long long a, long long b)
 {
        const DWunion au = {
                .ll = a
index dcf8d6810b7c1c940fd5bbb2f4eb9c7cb826d639..364547449c6532ffb7e322e736e484cd5b2fa40f 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "libgcc.h"
 
-long long __lshrdi3(long long u, word_type b)
+long long notrace __lshrdi3(long long u, word_type b)
 {
        DWunion uu, w;
        word_type bm;
index bb4cb2f828ea9ae86090a06b859caf299f1a5c29..bd599f58234c9558089acb28f37ac677bd6818dc 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "libgcc.h"
 
-word_type __ucmpdi2(unsigned long long a, unsigned long long b)
+word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
 {
        const DWunion au = {.ll = a};
        const DWunion bu = {.ll = b};