summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorXiubo Li <lixiubo@cmss.chinamobile.com>2015-03-13 17:39:44 +0800
committerMarcelo Tosatti <mtosatti@redhat.com>2015-03-17 22:34:25 -0300
commit795a149e78f49c0e260c56cee9978c5d001a84f1 (patch)
treecf4decdc1adba97aa07b5a9bcfcd9708b1d0a066 /arch/x86/kvm
parentae1f57670703656cc9f293722c3b8b6782f8ab3f (diff)
downloadop-kernel-dev-795a149e78f49c0e260c56cee9978c5d001a84f1.zip
op-kernel-dev-795a149e78f49c0e260c56cee9978c5d001a84f1.tar.gz
KVM: x86: Avoid using plain integer as NULL pointer warning
This patch fix the following sparse warning: for file arch/x86/kvm/x86.c: warning: Using plain integer as NULL pointer Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index d1a1fea..1309263 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -5919,7 +5919,7 @@ static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
lapic_irq.dest_id = apicid;
lapic_irq.delivery_mode = APIC_DM_REMRD;
- kvm_irq_delivery_to_apic(kvm, 0, &lapic_irq, NULL);
+ kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
}
int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
OpenPOWER on IntegriCloud