From owner-cvs-src@FreeBSD.ORG Tue Sep 23 16:04:29 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4E681065670; Tue, 23 Sep 2008 16:04:29 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A36C68FC0A; Tue, 23 Sep 2008 16:04:29 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m8NG4TSq081834; Tue, 23 Sep 2008 16:04:29 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m8NG4TjM081829; Tue, 23 Sep 2008 16:04:29 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200809231604.m8NG4TjM081829@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Tue, 23 Sep 2008 16:04:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Sep 2008 16:04:29 -0000 jhb 2008-09-23 16:04:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_mmap.c Log: SVN rev 183304 on 2008-09-23 16:04:17Z by jhb MFC: 179296 To date, our implementation of munmap(2) has required that the entirety of the specified range be mapped. Specifically, it has returned EINVAL if the entire range is not mapped. There is not, however, any basis for this in either SuSv2 or our own man page. Moreover, neither Linux nor Solaris impose this requirement. This revision removes this requirement. Approved by: re (kib), alc Revision Changes Path 1.200.2.6 +0 -7 src/sys/vm/vm_mmap.c