From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Ostrovsky Subject: Re: [PATCH] x86/HVM: honor p2m_ram_ro in hvm_map_guest_frame_rw() Date: Fri, 14 Aug 2015 09:26:00 -0400 Message-ID: <55CDEC68.7000803@oracle.com> References: <55B224660200007800095083@prv-mh.provo.novell.com> <55BB9CFC.5010002@oracle.com> <55CDE12C020000780009AFAE@prv-mh.provo.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZQF0g-0003So-8b for xen-devel@lists.xenproject.org; Fri, 14 Aug 2015 13:27:02 +0000 In-Reply-To: <55CDE12C020000780009AFAE@prv-mh.provo.novell.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Jan Beulich Cc: Kevin Tian , Wei Liu , suravee.suthikulpanit@amd.com, Andrew Cooper , Eddie Dong , Aravind Gopalakrishnan , Jun Nakajima , xen-devel , Keir Fraser List-Id: xen-devel@lists.xenproject.org On 08/14/2015 06:38 AM, Jan Beulich wrote: >>>> On 31.07.15 at 18:06, wrote: >> On 07/24/2015 05:41 AM, Jan Beulich wrote: >>> @@ -1693,14 +1703,22 @@ int nvmx_handle_vmclear(struct cpu_user_ >>> else >>> { >>> /* Even if this VMCS isn't the current one, we must clear it. */ >>> - vvmcs = hvm_map_guest_frame_rw(gpa >> PAGE_SHIFT, 0); >>> + bool_t writable; >>> + >>> + vvmcs = hvm_map_guest_frame_rw(gpa >> PAGE_SHIFT, 0, &writable); >> Since you replaced 'gpa >> PAGE_SHIFT' with 'paddr_to_pfn(gpa' above, >> perhaps it should be replaced here too. >> >> Other than that, >> Reviewed-by: Boris Ostrovsky > I took the liberty to downgrade this to an ack (covering SVM) on > v2 (since the SVM part didn't change). Sure. (I also reviewed v2 so you can use either tag). -boris