qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] mc146818rtc: reinitialize irq_reinject_on_ack_count


From: Paolo Bonzini
Subject: [Qemu-devel] [PATCH] mc146818rtc: reinitialize irq_reinject_on_ack_count on reset
Date: Wed, 27 Aug 2014 17:55:43 +0200

This field was forgotten, and it makes the state after reset
non-deterministic.

Signed-off-by: Paolo Bonzini <address@hidden>
---
 hw/timer/mc146818rtc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/timer/mc146818rtc.c b/hw/timer/mc146818rtc.c
index 233fc70..4df650f 100644
--- a/hw/timer/mc146818rtc.c
+++ b/hw/timer/mc146818rtc.c
@@ -792,6 +792,7 @@ static void rtc_reset(void *opaque)
 #ifdef TARGET_I386
     if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
         s->irq_coalesced = 0;
+        s->irq_reinject_on_ack_count = 0;              
     }
 #endif
 }
-- 
1.8.3.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]