Skip to content
Commit 12ceaf88 authored by David S. Miller's avatar David S. Miller
Browse files

infiniband: nes: Fix more direct skb list accesses.



The following:

	skb = skb->next;
	...
	if (skb == (struct sk_buff *)queue)

is transformed into:

	skb = skb_peek_next(skb, queue);
	...
	if (!skb)

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 457937bd
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment