aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2014-06-09 00:15:16 +0000
committerAlan Cox <alc@FreeBSD.org>2014-06-09 00:15:16 +0000
commit78960940fe40c651e18774623ede29944b305c65 (patch)
tree8819ad4f35d71c7b22ec38cff2b49e6d489135aa /sys/kern/kern_exec.c
parentd64e9217c40746d8e4f8172457226b9abfe11be5 (diff)
downloadsrc-78960940fe40c651e18774623ede29944b305c65.tar.gz
src-78960940fe40c651e18774623ede29944b305c65.zip
Refresh a comment. The VM_STACK option was eliminated in r43209.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=267245
Diffstat (limited to 'sys/kern/kern_exec.c')
-rw-r--r--sys/kern/kern_exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
index 04c1c9a7c961..667715e943e2 100644
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -1101,9 +1101,9 @@ exec_new_vmspace(imgp, sv)
return (error);
#endif
- /* vm_ssize and vm_maxsaddr are somewhat antiquated concepts in the
- * VM_STACK case, but they are still used to monitor the size of the
- * process stack so we can check the stack rlimit.
+ /*
+ * vm_ssize and vm_maxsaddr are somewhat antiquated concepts, but they
+ * are still used to enforce the stack rlimit on the process stack.
*/
vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT;
vmspace->vm_maxsaddr = (char *)sv->sv_usrstack - ssiz;