summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2011-04-02 17:36:46 +0000
committerBob Beck <beck@cvs.openbsd.org>2011-04-02 17:36:46 +0000
commit5cf8c9b4c3859d83778f524736927951ce28f5f6 (patch)
tree109e2af2aeb68561b742b18a39cc0660b9f8724d
parent478842a4e799eaa89a17c3fec821367fac08d356 (diff)
Enable bigmem by default on amd64.
ok deraadt@
-rw-r--r--sys/arch/amd64/amd64/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c
index 2a961d94d3e..9ccaa39684d 100644
--- a/sys/arch/amd64/amd64/machdep.c
+++ b/sys/arch/amd64/amd64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.132 2011/03/20 21:44:08 guenther Exp $ */
+/* $OpenBSD: machdep.c,v 1.133 2011/04/02 17:36:45 beck Exp $ */
/* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */
/*-
@@ -1179,7 +1179,7 @@ typedef void (vector)(void);
extern vector IDTVEC(osyscall);
extern vector *IDTVEC(exceptions)[];
-int bigmem = 0;
+int bigmem = 1;
void
init_x86_64(paddr_t first_avail)