diff options
author | Curtis Klein <curtis.klein@hpe.com> | 2021-06-28 00:36:49 +0200 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2022-02-22 18:19:54 +0100 |
commit | 5717062e93ec6f128188d2ef4d1399623995bc63 (patch) | |
tree | d0810c996144139af9bd4eade4b625d055d2308b /man/org.freedesktop.systemd1.xml | |
parent | ci: fix clang-13 installation (diff) | |
download | systemd-5717062e93ec6f128188d2ef4d1399623995bc63.tar.xz systemd-5717062e93ec6f128188d2ef4d1399623995bc63.zip |
watchdog: Add watchdog pretimeout support
Add support for managing and configuring watchdog pretimeout values if
the watchdog hardware supports it. The ping interval is adjusted to
account for a pretimeout so that it will still ping at half the timeout
interval before a pretimeout event would be triggered. By default the
pretimeout defaults to 0s or disabled.
The RuntimeWatchdogPreSec config option is added to allow the pretimeout
to be specified (similar to RuntimeWatchdogSec). The
RuntimeWatchdogPreUSec dbus property is added to override the pretimeout
value at runtime (similar to RuntimeWatchdogUSec). Setting the
pretimeout to 0s will disable the pretimeout.
Diffstat (limited to 'man/org.freedesktop.systemd1.xml')
-rw-r--r-- | man/org.freedesktop.systemd1.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/man/org.freedesktop.systemd1.xml b/man/org.freedesktop.systemd1.xml index 8171241e4e..8976521589 100644 --- a/man/org.freedesktop.systemd1.xml +++ b/man/org.freedesktop.systemd1.xml @@ -402,6 +402,9 @@ node /org/freedesktop/systemd1 { readwrite t RuntimeWatchdogUSec = ...; @org.freedesktop.DBus.Property.EmitsChangedSignal("false") @org.freedesktop.systemd1.Privileged("true") + readwrite t RuntimeWatchdogPreUSec = ...; + @org.freedesktop.DBus.Property.EmitsChangedSignal("false") + @org.freedesktop.systemd1.Privileged("true") readwrite t RebootWatchdogUSec = ...; @org.freedesktop.DBus.Property.EmitsChangedSignal("false") @org.freedesktop.systemd1.Privileged("true") @@ -650,6 +653,8 @@ node /org/freedesktop/systemd1 { <!--property RuntimeWatchdogUSec is not documented!--> + <!--property RuntimeWatchdogPreUSec is not documented!--> + <!--property RebootWatchdogUSec is not documented!--> <!--property KExecWatchdogUSec is not documented!--> @@ -1052,6 +1057,8 @@ node /org/freedesktop/systemd1 { <variablelist class="dbus-property" generated="True" extra-ref="RuntimeWatchdogUSec"/> + <variablelist class="dbus-property" generated="True" extra-ref="RuntimeWatchdogPreUSec"/> + <variablelist class="dbus-property" generated="True" extra-ref="RebootWatchdogUSec"/> <variablelist class="dbus-property" generated="True" extra-ref="KExecWatchdogUSec"/> |