From: Anthony Liguori <anthony@codemonkey.ws>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: qemu-devel@nongnu.org, rjones@redhat.com
Subject: Re: [Qemu-devel] [PATCH] QMP: Introduce WATCHDOG event
Date: Tue, 09 Mar 2010 09:01:44 -0600 [thread overview]
Message-ID: <4B9662D8.50005@codemonkey.ws> (raw)
In-Reply-To: <20100225121304.7992a7b5@redhat.com>
On 02/25/2010 09:13 AM, Luiz Capitulino wrote:
> It's emitted whenever the watchdog device's timer expires. The action
> taken is provided in the 'data' member.
>
> Signed-off-by: Luiz Capitulino<lcapitulino@redhat.com>
>
Applied. Thanks.
Regards,
Anthony Liguori
>
---
> QMP/qmp-events.txt | 19 +++++++++++++++++++
> hw/watchdog.c | 17 +++++++++++++++++
> monitor.c | 3 +++
> monitor.h | 1 +
> 4 files changed, 40 insertions(+), 0 deletions(-)
>
> diff --git a/QMP/qmp-events.txt b/QMP/qmp-events.txt
> index 72920f6..a94e9b4 100644
> --- a/QMP/qmp-events.txt
> +++ b/QMP/qmp-events.txt
> @@ -169,3 +169,22 @@ Example:
> "client": { "family": "ipv4", "service": "46089",
> "host": "127.0.0.1", "sasl_username": "luiz" } },
> "timestamp": { "seconds": 1263475302, "microseconds": 150772 } }
> +
> +WATCHDOG
> +--------
> +
> +Emitted when the watchdog device's timer is expired.
> +
> +Data:
> +
> +- "action": Action that has been taken, it's one of the following (json-string):
> + "reset", "shutdown", "poweroff", "pause", "debug", or "none"
> +
> +Example:
> +
> +{ "event": "WATCHDOG",
> + "data": { "action": "reset" },
> + "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
> +
> +Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
> +followed respectively by the RESET, SHUTDOWN, or STOP events.
> diff --git a/hw/watchdog.c b/hw/watchdog.c
> index 6a3d1b4..aebb08a 100644
> --- a/hw/watchdog.c
> +++ b/hw/watchdog.c
> @@ -23,6 +23,8 @@
> #include "qemu-option.h"
> #include "qemu-config.h"
> #include "qemu-queue.h"
> +#include "qemu-objects.h"
> +#include "monitor.h"
> #include "sysemu.h"
> #include "hw/watchdog.h"
>
> @@ -98,6 +100,15 @@ int select_watchdog_action(const char *p)
> return 0;
> }
>
> +static void watchdog_mon_event(const char *action)
> +{
> + QObject *data;
> +
> + data = qobject_from_jsonf("{ 'action': %s }", action);
> + monitor_protocol_event(QEVENT_WATCHDOG, data);
> + qobject_decref(data);
> +}
> +
> /* This actually performs the "action" once a watchdog has expired,
> * ie. reboot, shutdown, exit, etc.
> */
> @@ -105,26 +116,32 @@ void watchdog_perform_action(void)
> {
> switch(watchdog_action) {
> case WDT_RESET: /* same as 'system_reset' in monitor */
> + watchdog_mon_event("reset");
> qemu_system_reset_request();
> break;
>
> case WDT_SHUTDOWN: /* same as 'system_powerdown' in monitor */
> + watchdog_mon_event("shutdown");
> qemu_system_powerdown_request();
> break;
>
> case WDT_POWEROFF: /* same as 'quit' command in monitor */
> + watchdog_mon_event("poweroff");
> exit(0);
> break;
>
> case WDT_PAUSE: /* same as 'stop' command in monitor */
> + watchdog_mon_event("pause");
> vm_stop(0);
> break;
>
> case WDT_DEBUG:
> + watchdog_mon_event("debug");
> fprintf(stderr, "watchdog: timer fired\n");
> break;
>
> case WDT_NONE:
> + watchdog_mon_event("none");
> break;
> }
> }
> diff --git a/monitor.c b/monitor.c
> index 20512da..4704b18 100644
> --- a/monitor.c
> +++ b/monitor.c
> @@ -426,6 +426,9 @@ void monitor_protocol_event(MonitorEvent event, QObject *data)
> case QEVENT_RTC_CHANGE:
> event_name = "RTC_CHANGE";
> break;
> + case QEVENT_WATCHDOG:
> + event_name = "WATCHDOG";
> + break;
> default:
> abort();
> break;
> diff --git a/monitor.h b/monitor.h
> index aa51bd5..e5f2d2b 100644
> --- a/monitor.h
> +++ b/monitor.h
> @@ -24,6 +24,7 @@ typedef enum MonitorEvent {
> QEVENT_VNC_DISCONNECTED,
> QEVENT_BLOCK_IO_ERROR,
> QEVENT_RTC_CHANGE,
> + QEVENT_WATCHDOG,
> QEVENT_MAX,
> } MonitorEvent;
>
>
prev parent reply other threads:[~2010-03-09 15:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-25 15:13 [Qemu-devel] [PATCH] QMP: Introduce WATCHDOG event Luiz Capitulino
2010-02-25 15:21 ` [Qemu-devel] " Richard W.M. Jones
2010-02-26 10:58 ` [Qemu-devel] " Daniel P. Berrange
2010-03-09 15:01 ` Anthony Liguori [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B9662D8.50005@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rjones@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).