diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-02-06 13:33:58 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-02-06 13:33:58 +0100 |
commit | 0e381493bfa4963c406cd6340ddcc0e43a4808e2 (patch) | |
tree | 57c72c9d73f9c05972e6518c51585354545c1646 | |
parent | e9af397dc7a178fba55477e58089723855b3a1af (diff) | |
download | plan9front-0e381493bfa4963c406cd6340ddcc0e43a4808e2.tar.xz |
pc: increase number of Conf.mem[] entries from 4 to 16
-rw-r--r-- | sys/src/9/pc/dat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/dat.h b/sys/src/9/pc/dat.h index ab9e4b1c7..1a63367ac 100644 --- a/sys/src/9/pc/dat.h +++ b/sys/src/9/pc/dat.h @@ -120,7 +120,7 @@ struct Conf ulong nmach; /* processors */ ulong nproc; /* processes */ ulong monitor; /* has monitor? */ - Confmem mem[4]; /* physical memory */ + Confmem mem[16]; /* physical memory */ ulong npage; /* total physical pages of memory */ ulong upages; /* user page pool */ ulong nimage; /* number of page cache image headers */ |