From: Bryan R. <br...@ix...> - 2000-09-29 21:42:42
|
NIIBE Yutaka wrote: > I think that "memscan" is bogus here, as we define memscan==>memchr in > asm-sh/string.h, isn't it? Except that, all is OK. Yes, you're correct. Sorry about that mistake. Here's the new patch: ------ --- sh_ksyms-orig.c Tue Sep 26 13:46:27 2000 +++ sh_ksyms.c Tue Sep 26 14:35:22 2000 @@ -17,6 +17,7 @@ #include <asm/hardirq.h> #include <asm/delay.h> #include <asm/irq.h> +#include <asm/pgtable.h> extern void dump_thread(struct pt_regs *, struct user *); extern int dump_fpu(elf_fpregset_t *); @@ -36,6 +37,21 @@ EXPORT_SYMBOL(strpbrk); EXPORT_SYMBOL(strstr); EXPORT_SYMBOL(strlen); + +/* mem exports */ +EXPORT_SYMBOL(memcpy); +EXPORT_SYMBOL(memset); +EXPORT_SYMBOL(memmove); + +/* this is not provided by arch/sh/lib/*.S but is + potentially needed by modules (af_packet.o/unix.o + use memcmp, for instance) */ +EXPORT_SYMBOL(memcmp); + +/* needed by some modules */ +EXPORT_SYMBOL(flush_dcache_page); #ifdef CONFIG_VT ----- I think this one should be good to go into the CVS archive. Should I submit it through the SourceSafe patch manager or can you take care of it, Niibe-san? Regards, Bryan -- Bryan Rittmeyer mailto:br...@ix... Ixia Communications 26601 W. Agoura Rd. Calabasas, CA 91302 |