-----BEGIN PGP SIGNED MESSAGE-----
Salut,
I reported about the crash...
The problem is, that there is a methode missing in the ppp-module:
- ->hard_header
It triggered a call via NULL-pointer. My workaround is a one liner.
ATTENTION: it's a dirty hack!
- ------------------o<----------
- --- linux/net/ethernet/pe2.c.old Tue Apr 28 18:47:34 1998
+++ linux/net/ethernet/pe2.c Tue Apr 28 18:48:22 1998
@@ -11,7 +11,8 @@
struct device *dev = skb->dev;
skb->protocol = htons (ETH_P_IPX);
- - dev->hard_header(skb, dev, ETH_P_IPX, dest_node, NULL, skb->len);
+ if(dev->hard_header != NULL)
+ dev->hard_header(skb, dev, ETH_P_IPX, dest_node, NULL, skb->len);
}
struct datalink_proto *
- --------------------------------->o-----------
How can I put this in the schedull-list for the linux2.1-Todo?
Thanks to Karsten Keil, for supporting me, in telling me where to
search for the kernel-bug ;-)
1024/7A5EADED Hartwig Felger <[EMAIL PROTECTED]>
pgp-Key fingerprint = 2F 3B 34 10 00 B7 FE 10 CE 84 E2 56 1C B0 3E 07
768/CA2159D9 Hartwig Felger <[EMAIL PROTECTED]>
pgp-Key fingerprint = 18 49 5E 6E 4E 47 3D F5 28 3E 11 C9 05 26 F3 46
-----BEGIN PGP SIGNATURE-----
Version: 2.6.3i
Charset: latin1
Comment: Requires PGP version 2.6 or later.
iQCVAwUBNUY/Hug8bRR6Xq3tAQHcmQQAoJ+xUXwEwBe+4LUWjI934pNaGRGTwQL3
MBkRCsE2fscsImh2NQa8jTDNKbwFz4CRG72WyxhLW/moM2ze+FLOY/zEZjKG7nJE
EXNvlKO6C7Cp1LlNwLPIIhL9ESx+VWrSZjK5lTpXu2+dFRV50MzwDeWKCu8wdIX7
YChBVYLYx1c=
=0gY6
-----END PGP SIGNATURE-----
-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]