2008-03-27 10:01:52

by Marin Mitov

[permalink] [raw]
Subject: Re: [patch for 2.6.25? 3/3] skge napi->poll() locking bug

On 27.3.2008, you wrote:
> From: Marin Mitov <[email protected]>
>
> According to: Documentation/networking/netdevices.txt:
>
> <cite>
> napi->poll:
> ..........
> Context: softirq
> will be called with interrupts disabled by netconsole.
> </cite>
>
> napi->poll() could be called either with interrupts enabled
> (in softirq context) or disabled (by netconsole), so the irq flag
> should be preserved.
>
> Inspired by Ingo's resent forcedeth patch :-)
>
As far as skge driver has not changed since 2.6.24, the
patch could be applied to the stable 2.6.24.5 release too.

Marin Mitov

> Signed-off-by: Marin Mitov <[email protected]>
> Acked-by: David S. Miller <[email protected]>
> Cc: Jeff Garzik <[email protected]>
> Signed-off-by: Andrew Morton <[email protected]>
> ---
>
> drivers/net/skge.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff -puN drivers/net/skge.c~skge-napi-poll-locking-bug drivers/net/skge.c
> --- a/drivers/net/skge.c~skge-napi-poll-locking-bug
> +++ a/drivers/net/skge.c
> @@ -3199,12 +3199,14 @@ static int skge_poll(struct napi_struct
> skge_write8(hw, Q_ADDR(rxqaddr[skge->port], Q_CSR), CSR_START);
>
> if (work_done < to_do) {
> - spin_lock_irq(&hw->hw_lock);
> + unsigned long flags;
> +
> + spin_lock_irqsave(&hw->hw_lock, flags);
> __netif_rx_complete(dev, napi);
> hw->intr_mask |= napimask[skge->port];
> skge_write32(hw, B0_IMSK, hw->intr_mask);
> skge_read32(hw, B0_IMSK);
> - spin_unlock_irq(&hw->hw_lock);
> + spin_unlock_irqrestore(&hw->hw_lock, flags);
> }
>
> return work_done;
> _
>