ucc_geth: Fix full TX queue processing
authorJiajun Wu <b06378@freescale.com>
Mon, 18 Jan 2010 05:47:50 +0000 (05:47 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 Jan 2010 09:59:03 +0000 (01:59 -0800)
commit34692421bc7d6145ef383b014860f4fde10b7505
treeab1674b67e9169940a206b43c0d7dd8d0b6c139f
parent4f9c85a1b03bfa5c0a0d8488a3a7766f3c9fb756
ucc_geth: Fix full TX queue processing

commit 7583605b6d29f1f7f6fc505b883328089f3485ad ("ucc_geth: Fix empty
TX queue processing") fixed empty TX queue mishandling, but didn't
account another corner case: when TX queue becomes full.

Without this patch the driver will stop transmiting when TX queue
becomes full since 'bd == ugeth->txBd[txQ]' actually checks for
two things: queue empty or full.

Let's better check for NULL skb, which unambiguously signals an empty
queue.

Signed-off-by: Jiajun Wu <b06378@freescale.com>
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Cc: Stable <stable@vger.kernel.org> [2.6.32]
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ucc_geth.c