diff options
author | Michal Marek <mmarek@suse.cz> | 2013-04-10 10:45:21 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-04-16 15:35:43 -0400 |
commit | e00c73ee05dc38ecaccced55d4f5fc58b0b769f7 (patch) | |
tree | 484ae1dfa6e4d7c57bfdd17106bab1a1639f66c5 | |
parent | 01a18d168776f27309e49c983415de9851d6cb57 (diff) |
m68k: Remove inline strlen() implementation
GCC can replace a strncat() call with constant second argument into a
strlen + store, which results in a link error:
ERROR: "strlen" [net/ipv4/ip_tunnel.ko] undefined!
The inline function is a simple for loop in C. Other architectures
either use an asm optimized variant, or use the generic function from
lib/string.c.
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
-rw-r--r-- | arch/m68k/include/asm/string.h | 14 | ||||
-rw-r--r-- | arch/m68k/lib/string.c | 2 |
2 files changed, 1 insertions, 15 deletions
diff --git a/arch/m68k/include/asm/string.h b/arch/m68k/include/asm/string.h index 32198454da70..9aea9f11fa25 100644 --- a/arch/m68k/include/asm/string.h +++ b/arch/m68k/include/asm/string.h | |||
@@ -4,15 +4,6 @@ | |||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | #include <linux/compiler.h> | 5 | #include <linux/compiler.h> |
6 | 6 | ||
7 | static inline size_t __kernel_strlen(const char *s) | ||
8 | { | ||
9 | const char *sc; | ||
10 | |||
11 | for (sc = s; *sc++; ) | ||
12 | ; | ||
13 | return sc - s - 1; | ||
14 | } | ||
15 | |||
16 | static inline char *__kernel_strcpy(char *dest, const char *src) | 7 | static inline char *__kernel_strcpy(char *dest, const char *src) |
17 | { | 8 | { |
18 | char *xdest = dest; | 9 | char *xdest = dest; |
@@ -27,11 +18,6 @@ static inline char *__kernel_strcpy(char *dest, const char *src) | |||
27 | 18 | ||
28 | #ifndef __IN_STRING_C | 19 | #ifndef __IN_STRING_C |
29 | 20 | ||
30 | #define __HAVE_ARCH_STRLEN | ||
31 | #define strlen(s) (__builtin_constant_p(s) ? \ | ||
32 | __builtin_strlen(s) : \ | ||
33 | __kernel_strlen(s)) | ||
34 | |||
35 | #define __HAVE_ARCH_STRNLEN | 21 | #define __HAVE_ARCH_STRNLEN |
36 | static inline size_t strnlen(const char *s, size_t count) | 22 | static inline size_t strnlen(const char *s, size_t count) |
37 | { | 23 | { |
diff --git a/arch/m68k/lib/string.c b/arch/m68k/lib/string.c index b9a57abfad08..4d61fa8a112c 100644 --- a/arch/m68k/lib/string.c +++ b/arch/m68k/lib/string.c | |||
@@ -17,6 +17,6 @@ EXPORT_SYMBOL(strcpy); | |||
17 | 17 | ||
18 | char *strcat(char *dest, const char *src) | 18 | char *strcat(char *dest, const char *src) |
19 | { | 19 | { |
20 | return __kernel_strcpy(dest + __kernel_strlen(dest), src); | 20 | return __kernel_strcpy(dest + strlen(dest), src); |
21 | } | 21 | } |
22 | EXPORT_SYMBOL(strcat); | 22 | EXPORT_SYMBOL(strcat); |