Date: Thu, 7 Feb 2013 11:36:34 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r246465 - user/attilio/vmc-playground/sys/vm Message-ID: <201302071136.r17BaYdg027809@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 { /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302071136.r17BaYdg027809>