diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2023-04-13 15:05:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2023-04-13 15:05:20 +0000 |
commit | 3fe1e7baa45378027f2b4055308154ce1340ba40 (patch) | |
tree | 8b105fe5c4327680864c5ee8adba68ed3cbb3878 /sys/arch/alpha/include | |
parent | 8ef2cf8b4c44ba26eb8d354b46134a0e81bf0e4a (diff) |
Move USRSTACK to the end of userland address space.
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r-- | sys/arch/alpha/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/vmparam.h b/sys/arch/alpha/include/vmparam.h index b5d4363b09f..a333ea5ab04 100644 --- a/sys/arch/alpha/include/vmparam.h +++ b/sys/arch/alpha/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.28 2015/11/01 20:09:59 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.29 2023/04/13 15:05:19 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.18 2000/05/22 17:13:54 thorpej Exp $ */ /* @@ -46,7 +46,7 @@ * Machine dependent constants for Alpha. */ -#define USRSTACK ((vaddr_t)0x0000000200000000) /* 8G */ +#define USRSTACK ((vaddr_t)0x0000040000000000ULL) /* 4T */ /* * Virtual memory related constants, all in bytes |