From owner-cvs-src@FreeBSD.ORG Fri Jun 20 05:22:33 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 035DB1065674; Fri, 20 Jun 2008 05:22:33 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E04B28FC1A; Fri, 20 Jun 2008 05:22:32 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m5K5MWEE043207; Fri, 20 Jun 2008 05:22:32 GMT (envelope-from alc@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m5K5MWYQ043206; Fri, 20 Jun 2008 05:22:32 GMT (envelope-from alc@repoman.freebsd.org) Message-Id: <200806200522.m5K5MWYQ043206@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to alc@repoman.freebsd.org using -f From: Alan Cox Date: Fri, 20 Jun 2008 05:22:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 mem.c pmap.c trap.c src/sys/amd64/include pmc_mdep.h stack.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2008 05:22:33 -0000 alc 2008-06-20 05:22:09 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mem.c pmap.c trap.c sys/amd64/include pmc_mdep.h stack.h Log: SVN rev 179886 on 2008-06-20 05:22:09Z by alc Make preparations for increasing the size of the kernel virtual address space on the amd64 architecture. The amd64 architecture requires kernel code and global variables to reside in the highest 2GB of the 64-bit virtual address space. Thus, KERNBASE cannot change. However, KERNBASE is sometimes used as the start of the kernel virtual address space. Henceforth, VM_MIN_KERNEL_ADDRESS should be used instead. Since KERNBASE and VM_MIN_KERNEL_ADDRESS are still the same address, there should be no visible effect from this change (yet). Revision Changes Path 1.123 +1 -1 src/sys/amd64/amd64/mem.c 1.622 +2 -2 src/sys/amd64/amd64/pmap.c 1.327 +1 -1 src/sys/amd64/amd64/trap.c 1.5 +2 -2 src/sys/amd64/include/pmc_mdep.h 1.2 +1 -1 src/sys/amd64/include/stack.h