From owner-svn-src-user@FreeBSD.ORG Thu Feb 7 11:36:34 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E49AB64B; Thu, 7 Feb 2013 11:36:34 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id C1E99837; Thu, 7 Feb 2013 11:36:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r17BaYfR027810; Thu, 7 Feb 2013 11:36:34 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r17BaYdg027809; Thu, 7 Feb 2013 11:36:34 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201302071136.r17BaYdg027809@svn.freebsd.org> From: Attilio Rao Date: Thu, 7 Feb 2013 11:36:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r246465 - user/attilio/vmc-playground/sys/vm X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 11:36:35 -0000 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 { /*