From owner-cvs-all@FreeBSD.ORG Mon Jun 23 18:16:45 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBB9A106564A; Mon, 23 Jun 2008 18:16:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A47FC8FC0A; Mon, 23 Jun 2008 18:16:45 +0000 (UTC) (envelope-from jhb@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 m5NIGjNj001329; Mon, 23 Jun 2008 18:16:45 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m5NIGjsg001328; Mon, 23 Jun 2008 18:16:45 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200806231816.m5NIGjsg001328@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Mon, 23 Jun 2008 18:16:25 +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/fe if_fe.c if_fe_cbus.c if_fe_isa.c if_fe_pccard.c if_fevar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2008 18:16:45 -0000 jhb 2008-06-23 18:16:25 UTC FreeBSD src repository Modified files: sys/dev/fe if_fe.c if_fe_cbus.c if_fe_isa.c if_fe_pccard.c if_fevar.h Log: SVN rev 179959 on 2008-06-23 18:16:25Z by jhb - Use bus_foo() rather than bus_space_foo() and retire the bus tag and handle from the softc. - Rework the watchdog timer to match other NIC drivers: - Start a timer in fe_init() that runs once a second and checks a counter in the softc that is identical to the deprecated 'if_timer'. - Just adjust the softc tx timeout value when sending packets instead of scheduling the timer. - Use IFQ_SET_MAXLEN(). Tested by: WATANABE Kazuhiro Revision Changes Path 1.100 +15 -27 src/sys/dev/fe/if_fe.c 1.14 +0 -3 src/sys/dev/fe/if_fe_cbus.c 1.10 +1 -1 src/sys/dev/fe/if_fe_isa.c 1.34 +0 -1 src/sys/dev/fe/if_fe_pccard.c 1.8 +11 -12 src/sys/dev/fe/if_fevar.h