Re: [PATCH net] net: lapbether: Remove netif_start_queue / netif_stop_queue

2021-03-09 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Sun, 7 Mar 2021 03:33:07 -0800 you wrote: > For the devices in this driver, the default qdisc is "noqueue", > because their "tx_queue_len" is 0. > > In function "__dev_queue_xmit" in "net/core/dev.c", devices with the > "no

Re: [PATCH net] net: lapbether: Remove netif_start_queue / netif_stop_queue

2021-03-09 Thread Martin Schiller
On 2021-03-07 12:33, Xie He wrote: For the devices in this driver, the default qdisc is "noqueue", because their "tx_queue_len" is 0. In function "__dev_queue_xmit" in "net/core/dev.c", devices with the "noqueue" qdisc are specially handled. Packets are transmitted without being queued after a "

[PATCH net] net: lapbether: Remove netif_start_queue / netif_stop_queue

2021-03-07 Thread Xie He
For the devices in this driver, the default qdisc is "noqueue", because their "tx_queue_len" is 0. In function "__dev_queue_xmit" in "net/core/dev.c", devices with the "noqueue" qdisc are specially handled. Packets are transmitted without being queued after a "dev->flags & IFF_UP" check. However,