2.3.30 net_init.c Token Ring Bug

Mike Phillips (phillim@amtrak.com)
Wed, 08 Dec 1999 11:29:03 -0500


This is a MIME message. If you are reading this text, you may want to
consider changing to a mail reader or gateway that understands how to
properly handle MIME multipart messages.

--=_C990B251.5B3A5C30
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

tr_configure sets dev->type =3D ARPHRD_IEEE802_TR; when this should be =
ARPHRD_IEEE802 ;=20

Without this fix (or change back :) ifconfig gets confused.

Patch attached.

Mike

--=_C990B251.5B3A5C30
Content-Type: text/plain
Content-Disposition: attachment; filename="NET_INIT.PAT"
Content-Description: WordPerfect 4.2

--- net_init.c.orig Wed Dec 8 11:29:47 1999
+++ net_init.c Wed Dec 8 11:29:57 1999
@@ -440,7 +440,7 @@
dev->hard_header = tr_header;
dev->rebuild_header = tr_rebuild_header;

- dev->type = ARPHRD_IEEE802_TR;
+ dev->type = ARPHRD_IEEE802;
dev->hard_header_len = TR_HLEN;
dev->mtu = 2000;
dev->addr_len = TR_ALEN;

--=_C990B251.5B3A5C30--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/