diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-02-10 10:02:56 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-02-10 10:02:56 +0000 |
commit | b8e3ef2e3f3091afe32c7e1ce5769da09e7c6d1b (patch) | |
tree | 10dd628af6cf2eb8fd46c399a9c41b298ef1caf7 /sys/arch/hppa/include | |
parent | 642eb3d927c580f8506b55d81a12b4805c35eed0 (diff) |
increase min address to page size for all remaining min == 0 systems.
not necessary, but consistent with other platforms. ok deraadt
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h index 3977431aa85..66659a8b50a 100644 --- a/sys/arch/hppa/include/vmparam.h +++ b/sys/arch/hppa/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.45 2014/10/09 04:01:27 tedu Exp $ */ +/* $OpenBSD: vmparam.h,v 1.46 2015/02/10 10:02:55 tedu Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -74,7 +74,7 @@ #endif /* user/kernel map constants */ -#define VM_MIN_ADDRESS ((vaddr_t)0) +#define VM_MIN_ADDRESS ((vaddr_t)PAGE_SIZE) #define VM_MAXUSER_ADDRESS ((vaddr_t)0xc0000000) #define VM_MAX_ADDRESS VM_MAXUSER_ADDRESS #define VM_MIN_KERNEL_ADDRESS ((vaddr_t)0xc0001000) |