From owner-svn-src-all@FreeBSD.ORG Sun Feb 8 20:52:10 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A866106566C; Sun, 8 Feb 2009 20:52:10 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 18C808FC16; Sun, 8 Feb 2009 20:52:10 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n18Kq9bm034107; Sun, 8 Feb 2009 20:52:09 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n18Kq91t034106; Sun, 8 Feb 2009 20:52:09 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200902082052.n18Kq91t034106@svn.freebsd.org> From: Konstantin Belousov Date: Sun, 8 Feb 2009 20:52:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188335 - head/sys/vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2009 20:52:10 -0000 Author: kib Date: Sun Feb 8 20:52:09 2009 New Revision: 188335 URL: http://svn.freebsd.org/changeset/base/188335 Log: Improve comments, correct English. Submitted by: alc Modified: head/sys/vm/vm_map.c Modified: head/sys/vm/vm_map.c ============================================================================== --- head/sys/vm/vm_map.c Sun Feb 8 20:39:17 2009 (r188334) +++ head/sys/vm/vm_map.c Sun Feb 8 20:52:09 2009 (r188335) @@ -1355,13 +1355,13 @@ vm_map_simplify_entry(vm_map_t map, vm_m vm_map_entry_resize_free(map, entry->prev); /* - * If the backing object is the vnode object, - * vm_object_deallocate() results in a call to - * vrele(). Because the reference to the - * object is not last, vrele() does not lock - * the vnode, and map lock can be kept without - * causing vnode lock to be taken after the - * map lock. + * If the backing object is a vnode object, + * vm_object_deallocate() calls vrele(). + * However, vrele() does not lock the vnode + * because the vnode has additional + * references. Thus, the map lock can be kept + * without causing a lock-order reversal with + * the vnode lock. */ if (prev->object.vm_object) vm_object_deallocate(prev->object.vm_object); @@ -2778,7 +2778,7 @@ vmspace_fork(struct vmspace *vm1) /* * As in vm_map_simplify_entry(), the - * vnode lock may not be acquired in + * vnode lock will not be acquired in * this call to vm_object_deallocate(). */ vm_object_deallocate(object);