diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/flow_dissector.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index 62d1cb624f53..c5f3912dad4c 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c | |||
@@ -80,6 +80,8 @@ ip: | |||
80 | case htons(ETH_P_IPV6): { | 80 | case htons(ETH_P_IPV6): { |
81 | const struct ipv6hdr *iph; | 81 | const struct ipv6hdr *iph; |
82 | struct ipv6hdr _iph; | 82 | struct ipv6hdr _iph; |
83 | __be32 flow_label; | ||
84 | |||
83 | ipv6: | 85 | ipv6: |
84 | iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph); | 86 | iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph); |
85 | if (!iph) | 87 | if (!iph) |
@@ -89,6 +91,21 @@ ipv6: | |||
89 | flow->src = (__force __be32)ipv6_addr_hash(&iph->saddr); | 91 | flow->src = (__force __be32)ipv6_addr_hash(&iph->saddr); |
90 | flow->dst = (__force __be32)ipv6_addr_hash(&iph->daddr); | 92 | flow->dst = (__force __be32)ipv6_addr_hash(&iph->daddr); |
91 | nhoff += sizeof(struct ipv6hdr); | 93 | nhoff += sizeof(struct ipv6hdr); |
94 | |||
95 | flow_label = ip6_flowlabel(iph); | ||
96 | if (flow_label) { | ||
97 | /* Awesome, IPv6 packet has a flow label so we can | ||
98 | * use that to represent the ports without any | ||
99 | * further dissection. | ||
100 | */ | ||
101 | flow->n_proto = proto; | ||
102 | flow->ip_proto = ip_proto; | ||
103 | flow->ports = flow_label; | ||
104 | flow->thoff = (u16)nhoff; | ||
105 | |||
106 | return true; | ||
107 | } | ||
108 | |||
92 | break; | 109 | break; |
93 | } | 110 | } |
94 | case htons(ETH_P_8021AD): | 111 | case htons(ETH_P_8021AD): |