From owner-cvs-src@FreeBSD.ORG Fri Jun 6 05:25:32 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 600C610656C4; Fri, 6 Jun 2008 05:25:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 452568FC14; Fri, 6 Jun 2008 05:25:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m565PVV3056158; Fri, 6 Jun 2008 05:25:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m565PVm5056157; Fri, 6 Jun 2008 05:25:31 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <200806060525.m565PVm5056157@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Fri, 6 Jun 2008 05:25:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cs if_cs.c if_cs_isa.c if_cs_pccard.c if_csvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2008 05:25:32 -0000 imp 2008-06-06 05:25:24 UTC FreeBSD src repository Modified files: sys/dev/cs if_cs.c if_cs_isa.c if_cs_pccard.c if_csvar.h Log: SVN rev 179597 on 2008-06-06 05:25:24Z by imp Minor clean up to shave about 1.5k off the size of the driver: o remove unused fields from softc and args from cs_alloc_irq o remove some commented code that will never be implemented. o Don't try to send a packet and see if it worked. We don't need this anymore, and it doesn't add any value. o tweaks for BNC and AUI. o limit possible time hung in the kernel to 4s rather than 40s. Revision Changes Path 1.51 +6 -84 src/sys/dev/cs/if_cs.c 1.11 +5 -7 src/sys/dev/cs/if_cs_isa.c 1.23 +0 -1 src/sys/dev/cs/if_cs_pccard.c 1.12 +1 -3 src/sys/dev/cs/if_csvar.h