diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2008-03-01 03:04:57 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-07 10:03:03 +1000 |
commit | 0119536cd314ef95553604208c25bc35581f7f0a (patch) | |
tree | c196d0652c5bc6bee252d6628cfd76771b2e9131 /include/asm-powerpc | |
parent | 4df4441e418c809f263939b9f371b67aca28a280 (diff) | |
download | linux-0119536cd314ef95553604208c25bc35581f7f0a.tar.bz2 |
[POWERPC] Add hand-coded assembly strcmp
We have an assembly version of strncmp for the bootwrapper, but not
for the kernel, so we end up using the C version in the kernel. This
takes the strncmp code from the bootup and copies it to the kernel
proper, adding two instructions so it copes correctly with len==0.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-powerpc/string.h b/include/asm-powerpc/string.h index aa40f92c298d..e40010abcaf1 100644 --- a/include/asm-powerpc/string.h +++ b/include/asm-powerpc/string.h @@ -7,6 +7,7 @@ #define __HAVE_ARCH_STRNCPY #define __HAVE_ARCH_STRLEN #define __HAVE_ARCH_STRCMP +#define __HAVE_ARCH_STRNCMP #define __HAVE_ARCH_STRCAT #define __HAVE_ARCH_MEMSET #define __HAVE_ARCH_MEMCPY @@ -18,6 +19,7 @@ extern char * strcpy(char *,const char *); extern char * strncpy(char *,const char *, __kernel_size_t); extern __kernel_size_t strlen(const char *); extern int strcmp(const char *,const char *); +extern int strncmp(const char *, const char *, __kernel_size_t); extern char * strcat(char *, const char *); extern void * memset(void *,int,__kernel_size_t); extern void * memcpy(void *,const void *,__kernel_size_t); |