* 2.4.24 link err for sparc64
@ 2004-02-16 7:29 carbonated beverage
2004-02-17 6:29 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: carbonated beverage @ 2004-02-16 7:29 UTC (permalink / raw)
To: linux-kernel; +Cc: sparclinux
Hi all,
I ripped out sysctl support from a 2.4.24 kernel (stock
tarball from ftp.*.*.kernel.org) and the final link failed
with:
arch/sparc64/kernel/kernel.o(.text+0x19750): In function `sys32_sysctl':
: undefined reference to `do_sysctl'
I tossed an #ifndef CONFIG_SYSCTL...#else...#endif
guard around arch/sparc64/kernel/sys_sparc32.c file in the
sys32_sysctl() function so it returns -ENOTSUPP, but I'm not sure
that's the right fix. Should it be in do_sysctl() instead?
Can anyone comment on this?
--- arch/sparc64/kernel/sys_sparc32.c.old 2003-11-28 10:26:19.000000000 -0800
+++ arch/sparc64/kernel/sys_sparc32.c 2004-02-15 23:21:18.304035000 -0800
@@ -4454,6 +4454,9 @@
extern asmlinkage long sys32_sysctl(struct __sysctl_args32 *args)
{
+#ifndef CONFIG_SYSCTL
+ return -ENOTSUPP;
+#else
struct __sysctl_args32 tmp;
int error;
size_t oldlen, *oldlenp = NULL;
@@ -4488,4 +4491,5 @@
copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
}
return error;
+#endif
}
-- DN
Daniel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: 2.4.24 link err for sparc64
2004-02-16 7:29 2.4.24 link err for sparc64 carbonated beverage
@ 2004-02-17 6:29 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2004-02-17 6:29 UTC (permalink / raw)
To: carbonated beverage; +Cc: linux-kernel, sparclinux
On Sun, 15 Feb 2004 23:29:29 -0800
carbonated beverage <ramune@net-ronin.org> wrote:
> I ripped out sysctl support from a 2.4.24 kernel (stock
> tarball from ftp.*.*.kernel.org) and the final link failed
> with:
>
> arch/sparc64/kernel/kernel.o(.text+0x19750): In function `sys32_sysctl':
> : undefined reference to `do_sysctl'
-ENOSYS is the right error to return, to be consistent with what
kernel/sysctl.c itself does in this case.
Thanks for the report, I'll push the fix around.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-02-17 6:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-16 7:29 2.4.24 link err for sparc64 carbonated beverage
2004-02-17 6:29 ` David S. Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®