Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!sri-unix!sri-spam!mordor!lll-tis!ames!ucbcad!ucbvax!OKEEFFE.BERKELEY.EDU!bostic From: bostic@OKEEFFE.BERKELEY.EDU (Keith Bostic) Newsgroups: comp.bugs.2bsd Subject: V1.10 (network driver initialization) Message-ID: <8710212228.AA12488@okeeffe.Berkeley.EDU> Date: Wed, 21-Oct-87 18:28:06 EDT Article-I.D.: okeeffe.8710212228.AA12488 Posted: Wed Oct 21 18:28:06 1987 Date-Received: Sat, 24-Oct-87 09:23:45 EDT Sender: daemon@ucbvax.BERKELEY.EDU Lines: 24 Subject: network driver initialization Index: sys/sys/init_main.c 2.10BSD Description: The Interlan and DEUNA driver CSR's don't get initialized correctly. Repeat-By: Configure in either the Interlan or DEUNA driver and watch it hang. Fix: Apply the following patch to sys/sys/init_main.c. *** init_main.c.old Wed Oct 21 14:45:33 1987 --- init_main.c Wed Oct 21 14:45:01 1987 *************** *** 237,242 **** --- 237,243 ---- * entry should be ripped out of vaxif/ubavar.h? */ ui->ui_alive = 1; + udp->ud_dinfo[ui->ui_unit] = ui; (*udp->ud_attach)(ui); printf("attaching %s.\n", udp->ud_dname); }