From owner-svn-src-stable-9@FreeBSD.ORG Thu Apr 4 05:04:49 2013 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6E3079BA; Thu, 4 Apr 2013 05:04:49 +0000 (UTC) (envelope-from kib@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 60B92678; Thu, 4 Apr 2013 05:04:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3454m9c018096; Thu, 4 Apr 2013 05:04:48 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3454mXj018095; Thu, 4 Apr 2013 05:04:48 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201304040504.r3454mXj018095@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 4 Apr 2013 05:04:48 +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: r249075 - stable/9/sys/x86/x86 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-9@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Apr 2013 05:04:49 -0000 Author: kib Date: Thu Apr 4 05:04:48 2013 New Revision: 249075 URL: http://svnweb.freebsd.org/changeset/base/249075 Log: MFC r248968: Record the correct error in the trace. Modified: stable/9/sys/x86/x86/busdma_machdep.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/x86/x86/busdma_machdep.c ============================================================================== --- stable/9/sys/x86/x86/busdma_machdep.c Wed Apr 3 23:39:54 2013 (r249074) +++ stable/9/sys/x86/x86/busdma_machdep.c Thu Apr 4 05:04:48 2013 (r249075) @@ -252,7 +252,7 @@ bus_dma_tag_create(bus_dma_tag_t parent, M_ZERO | M_NOWAIT); if (newtag == NULL) { CTR4(KTR_BUSDMA, "%s returned tag %p tag flags 0x%x error %d", - __func__, newtag, 0, error); + __func__, newtag, 0, ENOMEM); return (ENOMEM); }