From: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t 1/3] runner: Log when watchdog handling fails
Date: Fri, 14 Jun 2019 11:08:14 +0300 [thread overview]
Message-ID: <20190614080816.12464-1-arkadiusz.hiler@intel.com> (raw)
If write or ioctl on a watchdog ever fails it will be logged.
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
runner/executor.c | 24 +++++++++++++++++++-----
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index 7e5fbe8f..f9c69fef 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -25,6 +25,17 @@ static struct {
size_t num_dogs;
} watchdogs;
+static void __close_watchdog(int fd)
+{
+ int ret = write(fd, "V", 1);
+
+ if (ret == -1)
+ fprintf(stderr, "Failed to stop a watchdog: %s\n",
+ strerror(errno));
+
+ close(fd);
+}
+
static void close_watchdogs(struct settings *settings)
{
size_t i;
@@ -33,8 +44,7 @@ static void close_watchdogs(struct settings *settings)
printf("Closing watchdogs\n");
for (i = 0; i < watchdogs.num_dogs; i++) {
- write(watchdogs.fds[i], "V", 1);
- close(watchdogs.fds[i]);
+ __close_watchdog(watchdogs.fds[i]);
}
}
@@ -81,8 +91,7 @@ static int watchdogs_set_timeout(int timeout)
for (i = 0; i < watchdogs.num_dogs; i++) {
if (ioctl(watchdogs.fds[i], WDIOC_SETTIMEOUT, &timeout)) {
- write(watchdogs.fds[i], "V", 1);
- close(watchdogs.fds[i]);
+ __close_watchdog(watchdogs.fds[i]);
watchdogs.fds[i] = -1;
continue;
}
@@ -102,9 +111,14 @@ static int watchdogs_set_timeout(int timeout)
static void ping_watchdogs(void)
{
size_t i;
+ int ret;
for (i = 0; i < watchdogs.num_dogs; i++) {
- ioctl(watchdogs.fds[i], WDIOC_KEEPALIVE, 0);
+ ret = ioctl(watchdogs.fds[i], WDIOC_KEEPALIVE, NULL);
+
+ if (ret == -1)
+ fprintf(stderr, "Failed to ping a watchdog: %s\n",
+ strerror(errno));
}
}
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next reply other threads:[~2019-06-14 8:08 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-14 8:08 Arkadiusz Hiler [this message]
2019-06-14 8:08 ` [igt-dev] [PATCH i-g-t 2/3] runner: Handle SIGHUP too Arkadiusz Hiler
2019-06-14 8:20 ` Ser, Simon
2019-06-14 8:08 ` [igt-dev] [PATCH i-g-t 3/3] runner: Log which signal was used to terminate the runner Arkadiusz Hiler
2019-06-14 8:21 ` Ser, Simon
2019-06-14 8:16 ` [igt-dev] [PATCH i-g-t 1/3] runner: Log when watchdog handling fails Ser, Simon
2019-06-14 10:05 ` Petri Latvala
2019-06-14 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
2019-06-15 13:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
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=20190614080816.12464-1-arkadiusz.hiler@intel.com \
--to=arkadiusz.hiler@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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