* [PATCH] netfilter: fix build error due to missing has_bridge_parent macro
@ 2006-02-12 2:20 Jesper Juhl
2006-02-12 11:22 ` Harald Welte
0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2006-02-12 2:20 UTC (permalink / raw)
To: LKML
Cc: Rusty Russell, Marc Boucher, James Morris, Harald Welte,
Jozsef Kadlecsik, Jesper Juhl, coreteam, netfilter,
netfilter-devel
Hi,
I just did an allyesconfig test build of 2.6.16-rc2-git10 and found a build
problem.
commit 5dce971acf2ae20c80d5e9d1f6bbf17376870911 removed the
"has_bridge_parent" macro from net/bridge/br_netfilter.c, resulting in the
following warning at compile time:
net/bridge/br_netfilter.c: In function `br_nf_post_routing':
net/bridge/br_netfilter.c:808: warning: implicit declaration of function `has_bridge_parent'
and this error at link time:
net/built-in.o(.text+0xeae28): In function `br_nf_post_routing':
net/bridge/br_netfilter.c:808: undefined reference to `has_bridge_parent'
make: *** [.tmp_vmlinux1] Error 1
The patch below fixes the problem.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---
Patch is compile tested only but should be obviously correct.
net/bridge/br_netfilter.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.16-rc2-git10/net/bridge/br_netfilter.c~ 2006-02-12 03:03:29.000000000 +0100
+++ linux-2.6.16-rc2-git10/net/bridge/br_netfilter.c 2006-02-12 03:03:29.000000000 +0100
@@ -805,7 +805,7 @@ static unsigned int br_nf_post_routing(u
print_error:
if (skb->dev != NULL) {
printk("[%s]", skb->dev->name);
- if (has_bridge_parent(skb->dev))
+ if (bridge_parent(skb->dev))
printk("[%s]", bridge_parent(skb->dev)->name);
}
printk(" head:%p, raw:%p, data:%p\n", skb->head, skb->mac.raw,
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] netfilter: fix build error due to missing has_bridge_parent macro
2006-02-12 2:20 [PATCH] netfilter: fix build error due to missing has_bridge_parent macro Jesper Juhl
@ 2006-02-12 11:22 ` Harald Welte
0 siblings, 0 replies; 2+ messages in thread
From: Harald Welte @ 2006-02-12 11:22 UTC (permalink / raw)
To: Jesper Juhl
Cc: LKML, Rusty Russell, Marc Boucher, James Morris,
Jozsef Kadlecsik, coreteam, netfilter, netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 593 bytes --]
On Sun, Feb 12, 2006 at 03:20:36AM +0100, Jesper Juhl wrote:
> Hi,
>
> I just did an allyesconfig test build of 2.6.16-rc2-git10 and found a build
> problem.
thanks, I'll push this via davem and to stable ASAP.
--
- Harald Welte <laforge@netfilter.org> http://netfilter.org/
============================================================================
"Fragmentation is like classful addressing -- an interesting early
architectural error that shows how much experimentation was going
on while IP was being designed." -- Paul Vixie
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-02-12 11:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-12 2:20 [PATCH] netfilter: fix build error due to missing has_bridge_parent macro Jesper Juhl
2006-02-12 11:22 ` Harald Welte
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome