Ian Campbell
2013-Jul-22 18:16 UTC
[PATCH] xen: arm: remove dummy HYPERVISOR_arch_0 hypercall
From: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
xen/arch/arm/traps.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/xen/arch/arm/traps.c b/xen/arch/arm/traps.c
index bbd60aa..f2ffcb7 100644
--- a/xen/arch/arm/traps.c
+++ b/xen/arch/arm/traps.c
@@ -653,12 +653,6 @@ void do_unexpected_trap(const char *msg, struct
cpu_user_regs *regs)
while(1);
}
-unsigned long do_arch_0(unsigned int cmd, unsigned long long value)
-{
- printk("do_arch_0 cmd=%x arg=%llx\n", cmd, value);
- return 0;
-}
-
typedef unsigned long (*arm_hypercall_fn_t)(
unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
@@ -681,7 +675,6 @@ typedef struct {
static arm_hypercall_t arm_hypercall_table[] = {
HYPERCALL(memory_op, 2),
HYPERCALL(domctl, 1),
- HYPERCALL(arch_0, 2),
HYPERCALL(sched_op, 2),
HYPERCALL(console_io, 3),
HYPERCALL(xen_version, 2),
--
1.8.3.2
Stefano Stabellini
2013-Jul-23 11:31 UTC
Re: [PATCH] xen: arm: remove dummy HYPERVISOR_arch_0 hypercall
On Mon, 22 Jul 2013, Ian Campbell wrote:> From: Ian Campbell <ian.campbell@citrix.com> > > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>> xen/arch/arm/traps.c | 7 ------- > 1 file changed, 7 deletions(-) > > diff --git a/xen/arch/arm/traps.c b/xen/arch/arm/traps.c > index bbd60aa..f2ffcb7 100644 > --- a/xen/arch/arm/traps.c > +++ b/xen/arch/arm/traps.c > @@ -653,12 +653,6 @@ void do_unexpected_trap(const char *msg, struct cpu_user_regs *regs) > while(1); > } > > -unsigned long do_arch_0(unsigned int cmd, unsigned long long value) > -{ > - printk("do_arch_0 cmd=%x arg=%llx\n", cmd, value); > - return 0; > -} > - > typedef unsigned long (*arm_hypercall_fn_t)( > unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); > > @@ -681,7 +675,6 @@ typedef struct { > static arm_hypercall_t arm_hypercall_table[] = { > HYPERCALL(memory_op, 2), > HYPERCALL(domctl, 1), > - HYPERCALL(arch_0, 2), > HYPERCALL(sched_op, 2), > HYPERCALL(console_io, 3), > HYPERCALL(xen_version, 2), > -- > 1.8.3.2 >
Ian Campbell
2013-Jul-29 15:57 UTC
Re: [PATCH] xen: arm: remove dummy HYPERVISOR_arch_0 hypercall
On Tue, 2013-07-23 at 12:31 +0100, Stefano Stabellini wrote:> On Mon, 22 Jul 2013, Ian Campbell wrote: > > From: Ian Campbell <ian.campbell@citrix.com> > > > > Signed-off-by: Ian Campbell <ian.campbell@citrix.com> > > Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>Applied, thanks.