diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-30 18:41:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-11-30 18:41:14 +0000 |
commit | be5ae23d8ba7b70153d7b2647d0f18fe2ecc0840 (patch) | |
tree | 3498c83e690de424400cf0d54416e326cb118aa9 | |
parent | 55145f68bcab7fa0baba55fec5f1db41ad991a4c (diff) |
Crank __LDPGSZ from 4KB to 16KB, in preparation for a kernel page size
increase as well.
Binaries compiled before this change will not work once the kernel page size
is cranked (in a few weeks), so you might want to update your userland and
packages soon.
-rw-r--r-- | sys/arch/mips64/include/exec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/exec.h b/sys/arch/mips64/include/exec.h index bf91f90dcb3..c4f32574dec 100644 --- a/sys/arch/mips64/include/exec.h +++ b/sys/arch/mips64/include/exec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.h,v 1.2 2009/11/19 20:13:51 miod Exp $ */ +/* $OpenBSD: exec.h,v 1.3 2009/11/30 18:41:13 miod Exp $ */ /* * Copyright (c) 1996-2004 Per Fogelstrom, Opsycon AB @@ -29,7 +29,7 @@ #ifndef _MIPS64_EXEC_H_ #define _MIPS64_EXEC_H_ -#define __LDPGSZ 4096 +#define __LDPGSZ 16384 /* * Define what exec "formats" we should handle. |