diff options
author | Wenchao Xia <wenchaoqemu@gmail.com> | 2014-06-18 08:43:42 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-06-23 11:12:27 -0400 |
commit | 99eaf09c73b213e32e297b1d08d035abb5b268e9 (patch) | |
tree | 6b8448ab6a146460e890a4e973fda1f99703efd9 /monitor.c | |
parent | e010ad8f1e14def33117576916a954d7a3778458 (diff) | |
download | qemu-99eaf09c73b213e32e297b1d08d035abb5b268e9.tar.gz qemu-99eaf09c73b213e32e297b1d08d035abb5b268e9.tar.bz2 qemu-99eaf09c73b213e32e297b1d08d035abb5b268e9.zip |
qapi event: convert WATCHDOG
Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -616,6 +616,7 @@ static void monitor_qapi_event_init(void) { /* Limit guest-triggerable events to 1 per second */ monitor_qapi_event_throttle(QAPI_EVENT_RTC_CHANGE, 1000); + monitor_qapi_event_throttle(QAPI_EVENT_WATCHDOG, 1000); qmp_event_set_func_emit(monitor_qapi_event_queue); } @@ -744,7 +745,6 @@ static void monitor_protocol_event_init(void) { /* Limit RTC & BALLOON events to 1 per second */ monitor_protocol_event_throttle(QEVENT_BALLOON_CHANGE, 1000); - monitor_protocol_event_throttle(QEVENT_WATCHDOG, 1000); /* limit the rate of quorum events to avoid hammering the management */ monitor_protocol_event_throttle(QEVENT_QUORUM_REPORT_BAD, 1000); monitor_protocol_event_throttle(QEVENT_QUORUM_FAILURE, 1000); |