[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20131106192553.GH5661@alberich>
Date: Wed, 6 Nov 2013 20:25:53 +0100
From: Andreas Herrmann <andreas.herrmann@...xeda.com>
To: Ben Hutchings <bhutchings@...arflare.com>
Cc: Rob Herring <rob.herring@...xeda.com>,
Grant Likely <grant.likely@...aro.org>,
"David S. Miller" <davem@...emloft.net>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: [PATCH] net: calxedaxgmac: Fix panic caused by MTU change of
active interface
On Wed, Nov 06, 2013 at 02:22:36PM -0500, Ben Hutchings wrote:
> On Wed, 2013-11-06 at 14:31 +0100, Andreas Herrmann wrote:
> [...]
> > diff --git a/drivers/net/ethernet/calxeda/xgmac.c b/drivers/net/ethernet/calxeda/xgmac.c
> > index 48f5288..8eb422a 100644
> > --- a/drivers/net/ethernet/calxeda/xgmac.c
> > +++ b/drivers/net/ethernet/calxeda/xgmac.c
> > @@ -1067,6 +1067,10 @@ static int xgmac_stop(struct net_device *dev)
> >
> > writel(0, priv->base + XGMAC_DMA_INTR_ENA);
> >
> > + netif_tx_lock_bh(dev);
> > + netif_stop_queue(dev);
> > + netif_tx_unlock_bh(dev);
> > +
> [...]
>
> There is already a call to netif_stop_queue() at the beginning of this
> function, but without locking. I think it's the wrong place because the
> NAPI poller may still call netif_wake_queue() at that point. You're
> putting this in the *right* place, but I think you should remove the
> first call.
Ok.
> Also this sequence is also equivalent to netif_tx_disable(), except that
> that also works for multiqueue net devices.
Ok, wasn't aware of this.
I'll send a new patch.
Thanks,
Andreas
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists