Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752914Ab2EULbW (ORCPT ); Mon, 21 May 2012 07:31:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:15037 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752401Ab2EULbU (ORCPT ); Mon, 21 May 2012 07:31:20 -0400 Message-ID: <4FBA2782.6090801@redhat.com> Date: Mon, 21 May 2012 14:31:14 +0300 From: Avi Kivity User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: "Hao, Xudong" CC: Marcelo Tosatti , Xudong Hao , "kvm@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "Shan, Haitao" , "Zhang, Xiantao" Subject: Re: [PATCH 4/4] Enabling Access bit when doing memory swapping 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> <4FBA1D73.2030600@redhat.com> <403610A45A2B5242BD291EDAE8B37D300FDC6F2E@SHSMSX102.ccr.corp.intel.com> In-Reply-To: <403610A45A2B5242BD291EDAE8B37D300FDC6F2E@SHSMSX102.ccr.corp.intel.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1662 Lines: 50 On 05/21/2012 02:17 PM, Hao, Xudong wrote: > > -----Original Message----- > > From: Avi Kivity [mailto:avi@redhat.com] > > Sent: Monday, May 21, 2012 6:48 PM > > To: Hao, Xudong > > Cc: Marcelo Tosatti; Xudong Hao; kvm@vger.kernel.org; > > linux-kernel@vger.kernel.org; Shan, Haitao; Zhang, Xiantao > > Subject: Re: [PATCH 4/4] Enabling Access bit when doing memory swapping > > > > 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. > > Yes, it need to decrease 1, I'll send v3 version for patch4, any other comments? I think it's fine. > > IIRC > > bsfl is slow, but this shouldn't be a problem here. > > > > I do not know the story... > No story, bsf is a relatively slow instruction, but it shouldn't affect us here; this isn't a fast path and in any case it's only a few cycles. -- error compiling committee.c: too many arguments to function -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/