From 8217606e6edb49591b4a6fd5a0d1229cebe470a9 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Sat, 2 May 2009 00:29:37 +0200 Subject: 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 Signed-off-by: Anthony Liguori --- hw/fdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/fdc.c') diff --git a/hw/fdc.c b/hw/fdc.c index f4a4be0177..4c6284cebb 100644 --- a/hw/fdc.c +++ b/hw/fdc.c @@ -1883,7 +1883,7 @@ static fdctrl_t *fdctrl_init_common (qemu_irq irq, int dma_chann, } fdctrl_external_reset(fdctrl); register_savevm("fdc", io_base, 2, fdc_save, fdc_load, fdctrl); - qemu_register_reset(fdctrl_external_reset, fdctrl); + qemu_register_reset(fdctrl_external_reset, 0, fdctrl); for (i = 0; i < MAX_FD; i++) { fd_revalidate(&fdctrl->drives[i]); } -- cgit 1.4.1