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

Attilio Rao attilio at FreeBSD.org
Wed Feb 6 19:02:47 UTC 2013


Author: attilio
Date: Wed Feb  6 19:02:46 2013
New Revision: 246434
URL: http://svnweb.freebsd.org/changeset/base/246434

Log:
  Tweak comment to remove splay tree references.

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 18:59:34 2013	(r246433)
+++ user/attilio/vmc-playground/sys/vm/vm_object.h	Wed Feb  6 19:02:46 2013	(r246434)
@@ -80,10 +80,10 @@
  *
  *	The root of cached pages pool is protected by both the per-object mutex
  *	and the free pages queue mutex.
- *	On insert in the cache splay tree, the per-object mutex is expected
+ *	On insert in the cache radix trie, the per-object mutex is expected
  *	to be already held and the free pages queue mutex will be
  *	acquired during the operation too.
- *	On remove and lookup from the cache splay tree, only the free
+ *	On remove and lookup from the cache radix trie, only the free
  *	pages queue mutex is expected to be locked.
  *	These rules allow for reliably checking for the presence of cached
  *	pages with only the per-object lock held, thereby reducing contention


More information about the svn-src-user mailing list