Patch: Makes IPX work as a module..

Gregory Maxwell (nullc@treco.net)
Tue, 3 Dec 1996 05:51:41 -0500 (EST)


I've been having the most annoying problem throught 2.1.x: IPX would not
work as a module... I thought it was just me.. that was until I heard
some people complaining it didn't work.. (I guess they hadn't tryed <Y>)
So I went and got the whole kernel tar.. (I havn't dl'ed a tar since
before 2.0.. so I though my sources were flakey)... It turned out that
netsyms was missing the symbol for skb_copy... This patch puts it in..
Now IPX works just fine as a module...

-------------------------CUT HERE---------------------------
diff -u ./linux/net/netsyms.c.clean ./linux/net/netsyms.c
--- ./linux/net/netsyms.c.clean Tue Dec 3 05:06:10 1996
+++ ./linux/net/netsyms.c Tue Dec 3 05:39:24 1996
@@ -3,6 +3,10 @@
*
* Symbol table for the linux networking subsystem. Moved here to
* make life simpler in ksyms.c.
+ *
+ * Fixes:
+ * Gregory Maxwell : Added skb_copy.
+ *
*/

#include <linux/config.h>
@@ -84,6 +88,7 @@
X(sock_alloc_send_skb),
X(skb_recv_datagram),
X(skb_free_datagram),
+ X(skb_copy),
X(skb_copy_datagram),
X(skb_copy_datagram_iovec),
X(datagram_select),
-------------------------CUT HERE---------------------------