diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-07-21 22:09:41 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-21 22:09:41 -0400 |
commit | b77f2fa6299af4bbb7aa50c5064a0f087ea089d9 (patch) | |
tree | 3b6a14539b29c66b67d0ffd04e0353319f0a1ec3 /net/ipv6 | |
parent | 43a415138d8133587c0901d29941b821b86e9e7d (diff) |
[IPV6]: endianness bug in ip6_tunnel
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index 281aee42d3f0..df30976f6dfd 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c | |||
@@ -962,8 +962,8 @@ ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) | |||
962 | dsfield = ipv4_get_dsfield(iph); | 962 | dsfield = ipv4_get_dsfield(iph); |
963 | 963 | ||
964 | if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)) | 964 | if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)) |
965 | fl.fl6_flowlabel |= ntohl(((__u32)iph->tos << IPV6_TCLASS_SHIFT) | 965 | fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT) |
966 | & IPV6_TCLASS_MASK); | 966 | & IPV6_TCLASS_MASK; |
967 | 967 | ||
968 | err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu); | 968 | err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu); |
969 | if (err != 0) { | 969 | if (err != 0) { |