diff options
author | dfr <dfr@FreeBSD.org> | 2001-11-09 13:09:57 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2001-11-09 13:09:57 +0000 |
commit | 79e8ac2aeaed72cc8b176a573b5bb8512619caac (patch) | |
tree | 1737cc319eef3370e906adf56975ff94cbc32779 /sys | |
parent | 6826b0f638d8c1aedbe6a7e8fc6214daa49cfeda (diff) | |
download | FreeBSD-src-79e8ac2aeaed72cc8b176a573b5bb8512619caac.zip FreeBSD-src-79e8ac2aeaed72cc8b176a573b5bb8512619caac.tar.gz |
Reserve more space for phys_avail. Really need to be more careful about
overflowing phys_avail.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ia64/ia64/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c index 6d29237..522d17e 100644 --- a/sys/ia64/ia64/machdep.c +++ b/sys/ia64/ia64/machdep.c @@ -143,7 +143,7 @@ int unusedmem; /* amount of memory for OS that we don't use */ int unknownmem; /* amount of memory with an unknown use */ int ncpus; /* number of cpus */ -vm_offset_t phys_avail[10]; +vm_offset_t phys_avail[20]; static int sysctl_hw_physmem(SYSCTL_HANDLER_ARGS) |