diff options
author | 2009-11-30 18:41:13 +0000 | |
---|---|---|
committer | 2009-11-30 18:41:13 +0000 | |
commit | 17c76c9bdf10f4c52df0faec74ae685e709cf00f (patch) | |
tree | aec2dc120d542e1b54743d3103edefef4f779117 | |
parent | Handle partial xterm function key sequences. (diff) | |
download | wireguard-openbsd-17c76c9bdf10f4c52df0faec74ae685e709cf00f.tar.xz wireguard-openbsd-17c76c9bdf10f4c52df0faec74ae685e709cf00f.zip |
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. |