From owner-svn-src-head@FreeBSD.ORG Tue Feb 24 20:23:16 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 976051065686; Tue, 24 Feb 2009 20:23:16 +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 85D7A8FC1E; Tue, 24 Feb 2009 20:23:16 +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 n1OKNG1Y075483; Tue, 24 Feb 2009 20:23:16 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1OKNGtk075482; Tue, 24 Feb 2009 20:23:16 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200902242023.n1OKNGtk075482@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 24 Feb 2009 20:23:16 +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: r189012 - head/sys/vm X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 24 Feb 2009 20:23:17 -0000 Author: kib Date: Tue Feb 24 20:23:16 2009 New Revision: 189012 URL: http://svn.freebsd.org/changeset/base/189012 Log: Update the comment after the r188334. Reviewed by: alc Modified: head/sys/vm/vm_map.c Modified: head/sys/vm/vm_map.c ============================================================================== --- head/sys/vm/vm_map.c Tue Feb 24 20:16:52 2009 (r189011) +++ head/sys/vm/vm_map.c Tue Feb 24 20:23:16 2009 (r189012) @@ -2527,10 +2527,10 @@ vm_map_delete(vm_map_t map, vm_offset_t pmap_remove(map->pmap, entry->start, entry->end); /* - * Delete the entry (which may delete the object) only after - * removing all pmap entries pointing to its pages. - * (Otherwise, its page frames may be reallocated, and any - * modify bits will be set in the wrong object!) + * Delete the entry only after removing all pmap + * entries pointing to its pages. (Otherwise, its + * page frames may be reallocated, and any modify bits + * will be set in the wrong object!) */ vm_map_entry_delete(map, entry); entry->next = *freelist;