From owner-svn-src-user@FreeBSD.ORG Wed Jul 3 16:57:45 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 461BE5CB; Wed, 3 Jul 2013 16:57:45 +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 3869A191D; Wed, 3 Jul 2013 16:57:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r63GvjRj039658; Wed, 3 Jul 2013 16:57:45 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r63Gvj4l039656; Wed, 3 Jul 2013 16:57:45 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201307031657.r63Gvj4l039656@svn.freebsd.org> From: Attilio Rao Date: Wed, 3 Jul 2013 16:57:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r252574 - user/attilio/vmobj-readlock/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: Wed, 03 Jul 2013 16:57:45 -0000 Author: attilio Date: Wed Jul 3 16:57:44 2013 New Revision: 252574 URL: http://svnweb.freebsd.org/changeset/base/252574 Log: Actually remove fake busy member and replace with the new memattr one. Sponsored by: EMC / Isilon storage division Modified: user/attilio/vmobj-readlock/sys/vm/vm_page.h Modified: user/attilio/vmobj-readlock/sys/vm/vm_page.h ============================================================================== --- user/attilio/vmobj-readlock/sys/vm/vm_page.h Wed Jul 3 16:56:23 2013 (r252573) +++ user/attilio/vmobj-readlock/sys/vm/vm_page.h Wed Jul 3 16:57:44 2013 (r252574) @@ -144,7 +144,6 @@ struct vm_page { vm_pindex_t pindex; /* offset into object (O,P) */ vm_paddr_t phys_addr; /* physical address of page */ struct md_page md; /* machine dependant stuff */ - vm_memattr_t mdmemattr; /* arch specific memory attribute */ uint8_t queue; /* page queue index (P,Q) */ int8_t segind; short hold_count; /* page hold count (P) */ @@ -156,7 +155,7 @@ struct vm_page { uint8_t oflags; /* page VPO_* flags (O) */ uint16_t flags; /* page PG_* flags (P) */ u_char act_count; /* page usage count (P) */ - u_char basy; /* page busy count (O) */ + vm_memattr_t mdmemattr; /* arch specific memory attribute */ /* NOTE that these must support one bit per DEV_BSIZE in a page!!! */ /* so, on normal X86 kernels, they must be at least 8 bits wide */ vm_page_bits_t valid; /* map of valid DEV_BSIZE chunks (O) */