]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qapi/block-core.json
blockjobs: add waiting status
[mirror_qemu.git] / qapi / block-core.json
index afb2e63fa646a1700c2bf1c25a0fb353095c465a..46a0a832546d9187a1a78dd7200a173978960ef4 100644 (file)
 # @standby: The job is ready, but paused. This is nearly identical to @paused.
 #           The job may return to @ready or otherwise be canceled.
 #
+# @waiting: The job is waiting for other jobs in the transaction to converge
+#           to the waiting state. This status will likely not be visible for
+#           the last job in a transaction.
+#
 # @aborting: The job is in the process of being aborted, and will finish with
 #            an error. The job will afterwards report that it is @concluded.
 #            This status may not be visible to the management process.
 ##
 { 'enum': 'BlockJobStatus',
   'data': ['undefined', 'created', 'running', 'paused', 'ready', 'standby',
-           'aborting', 'concluded', 'null' ] }
+           'waiting', 'aborting', 'concluded', 'null' ] }
 
 ##
 # @BlockJobInfo: