Date: Wed, 3 Jul 2013 16:57:45 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r252574 - user/attilio/vmobj-readlock/sys/vm Message-ID: <201307031657.r63Gvj4l039656@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307031657.r63Gvj4l039656>