[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v3 5/6] blockjob: refactor backup_start as backu
From: |
Kevin Wolf |
Subject: |
Re: [Qemu-devel] [PATCH v3 5/6] blockjob: refactor backup_start as backup_job_create |
Date: |
Thu, 3 Nov 2016 14:17:34 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
Am 02.11.2016 um 18:50 hat John Snow geschrieben:
> Refactor backup_start as backup_job_create, which only creates the job,
> but does not automatically start it. The old interface, 'backup_start',
> is not kept in favor of limiting the number of nearly-identical interfaces
> that would have to be edited to keep up with QAPI changes in the future.
>
> Callers that wish to synchronously start the backup_block_job can
> instead just call block_job_start immediately after calling
> backup_job_create.
>
> Transactions are updated to use the new interface, calling block_job_start
> only during the .commit phase, which helps prevent race conditions where
> jobs may finish before we even finish building the transaction. This may
> happen, for instance, during empty block backup jobs.
>
> Reported-by: Vladimir Sementsov-Ogievskiy <address@hidden>
> Signed-off-by: John Snow <address@hidden>
> +static void drive_backup_commit(BlkActionState *common)
> +{
> + DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
> + if (state->job) {
> + block_job_start(state->job);
> + }
> }
How could state->job ever be NULL?
Same question for abort, and for blockdev_backup_commit/abort.
Kevin
- [Qemu-devel] [PATCH v3 2/6] blockjob: add .clean property, (continued)
[Qemu-devel] [PATCH v3 6/6] iotests: add transactional failure race test, John Snow, 2016/11/02
[Qemu-devel] [PATCH v3 5/6] blockjob: refactor backup_start as backup_job_create, John Snow, 2016/11/02
- Re: [Qemu-devel] [PATCH v3 5/6] blockjob: refactor backup_start as backup_job_create,
Kevin Wolf <=
Re: [Qemu-devel] [PATCH v3 5/6] blockjob: refactor backup_start as backup_job_create, Jeff Cody, 2016/11/07
Re: [Qemu-devel] [PATCH v3 0/6] jobs: fix transactional race condition, Kevin Wolf, 2016/11/03