diff options
Diffstat (limited to 'net/ipv6/ip6_gre.c')
-rw-r--r-- | net/ipv6/ip6_gre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c index c50de068bea2..e27fb78c61f2 100644 --- a/net/ipv6/ip6_gre.c +++ b/net/ipv6/ip6_gre.c | |||
@@ -845,7 +845,7 @@ static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev) | |||
845 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) | 845 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) |
846 | fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK); | 846 | fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK); |
847 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) | 847 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) |
848 | fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK); | 848 | fl6.flowlabel |= ip6_flowlabel(ipv6h); |
849 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) | 849 | if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) |
850 | fl6.flowi6_mark = skb->mark; | 850 | fl6.flowi6_mark = skb->mark; |
851 | 851 | ||