From 98fbd5b28b4e67d3cabe2ef1c7d1dfec9a1067ce Mon Sep 17 00:00:00 2001 From: Pravin Shelar Date: Wed, 14 Sep 2011 17:39:43 -0700 Subject: [PATCH] datapath: Fix tunnel lookup Attached patch fixes tunnel lookup to do correct port comparison. This bug is introduced by commit 3544358aa5960b148bc31435a0062e9392530ec2 Signed-off-by: Pravin B Shelar Acked-by: Jesse Gross --- datapath/tunnel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/tunnel.c b/datapath/tunnel.c index 25aea2467..67fbd2ba3 100644 --- a/datapath/tunnel.c +++ b/datapath/tunnel.c @@ -272,7 +272,7 @@ static struct tnl_vport *port_table_lookup(struct port_lookup_key *lookup) bucket = find_bucket(hash); hlist_for_each_entry_rcu(tnl_vport, n, bucket, hash_node) { - if (!port_cmp(tnl_vport, lookup)) + if (port_cmp(tnl_vport, lookup)) return tnl_vport; } -- 2.43.0