ref: ae67a130d6b012c564c86439e972acc8f9ccd990
parent: b14f394d5d76458641346a3b7f6b56cf0d6cf42d
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Jul 25 10:03:12 EDT 2021
kernel: page counts a ulong, not usize
--- a/sys/src/9/bcm/dat.h
+++ b/sys/src/9/bcm/dat.h
@@ -99,7 +99,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr limit;
uintptr kbase;
uintptr klimit;
@@ -111,7 +111,7 @@
ulong nproc; /* processes */
Confmem mem[1]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/bcm64/dat.h
+++ b/sys/src/9/bcm64/dat.h
@@ -88,7 +88,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr limit;
uintptr kbase;
uintptr klimit;
@@ -100,7 +100,7 @@
ulong nproc; /* processes */
Confmem mem[4]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/cycv/dat.h
+++ b/sys/src/9/cycv/dat.h
@@ -61,7 +61,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr kbase;
uintptr klimit;
};
@@ -72,7 +72,7 @@
ulong nproc; /* processes */
Confmem mem[2]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/kw/dat.h
+++ b/sys/src/9/kw/dat.h
@@ -79,7 +79,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr limit;
uintptr kbase;
uintptr klimit;
@@ -92,7 +92,7 @@
ulong monitor; /* has monitor? */
Confmem mem[1]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/omap/dat.h
+++ b/sys/src/9/omap/dat.h
@@ -103,7 +103,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr limit;
uintptr kbase;
uintptr klimit;
@@ -115,7 +115,7 @@
ulong nproc; /* processes */
Confmem mem[1]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/teg2/dat.h
+++ b/sys/src/9/teg2/dat.h
@@ -114,7 +114,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr limit;
uintptr kbase;
uintptr klimit;
@@ -126,7 +126,7 @@
ulong nproc; /* processes */
Confmem mem[1]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--- a/sys/src/9/zynq/dat.h
+++ b/sys/src/9/zynq/dat.h
@@ -60,7 +60,7 @@
struct Confmem
{
uintptr base;
- usize npage;
+ ulong npage;
uintptr kbase;
uintptr klimit;
};
@@ -71,7 +71,7 @@
ulong nproc; /* processes */
Confmem mem[2]; /* physical memory */
ulong npage; /* total physical pages of memory */
- usize upages; /* user page pool */
+ ulong upages; /* user page pool */
ulong copymode; /* 0 is copy on write, 1 is copy on reference */
ulong ialloc; /* max interrupt time allocation in bytes */
ulong pipeqsize; /* size in bytes of pipe queues */
--
⑨