Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Feb 2009 20:23:16 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r189012 - head/sys/vm
Message-ID:  <200902242023.n1OKNGtk075482@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902242023.n1OKNGtk075482>