projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c87037
)
sfc: Don't wake TX queues while they're being flushed
author
Ben Hutchings
<bhutchings@solarflare.com>
Wed, 4 Mar 2009 09:53:15 +0000
(09:53 +0000)
committer
David S. Miller
<davem@davemloft.net>
Thu, 5 Mar 2009 01:40:23 +0000
(17:40 -0800)
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/sfc/tx.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/sfc/tx.c
b/drivers/net/sfc/tx.c
index 9f97e44840b6e2387c5c3891065ca5b3bd4a1ead..b1e1907790731070eca9d03db66b7d6c7d8280ac 100644
(file)
--- a/
drivers/net/sfc/tx.c
+++ b/
drivers/net/sfc/tx.c
@@
-400,7
+400,7
@@
void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index)
* separates the update of read_count from the test of
* stopped. */
smp_mb();
- if (unlikely(tx_queue->stopped)) {
+ if (unlikely(tx_queue->stopped)
&& likely(efx->port_enabled)
) {
fill_level = tx_queue->insert_count - tx_queue->read_count;
if (fill_level < EFX_NETDEV_TX_THRESHOLD(tx_queue)) {
EFX_BUG_ON_PARANOID(!efx_dev_registered(efx));