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

Commit 8a455b08 authored by Jarek Poplawski's avatar Jarek Poplawski Committed by David S. Miller
Browse files

netpoll: zap_completion_queue: adjust skb->users counter



zap_completion_queue() retrieves skbs from completion_queue where they have
zero skb->users counter.  Before dev_kfree_skb_any() it should be non-zero
yet, so it's increased now.

Reported-and-tested-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJarek Poplawski <jarkao2@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2bec008c
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -215,12 +215,14 @@ static void zap_completion_queue(void)
		while (clist != NULL) {
			struct sk_buff *skb = clist;
			clist = clist->next;
			if (skb->destructor)
			if (skb->destructor) {
				atomic_inc(&skb->users);
				dev_kfree_skb_any(skb); /* put this one back */
			else
			} else {
				__kfree_skb(skb);
			}
		}
	}

	put_cpu_var(softnet_data);
}