Re: [Linux-zigbee-devel] [PATCH 3/6] mac802154: Use netif flow control

2013-04-02 Thread Sergei Shtylyov
Hello. On 04/02/2013 10:47 PM, Alan Ott wrote: > Use netif_stop_queue() and netif_wake_queue() to control the flow of > packets to mac802154 devices. Since many IEEE 802.15.4 devices have no > output buffer, and since the mac802154 xmit() function is designed to > block, netif_stop_queue() is ca

[Linux-zigbee-devel] [PATCH 3/6] mac802154: Use netif flow control

2013-04-02 Thread Alan Ott
Use netif_stop_queue() and netif_wake_queue() to control the flow of packets to mac802154 devices. Since many IEEE 802.15.4 devices have no output buffer, and since the mac802154 xmit() function is designed to block, netif_stop_queue() is called after each packet. Signed-off-by: Alan Ott --- ne