mirror of https://gitee.com/openkylin/linux.git
net: flow_dissector: add 802.1ad support
Same behavior than 802.1q : finds the encapsulated protocol and skip 32bit header. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
77a482bdb2
commit
e11aada32b
|
@ -65,6 +65,7 @@ bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow)
|
||||||
nhoff += sizeof(struct ipv6hdr);
|
nhoff += sizeof(struct ipv6hdr);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case __constant_htons(ETH_P_8021AD):
|
||||||
case __constant_htons(ETH_P_8021Q): {
|
case __constant_htons(ETH_P_8021Q): {
|
||||||
const struct vlan_hdr *vlan;
|
const struct vlan_hdr *vlan;
|
||||||
struct vlan_hdr _vlan;
|
struct vlan_hdr _vlan;
|
||||||
|
|
Loading…
Reference in New Issue