From owner-svn-src-head@FreeBSD.ORG Wed May 28 06:50:17 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5391E79F; Wed, 28 May 2014 06:50:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42238224E; Wed, 28 May 2014 06:50:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4S6oHNG086026; Wed, 28 May 2014 06:50:17 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4S6oHma086025; Wed, 28 May 2014 06:50:17 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <201405280650.s4S6oHma086025@svn.freebsd.org> From: Luigi Rizzo Date: Wed, 28 May 2014 06:50:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266790 - head/sys/dev/e1000 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 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: Wed, 28 May 2014 06:50:17 -0000 Author: luigi Date: Wed May 28 06:50:16 2014 New Revision: 266790 URL: http://svnweb.freebsd.org/changeset/base/266790 Log: reference the correct variable in a comment MFC after: 3 days Modified: head/sys/dev/e1000/if_igb.c Modified: head/sys/dev/e1000/if_igb.c ============================================================================== --- head/sys/dev/e1000/if_igb.c Wed May 28 06:38:42 2014 (r266789) +++ head/sys/dev/e1000/if_igb.c Wed May 28 06:50:16 2014 (r266790) @@ -4331,7 +4331,7 @@ igb_setup_receive_ring(struct rx_ring *r rxbuf = &rxr->rx_buffers[j]; #ifdef DEV_NETMAP if (slot) { - /* slot sj is mapped to the i-th NIC-ring entry */ + /* slot sj is mapped to the j-th NIC-ring entry */ int sj = netmap_idx_n2k(&na->rx_rings[rxr->me], j); uint64_t paddr; void *addr;