From owner-svn-src-head@FreeBSD.ORG Sat May 30 17:25:15 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33BBB106564A; Sat, 30 May 2009 17:25:15 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 21BEB8FC13; Sat, 30 May 2009 17:25:15 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4UHPFnE014062; Sat, 30 May 2009 17:25:15 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4UHPFaY014061; Sat, 30 May 2009 17:25:15 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <200905301725.n4UHPFaY014061@svn.freebsd.org> From: Attilio Rao Date: Sat, 30 May 2009 17:25:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193100 - head/sys/dev/bge X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 May 2009 17:25:15 -0000 Author: attilio Date: Sat May 30 17:25:14 2009 New Revision: 193100 URL: http://svn.freebsd.org/changeset/base/193100 Log: s/rk_npkts/rx_npkts Reported by: zec Modified: head/sys/dev/bge/if_bge.c Modified: head/sys/dev/bge/if_bge.c ============================================================================== --- head/sys/dev/bge/if_bge.c Sat May 30 16:26:08 2009 (r193099) +++ head/sys/dev/bge/if_bge.c Sat May 30 17:25:14 2009 (r193100) @@ -3193,7 +3193,7 @@ bge_rxeof(struct bge_softc *sc) BGE_UNLOCK(sc); (*ifp->if_input)(ifp, m); BGE_LOCK(sc); - rk_npkts++; + rx_npkts++; if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) return;