From: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
To: Netfilter Development Mailinglist <netfilter-devel@lists.netfilter.org>
Subject: [PATCH] fix undefined symbols
Date: Wed, 11 Jan 2006 16:36:30 +0100 [thread overview]
Message-ID: <43C525FE.8080607@gmx.net> (raw)
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
next reply other threads:[~2006-01-11 15:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-01-11 15:36 Carl-Daniel Hailfinger [this message]
2006-01-12 5:58 ` [PATCH] fix undefined symbols Patrick McHardy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=43C525FE.8080607@gmx.net \
--to=c-d.hailfinger.devel.2006@gmx.net \
--cc=netfilter-devel@lists.netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.