* [PATCH] net: davinci_emac: fix spinlock bug with dma channel cleanup
@ 2011-04-12 4:42 Sriramakrishnan A G
2011-04-12 21:33 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Sriramakrishnan A G @ 2011-04-12 4:42 UTC (permalink / raw)
To: netdev; +Cc: davinci-linux-open-source, davem, Sriramakrishnan A G
The DMA cleanup function was holding the spinlock across
a busy loop where it waits for HW to indicate teardown is complete.
This generates a backtrace, when DEBUG_SPINLOCK is enabled. Make the
locking more granular.
Signed-off-by: Sriramakrishnan A G <srk@ti.com>
---
drivers/net/davinci_cpdma.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/net/davinci_cpdma.c b/drivers/net/davinci_cpdma.c
index ae47f23..57fd0fc 100644
--- a/drivers/net/davinci_cpdma.c
+++ b/drivers/net/davinci_cpdma.c
@@ -824,6 +824,8 @@ int cpdma_chan_stop(struct cpdma_chan *chan)
/* trigger teardown */
dma_reg_write(ctlr, chan->td, chan->chan_num);
+ spin_unlock_irqrestore(&chan->lock, flags);
+
/* wait for teardown complete */
timeout = jiffies + HZ/10; /* 100 msec */
while (time_before(jiffies, timeout)) {
@@ -843,6 +845,7 @@ int cpdma_chan_stop(struct cpdma_chan *chan)
} while ((ret & CPDMA_DESC_TD_COMPLETE) == 0);
/* remaining packets haven't been tx/rx'ed, clean them up */
+ spin_lock_irqsave(&chan->lock, flags);
while (chan->head) {
struct cpdma_desc __iomem *desc = chan->head;
dma_addr_t next_dma;
--
1.6.2.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] net: davinci_emac: fix spinlock bug with dma channel cleanup
2011-04-12 4:42 [PATCH] net: davinci_emac: fix spinlock bug with dma channel cleanup Sriramakrishnan A G
@ 2011-04-12 21:33 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2011-04-12 21:33 UTC (permalink / raw)
To: srk; +Cc: netdev, davinci-linux-open-source
From: Sriramakrishnan A G <srk@ti.com>
Date: Tue, 12 Apr 2011 10:12:31 +0530
> The DMA cleanup function was holding the spinlock across
> a busy loop where it waits for HW to indicate teardown is complete.
> This generates a backtrace, when DEBUG_SPINLOCK is enabled. Make the
> locking more granular.
>
> Signed-off-by: Sriramakrishnan A G <srk@ti.com>
You can't really sleep in this function at all.
For example, it gets invoked from the ->ndo_tx_timeout() method in
davinci_emac.c, which runs from a timer.
So even if you hack the spinlock usage, there are still major issues
here.
We could conditionalize the timeout handling, but I don't think so
much complexity is worth it here.
Just do a udelay()/mdelay() or similar, instead of the timed sleeps.
Thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-04-12 21:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-12 4:42 [PATCH] net: davinci_emac: fix spinlock bug with dma channel cleanup Sriramakrishnan A G
2011-04-12 21:33 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).