Commit a38f84ca8c6991925cb8bb6371ade8df9d3cc1e6

Authored by Liu Yuan
Committed by Avi Kivity
1 parent a78484c60e

KVM: ioapic: Fix an error field reference

Function ioapic_debug() in the ioapic_deliver() misnames
one filed by reference. This patch correct it.

Signed-off-by: Liu Yuan <tailai.ly@taobao.com>
Signed-off-by: Avi Kivity <avi@redhat.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -167,7 +167,7 @@
167 167  
168 168 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
169 169 "vector=%x trig_mode=%x\n",
170   - entry->fields.dest, entry->fields.dest_mode,
  170 + entry->fields.dest_id, entry->fields.dest_mode,
171 171 entry->fields.delivery_mode, entry->fields.vector,
172 172 entry->fields.trig_mode);
173 173