From owner-cvs-src-old@FreeBSD.ORG Thu Apr 23 20:26:06 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B688106566B for ; Thu, 23 Apr 2009 20:26:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 182B38FC12 for ; Thu, 23 Apr 2009 20:26:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n3NKQ5xv059128 for ; Thu, 23 Apr 2009 20:26:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n3NKQ5X9059127 for cvs-src-old@freebsd.org; Thu, 23 Apr 2009 20:26:05 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200904232026.n3NKQ5X9059127@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 23 Apr 2009 20:24:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 busdma_machdep.c src/sys/arm/arm busdma_machdep.c src/sys/i386/i386 busdma_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Apr 2009 20:26:06 -0000 jhb 2009-04-23 20:24:19 UTC FreeBSD src repository Modified files: sys/amd64/amd64 busdma_machdep.c sys/arm/arm busdma_machdep.c sys/i386/i386 busdma_machdep.c Log: SVN rev 191438 on 2009-04-23 20:24:19Z by jhb Reduce the number of bounce zones (and thus the number of bounce pages used in some cases): - Ignore DMA tag boundaries when allocating bounce pages. The boundaries don't determine whether or not parts of a DMA request bounce. Instead, they are just used to carve up segments. - Allow tags with sub-page alignment to share bounce pages since bounce pages are always page aligned. Reviewed by: scottl (amd64) MFC after: 1 month Revision Changes Path 1.91 +2 -8 src/sys/amd64/amd64/busdma_machdep.c 1.47 +5 -11 src/sys/arm/arm/busdma_machdep.c 1.99 +2 -8 src/sys/i386/i386/busdma_machdep.c