From mboxrd@z Thu Jan 1 00:00:00 1970 From: Razvan Cojocaru Subject: Re: [PATCH v4] x86/arm/mm: use gfn instead of pfn in p2m_get_mem_access/p2m_set_mem_access Date: Mon, 29 Jun 2015 19:20:07 +0300 Message-ID: <55917037.6040201@bitdefender.com> References: <1435592708-26456-1-git-send-email-vkuznets@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1435592708-26456-1-git-send-email-vkuznets@redhat.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: Vitaly Kuznetsov , xen-devel@lists.xen.org Cc: Keir Fraser , Ian Campbell , George Dunlap , Andrew Cooper , Tim Deegan , Stefano Stabellini , Jan Beulich , Tamas K Lengyel List-Id: xen-devel@lists.xenproject.org On 06/29/2015 06:45 PM, Vitaly Kuznetsov wrote: > 'pfn' and 'start_pfn' are ambiguous, both these functions expect GFNs as input. > > On x86 the interface of p2m_set_mem_access() in p2m.c doesn't match the > declaration in p2m-common.h as 'pfn' is being used instead of 'start_pfn'. > > On ARM both p2m_set_mem_access and p2m_get_mem_access interfaces don't match > declarations from p2m-common.h: p2m_set_mem_access uses 'pfn' instead of > 'start_pfn' and p2m_get_mem_access uses 'gpfn' instead of 'pfn'. > > Convert p2m_get_mem_access/p2m_set_mem_access (and __p2m_get_mem_access on ARM) > interfaces to using gft_t instead of unsigned long and update all users of > these functions. > > There is also an issue in p2m_get_mem_access on x86: 'gfn' parameter passed to > gfn_lock/gfn_unlock is not defined. This code compiles only because of a > coincidence: gfn_lock/gfn_unlock are currently macros which don't use their > second argument. > > Signed-off-by: Vitaly Kuznetsov > --- > Changes since v3: > - Comment codying style fix [Razvan Cojocaru] > - Use INVALID_GFN instead of ~0 and -1 [Andrew Cooper] > - Convert p2m_get_mem_access/p2m_set_mem_access interfaces to using gfn_t > [Andrew Cooper] > > Changes since v2: > - Instead of adding start_ prefix on ARM remove it on x86 [Jan Beulich, > Ian Campbell, Razvan Cojocaru] > > Changes since v1: > - This patch is a successor of '[PATCH] x86/mm: use existing 'pfn' in > p2m_get_mem_access', instead of fixing gfn_lock/gfn_unlock arguments we do > s/pfn/gfn/g for both p2m_get_mem_access/p2m_set_mem_access [Andrew Cooper, > Jan Beulich] > > P.S. > - The patch was compile-tested on x86 and ARM64. > --- > xen/arch/arm/p2m.c | 33 +++++++++++++++++---------------- > xen/arch/x86/mm/p2m.c | 36 ++++++++++++++++++++---------------- > xen/common/mem_access.c | 4 ++-- > xen/include/xen/p2m-common.h | 13 ++++++------- > 4 files changed, 45 insertions(+), 41 deletions(-) Reviewed-by: Razvan Cojocaru