aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/imgact_aout.c
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2019-03-01 16:16:38 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2019-03-01 16:16:38 +0000
commit1699546def989665e0f3577dbe284dbaa0959df5 (patch)
tree6e932e9ff67fccbb42c2f194a570d4eae2541769 /sys/kern/imgact_aout.c
parent3aee58ca76e86edbda463868b4b97ab9630c2927 (diff)
downloadsrc-1699546def989665e0f3577dbe284dbaa0959df5.tar.gz
src-1699546def989665e0f3577dbe284dbaa0959df5.zip
Remove sv_pagesize, originally introduced with r100384.
In all of the architectures we have today, we always use PAGE_SIZE. While in theory one could define different things, none of the current architectures do, even the ones that have transitioned from 32-bit to 64-bit like i386 and arm. Some ancient mips binaries on other systems used 8k instead of 4k, but we don't support running those and likely never will due to their age and obscurity. Reviewed by: imp (who also contributed the commit message) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D19280
Notes
Notes: svn path=/head/; revision=344705
Diffstat (limited to 'sys/kern/imgact_aout.c')
-rw-r--r--sys/kern/imgact_aout.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index 35993f4d4ccd..c8989fd55c74 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -87,7 +87,6 @@ struct sysentvec aout_sysvec = {
.sv_coredump = NULL,
.sv_imgact_try = NULL,
.sv_minsigstksz = MINSIGSTKSZ,
- .sv_pagesize = PAGE_SIZE,
.sv_minuser = VM_MIN_ADDRESS,
.sv_maxuser = AOUT32_USRSTACK,
.sv_usrstack = AOUT32_USRSTACK,
@@ -129,7 +128,6 @@ struct sysentvec aout_sysvec = {
.sv_coredump = NULL,
.sv_imgact_try = NULL,
.sv_minsigstksz = MINSIGSTKSZ,
- .sv_pagesize = IA32_PAGE_SIZE,
.sv_minuser = AOUT32_MINUSER,
.sv_maxuser = AOUT32_USRSTACK,
.sv_usrstack = AOUT32_USRSTACK,