diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-02-28 19:13:30 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-02-28 19:13:30 +0000 |
commit | a7c5aeb47fcaf01087c88cf908a3acf6b028677a (patch) | |
tree | 8a704b18bcacbe1119befbbabb29ae26f7cddb22 /sys | |
parent | 61700cc20eacd0512092cc90f72f065f0a7f2de5 (diff) |
double the fixed storage size for io*_ex; deraadt@ ok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index f5432280775..62bf15652ba 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.149 2001/02/25 23:24:18 aaron Exp $ */ +/* $OpenBSD: machdep.c,v 1.150 2001/02/28 19:13:29 mickey Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -274,8 +274,8 @@ int kbd_reset; * The extent maps are not static! Machine-dependent ISA and EISA * routines need access to them for bus address space allocation. */ -static long ioport_ex_storage[EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long)]; -static long iomem_ex_storage[EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long)]; +static long ioport_ex_storage[EXTENT_FIXED_STORAGE_SIZE(16) / sizeof(long)]; +static long iomem_ex_storage[EXTENT_FIXED_STORAGE_SIZE(16) / sizeof(long)]; struct extent *ioport_ex; struct extent *iomem_ex; static int ioport_malloc_safe; |