]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
KVM: X86: Convert the last users of "shorthand = 0" to use macros
authorPeter Xu <peterx@redhat.com>
Wed, 4 Dec 2019 19:07:21 +0000 (20:07 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 8 Jan 2020 16:33:16 +0000 (17:33 +0100)
Change the last users of "shorthand = 0" to use APIC_DEST_NOSHORT.

Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/ioapic.c
arch/x86/kvm/irq_comm.c
arch/x86/kvm/x86.c

index f53daeaaeb37903eda608b5cda9d517a4b2f3114..77538fd77dc255f8a3d5a94b83eaca893eb6d5cd 100644 (file)
@@ -330,7 +330,7 @@ static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
                if (e->fields.delivery_mode == APIC_DM_FIXED) {
                        struct kvm_lapic_irq irq;
 
-                       irq.shorthand = 0;
+                       irq.shorthand = APIC_DEST_NOSHORT;
                        irq.vector = e->fields.vector;
                        irq.delivery_mode = e->fields.delivery_mode << 8;
                        irq.dest_id = e->fields.dest_id;
@@ -379,7 +379,7 @@ static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
        irqe.trig_mode = entry->fields.trig_mode;
        irqe.delivery_mode = entry->fields.delivery_mode << 8;
        irqe.level = 1;
-       irqe.shorthand = 0;
+       irqe.shorthand = APIC_DEST_NOSHORT;
        irqe.msi_redir_hint = false;
 
        if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
index 7d083f71fc8ea33916972c934d631631abf0345b..9d711c2451c79366ae341edb2aa3e6b97ff2b894 100644 (file)
@@ -121,7 +121,7 @@ void kvm_set_msi_irq(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
        irq->msi_redir_hint = ((e->msi.address_lo
                & MSI_ADDR_REDIRECTION_LOWPRI) > 0);
        irq->level = 1;
-       irq->shorthand = 0;
+       irq->shorthand = APIC_DEST_NOSHORT;
 }
 EXPORT_SYMBOL_GPL(kvm_set_msi_irq);
 
index f4e477e6c9544938ff7316ade5d0505995c52b9c..16902d0aad3ab3916190c7e310e05575ccdcb548 100644 (file)
@@ -7357,7 +7357,7 @@ static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
 {
        struct kvm_lapic_irq lapic_irq;
 
-       lapic_irq.shorthand = 0;
+       lapic_irq.shorthand = APIC_DEST_NOSHORT;
        lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
        lapic_irq.level = 0;
        lapic_irq.dest_id = apicid;