Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 264090
Collapse All | Expand All

(-)a/net/core/dev.c (-3 / +3 lines)
Lines 2588-2596 static int process_backlog(struct napi_struct Link Here
2588
		local_irq_disable();
2588
		local_irq_disable();
2589
		skb = __skb_dequeue(&queue->input_pkt_queue);
2589
		skb = __skb_dequeue(&queue->input_pkt_queue);
2590
		if (!skb) {
2590
		if (!skb) {
2591
			list_del(&napi->poll_list);
2592
			clear_bit(NAPI_STATE_SCHED, &napi->state);
2591
			local_irq_enable();
2593
			local_irq_enable();
2592
			napi_complete(napi);
2594
			break;
2593
			goto out;
2594
		}
2595
		}
2595
		local_irq_enable();
2596
		local_irq_enable();
2596
2597
Lines 2599-2605 static int process_backlog(struct napi_struct Link Here
2599
2600
2600
	napi_gro_flush(napi);
2601
	napi_gro_flush(napi);
2601
2602
2602
out:
2603
	return work;
2603
	return work;
2604
}
2604
}

Return to bug 264090