diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-14 17:06:28 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-14 17:06:28 +0000 |
commit | 4483500f623b24abe1c1dac59b407eb5d83c9c9e (patch) | |
tree | eea13b011ae87ff6b672b853fd234e288914f627 /sys/src/9/pc | |
parent | 1a46b6c19e0e81cd3125a9e026e6aec76ccb110b (diff) |
pc, pc64: increase confmem slots to 64
Lenovo Thinkpad P17 Gen1 Professional Mobile Workstation
comes up with around 36 separate memory ranges.
ridiculous!
Diffstat (limited to 'sys/src/9/pc')
-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 8eb2f280f..63789fcee 100644 --- a/sys/src/9/pc/dat.h +++ b/sys/src/9/pc/dat.h @@ -120,7 +120,6 @@ struct Conf ulong nmach; /* processors */ ulong nproc; /* processes */ ulong monitor; /* has monitor? */ - 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 */ @@ -130,6 +129,7 @@ struct Conf ulong ialloc; /* max interrupt time allocation in bytes */ ulong pipeqsize; /* size in bytes of pipe queues */ int nuart; /* number of uart devices */ + Confmem mem[64]; /* physical memory */ }; struct Segdesc |