Hello Guenter,Something like that. You are right, the changelog needs an update.
On Tue, Aug 04, 2015 at 09:03:27AM -0700, Guenter Roeck wrote:
On 08/04/2015 08:52 AM, Uwe Kleine-König wrote:So for the changelog you want:
On Tue, Aug 04, 2015 at 08:31:43AM -0700, Guenter Roeck wrote:Yes, that is how it is supposed to work.
On 08/04/2015 05:18 AM, Uwe Kleine-König wrote:Right, I got that. With hw-max-timeout = 5s the machine resets after 5s
On Mon, Aug 03, 2015 at 07:13:28PM -0700, Guenter Roeck wrote:It is supposed to reflect the _maximum_ timeout. That is different to
structure. If the configured timeout exceeds half the value of theI don't understand why you want to halve the maximum hw-timeout. If my
maximum hardware timeout, the watchdog core enables a timer function
to assist sending keepalive requests to the watchdog driver.
watchdog has hw-max-timeout = 5s and userspace sets it to 3s there
should be no need for assistance?! I think the implementation is the
other way round?
the time between heartbeats, which is supposed to be less; using half
the value of the maximum hardware timeout seemed to be a safe number.
not caring for the device. And so pinging repeatedly after 2.5s is fine.
But if userspace sets a timeout of 3s (probably with the intention to
ping with a frequency of 1/1.5s) there is no need for worker-assistance,
because the pings coming in each 1.5s provided by userspace are good
enough.
If the configured timeout exceeds the maximum hardware timeout
the watchdog core enables a timer function ...
right?
One problem with the worker I see is that the reset will probably be+static inline bool watchdog_need_worker(struct watchdog_device *wdd)
+{
+ unsigned int hm = wdd->max_hw_timeout_ms;
+ unsigned int m = wdd->max_timeout * 1000;
+
+ return watchdog_active(wdd) && hm && hm != m &&
+ wdd->timeout * 500 > hm;
delayed with your worker. Consider userspace sets timeout = 10 s because
if the main application doesn't work for 12 s something dangerous can
happen. (Consider a guillotine where the blade can only be hold up for
12 s when not locked. :-) Now if the hw-max-timeout is 9s you setup a
timer to ping at $last_keepalive + 4.5 s and $last_keepalive + 9 s (not
taking timer and system latency into account). That means the system
only resets 18 s after the last userspace ping. Oops.
So ideally you send the last auto-ping at $last_keepalive +
$configured_timeout - $hw-max-timeout (assuming the hardware is
configured for $hw-max-timeout).
It does not? What do you expect max_timeout to be set to if the maximalHmm - not that this configuration makes any sense, but you are right.And a driver that doesI don't understand what max_timeout is now that there is max_hw_timeout.
So I don't understand why you need hm != m either.
Backward compatibility. A driver which does not set max_hw_timeout_ms,
or sets both to the same value, by definition expects to handle everything
internally, and thus no worker is configured.
max_timeout = 5
max_hw_timeout = 5125
falls through the cracks.
I'll make it "hm < m".
hw-timeout is 5125 ms? 0 would work, but IMHO you need some more
documentation then.