Received: by mail.netbsd.org (Postfix, from userid 605) id 8413514A24E; Sat, 26 Jan 2013 13:50:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6A71714A24C for ; Sat, 26 Jan 2013 13:50:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bmeBV1kl9r1j for ; Sat, 26 Jan 2013 13:50:34 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id A508E14A247 for ; Sat, 26 Jan 2013 13:50:34 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 98BBE175DD; Sat, 26 Jan 2013 13:50:34 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sat, 26 Jan 2013 13:50:34 +0000 From: "Lars Heidieker" Subject: CVS commit: src/sys To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20130126135034.98BBE175DD@cvs.netbsd.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Lars Heidieker" Mail-Followup-To: source-changes-d@NetBSD.org Module Name: src Committed By: para Date: Sat Jan 26 13:50:34 UTC 2013 Modified Files: src/sys/kern: subr_vmem.c src/sys/rump/librump/rumpkern: vm.c src/sys/sys: vmem.h src/sys/uvm: uvm_km.c Added Files: src/sys/sys: vmem_impl.h Log Message: make vmem(9) ready to be used early during bootstrap to replace extent(9). pass memory for vmem structs into the initialization functions and do away with the static pools for this. factor out the vmem internal structures into a private header. remove special bootstrapping of the kmem_va_arena as all necessary memory comes from pool_allocator_meta wich is fully operational at this point. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/sys/kern/subr_vmem.c cvs rdiff -u -r1.132 -r1.133 src/sys/rump/librump/rumpkern/vm.c cvs rdiff -u -r1.17 -r1.18 src/sys/sys/vmem.h cvs rdiff -u -r0 -r1.1 src/sys/sys/vmem_impl.h cvs rdiff -u -r1.135 -r1.136 src/sys/uvm/uvm_km.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.