提交 2d571645 编写于 作者: J John Crispin 提交者: David S. Miller

net: core: fix compile error inside flow_dissector due to new dsa callback

The following error was introduced by
commit 43e66528 ("net-next: dsa: fix flow dissection")
due to a missing #if guard

net/core/flow_dissector.c: In function '__skb_flow_dissect':
net/core/flow_dissector.c:448:18: error: 'struct net_device' has no member named 'dsa_ptr'
ops = skb->dev->dsa_ptr->tag_ops;
                ^
make[3]: *** [net/core/flow_dissector.o] Error 1
Signed-off-by: NJohn Crispin <john@phrozen.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 7e1ecbcf
...@@ -441,6 +441,7 @@ bool __skb_flow_dissect(const struct sk_buff *skb, ...@@ -441,6 +441,7 @@ bool __skb_flow_dissect(const struct sk_buff *skb,
skb->vlan_proto : skb->protocol; skb->vlan_proto : skb->protocol;
nhoff = skb_network_offset(skb); nhoff = skb_network_offset(skb);
hlen = skb_headlen(skb); hlen = skb_headlen(skb);
#if IS_ENABLED(CONFIG_NET_DSA)
if (unlikely(netdev_uses_dsa(skb->dev))) { if (unlikely(netdev_uses_dsa(skb->dev))) {
const struct dsa_device_ops *ops; const struct dsa_device_ops *ops;
int offset; int offset;
...@@ -452,6 +453,7 @@ bool __skb_flow_dissect(const struct sk_buff *skb, ...@@ -452,6 +453,7 @@ bool __skb_flow_dissect(const struct sk_buff *skb,
nhoff += offset; nhoff += offset;
} }
} }
#endif
} }
/* It is ensured by skb_flow_dissector_init() that control key will /* It is ensured by skb_flow_dissector_init() that control key will
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册