Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 920a0fde authored by Or Gerlitz's avatar Or Gerlitz Committed by David S. Miller
Browse files

net/vxlan: Go over all candidate streams for GRO matching



The loop in vxlan_gro_receive() over the current set of candidates for
coalescing was wrongly aborted once a match was found. In rare cases,
this can cause a false-positives matching in the next layer GRO checks.

Signed-off-by: default avatarOr Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b5aaab12
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -596,10 +596,8 @@ static struct sk_buff **vxlan_gro_receive(struct sk_buff **head, struct sk_buff
			NAPI_GRO_CB(p)->same_flow = 0;
			continue;
		}
		goto found;
	}

found:
	type = eh->h_proto;

	rcu_read_lock();