From 78960940fe40c651e18774623ede29944b305c65 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 9 Jun 2014 00:15:16 +0000 Subject: [PATCH] Refresh a comment. The VM_STACK option was eliminated in r43209. Sponsored by: EMC / Isilon Storage Division --- sys/kern/kern_exec.c | 6 +++--- 1 file 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;