diff options
author | Jan Kiszka | 2009-05-02 00:29:37 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-05-22 17:50:34 +0200 |
commit | 8217606e6edb49591b4a6fd5a0d1229cebe470a9 (patch) | |
tree | fff3d6f590833c0f894a6c7c300ab126b5259d95 /hw/heathrow_pic.c | |
parent | kvm: Fix framebuffer dirty log sync (diff) | |
download | qemu-8217606e6edb49591b4a6fd5a0d1229cebe470a9.tar.gz qemu-8217606e6edb49591b4a6fd5a0d1229cebe470a9.tar.xz qemu-8217606e6edb49591b4a6fd5a0d1229cebe470a9.zip |
Introduce reset notifier order
Add the parameter 'order' to qemu_register_reset and sort callbacks on
registration. On system reset, callbacks with lower order will be
invoked before those with higher order. Update all existing users to the
standard order 0.
Note: At least for x86, the existing users seem to assume that handlers
are called in their registration order. Therefore, the patch preserves
this property. If someone feels bored, (s)he could try to identify this
dependency and express it properly on callback registration.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/heathrow_pic.c')
-rw-r--r-- | hw/heathrow_pic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/heathrow_pic.c b/hw/heathrow_pic.c index 9a67ec0dac..38ebe9990a 100644 --- a/hw/heathrow_pic.c +++ b/hw/heathrow_pic.c @@ -230,7 +230,7 @@ qemu_irq *heathrow_pic_init(int *pmem_index, register_savevm("heathrow_pic", -1, 1, heathrow_pic_save, heathrow_pic_load, s); - qemu_register_reset(heathrow_pic_reset, s); + qemu_register_reset(heathrow_pic_reset, 0, s); heathrow_pic_reset(s); return qemu_allocate_irqs(heathrow_pic_set_irq, s, 64); } |