From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: [PATCH 4/4] Enabling Access bit when doing memory swapping Date: Mon, 21 May 2012 13:48:19 +0300 Message-ID: <4FBA1D73.2030600@redhat.com> References: <20120516011230.GE14256@hp-xd.sh.intel.com> <20120518022241.GA14096@amt.cnet> <403610A45A2B5242BD291EDAE8B37D300FDC6BEE@SHSMSX102.ccr.corp.intel.com> <4FB9FD68.7000908@redhat.com> <403610A45A2B5242BD291EDAE8B37D300FDC6E99@SHSMSX102.ccr.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , Xudong Hao , "kvm@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "Shan, Haitao" , "Zhang, Xiantao" To: "Hao, Xudong" Return-path: In-Reply-To: <403610A45A2B5242BD291EDAE8B37D300FDC6E99@SHSMSX102.ccr.corp.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On 05/21/2012 01:35 PM, Hao, Xudong wrote: > > > > That doesn't answer the question. An atomic operation is now non-atomic. > > > > You can calculate shadow_accessed_bit and keep on using clear_bit(), or > > switch to cmpxchg64(), but don't just drop the dirty bit here. > > > > I know your meaning. How about this changes: > > ... > young = 1; > + if (enable_ept_ad_bits) > + clear_bit(ffs(shadow_accessed_mask), (unsigned long *)spte); ffs() returns an off-by-one result, so this needs to be adjusted. IIRC bsfl is slow, but this shouldn't be a problem here. -- error compiling committee.c: too many arguments to function