Module Name: src Committed By: skrll Date: Tue Nov 22 11:01:51 UTC 2016
Modified Files: src/sys/arch/mips/include: vmparam.h Log Message: 1TB is enough UVA for anyone... plus not all cpus can support more. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/arch/mips/include/vmparam.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/mips/include/vmparam.h diff -u src/sys/arch/mips/include/vmparam.h:1.56 src/sys/arch/mips/include/vmparam.h:1.57 --- src/sys/arch/mips/include/vmparam.h:1.56 Fri Nov 4 08:24:36 2016 +++ src/sys/arch/mips/include/vmparam.h Tue Nov 22 11:01:50 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.56 2016/11/04 08:24:36 skrll Exp $ */ +/* $NetBSD: vmparam.h,v 1.57 2016/11/22 11:01:50 skrll Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -158,7 +158,7 @@ */ #define VM_MIN_ADDRESS ((vaddr_t)0x00000000) #ifdef _LP64 -#define MIPS_VM_MAXUSER_ADDRESS ((vaddr_t) 1L << (4*PGSHIFT-8)) +#define MIPS_VM_MAXUSER_ADDRESS ((vaddr_t) 1L << 40) #ifdef ENABLE_MIPS_16KB_PAGE #define VM_MAXUSER_ADDRESS mips_vm_maxuser_address #else