aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2018-04-24 09:52:40 +0100
committerStefan Hajnoczi <stefanha@redhat.com>2018-05-10 10:41:12 +0100
commit23d702d898bdd8e6772d83ea9789767ed589e17e (patch)
treeccbe72a8dd6fb990c9a1b8b95901818e56829ab6 /include
parente5cd695266c5709308aa95b1baae499e4b5d4544 (diff)
downloadqemu-23d702d898bdd8e6772d83ea9789767ed589e17e.zip
qemu-23d702d898bdd8e6772d83ea9789767ed589e17e.tar.gz
qemu-23d702d898bdd8e6772d83ea9789767ed589e17e.tar.bz2
blockjob: drop block_job_pause/resume_all()
Commit 8119334918e86f45877cfc139192d54f2449a239 ("block: Don't block_job_pause_all() in bdrv_drain_all()") removed the only callers of block_job_pause/resume_all(). Pausing and resuming now happens in child_job_drained_begin/end() so it's no longer necessary to globally pause/resume jobs. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Message-id: 20180424085240.5798-1-stefanha@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/block/blockjob_int.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/block/blockjob_int.h b/include/block/blockjob_int.h
index 642adce..d5a515d 100644
--- a/include/block/blockjob_int.h
+++ b/include/block/blockjob_int.h
@@ -169,20 +169,6 @@ void block_job_sleep_ns(BlockJob *job, int64_t ns);
void block_job_yield(BlockJob *job);
/**
- * block_job_pause_all:
- *
- * Asynchronously pause all jobs.
- */
-void block_job_pause_all(void);
-
-/**
- * block_job_resume_all:
- *
- * Resume all block jobs. Must be paired with a preceding block_job_pause_all.
- */
-void block_job_resume_all(void);
-
-/**
* block_job_early_fail:
* @bs: The block device.
*