Hi,

This patch solved the problem. Should be ready for inclusion in 2.4.
No more 'Scheduling in interrupt' under those conditions.
Thanx for the thoughts, solution and the amazing speed.
You guys are doing a really great job!

I hope we can get the earlier mentioned NULL ptr in all_ppp_units list
straight
soon. (I have a simple workaround - the mentioned hash, that even improves
speed,
but I a real fix would be more satisfaction. The relevant part of
ppp_generic.c
is so simple that it's really strange it is not correct.. ).

thanx:
    Cell

Michal Ostrowski wrote:

> Anybody care to comment on this?
> [EMAIL PROTECTED]

--- linuxold/drivers/net/pppoe.c        Mon May 14 22:06:44 2001
+++ linux/drivers/net/pppoe.c   Mon May 14 22:11:25 2001
@@ -4,9 +4,9 @@
  * PPPoX --- Generic PPP encapsulation socket family
  * PPPoE --- PPP over Ethernet (RFC 2516)
  *
  *
- * Version:    0.6.5
+ * Version:    0.6.6
  *
  * 030700 :     Fixed connect logic to allow for disconnect.
  * 270700 :    Fixed potential SMP problems; we must protect against
  *             simultaneous invocation of ppp_input
@@ -18,8 +18,9 @@
  *             in pppoe_release.
  * 051000 :    Initialization cleanup.
  * 111100 :    Fix recvmsg.
  * 050101 :    Fix PADT procesing.
+ * 140501 :    pppoe_backlog_rcv must call bh_lock_sock, not lock_sock.
  *
  * Author:     Michal Ostrowski <[EMAIL PROTECTED]>
  * Contributors:
  *             Arnaldo Carvalho de Melo <[EMAIL PROTECTED]>
@@ -383,11 +384,11 @@
  *
  ***********************************************************************/
 int pppoe_backlog_rcv(struct sock *sk, struct sk_buff *skb)
 {
-       lock_sock(sk);
+       bh_lock_sock(sk);
        pppoe_rcv_core(sk, skb);
-       release_sock(sk);
+       bh_unlock_sock(sk);
        return 0;
 }


--
You'll never see all the places, or read all the books, but fortunately,
they're not all recommended.



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to