From owner-cvs-src-old@FreeBSD.ORG Fri Jun 24 13:42:13 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49F57106566B for ; Fri, 24 Jun 2011 13:42:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 373BB8FC08 for ; Fri, 24 Jun 2011 13:42:13 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p5ODgDPR009055 for ; Fri, 24 Jun 2011 13:42:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p5ODgDDd009054 for cvs-src-old@freebsd.org; Fri, 24 Jun 2011 13:42:13 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201106241342.p5ODgDDd009054@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Fri, 24 Jun 2011 13:41:46 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/arm/arm nexus.c src/sys/ia64/ia64 nexus.c src/sys/kern subr_rman.c src/sys/mips/mips mainbus.c nexus.c src/sys/mips/rmi pcibus.c xlr_pci.c src/sys/x86/x86 nexus.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: Fri, 24 Jun 2011 13:42:13 -0000 jhb 2011-06-24 13:41:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/arm/arm nexus.c sys/ia64/ia64 nexus.c sys/kern subr_rman.c sys/mips/mips mainbus.c nexus.c sys/mips/rmi pcibus.c xlr_pci.c sys/x86/x86 nexus.c Log: SVN rev 223500 on 2011-06-24 13:41:46Z by jhb MFC 221218: Change rman_manage_region() to actually honor the rm_start and rm_end constraints on the rman and reject attempts to manage a region that is out of range. - Fix various places that set rm_end incorrectly (to ~0 or ~0u instead of ~0ul). - To preserve existing behavior, change rman_init() to set rm_start and rm_end to allow managing the full range (0 to ~0ul) if they are not set by the caller when rman_init() is called. Revision Changes Path 1.14.2.3 +2 -2 src/sys/arm/arm/nexus.c 1.21.2.5 +1 -1 src/sys/ia64/ia64/nexus.c 1.62.2.3 +4 -0 src/sys/kern/subr_rman.c 1.3.2.4 +1 -1 src/sys/mips/mips/mainbus.c 1.2.2.4 +1 -1 src/sys/mips/mips/nexus.c 1.3.2.3 +2 -2 src/sys/mips/rmi/pcibus.c 1.13.2.3 +2 -2 src/sys/mips/rmi/xlr_pci.c 1.5.2.5 +1 -1 src/sys/x86/x86/nexus.c