freebsd-skq/sys/dev/sn
imp e1a07793db While reviewing if_sn in an attempt to understand network drivers
better, I discovered sn doing too many pointer dereferences.  This
driver would do silly things like:
	sn_foo(struct ifnet *ifp)
	{
		struct sn_softc *sc = ifp->if_softc;

		sc->ifp->mumble
		/* Other stuff */
	}

while /* other stuff */ usually needed sc, the extra deref isn't
needed.  Eliminate a few dozen of them.
2006-01-07 19:29:25 +00:00
..
if_sn_isa.c
if_sn_pccard.c
if_sn.c While reviewing if_sn in an attempt to understand network drivers 2006-01-07 19:29:25 +00:00
if_snreg.h
if_snvar.h
ositech.h