Messages in this thread Patch in this message |  | | | Date | Sun, 10 Mar 2002 17:44:46 +0100 (MET) | | From | Mikael Pettersson <> | | Subject | [PATCH] 2.5.6 missing EXPORT_SYMBOL for NFSD module |
| |
NFSD doesn't work as a module in recent 2.5 kernels since svc_reserve() isn't exported. The trivial patch below fixes this.
/Mikael
--- linux-2.5.6/net/sunrpc/sunrpc_syms.c.~1~ Wed Feb 20 03:11:04 2002 +++ linux-2.5.6/net/sunrpc/sunrpc_syms.c Sun Mar 10 14:32:04 2002 @@ -77,6 +77,7 @@ EXPORT_SYMBOL(svc_recv); EXPORT_SYMBOL(svc_wake_up); EXPORT_SYMBOL(svc_makesock); +EXPORT_SYMBOL(svc_reserve); /* RPC statistics */ #ifdef CONFIG_PROC_FS - 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/
|  |