~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to hw/intc/ioapic.c

  • Committer: Phil Dennis-Jordan
  • Author(s): Michael Tokarev
  • Date: 2017-05-23 06:58:03 UTC
  • Revision ID: phil@philjordan.eu-20170523065803-1jh2d8znpy7iuqn8
Tags: 1:2.8+dfsg-6
* 9pfs-local-forbid-client-access-to-metadata-CVE-2017-7493.patch
  Closes: CVE-2017-7493
* group all 9p patches together
* drop obsolete comment about libiscsi on ubuntu from d/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
426
426
    DeviceClass *dc = DEVICE_CLASS(klass);
427
427
 
428
428
    k->realize = ioapic_realize;
 
429
    /*
 
430
     * If APIC is in kernel, we need to update the kernel cache after
 
431
     * migration, otherwise first 24 gsi routes will be invalid.
 
432
     */
 
433
    k->post_load = ioapic_update_kvm_routes;
429
434
    dc->reset = ioapic_reset_common;
430
435
    dc->props = ioapic_properties;
431
436
}