[rb532] nuke empty directory
[openwrt/svn-archive/archive.git] / target / linux / rb532 / patches-2.6.27 / 014-korina_do_not_stop_queue_here.patch
1 Apparently this doesn't make sense. Otherwise the queue gets disabled as
2 soon as it's getting empty and can only be resurrected by a driver
3 restart.
4
5 Signed-off-by: Phil Sutter <n0-1@freewrt.org>
6 ---
7 drivers/net/korina.c | 1 -
8 1 files changed, 0 insertions(+), 1 deletions(-)
9
10 diff --git a/drivers/net/korina.c b/drivers/net/korina.c
11 index f200175..bd33fa9 100644
12 --- a/drivers/net/korina.c
13 +++ b/drivers/net/korina.c
14 @@ -272,7 +272,6 @@ static int korina_send_packet(struct sk_buff *skb, struct net_device *dev)
15 /* Move tail */
16 lp->tx_chain_tail = chain_next;
17 lp->tx_chain_status = desc_filled;
18 - netif_stop_queue(dev);
19 } else {
20 /* Update tail */
21 td->control = DMA_COUNT(length) |
22 --
23 1.5.6.4
24
25