diff options
author | Chen Gang <gang.chen.5i5j@gmail.com> | 2014-10-04 13:11:31 (GMT) |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-05-31 11:14:07 (GMT) |
commit | a791b1565f828f926a54f1f5a612890ce0f00e6f (patch) | |
tree | 0272f80d386be7a793ddc5e36402ed991c2987f6 /arch | |
parent | 5f32943b5e9a48bf3269430e1a7a210411e0cc98 (diff) | |
download | linux-a791b1565f828f926a54f1f5a612890ce0f00e6f.tar.xz |
um: kernel: ksyms: Export symbol syscall() for fixing modpost issue
syscall() is implemented in libc.so/a (e.g. for glibc, in "syscall.o"),
so for normal ".o" files, it is undefined, neither can be found within
kernel wide, so will break modpost.
Since ".o" files is OK, can simply export 'syscall' symbol, let modpost
know about that, then can fix this issue.
The related error (with allmodconfig under um):
MODPOST 1205 modules
ERROR: "syscall" [fs/hostfs/hostfs.ko] undefined!
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/kernel/ksyms.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/um/kernel/ksyms.c b/arch/um/kernel/ksyms.c index 543c047..e7780f3 100644 --- a/arch/um/kernel/ksyms.c +++ b/arch/um/kernel/ksyms.c @@ -42,3 +42,6 @@ EXPORT_SYMBOL(os_makedev); EXPORT_SYMBOL(add_sigio_fd); EXPORT_SYMBOL(ignore_sigio_fd); EXPORT_SYMBOL(sigio_broken); + +extern long int syscall (long int __sysno, ...); +EXPORT_SYMBOL(syscall); |