All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix undefined symbols
@ 2006-01-11 15:36 Carl-Daniel Hailfinger
  2006-01-12  5:58 ` Patrick McHardy
  0 siblings, 1 reply; 2+ messages in thread
From: Carl-Daniel Hailfinger @ 2006-01-11 15:36 UTC (permalink / raw)
  To: Netfilter Development Mailinglist

Hi,

with 2.5.15-git7 I get the following warning:

*** Warning: "compare_ether_addr" [net/ipv6/netfilter/ip6t_mac.ko] undefined!
*** Warning: "compare_ether_addr" [net/bridge/netfilter/ebt_stp.ko] undefined!

The following patch fixes it.

Regards,
Carl-Daniel


Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>

--- linux-2.6.15/net/ipv6/netfilter/ip6t_mac.c~	2006-01-11 13:12:16.000000000 +0100
+++ linux-2.6.15/net/ipv6/netfilter/ip6t_mac.c	2006-01-11 14:54:01.000000000 +0100
@@ -11,6 +11,7 @@
 #include <linux/module.h>
 #include <linux/skbuff.h>
 #include <linux/if_ether.h>
+#include <linux/etherdevice.h>
 
 #include <linux/netfilter_ipv6/ip6t_mac.h>
 #include <linux/netfilter_ipv6/ip6_tables.h>
--- linux-2.6.15/net/bridge/netfilter/ebt_stp.c~	2006-01-11 13:12:14.000000000 +0100
+++ linux-2.6.15/net/bridge/netfilter/ebt_stp.c	2006-01-11 14:53:33.000000000 +0100
@@ -11,6 +11,7 @@
 #include <linux/netfilter_bridge/ebtables.h>
 #include <linux/netfilter_bridge/ebt_stp.h>
 #include <linux/module.h>
+#include <linux/etherdevice.h>
 
 #define BPDU_TYPE_CONFIG 0
 #define BPDU_TYPE_TCN 0x80

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-01-12  5:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-11 15:36 [PATCH] fix undefined symbols Carl-Daniel Hailfinger
2006-01-12  5:58 ` Patrick McHardy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.