svn commit: r246445 - user/attilio/vmc-playground/sys/vm

Attilio Rao attilio at FreeBSD.org
Wed Feb 6 23:48:05 UTC 2013


Author: attilio
Date: Wed Feb  6 23:48:04 2013
New Revision: 246445
URL: http://svnweb.freebsd.org/changeset/base/246445

Log:
  Reformat comments to follow original version and re-add correct
  locking flags.

Modified:
  user/attilio/vmc-playground/sys/vm/vm_object.h

Modified: user/attilio/vmc-playground/sys/vm/vm_object.h
==============================================================================
--- user/attilio/vmc-playground/sys/vm/vm_object.h	Wed Feb  6 23:42:04 2013	(r246444)
+++ user/attilio/vmc-playground/sys/vm/vm_object.h	Wed Feb  6 23:48:04 2013	(r246445)
@@ -102,8 +102,8 @@ struct vm_object {
 	LIST_HEAD(, vm_object) shadow_head; /* objects that this is a shadow for */
 	LIST_ENTRY(vm_object) shadow_list; /* chain of shadow objects */
 	TAILQ_HEAD(, vm_page) memq;	/* list of resident pages */
-	struct vm_radix rtree;	/* root of the resident page radix index tree */
-	struct vm_radix cache;	/* root of the cache page radix index tree */
+	struct vm_radix rtree;		/* root of the resident page radix trie*/
+	struct vm_radix cache;		/* (o + f) root of the cache page radix trie */
 	vm_pindex_t size;		/* Object size */
 	int generation;			/* generation ID */
 	int ref_count;			/* How many refs?? */


More information about the svn-src-user mailing list