diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-22 22:56:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-22 22:56:32 +0000 |
commit | 887951627f868c6858850f54f98247a47605b011 (patch) | |
tree | b11a96a47d1c93d49d4dd27abddb10747ceae021 /sys/arch | |
parent | e4560efe8b8567e3821c4da1b1622045cbf56d48 (diff) |
More reasonable size for fixed extent storage.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/hp300/machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme68k/mvme68k/autoconf.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index b39c7a660fc..742c6bcda6a 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.104 2005/11/06 17:59:52 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.105 2005/12/22 22:56:28 miod Exp $ */ /* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */ /* @@ -142,7 +142,7 @@ extern struct emul emul_sunos; * Some storage space must be allocated statically because of the * early console initialization. */ -char extiospace[EXTENT_FIXED_STORAGE_SIZE(16)]; +char extiospace[EXTENT_FIXED_STORAGE_SIZE(8)]; extern int eiomapsize; /* prototypes for local functions */ diff --git a/sys/arch/mvme68k/mvme68k/autoconf.c b/sys/arch/mvme68k/mvme68k/autoconf.c index d51670377c1..75d323be0c8 100644 --- a/sys/arch/mvme68k/mvme68k/autoconf.c +++ b/sys/arch/mvme68k/mvme68k/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.30 2005/11/27 14:17:41 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.31 2005/12/22 22:56:31 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -106,7 +106,7 @@ struct device *bootdv; * XXX some storage space must be allocated statically because of * early console init */ -char extiospace[EXTENT_FIXED_STORAGE_SIZE(EIOMAPSIZE / 16)]; +char extiospace[EXTENT_FIXED_STORAGE_SIZE(8)]; struct extent *extio; extern vaddr_t extiobase; |