[IPV6]: Fix ECN bug on big-endian

__constant_htons(2<<4) is not a replacement for
htonl(2<<20).

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Al Viro and committed by David S. Miller 95026cd2 02e60370

+1 -1
+1 -1
include/net/inet_ecn.h
··· 48 48 49 49 #define IP6_ECN_flow_xmit(sk, label) do { \ 50 50 if (INET_ECN_is_capable(inet_sk(sk)->tos)) \ 51 - (label) |= __constant_htons(INET_ECN_ECT_0 << 4); \ 51 + (label) |= htonl(INET_ECN_ECT_0 << 20); \ 52 52 } while (0) 53 53 54 54 static inline int IP_ECN_set_ce(struct iphdr *iph)