|
@@ -366,12 +366,12 @@ static bool ipip_netlink_encap_parms(struct nlattr *data[],
|
|
|
|
|
|
if (data[IFLA_IPTUN_ENCAP_SPORT]) {
|
|
if (data[IFLA_IPTUN_ENCAP_SPORT]) {
|
|
ret = true;
|
|
ret = true;
|
|
- ipencap->sport = nla_get_u16(data[IFLA_IPTUN_ENCAP_SPORT]);
|
|
|
|
|
|
+ ipencap->sport = nla_get_be16(data[IFLA_IPTUN_ENCAP_SPORT]);
|
|
}
|
|
}
|
|
|
|
|
|
if (data[IFLA_IPTUN_ENCAP_DPORT]) {
|
|
if (data[IFLA_IPTUN_ENCAP_DPORT]) {
|
|
ret = true;
|
|
ret = true;
|
|
- ipencap->dport = nla_get_u16(data[IFLA_IPTUN_ENCAP_DPORT]);
|
|
|
|
|
|
+ ipencap->dport = nla_get_be16(data[IFLA_IPTUN_ENCAP_DPORT]);
|
|
}
|
|
}
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
@@ -460,10 +460,10 @@ static int ipip_fill_info(struct sk_buff *skb, const struct net_device *dev)
|
|
|
|
|
|
if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE,
|
|
if (nla_put_u16(skb, IFLA_IPTUN_ENCAP_TYPE,
|
|
tunnel->encap.type) ||
|
|
tunnel->encap.type) ||
|
|
- nla_put_u16(skb, IFLA_IPTUN_ENCAP_SPORT,
|
|
|
|
- tunnel->encap.sport) ||
|
|
|
|
- nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT,
|
|
|
|
- tunnel->encap.dport) ||
|
|
|
|
|
|
+ nla_put_be16(skb, IFLA_IPTUN_ENCAP_SPORT,
|
|
|
|
+ tunnel->encap.sport) ||
|
|
|
|
+ nla_put_be16(skb, IFLA_IPTUN_ENCAP_DPORT,
|
|
|
|
+ tunnel->encap.dport) ||
|
|
nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
|
|
nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
|
|
tunnel->encap.flags))
|
|
tunnel->encap.flags))
|
|
goto nla_put_failure;
|
|
goto nla_put_failure;
|