diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2016-12-22 07:28:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-12-23 11:59:56 -0500 |
commit | dc594ecd4185831031d3fef2853ee76908428107 (patch) | |
tree | 8e4ecf4e6b8059e507f2a6f789160b69ad47c8e1 | |
parent | 567be786597ca24b13906a552ad2159316c6fe7d (diff) |
net/sched: act_tunnel_key: Fix setting UDP dst port in metadata under IPv6
The UDP dst port was provided to the helper function which sets the
IPv6 IP tunnel meta-data under a wrong param order, fix that.
Fixes: 75bfbca01e48 ('net/sched: act_tunnel_key: Add UDP dst port option')
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Reviewed-by: Hadar Hen Zion <hadarh@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sched/act_tunnel_key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/act_tunnel_key.c b/net/sched/act_tunnel_key.c index 7af712526f01..e3a58e021198 100644 --- a/net/sched/act_tunnel_key.c +++ b/net/sched/act_tunnel_key.c | |||
@@ -134,8 +134,8 @@ static int tunnel_key_init(struct net *net, struct nlattr *nla, | |||
134 | saddr = nla_get_in6_addr(tb[TCA_TUNNEL_KEY_ENC_IPV6_SRC]); | 134 | saddr = nla_get_in6_addr(tb[TCA_TUNNEL_KEY_ENC_IPV6_SRC]); |
135 | daddr = nla_get_in6_addr(tb[TCA_TUNNEL_KEY_ENC_IPV6_DST]); | 135 | daddr = nla_get_in6_addr(tb[TCA_TUNNEL_KEY_ENC_IPV6_DST]); |
136 | 136 | ||
137 | metadata = __ipv6_tun_set_dst(&saddr, &daddr, 0, 0, 0, | 137 | metadata = __ipv6_tun_set_dst(&saddr, &daddr, 0, 0, dst_port, |
138 | dst_port, TUNNEL_KEY, | 138 | 0, TUNNEL_KEY, |
139 | key_id, 0); | 139 | key_id, 0); |
140 | } | 140 | } |
141 | 141 | ||