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

Attilio Rao attilio at FreeBSD.org
Thu Feb 7 15:13:36 UTC 2013


Author: attilio
Date: Thu Feb  7 15:13:35 2013
New Revision: 246478
URL: http://svnweb.freebsd.org/changeset/base/246478

Log:
  Remove implementation specific comments from a public interface.

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

Modified: user/attilio/vmc-playground/sys/vm/_vm_radix.h
==============================================================================
--- user/attilio/vmc-playground/sys/vm/_vm_radix.h	Thu Feb  7 15:13:35 2013	(r246477)
+++ user/attilio/vmc-playground/sys/vm/_vm_radix.h	Thu Feb  7 15:13:35 2013	(r246478)
@@ -30,11 +30,10 @@
 #define __VM_RADIX_H_
 
 /*
- * Radix tree root.  The height and pointer are set together to permit
- * coherent lookups while the root is modified.
+ * Radix tree root.
  */
 struct vm_radix {
-	uintptr_t	rt_root;		/* root + height */
+	uintptr_t	rt_root;
 };
 
 #endif /* !__VM_RADIX_H_ */


More information about the svn-src-user mailing list