svn commit: r246465 - user/attilio/vmc-playground/sys/vm
Attilio Rao
attilio at FreeBSD.org
Thu Feb 7 11:36:35 UTC 2013
Author: attilio
Date: Thu Feb 7 11:36:34 2013
New Revision: 246465
URL: http://svnweb.freebsd.org/changeset/base/246465
Log:
Reduce differences with HEAD.
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 Thu Feb 7 11:35:30 2013 (r246464)
+++ user/attilio/vmc-playground/sys/vm/vm_object.h Thu Feb 7 11:36:34 2013 (r246465)
@@ -103,7 +103,6 @@ struct vm_object {
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 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?? */
@@ -118,6 +117,7 @@ struct vm_object {
vm_ooffset_t backing_object_offset;/* Offset in backing object */
TAILQ_ENTRY(vm_object) pager_object_list; /* list of all objects of this pager type */
LIST_HEAD(, vm_reserv) rvq; /* list of reservations */
+ struct vm_radix cache; /* (o + f) root of the cache page radix trie */
void *handle;
union {
/*
More information about the svn-src-user
mailing list