On Sun, 19 Nov 2000, Alan Cox wrote: [..] > 2.2.18pre20 [..] > o Fix ipv6 procfs bug (Al Viro) Seems in this place was introduced small bug. Linking kernel with disabled CONFIG_SYSCTL fails with: kernel/kernel.o(__ksymtab+0x5f8): undefined reference to `sysctl_jiffies' Patch with fix included. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: [EMAIL PROTECTED]*
--- linux/kernel/sysctl.c.org Tue Nov 21 08:01:25 2000 +++ linux/kernel/sysctl.c Tue Nov 21 08:00:33 2000 @@ -1173,6 +1173,13 @@ return -ENOSYS; } +int sysctl_jiffies(ctl_table *table, int *name, int nlen, + void *oldval, size_t *oldlenp, + void *newval, size_t newlen, void **context) +{ + return -ENOSYS; +} + int proc_dostring(ctl_table *table, int write, struct file *filp, void *buffer, size_t *lenp) {