diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 14:03:12 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 14:03:12 +0000 |
commit | b7e67e9e36833431e3ae993e0ce482115de1ff45 (patch) | |
tree | 0385e2a3d20c44b88932ba7baa1a4e4e818271c7 | |
parent | c38fcb5dc35986b8a93bf2107f800a890e2cea9b (diff) | |
download | plan9front-b7e67e9e36833431e3ae993e0ce482115de1ff45.tar.xz |
kernel: page counts a ulong, not usize
-rw-r--r-- | sys/src/9/bcm/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/bcm64/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/cycv/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/kw/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/omap/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/teg2/dat.h | 4 | ||||
-rw-r--r-- | sys/src/9/zynq/dat.h | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/sys/src/9/bcm/dat.h b/sys/src/9/bcm/dat.h index 75db62a52..dec4e5860 100644 --- a/sys/src/9/bcm/dat.h +++ b/sys/src/9/bcm/dat.h @@ -99,7 +99,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr limit; uintptr kbase; uintptr klimit; @@ -111,7 +111,7 @@ struct Conf 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 */ diff --git a/sys/src/9/bcm64/dat.h b/sys/src/9/bcm64/dat.h index fc27e351f..79dbd95b3 100644 --- a/sys/src/9/bcm64/dat.h +++ b/sys/src/9/bcm64/dat.h @@ -88,7 +88,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr limit; uintptr kbase; uintptr klimit; @@ -100,7 +100,7 @@ struct Conf 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 */ diff --git a/sys/src/9/cycv/dat.h b/sys/src/9/cycv/dat.h index 1e08c3dab..a685eca58 100644 --- a/sys/src/9/cycv/dat.h +++ b/sys/src/9/cycv/dat.h @@ -61,7 +61,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr kbase; uintptr klimit; }; @@ -72,7 +72,7 @@ struct Conf 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 */ diff --git a/sys/src/9/kw/dat.h b/sys/src/9/kw/dat.h index bf1dcdaff..3c42501f7 100644 --- a/sys/src/9/kw/dat.h +++ b/sys/src/9/kw/dat.h @@ -79,7 +79,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr limit; uintptr kbase; uintptr klimit; @@ -92,7 +92,7 @@ struct Conf 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 */ diff --git a/sys/src/9/omap/dat.h b/sys/src/9/omap/dat.h index 3c3792524..741712be6 100644 --- a/sys/src/9/omap/dat.h +++ b/sys/src/9/omap/dat.h @@ -103,7 +103,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr limit; uintptr kbase; uintptr klimit; @@ -115,7 +115,7 @@ struct Conf 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 */ diff --git a/sys/src/9/teg2/dat.h b/sys/src/9/teg2/dat.h index 0f0ead822..ac4d9b606 100644 --- a/sys/src/9/teg2/dat.h +++ b/sys/src/9/teg2/dat.h @@ -114,7 +114,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr limit; uintptr kbase; uintptr klimit; @@ -126,7 +126,7 @@ struct Conf 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 */ diff --git a/sys/src/9/zynq/dat.h b/sys/src/9/zynq/dat.h index c3a632177..116ca2982 100644 --- a/sys/src/9/zynq/dat.h +++ b/sys/src/9/zynq/dat.h @@ -60,7 +60,7 @@ enum struct Confmem { uintptr base; - usize npage; + ulong npage; uintptr kbase; uintptr klimit; }; @@ -71,7 +71,7 @@ struct Conf 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 */ |