diff options
author | John Snow | 2018-03-10 09:27:43 +0100 |
---|---|---|
committer | Kevin Wolf | 2018-03-19 12:01:24 +0100 |
commit | 11b61fbc0d1a447849f36d76e0e1d05be2dfaad2 (patch) | |
tree | 93bb4e5cc3452c6bc62021b982506b2f0187d133 /include/block/blockjob.h | |
parent | blockjobs: add PENDING status and event (diff) | |
download | qemu-11b61fbc0d1a447849f36d76e0e1d05be2dfaad2.tar.gz qemu-11b61fbc0d1a447849f36d76e0e1d05be2dfaad2.tar.xz qemu-11b61fbc0d1a447849f36d76e0e1d05be2dfaad2.zip |
blockjobs: add block-job-finalize
Instead of automatically transitioning from PENDING to CONCLUDED, gate
the .prepare() and .commit() phases behind an explicit acknowledgement
provided by the QMP monitor if auto_finalize = false has been requested.
This allows us to perform graph changes in prepare and/or commit so that
graph changes do not occur autonomously without knowledge of the
controlling management layer.
Transactions that have reached the "PENDING" state together can all be
moved to invoke their finalization methods by issuing block_job_finalize
to any one job in the transaction.
Jobs in a transaction with mixed job->auto_finalize settings will all
remain stuck in the "PENDING" state, as if the entire transaction was
specified with auto_finalize = false. Jobs that specified
auto_finalize = true, however, will still not emit the PENDING event.
Signed-off-by: John Snow <jsnow@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block/blockjob.h')
-rw-r--r-- | include/block/blockjob.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/block/blockjob.h b/include/block/blockjob.h index 7c8d51effa..978274ed2b 100644 --- a/include/block/blockjob.h +++ b/include/block/blockjob.h @@ -244,6 +244,23 @@ void block_job_cancel(BlockJob *job); */ void block_job_complete(BlockJob *job, Error **errp); + +/** + * block_job_finalize: + * @job: The job to fully commit and finish. + * @errp: Error object. + * + * For jobs that have finished their work and are pending + * awaiting explicit acknowledgement to commit their work, + * This will commit that work. + * + * FIXME: Make the below statement universally true: + * For jobs that support the manual workflow mode, all graph + * changes that occur as a result will occur after this command + * and before a successful reply. + */ +void block_job_finalize(BlockJob *job, Error **errp); + /** * block_job_dismiss: * @job: The job to be dismissed. |