Reformat comments to follow original version and re-add correct

locking flags.
This commit is contained in:
attilio 2013-02-06 23:48:04 +00:00
parent a9b1d0bc50
commit 950536d7a4

View File

@ -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?? */