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 /arch/powerpc/kernel/ppc_ksyms.c | |
parent | 4df4441e418c809f263939b9f371b67aca28a280 (diff) |
[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 'arch/powerpc/kernel/ppc_ksyms.c')
-rw-r--r-- | arch/powerpc/kernel/ppc_ksyms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/ppc_ksyms.c b/arch/powerpc/kernel/ppc_ksyms.c index a722ede726d..5a4c76eada4 100644 --- a/arch/powerpc/kernel/ppc_ksyms.c +++ b/arch/powerpc/kernel/ppc_ksyms.c @@ -78,6 +78,7 @@ EXPORT_SYMBOL(strncpy); EXPORT_SYMBOL(strcat); EXPORT_SYMBOL(strlen); EXPORT_SYMBOL(strcmp); +EXPORT_SYMBOL(strncmp); EXPORT_SYMBOL(csum_partial); EXPORT_SYMBOL(csum_partial_copy_generic); |