summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/os/sysent.c
diff options
context:
space:
mode:
authorkchow <none@none>2007-10-28 10:20:15 -0700
committerkchow <none@none>2007-10-28 10:20:15 -0700
commit02bc52be7430b2f7fafe1a2c981bff49ef11d6fa (patch)
tree14721ff92a74ba4be3174a552670ce7850c47633 /usr/src/uts/common/os/sysent.c
parentf0ed2251df2f0c744e0d198d9b79ae5ed937de7b (diff)
downloadillumos-gate-02bc52be7430b2f7fafe1a2c981bff49ef11d6fa.tar.gz
6453272 ctfmerge uses the largest pagesize from getpagesizes() which can be bad on systems with giant pages
6543997 divide by 0 panic in page_geti_contig_pages during 1g page testing 6587615 1g pagesize support on AMD family 0x10 processors 6588824 throttling large page coalescing needs to be revisited for gigantic pages 6613824 legacy applications (java) should be prevented from inadvertantly using 1g pagesize --HG-- rename : usr/src/lib/libc/common/sys/getpagesizes.s => deleted_files/usr/src/lib/libc/common/sys/getpagesizes.s
Diffstat (limited to 'usr/src/uts/common/os/sysent.c')
-rw-r--r--usr/src/uts/common/os/sysent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/os/sysent.c b/usr/src/uts/common/os/sysent.c
index 38c3270f9b..b6d097b585 100644
--- a/usr/src/uts/common/os/sysent.c
+++ b/usr/src/uts/common/os/sysent.c
@@ -520,7 +520,7 @@ struct sysent sysent[NSYSCALL] =
/* 70 */ SYSENT_CI("tasksys", tasksys, 5),
/* 71 */ SYSENT_LOADABLE(), /* acctctl */
/* 72 */ SYSENT_LOADABLE(), /* exacct */
- /* 73 */ SYSENT_CI("getpagesizes", getpagesizes, 2),
+ /* 73 */ SYSENT_CI("getpagesizes", getpagesizes, 3),
/* 74 */ SYSENT_CI("rctlsys", rctlsys, 6),
/* 75 */ SYSENT_2CI("sidsys", sidsys, 4),
/* 76 */ IF_LP64(
@@ -921,7 +921,7 @@ struct sysent sysent32[NSYSCALL] =
/* 70 */ SYSENT_CI("tasksys", tasksys, 5),
/* 71 */ SYSENT_LOADABLE32(), /* acctctl */
/* 72 */ SYSENT_LOADABLE32(), /* exacct */
- /* 73 */ SYSENT_CI("getpagesizes", getpagesizes32, 2),
+ /* 73 */ SYSENT_CI("getpagesizes", getpagesizes32, 3),
/* 74 */ SYSENT_CI("rctlsys", rctlsys, 6),
/* 75 */ SYSENT_2CI("sidsys", sidsys, 4),
/* 76 */ SYSENT_CI("fsat", fsat32, 6),