aboutsummaryrefslogtreecommitdiff
path: root/include/net/ipv6.h
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2018-07-25 17:36:41 +0100
committerMark Brown <broonie@kernel.org>2018-07-25 17:36:41 +0100
commit7a9ad990a091b525e93a41b142cd3a06129a032d (patch)
tree7fb58a8fe566ddf75ffe68bec408219958031cd0 /include/net/ipv6.h
parent8371e272b158ce56b201bc530841a27320f94e7c (diff)
parent8c9257333713c1f185693fe0df2df79dfc1fa1c8 (diff)
Merge branch 'linux-linaro-lsk-v4.9' into linux-linaro-lsk-v4.9-rtlsk-v4.9-18.07-rt
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r--include/net/ipv6.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h
index e64210c98c2b..407087d686a7 100644
--- a/include/net/ipv6.h
+++ b/include/net/ipv6.h
@@ -794,7 +794,7 @@ static inline __be32 ip6_make_flowlabel(struct net *net, struct sk_buff *skb,
* to minimize possbility that any useful information to an
* attacker is leaked. Only lower 20 bits are relevant.
*/
- rol32(hash, 16);
+ hash = rol32(hash, 16);
flowlabel = (__force __be32)hash & IPV6_FLOWLABEL_MASK;