From owner-svn-src-projects@FreeBSD.ORG Fri Nov 22 21:20:16 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0BA286C; Fri, 22 Nov 2013 21:20:16 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0DAE2ED7; Fri, 22 Nov 2013 21:20:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAMLKGeb055261; Fri, 22 Nov 2013 21:20:16 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAMLKGsJ055260; Fri, 22 Nov 2013 21:20:16 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201311222120.rAMLKGsJ055260@svn.freebsd.org> From: Ed Maste Date: Fri, 22 Nov 2013 21:20:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r258487 - projects/sv/sys/dev/ixgbe X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Nov 2013 21:20:17 -0000 Author: emaste Date: Fri Nov 22 21:20:16 2013 New Revision: 258487 URL: http://svnweb.freebsd.org/changeset/base/258487 Log: Fix typo from r220148 Sponsored by: The FreeBSD Foundation Modified: projects/sv/sys/dev/ixgbe/ixgbe.c Modified: projects/sv/sys/dev/ixgbe/ixgbe.c ============================================================================== --- projects/sv/sys/dev/ixgbe/ixgbe.c Fri Nov 22 21:13:06 2013 (r258486) +++ projects/sv/sys/dev/ixgbe/ixgbe.c Fri Nov 22 21:20:16 2013 (r258487) @@ -47,7 +47,7 @@ } while (0) #define IXGBE_RX_UNLOCK_COND(rxr, locking) do { \ if ((locking) != 0) \ - IXGBE_RX_UNLOCK(rtxr); \ + IXGBE_RX_UNLOCK(rxr); \ } while (0) #define IXGBE_TX_LOCK_COND(txr, locking) do { \ if ((locking) != 0) \