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

Commit c0722400 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller
Browse files

net/ipv6/udp.c: fix typo in flush_stack()



skb1 should be passed as parameter to sk_rcvqueues_full() here.

Signed-off-by: default avatarJiri Pirko <jpirko@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 457de438
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -602,7 +602,7 @@ static void flush_stack(struct sock **stack, unsigned int count,

		sk = stack[i];
		if (skb1) {
			if (sk_rcvqueues_full(sk, skb)) {
			if (sk_rcvqueues_full(sk, skb1)) {
				kfree_skb(skb1);
				goto drop;
			}