[PATCH] 2.5.25 : tr_source_route fix

Frank Davis (fdavis@si.rr.com)
Wed, 10 Jul 2002 10:20:11 -0400 (EDT)


Hello all,
The following patch fixes the below 'make bzImage' error. Please review
for inclusion.
Regards,
Frank

netsyms.c:447: `tr_source_route' undeclared here (not in a function)
netsyms.c:447: initializer element is not constant
netsyms.c:447: (near initialization for `__ksymtab_tr_source_route.value')
make[1]: *** [netsyms.o] Error 1
make[1]: Leaving directory `/usr/src/linux/net'
make: *** [net] Error 2

--- net/802/tr.c.old Thu Jun 20 20:52:05 2002
+++ net/802/tr.c Thu Jun 20 20:51:59 2002
@@ -36,7 +36,7 @@
#include <linux/init.h>
#include <net/arp.h>

-static void tr_source_route(struct sk_buff *skb, struct trh_hdr *trh, struct net_device *dev);
+void tr_source_route(struct sk_buff *skb, struct trh_hdr *trh, struct net_device *dev);
static void tr_add_rif_info(struct trh_hdr *trh, struct net_device *dev);
static void rif_check_expire(unsigned long dummy);

@@ -230,7 +230,7 @@
* We try to do source routing...
*/

-static void tr_source_route(struct sk_buff *skb,struct trh_hdr *trh,struct net_device *dev)
+void tr_source_route(struct sk_buff *skb,struct trh_hdr *trh,struct net_device *dev)
{
int i, slack;
unsigned int hash;

--- include/linux/trdevice.h.old Thu Jun 20 21:53:21 2002
+++ include/linux/trdevice.h Thu Jun 20 21:53:11 2002
@@ -37,6 +37,7 @@
extern struct net_device *alloc_trdev(int sizeof_priv);
extern int register_trdev(struct net_device *dev);
extern void unregister_trdev(struct net_device *dev);
+extern void tr_source_route(struct sk_buff *skb, struct trh_hdr *trh, struct net_device *dev);

#endif

-
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/