Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1162325AbbKTL6u (ORCPT ); Fri, 20 Nov 2015 06:58:50 -0500 Received: from smtp.citrix.com ([66.165.176.89]:23753 "EHLO SMTP.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759641AbbKTL6t (ORCPT ); Fri, 20 Nov 2015 06:58:49 -0500 X-IronPort-AV: E=Sophos;i="5.20,322,1444694400"; d="scan'208";a="313623163" Date: Fri, 20 Nov 2015 11:58:18 +0000 From: Stefano Stabellini X-X-Sender: sstabellini@kaball.uk.xensource.com To: Ian Campbell CC: Stefano Stabellini , Julien Grall , , , Subject: Re: [Xen-devel] [PATCH v4 2/7] xen/arm: introduce HYPERVISOR_platform_op on arm and arm64 In-Reply-To: <1447666977.15629.9.camel@citrix.com> Message-ID: References: <1447349448-22610-2-git-send-email-stefano.stabellini@eu.citrix.com> <5645E868.30706@citrix.com> <1447666977.15629.9.camel@citrix.com> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-DLP: MIA1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3588 Lines: 96 On Mon, 16 Nov 2015, Ian Campbell wrote: > On Fri, 2015-11-13 at 18:10 +0000, Stefano Stabellini wrote: > > > > I agree with your point (I thought about it myself) but the current > > assembly scheme for hypercalls doesn't work well with that. I would have > > to introduce, and maintain going forward, two special hypercall > > implementations in assembly, one for arm and another for arm64, just to > > set interface_version. I don't think it is worth it; I prefer to have to > > maintain the explicit interface_version setting at the call sites (that > > today is just one). > > You could give the bare assembly stub a different name (append _core or > _raw or something) and make HYPERVISOR_platform_op a C wrapper for it which > DTRT. I had an idea. I just need to #define HYPERVISOR_platform_op_raw HYPERVISOR_platform_op then the small wrapper can work: diff --git a/arch/arm/include/asm/xen/hypercall.h b/arch/arm/include/asm/xen/hypercall.h index c3e00d0..d769972 100644 --- a/arch/arm/include/asm/xen/hypercall.h +++ b/arch/arm/include/asm/xen/hypercall.h @@ -50,7 +50,12 @@ int HYPERVISOR_memory_op(unsigned int cmd, void *arg); int HYPERVISOR_physdev_op(int cmd, void *arg); int HYPERVISOR_vcpu_op(int cmd, int vcpuid, void *extra_args); int HYPERVISOR_tmem_op(void *arg); -int HYPERVISOR_platform_op(void *arg); +int HYPERVISOR_platform_op_raw(void *arg); +static inline int HYPERVISOR_platform_op(struct xen_platform_op *op) +{ + op->interface_version = XENPF_INTERFACE_VERSION; + return HYPERVISOR_platform_op_raw(op); +} int HYPERVISOR_multicall(struct multicall_entry *calls, uint32_t nr); static inline int diff --git a/arch/arm/include/asm/xen/interface.h b/arch/arm/include/asm/xen/interface.h index 5b150d7..75d5968 100644 --- a/arch/arm/include/asm/xen/interface.h +++ b/arch/arm/include/asm/xen/interface.h @@ -27,6 +27,8 @@ (hnd).p = val; \ } while (0) +#define __HYPERVISOR_platform_op_raw __HYPERVISOR_platform_op + #ifndef __ASSEMBLY__ /* Explicitly size integers that represent pfns in the interface with * Xen so that we can have one ABI that works for 32 and 64 bit guests. diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index f964238..0f7be84 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c @@ -141,7 +141,6 @@ static int xen_pvclock_gtod_notify(struct notifier_block *nb, if (!was_set && timespec64_compare(&now, &next_sync) < 0) return NOTIFY_OK; - op.interface_version = XENPF_INTERFACE_VERSION; op.cmd = XENPF_settime64; op.u.settime64.mbz = 0; op.u.settime64.secs = now.tv_sec; diff --git a/arch/arm/xen/hypercall.S b/arch/arm/xen/hypercall.S index d4539f4..9a36f4f 100644 --- a/arch/arm/xen/hypercall.S +++ b/arch/arm/xen/hypercall.S @@ -89,7 +89,7 @@ HYPERCALL2(memory_op); HYPERCALL2(physdev_op); HYPERCALL3(vcpu_op); HYPERCALL1(tmem_op); -HYPERCALL1(platform_op); +HYPERCALL1(platform_op_raw); HYPERCALL2(multicall); ENTRY(privcmd_call) diff --git a/arch/arm64/xen/hypercall.S b/arch/arm64/xen/hypercall.S index f7d5724..70df80e 100644 --- a/arch/arm64/xen/hypercall.S +++ b/arch/arm64/xen/hypercall.S @@ -80,7 +80,7 @@ HYPERCALL2(memory_op); HYPERCALL2(physdev_op); HYPERCALL3(vcpu_op); HYPERCALL1(tmem_op); -HYPERCALL1(platform_op); +HYPERCALL1(platform_op_raw); HYPERCALL2(multicall); ENTRY(privcmd_call) -- 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/