Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/include/arm32 Don't need to reserve a page of s...
details: https://anonhg.NetBSD.org/src/rev/7845ec162234
branches: trunk
changeset: 546622:7845ec162234
user: thorpej <thorpej%NetBSD.org@localhost>
date: Fri May 02 23:26:47 2003 +0000
description:
Don't need to reserve a page of space before KERNEL_BASE in the
ARM32_NEW_VM_LAYOUT case.
diffstat:
sys/arch/arm/include/arm32/vmparam.h | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r 5ab38bbfbca8 -r 7845ec162234 sys/arch/arm/include/arm32/vmparam.h
--- a/sys/arch/arm/include/arm32/vmparam.h Fri May 02 23:22:33 2003 +0000
+++ b/sys/arch/arm/include/arm32/vmparam.h Fri May 02 23:26:47 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.14 2003/05/02 23:22:34 thorpej Exp $ */
+/* $NetBSD: vmparam.h,v 1.15 2003/05/02 23:26:47 thorpej Exp $ */
/*
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -115,12 +115,11 @@
#endif /* ARM32_PMAP_NEW */
#else /* ARM32_NEW_VM_LAYOUT */
-
/*
* New VM layout
*/
#define VM_MIN_ADDRESS ((vaddr_t) 0x00001000)
-#define VM_MAXUSER_ADDRESS ((vaddr_t) (KERNEL_BASE - PAGE_SIZE))
+#define VM_MAXUSER_ADDRESS ((vaddr_t) KERNEL_BASE)
#define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS
#define VM_MIN_KERNEL_ADDRESS ((vaddr_t) KERNEL_BASE)
Home |
Main Index |
Thread Index |
Old Index