rps: fixed missed rps_unlock
Fix spin_unlock_irq which needs to be rps_unlock. Signed-off-by: Tom Herbert <therbert@google.com> Acked-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7bddd0db62
commit
5a6d234e73
|
@ -3120,7 +3120,7 @@ static int process_backlog(struct napi_struct *napi, int quota)
|
|||
skb = __skb_dequeue(&queue->input_pkt_queue);
|
||||
if (!skb) {
|
||||
__napi_complete(napi);
|
||||
spin_unlock_irq(&queue->input_pkt_queue.lock);
|
||||
rps_unlock(queue);
|
||||
break;
|
||||
}
|
||||
rps_unlock(queue);
|
||||
|
|
Loading…
Reference in New Issue