Message ID | 1303368838-5620-1-git-send-email-namei.unix@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 04/21/2011 09:53 AM, Liu Yuan wrote: > From: Liu Yuan<tailai.ly@taobao.com> > > Function ioapic_debug() in the ioapic_deliver() misnames > one filed by reference. This patch correct it. Applied, thanks.
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index 0b9df83..8df1ca1 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c @@ -167,7 +167,7 @@ static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x " "vector=%x trig_mode=%x\n", - entry->fields.dest, entry->fields.dest_mode, + entry->fields.dest_id, entry->fields.dest_mode, entry->fields.delivery_mode, entry->fields.vector, entry->fields.trig_mode);