diff options
author | Yang Zhang <yang.zhang@intel.com> | 2009-03-03 04:06:41 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-10 10:48:25 +0200 |
commit | 3f5e06f8799adca3e7e1bbafe1cd780a3e69f604 (patch) | |
tree | 0bd29117fa68cf076625f7d7b8fad1cb0a171319 /arch/ia64/kvm | |
parent | KVM: unify part of generic timer handling (diff) | |
download | linux-3f5e06f8799adca3e7e1bbafe1cd780a3e69f604.tar.xz linux-3f5e06f8799adca3e7e1bbafe1cd780a3e69f604.zip |
KVM: ia64: fix compilation error in kvm_get_lowest_prio_vcpu
Modify the arg of kvm_get_lowest_prio_vcpu().
Make it consistent with its declaration.
Signed-off-by: Yang Zhang <yang.zhang@intel.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/ia64/kvm')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index d20a5db4c4dd..774f0d78a581 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c @@ -1837,7 +1837,7 @@ int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda) } struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector, - unsigned long bitmap) + unsigned long *bitmap) { struct kvm_vcpu *lvcpu = kvm->vcpus[0]; int i; |