On Thu, Apr 05, 2007 at 02:04:02AM +0000, Andrew Morton wrote: > > This looks like a locking bug in the ipv6 changes in davem's devel tree. > There are no relevant changes to drivers/net/sc92031.c in rc5-mm4.
Actually, this looks like a latent bug in sc92031. It's calling spin_lock in the dev->open function on a lock that's held in BH context. [SC92031]: Fix priv->lock context The spin_lock calls made in dev->open and dev->close must disable BH since open/close are made in process context. Conversely, the call in dev->hard_start_xmit does not need to disable BH since it is already executing with BH disabled. Signed-off-by: Herbert Xu <[EMAIL PROTECTED]> Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html