From owner-freebsd-hackers Tue Jan 16 06:46:44 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA17978 for hackers-outgoing; Tue, 16 Jan 1996 06:46:44 -0800 (PST) Received: from maelstrom.cc.mcgill.ca (maelstrom.CC.McGill.CA [132.206.35.2]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id GAA17971 for ; Tue, 16 Jan 1996 06:46:42 -0800 (PST) Received: (from yves@localhost) by maelstrom.cc.mcgill.ca (8.7.1/8.6.6) id JAA24302 for hackers@freebsd.org; Tue, 16 Jan 1996 09:43:15 -0500 (EST) Message-Id: <199601161443.JAA24302@maelstrom.cc.mcgill.ca> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 3.3 v118.2) Received: by NeXT.Mailer (1.118.2) From: Yves Lepage Date: Tue, 16 Jan 96 09:43:14 -0500 To: hackers@freebsd.org Subject: Re: YAY! I have a question Reply-To: yves@CC.McGill.CA Sender: owner-hackers@freebsd.org Precedence: bulk Hi, I didn't see this message come back to me and since I still receive mail about this problem, I feel like it would be a good idea to resend it. Sorry if you see this twice. Yves Lepage Begin forwarded message: Received: by NeXT.Mailer (1.118.2) From: Yves Lepage Date: Fri, 12 Jan 96 16:36:51 -0500 To: Julian Elischer Subject: Re: YAY! I have a question cc: hackers@freebsd.org Reply-To: yves@cc.mcgill.ca Hi all, The problem is over! Thanks to Julian Elischer who quickly found the problem: a bug in the if_ep.c driver. The fix is to add: ifp->if_unit = is->id_unit; to: ifp->if_name = "ep"; ifp->if_mtu = ETHERMTU; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS; ifp->if_flags |= IFF_MULTICAST; ifp->if_init = epinit; ifp->if_output = ether_output; ifp->if_start = epstart; ifp->if_ioctl = epioctl; ifp->if_watchdog = epwatchdog; in epattach in if_ep.c (/sys/i386/isa/if_ep.c). Thanks again, I didn't think I still could be amazed by the level of support we get from the community, but I am :-) Yves Lepage yves@cc.mcgill.ca