aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2007-12-14 11:39:02 +0000
committerKeir Fraser <keir.fraser@citrix.com>2007-12-14 11:39:02 +0000
commit91403dca9a3a558c5f53316a26ba7330fc1531c5 (patch)
treed555fa8306e3fdf9bdc3e4da0c4c0802ee44859a
parenta59ecf18bce3fcd7010b6edfe7edfc39ae759415 (diff)
downloadxen-91403dca9a3a558c5f53316a26ba7330fc1531c5.tar.gz
xen-91403dca9a3a558c5f53316a26ba7330fc1531c5.tar.bz2
xen-91403dca9a3a558c5f53316a26ba7330fc1531c5.zip
hvm: Remove duplicate assignment of __HYPERVISOR_grant_table_op in
hypercall demux tables. Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
-rw-r--r--xen/arch/x86/hvm/hvm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index 854e58040e..b3278cc971 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -1425,7 +1425,6 @@ static hvm_hypercall_t *hvm_hypercall32_table[NR_hypercalls] = {
HYPERCALL(memory_op),
[ __HYPERVISOR_grant_table_op ] = (hvm_hypercall_t *)hvm_grant_table_op,
HYPERCALL(xen_version),
- HYPERCALL(grant_table_op),
HYPERCALL(event_channel_op),
HYPERCALL(sched_op),
HYPERCALL(hvm_op)
@@ -1478,7 +1477,6 @@ static hvm_hypercall_t *hvm_hypercall64_table[NR_hypercalls] = {
HYPERCALL(memory_op),
[ __HYPERVISOR_grant_table_op ] = (hvm_hypercall_t *)hvm_grant_table_op,
HYPERCALL(xen_version),
- HYPERCALL(grant_table_op),
HYPERCALL(event_channel_op),
HYPERCALL(sched_op),
HYPERCALL(hvm_op)
@@ -1488,7 +1486,6 @@ static hvm_hypercall_t *hvm_hypercall32_table[NR_hypercalls] = {
[ __HYPERVISOR_memory_op ] = (hvm_hypercall_t *)do_memory_op_compat32,
[ __HYPERVISOR_grant_table_op ] = (hvm_hypercall_t *)hvm_grant_table_op,
HYPERCALL(xen_version),
- HYPERCALL(grant_table_op),
HYPERCALL(event_channel_op),
HYPERCALL(sched_op),
HYPERCALL(hvm_op)