From owner-svn-src-head@FreeBSD.ORG Mon Jun 9 00:15:16 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8995BDF6; Mon, 9 Jun 2014 00:15:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 779DD264A; Mon, 9 Jun 2014 00:15:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s590FGfB046876; Mon, 9 Jun 2014 00:15:16 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s590FGZT046875; Mon, 9 Jun 2014 00:15:16 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <201406090015.s590FGZT046875@svn.freebsd.org> From: Alan Cox Date: Mon, 9 Jun 2014 00:15:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267245 - head/sys/kern X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 00:15:16 -0000 Author: alc Date: Mon Jun 9 00:15:16 2014 New Revision: 267245 URL: http://svnweb.freebsd.org/changeset/base/267245 Log: Refresh a comment. The VM_STACK option was eliminated in r43209. Sponsored by: EMC / Isilon Storage Division Modified: head/sys/kern/kern_exec.c Modified: head/sys/kern/kern_exec.c ============================================================================== --- head/sys/kern/kern_exec.c Sun Jun 8 23:22:25 2014 (r267244) +++ head/sys/kern/kern_exec.c Mon Jun 9 00:15:16 2014 (r267245) @@ -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;