summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2009-09-18 17:04:57 +0000
committeralc <alc@FreeBSD.org>2009-09-18 17:04:57 +0000
commit309c5ab06fe539d4f571d4c3b2acb779c5138fbf (patch)
tree7d24849cdaea55926149a790b882fea6f17045ab
parent87c8593067033119e40d28b40a47c236b8a5f7ac (diff)
downloadFreeBSD-src-309c5ab06fe539d4f571d4c3b2acb779c5138fbf.zip
FreeBSD-src-309c5ab06fe539d4f571d4c3b2acb779c5138fbf.tar.gz
Add a new sysctl for reporting all of the supported page sizes.
Reviewed by: jhb MFC after: 3 weeks
-rw-r--r--sys/amd64/include/param.h2
-rw-r--r--sys/arm/include/param.h2
-rw-r--r--sys/i386/include/param.h2
-rw-r--r--sys/ia64/include/param.h2
-rw-r--r--sys/kern/kern_mib.c27
-rw-r--r--sys/mips/include/param.h2
-rw-r--r--sys/powerpc/include/param.h2
-rw-r--r--sys/sparc64/include/param.h2
-rw-r--r--sys/sun4v/include/param.h2
-rw-r--r--sys/sys/systm.h1
10 files changed, 44 insertions, 0 deletions
diff --git a/sys/amd64/include/param.h b/sys/amd64/include/param.h
index f9b6bd8..3ede601 100644
--- a/sys/amd64/include/param.h
+++ b/sys/amd64/include/param.h
@@ -108,6 +108,8 @@
#define NBPML4 (1ul<<PML4SHIFT)/* bytes/page map lev4 table */
#define PML4MASK (NBPML4-1)
+#define MAXPAGESIZES 3 /* maximum number of supported page sizes */
+
#define IOPAGES 2 /* pages of i/o permission bitmap */
#ifndef KSTACK_PAGES
diff --git a/sys/arm/include/param.h b/sys/arm/include/param.h
index 2161103..1694bc4 100644
--- a/sys/arm/include/param.h
+++ b/sys/arm/include/param.h
@@ -92,6 +92,8 @@
#define NBPDR (1 << PDR_SHIFT)
#define NPDEPG (1 << (32 - PDR_SHIFT))
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
#ifndef KSTACK_PAGES
#define KSTACK_PAGES 2
#endif /* !KSTACK_PAGES */
diff --git a/sys/i386/include/param.h b/sys/i386/include/param.h
index b6a527d..11ac12e 100644
--- a/sys/i386/include/param.h
+++ b/sys/i386/include/param.h
@@ -110,6 +110,8 @@
#define NBPDR (1<<PDRSHIFT) /* bytes/page dir */
#define PDRMASK (NBPDR-1)
+#define MAXPAGESIZES 2 /* maximum number of supported page sizes */
+
#define IOPAGES 2 /* pages of i/o permission bitmap */
#ifndef KSTACK_PAGES
diff --git a/sys/ia64/include/param.h b/sys/ia64/include/param.h
index 8518020..331af7a 100644
--- a/sys/ia64/include/param.h
+++ b/sys/ia64/include/param.h
@@ -89,6 +89,8 @@
#define PAGE_MASK (PAGE_SIZE-1)
#define NPTEPG (PAGE_SIZE/(sizeof (pt_entry_t)))
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
#ifndef KSTACK_PAGES
#define KSTACK_PAGES 4 /* pages of kernel stack */
#endif
diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c
index d42d31d..04e4dc0 100644
--- a/sys/kern/kern_mib.c
+++ b/sys/kern/kern_mib.c
@@ -204,6 +204,33 @@ SYSCTL_PROC(_hw, HW_USERMEM, usermem, CTLTYPE_ULONG | CTLFLAG_RD,
SYSCTL_ULONG(_hw, OID_AUTO, availpages, CTLFLAG_RD, &physmem, 0, "");
+u_long pagesizes[MAXPAGESIZES] = { PAGE_SIZE };
+
+static int
+sysctl_hw_pagesizes(SYSCTL_HANDLER_ARGS)
+{
+ int error;
+#ifdef SCTL_MASK32
+ int i;
+ uint32_t pagesizes32[MAXPAGESIZES];
+
+ if (req->flags & SCTL_MASK32) {
+ /*
+ * Recreate the "pagesizes" array with 32-bit elements. Truncate
+ * any page size greater than UINT32_MAX to zero.
+ */
+ for (i = 0; i < MAXPAGESIZES; i++)
+ pagesizes32[i] = (uint32_t)pagesizes[i];
+
+ error = SYSCTL_OUT(req, pagesizes32, sizeof(pagesizes32));
+ } else
+#endif
+ error = SYSCTL_OUT(req, pagesizes, sizeof(pagesizes));
+ return (error);
+}
+SYSCTL_PROC(_hw, OID_AUTO, pagesizes, CTLTYPE_ULONG | CTLFLAG_RD,
+ NULL, 0, sysctl_hw_pagesizes, "LU", "Supported page sizes");
+
static char machine_arch[] = MACHINE_ARCH;
SYSCTL_STRING(_hw, HW_MACHINE_ARCH, machine_arch, CTLFLAG_RD,
machine_arch, 0, "System architecture");
diff --git a/sys/mips/include/param.h b/sys/mips/include/param.h
index 10f348a..b818649 100644
--- a/sys/mips/include/param.h
+++ b/sys/mips/include/param.h
@@ -115,6 +115,8 @@
#define SEGOFSET (NBSEG-1) /* byte offset into segment */
#define SEGSHIFT 22 /* LOG2(NBSEG) */
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
/* XXXimp: This has moved to vmparam.h */
/* Also, this differs from the mips2 definition, but likely is better */
/* since this means the kernel won't chew up TLBs when it is executing */
diff --git a/sys/powerpc/include/param.h b/sys/powerpc/include/param.h
index 160cd78..6c3edf9 100644
--- a/sys/powerpc/include/param.h
+++ b/sys/powerpc/include/param.h
@@ -86,6 +86,8 @@
#define PAGE_MASK (PAGE_SIZE - 1)
#define NPTEPG (PAGE_SIZE/(sizeof (pt_entry_t)))
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
#ifndef KSTACK_PAGES
#define KSTACK_PAGES 4 /* includes pcb */
#endif
diff --git a/sys/sparc64/include/param.h b/sys/sparc64/include/param.h
index 90864b0..af026b2 100644
--- a/sys/sparc64/include/param.h
+++ b/sys/sparc64/include/param.h
@@ -109,6 +109,8 @@
#define PAGE_SIZE_MAX PAGE_SIZE_4M
#define PAGE_MASK_MAX PAGE_MASK_4M
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
#ifndef KSTACK_PAGES
#define KSTACK_PAGES 4 /* pages of kernel stack (with pcb) */
#endif
diff --git a/sys/sun4v/include/param.h b/sys/sun4v/include/param.h
index 069ab54..2ca699e 100644
--- a/sys/sun4v/include/param.h
+++ b/sys/sun4v/include/param.h
@@ -104,6 +104,8 @@
#define PAGE_SIZE_MAX PAGE_SIZE_4M
#define PAGE_MASK_MAX PAGE_MASK_4M
+#define MAXPAGESIZES 1 /* maximum number of supported page sizes */
+
#ifndef KSTACK_PAGES
#define KSTACK_PAGES 4 /* pages of kernel stack (with pcb) */
#endif
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index 96222da..397976f 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -54,6 +54,7 @@ extern int kstack_pages; /* number of kernel stack pages */
extern int nswap; /* size of swap space */
+extern u_long pagesizes[]; /* supported page sizes */
extern long physmem; /* physical memory */
extern long realmem; /* 'real' memory */
OpenPOWER on IntegriCloud