mirror of https://gitee.com/openkylin/linux.git
s390/qeth: remove bogus netif_wake_queue()
qeth_qdio_cq_handler() doesn't replenish the Output Queue(s), and thus has no reason to wake the txq. Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f72b4644b2
commit
44eb086f9a
|
@ -3558,8 +3558,6 @@ static void qeth_qdio_cq_handler(struct qeth_card *card, unsigned int qdio_err,
|
|||
card->qdio.c_q->next_buf_to_init = (card->qdio.c_q->next_buf_to_init
|
||||
+ count) % QDIO_MAX_BUFFERS_PER_Q;
|
||||
|
||||
netif_wake_queue(card->dev);
|
||||
|
||||
if (card->options.performance_stats) {
|
||||
int delta_t = qeth_get_micros();
|
||||
delta_t -= card->perf_stats.cq_start_time;
|
||||
|
|
Loading…
Reference in New Issue