diff options
author | Michal Privoznik <mprivozn@redhat.com> | 2017-09-07 10:05:24 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-10-02 08:40:01 +0200 |
commit | 14d53b4f4a88e82b4e62907ec64feafac1986531 (patch) | |
tree | 5b585f87d3f772a3978b991054653387e4f52767 /qapi/run-state.json | |
parent | ab161529261928ae7f3556e3220829c34b2686ec (diff) |
qapi: Rename WatchdogExpirationAction enum
The new name is WatchdogAction which is shorter,
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Message-Id: <dbd61a0928821348486d0d6260be2bd3b02b6402.1504771369.git.mprivozn@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi/run-state.json')
-rw-r--r-- | qapi/run-state.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qapi/run-state.json b/qapi/run-state.json index d36ff49834..bca46a8785 100644 --- a/qapi/run-state.json +++ b/qapi/run-state.json @@ -253,10 +253,10 @@ # ## { 'event': 'WATCHDOG', - 'data': { 'action': 'WatchdogExpirationAction' } } + 'data': { 'action': 'WatchdogAction' } } ## -# @WatchdogExpirationAction: +# @WatchdogAction: # # An enumeration of the actions taken when the watchdog device's timer is # expired @@ -279,7 +279,7 @@ # # Since: 2.1 ## -{ 'enum': 'WatchdogExpirationAction', +{ 'enum': 'WatchdogAction', 'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none', 'inject-nmi' ] } |