From owner-svn-src-all@FreeBSD.ORG Thu Nov 27 02:19:45 2008 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A323106564A; Thu, 27 Nov 2008 02:19:45 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1ECCB8FC1C; Thu, 27 Nov 2008 02:19:45 +0000 (UTC) (envelope-from jfv@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 mAR2JjmK073025; Thu, 27 Nov 2008 02:19:45 GMT (envelope-from jfv@svn.freebsd.org) Received: (from jfv@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAR2Ji2M073024; Thu, 27 Nov 2008 02:19:44 GMT (envelope-from jfv@svn.freebsd.org) Message-Id: <200811270219.mAR2Ji2M073024@svn.freebsd.org> From: Jack F Vogel Date: Thu, 27 Nov 2008 02:19:44 +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: r185356 - head/sys/dev/ixgbe X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 02:19:45 -0000 Author: jfv Date: Thu Nov 27 02:19:44 2008 New Revision: 185356 URL: http://svn.freebsd.org/changeset/base/185356 Log: Small nit I just noticed, a pre-decrement should be post. Modified: head/sys/dev/ixgbe/ixgbe.c Modified: head/sys/dev/ixgbe/ixgbe.c ============================================================================== --- head/sys/dev/ixgbe/ixgbe.c Thu Nov 27 02:18:43 2008 (r185355) +++ head/sys/dev/ixgbe/ixgbe.c Thu Nov 27 02:19:44 2008 (r185356) @@ -3244,7 +3244,7 @@ fail: * the rings that completed, the failing case will have * cleaned up for itself. 'j' failed, so its the terminus. */ - for (int i = 0; i < j; ++i) { + for (int i = 0; i < j; i++) { rxr = &adapter->rx_rings[i]; for (int n = 0; n < adapter->num_rx_desc; n++) { struct ixgbe_rx_buf *rxbuf;