23352fc252
These are some trivial fixes for the x86-64 subarch module support. The only potential problem is that I have to modify arch/x86_64/kernel/module.c, to avoid copying the whole of it. I can't use it verbatim because it depends on a special vmalloc-like area for modules, which for now (maybe that's to fix, I guess not) UML/x86-64 has not. I went the easy way and reused the i386 vmalloc()-based allocator. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Acked-by: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
24 lines
617 B
C
24 lines
617 B
C
#include "linux/module.h"
|
|
#include "linux/in6.h"
|
|
#include "linux/rwsem.h"
|
|
#include "asm/byteorder.h"
|
|
#include "asm/semaphore.h"
|
|
#include "asm/uaccess.h"
|
|
#include "asm/checksum.h"
|
|
#include "asm/errno.h"
|
|
|
|
EXPORT_SYMBOL(__down_failed);
|
|
EXPORT_SYMBOL(__down_failed_interruptible);
|
|
EXPORT_SYMBOL(__down_failed_trylock);
|
|
EXPORT_SYMBOL(__up_wakeup);
|
|
|
|
/*XXX: we need them because they would be exported by x86_64 */
|
|
EXPORT_SYMBOL(__memcpy);
|
|
EXPORT_SYMBOL(strcmp);
|
|
EXPORT_SYMBOL(strcat);
|
|
EXPORT_SYMBOL(strcpy);
|
|
|
|
/* Networking helper routines. */
|
|
/*EXPORT_SYMBOL(csum_partial_copy_from);
|
|
EXPORT_SYMBOL(csum_partial_copy_to);*/
|