Messages in this thread Patch in this message |  | | Date | Sat, 30 Mar 2002 23:23:07 +0000 | From | Timothy Murphy <> | Subject | linux-2.5.7 |
| |
I'm sure this has been recognised, but I would point out that sys_nfsservctl is not "undefined" if NFSD is not chosen.
The following patch to .../arch/i386/kernel/entry.S corrects this, though this is obviously not the right place to put it:
=============================================================== --- entry.S.bak Mon Mar 18 20:37:09 2002 +++ entry.S Thu Mar 28 15:59:20 2002 @@ -40,6 +40,11 @@ * "current" is in register %ebx during any slow entries. */ +#if defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE) +#else +#define sys_nfsservctl sys_ni_syscall +#endif + #include <linux/config.h> #include <linux/sys.h> #include <linux/linkage.h> =============================================================== -- Timothy Murphy e-mail: tim@birdsnest.maths.tcd.ie tel: 086-233 6090 s-mail: School of Mathematics, Trinity College, Dublin 2, Ireland - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |