diff options
| -rw-r--r-- | sys/src/9/port/portdat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/portdat.h b/sys/src/9/port/portdat.h index 71fd1d2b4..af33ea8a1 100644 --- a/sys/src/9/port/portdat.h +++ b/sys/src/9/port/portdat.h @@ -491,13 +491,13 @@ struct Pallocmem struct Palloc { Lock; - Pallocmem mem[4]; Page *head; /* freelist head */ ulong freecount; /* how many pages on free list now */ Page *pages; /* array of all pages */ ulong user; /* how many user pages */ Rendez r; /* Sleep for free mem */ QLock pwait; /* Queue of procs waiting for memory */ + Pallocmem mem[16]; /* physical user page banks */ }; struct Waitq |
