* [PATCH] macmace: disable only the dma interrupt
@ 2011-09-10 15:02 Finn Thain
2011-09-10 18:30 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Finn Thain @ 2011-09-10 15:02 UTC (permalink / raw)
To: David Miller; +Cc: linux-m68k, netdev
Don't disable all interrupts, just disable the relevant one.
Also move a couple of printk calls outside of local_irq_save/restore.
Tested on a Quadra 660av.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Index: linux-m68k/drivers/net/macmace.c
===================================================================
--- linux-m68k.orig/drivers/net/macmace.c 2011-08-28 00:33:33.000000000 +1000
+++ linux-m68k/drivers/net/macmace.c 2011-08-28 00:36:10.000000000 +1000
@@ -458,8 +458,9 @@ static int mace_xmit_start(struct sk_buf
local_irq_save(flags);
netif_stop_queue(dev);
if (!mp->tx_count) {
- printk(KERN_ERR "macmace: tx queue running but no free buffers.\n");
local_irq_restore(flags);
+ printk(KERN_ERR
+ "macmace: tx queue running but no free buffers.\n");
return NETDEV_TX_BUSY;
}
mp->tx_count--;
@@ -563,10 +564,8 @@ static irqreturn_t mace_interrupt(int ir
struct mace_data *mp = netdev_priv(dev);
volatile struct mace *mb = mp->mace;
int intr, fs;
- unsigned long flags;
- /* don't want the dma interrupt handler to fire */
- local_irq_save(flags);
+ disable_irq(mp->dma_intr);
intr = mb->ir; /* read interrupt register */
mace_handle_misc_intrs(dev, intr);
@@ -604,7 +603,7 @@ static irqreturn_t mace_interrupt(int ir
if (mp->tx_count)
netif_wake_queue(dev);
- local_irq_restore(flags);
+ enable_irq(mp->dma_intr);
return IRQ_HANDLED;
}
@@ -615,11 +614,12 @@ static void mace_tx_timeout(struct net_d
volatile struct mace *mb = mp->mace;
unsigned long flags;
+ printk(KERN_ERR "macmace: transmit timeout - resetting\n");
+
local_irq_save(flags);
/* turn off both tx and rx and reset the chip */
mb->maccc = 0;
- printk(KERN_ERR "macmace: transmit timeout - resetting\n");
mace_txdma_reset(dev);
mace_reset(dev);
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] macmace: disable only the dma interrupt
2011-09-10 15:02 [PATCH] macmace: disable only the dma interrupt Finn Thain
@ 2011-09-10 18:30 ` David Miller
2011-09-11 10:02 ` Finn Thain
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2011-09-10 18:30 UTC (permalink / raw)
To: fthain; +Cc: linux-m68k, netdev
From: Finn Thain <fthain@telegraphics.com.au>
Date: Sun, 11 Sep 2011 01:02:16 +1000 (EST)
> Don't disable all interrupts, just disable the relevant one.
>
> Also move a couple of printk calls outside of local_irq_save/restore.
>
> Tested on a Quadra 660av.
>
> Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Using disable_irq() is very expensive, and when done from an interrupt
handler can deadlock especially on SMP (which I understand might not
be relevant here).
I really can't see why you'd do things this way, especially since
interrupt handlers under Linux now unconditionally always run with cpu
interrupts disabled.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] macmace: disable only the dma interrupt
2011-09-10 18:30 ` David Miller
@ 2011-09-11 10:02 ` Finn Thain
0 siblings, 0 replies; 3+ messages in thread
From: Finn Thain @ 2011-09-11 10:02 UTC (permalink / raw)
To: David Miller; +Cc: linux-m68k, netdev
On Sat, 10 Sep 2011, David Miller wrote:
> From: Finn Thain <fthain@telegraphics.com.au>
> Date: Sun, 11 Sep 2011 01:02:16 +1000 (EST)
>
> > Don't disable all interrupts, just disable the relevant one.
> >
> > Also move a couple of printk calls outside of local_irq_save/restore.
> >
> > Tested on a Quadra 660av.
> >
> > Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
>
> Using disable_irq() is very expensive, and when done from an interrupt
> handler can deadlock especially on SMP (which I understand might not be
> relevant here).
>
> I really can't see why you'd do things this way, especially since
> interrupt handlers under Linux now unconditionally always run with cpu
> interrupts disabled.
I wasn't aware of this (I was under the impression that a higher priority
interrupt could be serviced). Please disregard this patch.
Finn
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-09-11 10:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-10 15:02 [PATCH] macmace: disable only the dma interrupt Finn Thain
2011-09-10 18:30 ` David Miller
2011-09-11 10:02 ` Finn Thain
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox