diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-12-08 01:10:19 +0100 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-12-08 01:10:19 +0100 |
commit | bdc2619ab95d45d434c16d5c216bc6243761f6fb (patch) | |
tree | c82800cebc1224b51adec9045ea0125e9a946c51 /arch/ia64/kernel/ia64_ksyms.c | |
parent | [IA64] don't assume that unwcheck.py is executable (diff) | |
download | linux-bdc2619ab95d45d434c16d5c216bc6243761f6fb.tar.xz linux-bdc2619ab95d45d434c16d5c216bc6243761f6fb.zip |
[IA64] export copy_page() to modules
With the unionfs patch applied I get
ERROR: "copy_page" [fs/unionfs/unionfs.ko] undefined!
the other architectures (some, at least) export copy_page() so I guess ia64
should also do so.
To do this we need to move the copy_page() functions out of lib.a and into
built-in.o and add the EXPORT_SYMBOL().
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/ia64_ksyms.c')
-rw-r--r-- | arch/ia64/kernel/ia64_ksyms.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/ia64/kernel/ia64_ksyms.c b/arch/ia64/kernel/ia64_ksyms.c index bd17190bebb6..c3b4412ccc67 100644 --- a/arch/ia64/kernel/ia64_ksyms.c +++ b/arch/ia64/kernel/ia64_ksyms.c @@ -63,6 +63,9 @@ EXPORT_SYMBOL(__udivdi3); EXPORT_SYMBOL(__moddi3); EXPORT_SYMBOL(__umoddi3); +#include <asm/page.h> +EXPORT_SYMBOL(copy_page); + #if defined(CONFIG_MD_RAID456) || defined(CONFIG_MD_RAID456_MODULE) extern void xor_ia64_2(void); extern void xor_ia64_3(void); |