mirror of https://github.com/xemu-project/xemu.git
blockjob: remove iostatus_reset callback
This is unused since commit 66a0fae
("blockjob: Don't touch BDS iostatus",
2016-05-19).
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Message-id: 20170508141310.8674-3-pbonzini@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
This commit is contained in:
parent
6573d9c638
commit
9f086abbe4
|
@ -555,9 +555,6 @@ bool block_job_is_cancelled(BlockJob *job)
|
||||||
void block_job_iostatus_reset(BlockJob *job)
|
void block_job_iostatus_reset(BlockJob *job)
|
||||||
{
|
{
|
||||||
job->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
|
job->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
|
||||||
if (job->driver->iostatus_reset) {
|
|
||||||
job->driver->iostatus_reset(job);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int block_job_finish_sync(BlockJob *job,
|
static int block_job_finish_sync(BlockJob *job,
|
||||||
|
|
|
@ -44,9 +44,6 @@ struct BlockJobDriver {
|
||||||
/** Optional callback for job types that support setting a speed limit */
|
/** Optional callback for job types that support setting a speed limit */
|
||||||
void (*set_speed)(BlockJob *job, int64_t speed, Error **errp);
|
void (*set_speed)(BlockJob *job, int64_t speed, Error **errp);
|
||||||
|
|
||||||
/** Optional callback for job types that need to forward I/O status reset */
|
|
||||||
void (*iostatus_reset)(BlockJob *job);
|
|
||||||
|
|
||||||
/** Mandatory: Entrypoint for the Coroutine. */
|
/** Mandatory: Entrypoint for the Coroutine. */
|
||||||
CoroutineEntry *start;
|
CoroutineEntry *start;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue