mirror of https://gitee.com/openkylin/linux.git
[PATCH] netfilter: fix build error due to missing has_bridge_parent macro
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' Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Cc: Harald Welte <laforge@netfilter.org> Cc: "David S. Miller" <davem@davemloft.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
d524c5e200
commit
3c791925da
|
@ -805,7 +805,7 @@ static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff **pskb,
|
|||
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,
|
||||
|
|
Loading…
Reference in New Issue