summaryrefslogtreecommitdiff
path: root/kernel/sys.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-01-19 05:14:28 -0800
committerLinus Torvalds <torvalds@home.osdl.org>2004-01-19 05:14:28 -0800
commitefe067fac0fcd767a4dbe3c52d7548d43499c5c4 (patch)
tree25be3002ff261e7121a900426fd2eaa1252c197f /kernel/sys.c
parent2d0630e0977847dc9cb229061e9a75cc682afcae (diff)
[PATCH] ppc cond_syscall fix
From: Matt Mackall <mpm@selenic.com> Experimenting with trying to use cond_syscall for a few arch-specific syscalls, I discovered that it can't actually be used outside the file in which sys_ni_syscall is declared because the assembler doesn't feel obliged to output the symbol in that case: weak.c: #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall"); cond_syscall(sys_foo); $ nm weak.o U sys_ni_syscall One arch (PPC) is apparently trying to use cond_syscall this way anyway, though it's probably never been actually tested as the above test was done on a PPC. After trying a bunch of tricks to get it to work nicely, I decided there are basically two alternatives: make weak versions of sys_ni_syscall wherever they're wanted or put the arch-specific cond_syscalls in kernel/sys.c where sys_ni_syscall is defined. The former approach is a bit crufty and doesn't actually do the right thing in practice as you'll get multiple copies of sys_ni_syscall in your final image. The latter introduces some slight arch-pollution in sys.c, but as arch-specific cond_syscalls aren't all that frequent, it should be pretty minor. So here's a patch to move the current offender to sys.c:
Diffstat (limited to 'kernel/sys.c')
-rw-r--r--kernel/sys.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/sys.c b/kernel/sys.c
index 9aa8ad493460..2e40d516fd75 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -249,8 +249,11 @@ cond_syscall(compat_sys_futex)
cond_syscall(sys_epoll_create)
cond_syscall(sys_epoll_ctl)
cond_syscall(sys_epoll_wait)
+
+/* arch-specific weak syscall entries */
cond_syscall(sys_pciconfig_read)
cond_syscall(sys_pciconfig_write)
+cond_syscall(sys_pciconfig_iobase)
static int set_one_prio(struct task_struct *p, int niceval, int error)
{