[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080212.220003.108906105.davem@davemloft.net>
Date: Tue, 12 Feb 2008 22:00:03 -0800 (PST)
From: David Miller <davem@...emloft.net>
To: jchapman@...alix.com
Cc: jarkao2@...il.com, netdev@...r.kernel.org
Subject: Re: [PATCH][PPPOL2TP]: Fix SMP oops in pppol2tp driver
From: James Chapman <jchapman@...alix.com>
Date: Tue, 12 Feb 2008 10:58:21 +0000
> Here is a trace from when we had _bh locks.
The problem is that the pppol2tp code calls sk_dst_get() in software
interrupt context and that is not allowed.
sk_dst_get() grabs sk->sk_dst_lock without any BH enabling or
disabling.
It can do that because the usage is to make all the lock
taking calls in user context, and in the packet processing
paths use __sk_dst_get().
Probably what the pppol2tp code should do is use __sk_dst_check()
instead of sk_dst_get(). You then have to be able to handle
NULL returns, just like UDP sendmsg() does, which means you'll
need to cook up a routing lookup if __sk_dst_check() gives you
NULL because the route became obsolete.
--
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