diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-01-10 21:23:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-01-10 21:23:53 +0000 |
commit | a86000dd992ebbb6a575199d04a2f40f5a63a38a (patch) | |
tree | e29aeb4f7f85c8fb4dadae7177f0d6e61907587c /sys/arch | |
parent | 249471b30c32cbad6101772545f4a59f2396bdb7 (diff) |
It turns out the extiospace static storage shrinkage was too much for large
frame buffers; go back to a larger, yet reasonable, size.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/hp300/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index 348dd17c261..034067fbde8 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.95 2005/01/08 22:13:54 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.96 2005/01/10 21:23:52 miod Exp $ */ /* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */ /* @@ -147,9 +147,9 @@ extern struct emul emul_sunos; * Some storage space must be allocated statically because of the * early console initialization. * We know that console initialization will not try to map more than - * DIO_DEVSIZE bytes. Play safe and allow for twice this size. + * DIOII_DEVSIZE bytes. Play safe and allow for twice this size. */ -char extiospace[EXTENT_FIXED_STORAGE_SIZE(2 * DIO_DEVSIZE / PAGE_SIZE)]; +char extiospace[EXTENT_FIXED_STORAGE_SIZE(2 * DIOII_DEVSIZE / PAGE_SIZE)]; extern int eiomapsize; /* prototypes for local functions */ |