From: Sascha Hauer <s.hauer@pengutronix.de>
To: Juergen Beisert <jbe@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/2] Add a simple watchdog framework
Date: Mon, 25 Jun 2012 14:28:31 +0200 [thread overview]
Message-ID: <20120625122831.GE14321@pengutronix.de> (raw)
In-Reply-To: <1340358843-30614-2-git-send-email-jbe@pengutronix.de>
On Fri, Jun 22, 2012 at 11:54:02AM +0200, Juergen Beisert wrote:
> This patch adds a simple wd command which can setup, trigger and stop a watchdog
> on the platform.
>
> +static int do_wd(int argc, char *argv[])
> +{
> + int rc;
> +
> + if (argc > 1) {
> + if (isdigit(*argv[1])) {
> + timeout = simple_strtoul(argv[1], NULL, 0);
> + } else {
> + printf("numerical parameter expected\n");
> + return 1;
> + }
> + }
> +
> + rc = watchdog_set_timeout(timeout);
> + if (rc == -EINVAL) {
Why do you check for -EINVAL only? This way all other errors will be
silently ignored.
> + if (timeout == 0)
> + printf("Watchdog cannot be disabled\n");
> + else
> + printf("Timeout value out of range\n");
> + return rc;
Do not return negative error codes here. The shell will interpret
negative numbers as 'exit'. You have to return 1 for failure.
> + }
> + return 0;
> +}
> +
> +
> +#ifndef INCLUDE_WATCHDOG_H
> +# define INCLUDE_WATCHDOG_H
> +
> +extern int watchdog_set_timeout(unsigned);
extern is not needed here.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-06-25 12:28 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-22 9:54 [PATCHv2] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-22 9:54 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
2012-06-25 12:28 ` Sascha Hauer [this message]
2012-06-25 12:45 ` Juergen Beisert
2012-06-25 12:53 ` Sascha Hauer
2012-06-25 13:37 ` Juergen Beisert
2012-06-22 9:54 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
-- strict thread matches above, loose matches on Subject: below --
2012-06-27 14:30 [PATCHv4] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-27 14:30 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
2012-06-26 8:43 [PATCHv3] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-26 8:43 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
2012-06-22 8:44 [PATCH] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-22 8:44 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
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=20120625122831.GE14321@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=jbe@pengutronix.de \
/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