mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
xen-netback: Disable NAPI after disabling interrupts
Otherwise the interrupt handler still calls napi_complete. Although it won't schedule NAPI again as either NAPI_STATE_DISABLE or NAPI_STATE_SCHED is set, it is just unnecessary, and it makes more sense to do this way. Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org> Signed-off-by: David Vrabel <david.vrabel@citrix.com> Acked-by: Wei Liu <wei.liu2@citrix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7fd2561e4e
commit
8fe78989c3
@ -281,10 +281,10 @@ static void xenvif_down(struct xenvif *vif)
|
||||
|
||||
for (queue_index = 0; queue_index < num_queues; ++queue_index) {
|
||||
queue = &vif->queues[queue_index];
|
||||
napi_disable(&queue->napi);
|
||||
disable_irq(queue->tx_irq);
|
||||
if (queue->tx_irq != queue->rx_irq)
|
||||
disable_irq(queue->rx_irq);
|
||||
napi_disable(&queue->napi);
|
||||
del_timer_sync(&queue->credit_timeout);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user