From owner-svn-src-stable@FreeBSD.ORG Tue Jun 18 04:11:17 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2F6B3403; Tue, 18 Jun 2013 04:11:17 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 21E0116F2; Tue, 18 Jun 2013 04:11:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5I4BG3D080714; Tue, 18 Jun 2013 04:11:16 GMT (envelope-from scottl@svn.freebsd.org) Received: (from scottl@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5I4BGu3080713; Tue, 18 Jun 2013 04:11:16 GMT (envelope-from scottl@svn.freebsd.org) Message-Id: <201306180411.r5I4BGu3080713@svn.freebsd.org> From: Scott Long Date: Tue, 18 Jun 2013 04:11:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r251893 - stable/9/sys/dev/amd X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 04:11:17 -0000 Author: scottl Date: Tue Jun 18 04:11:16 2013 New Revision: 251893 URL: http://svnweb.freebsd.org/changeset/base/251893 Log: Fix typos in the last revision. Thanks to Andrey Chernov for his kind patience. Obtained from: Netflix Modified: stable/9/sys/dev/amd/amd.c Modified: stable/9/sys/dev/amd/amd.c ============================================================================== --- stable/9/sys/dev/amd/amd.c Tue Jun 18 04:06:12 2013 (r251892) +++ stable/9/sys/dev/amd/amd.c Tue Jun 18 04:11:16 2013 (r251893) @@ -430,7 +430,7 @@ amd_action(struct cam_sim * psim, union if ((pccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) { int error; - error - bus_dmamap_load_ccb(amd->buffer_dmat, + error = bus_dmamap_load_ccb(amd->buffer_dmat, pSRB->dmamap, pccb, amdexecutesrb, @@ -442,7 +442,7 @@ amd_action(struct cam_sim * psim, union * until our mapping is * returned. */ - xpt_freeze_simq(sim, 1); + xpt_freeze_simq(psim, 1); pccb->ccb_h.status |= CAM_RELEASE_SIMQ; } } else