From owner-freebsd-commit Mon Dec 4 18:02:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA22426 for freebsd-commit-outgoing; Mon, 4 Dec 1995 18:02:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA22390 for cvs-all-outgoing; Mon, 4 Dec 1995 18:02:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA22365 for cvs-sys-outgoing; Mon, 4 Dec 1995 18:02:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA22334 ; Mon, 4 Dec 1995 18:02:03 -0800 Date: Mon, 4 Dec 1995 18:02:03 -0800 From: David Greenman Message-Id: <199512050202.SAA22334@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/pci if_fxp.c if_pdq.c if_vx.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk davidg 95/12/04 18:02:01 Modified: sys/i386/isa if_ar.c if_cx.c if_ed.c if_eg.c if_el.c if_ep.c if_fe.c if_ie.c if_ix.c if_le.c if_lnc.c if_ze.c if_zp.c sys/net if.c if.h sys/netinet if_ether.h sys/netiso if_eon.c iso_snpac.c sys/pci if_fxp.c if_pdq.c if_vx.c Log: all: Removed ifnet.if_init and ifnet.if_reset as they are generally unused. Change the parameter passed to if_watchdog to be a ifnet * rather than a unit number. All of this is an attempt to move toward not needing an array of softc pointers (which is usually static in size) to point to the driver softc. if_ed.c: Changed some of the argument passing to some functions to make a little more sense. if_ep.c, if_vx.c: Killed completely bogus use of if_timer. It was being set in such a way that the interface was being reset once per second (blech!). Revision Changes Path 1.2 +8 -26 src/sys/i386/isa/if_ar.c 1.9 +7 -36 src/sys/i386/isa/if_cx.c 1.88 +83 -81 src/sys/i386/isa/if_ed.c 1.8 +1 -2 src/sys/i386/isa/if_eg.c 1.19 +6 -12 src/sys/i386/isa/if_el.c 1.35 +7 -26 src/sys/i386/isa/if_ep.c 1.7 +9 -11 src/sys/i386/isa/if_fe.c 1.30 +1 -3 src/sys/i386/isa/if_ie.c 1.15 +6 -10 src/sys/i386/isa/if_ix.c 1.24 +15 -13 src/sys/i386/isa/if_le.c 1.15 +5 -7 src/sys/i386/isa/if_lnc.c 1.25 +11 -13 src/sys/i386/isa/if_ze.c 1.13 +8 -11 src/sys/i386/isa/if_zp.c 1.23 +2 -18 src/sys/net/if.c 1.24 +2 -6 src/sys/net/if.h 1.12 +4 -1 src/sys/netinet/if_ether.h 1.5 +2 -3 src/sys/netiso/if_eon.c 1.5 +4 -2 src/sys/netiso/iso_snpac.c 1.3 +23 -29 src/sys/pci/if_fxp.c 1.10 +12 -16 src/sys/pci/if_pdq.c 1.3 +7 -14 src/sys/pci/if_vx.c