diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/ip_tunnel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c index 3dbb550abb30..9b553157e556 100644 --- a/net/ipv4/ip_tunnel.c +++ b/net/ipv4/ip_tunnel.c | |||
@@ -268,6 +268,7 @@ static struct ip_tunnel *ip_tunnel_find(struct ip_tunnel_net *itn, | |||
268 | __be32 remote = parms->iph.daddr; | 268 | __be32 remote = parms->iph.daddr; |
269 | __be32 local = parms->iph.saddr; | 269 | __be32 local = parms->iph.saddr; |
270 | __be32 key = parms->i_key; | 270 | __be32 key = parms->i_key; |
271 | __be16 flags = parms->i_flags; | ||
271 | int link = parms->link; | 272 | int link = parms->link; |
272 | struct ip_tunnel *t = NULL; | 273 | struct ip_tunnel *t = NULL; |
273 | struct hlist_head *head = ip_bucket(itn, parms); | 274 | struct hlist_head *head = ip_bucket(itn, parms); |
@@ -275,9 +276,9 @@ static struct ip_tunnel *ip_tunnel_find(struct ip_tunnel_net *itn, | |||
275 | hlist_for_each_entry_rcu(t, head, hash_node) { | 276 | hlist_for_each_entry_rcu(t, head, hash_node) { |
276 | if (local == t->parms.iph.saddr && | 277 | if (local == t->parms.iph.saddr && |
277 | remote == t->parms.iph.daddr && | 278 | remote == t->parms.iph.daddr && |
278 | key == t->parms.i_key && | ||
279 | link == t->parms.link && | 279 | link == t->parms.link && |
280 | type == t->dev->type) | 280 | type == t->dev->type && |
281 | ip_tunnel_key_match(&t->parms, flags, key)) | ||
281 | break; | 282 | break; |
282 | } | 283 | } |
283 | return t; | 284 | return t; |