Blame SOURCES/kvm-test-blockjob-Acquire-AioContext-around-job_cancel_s.patch

1bdc94
From db5e1dfac375e869234340036cd232313c6d4d7b Mon Sep 17 00:00:00 2001
1bdc94
From: Kevin Wolf <kwolf@redhat.com>
1bdc94
Date: Fri, 14 Sep 2018 10:55:28 +0200
1bdc94
Subject: [PATCH 37/49] test-blockjob: Acquire AioContext around
1bdc94
 job_cancel_sync()
1bdc94
1bdc94
RH-Author: Kevin Wolf <kwolf@redhat.com>
1bdc94
Message-id: <20180914105540.18077-31-kwolf@redhat.com>
1bdc94
Patchwork-id: 82183
1bdc94
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 30/42] test-blockjob: Acquire AioContext around job_cancel_sync()
1bdc94
Bugzilla: 1601212
1bdc94
RH-Acked-by: John Snow <jsnow@redhat.com>
1bdc94
RH-Acked-by: Max Reitz <mreitz@redhat.com>
1bdc94
RH-Acked-by: Fam Zheng <famz@redhat.com>
1bdc94
1bdc94
All callers in QEMU proper hold the AioContext lock when calling
1bdc94
job_finish_sync(). test-blockjob should do the same when it calls the
1bdc94
function indirectly through job_cancel_sync().
1bdc94
1bdc94
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
Reviewed-by: Fam Zheng <famz@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 include/qemu/job.h    | 6 ++++++
1bdc94
 tests/test-blockjob.c | 6 ++++++
1bdc94
 2 files changed, 12 insertions(+)
1bdc94
1bdc94
diff --git a/include/qemu/job.h b/include/qemu/job.h
1bdc94
index 407d549..35ac7a9 100644
1bdc94
--- a/include/qemu/job.h
1bdc94
+++ b/include/qemu/job.h
1bdc94
@@ -509,6 +509,8 @@ void job_user_cancel(Job *job, bool force, Error **errp);
1bdc94
  *
1bdc94
  * Returns the return value from the job if the job actually completed
1bdc94
  * during the call, or -ECANCELED if it was canceled.
1bdc94
+ *
1bdc94
+ * Callers must hold the AioContext lock of job->aio_context.
1bdc94
  */
1bdc94
 int job_cancel_sync(Job *job);
1bdc94
 
1bdc94
@@ -526,6 +528,8 @@ void job_cancel_sync_all(void);
1bdc94
  * function).
1bdc94
  *
1bdc94
  * Returns the return value from the job.
1bdc94
+ *
1bdc94
+ * Callers must hold the AioContext lock of job->aio_context.
1bdc94
  */
1bdc94
 int job_complete_sync(Job *job, Error **errp);
1bdc94
 
1bdc94
@@ -551,6 +555,8 @@ void job_dismiss(Job **job, Error **errp);
1bdc94
  *
1bdc94
  * Returns 0 if the job is successfully completed, -ECANCELED if the job was
1bdc94
  * cancelled before completing, and -errno in other error cases.
1bdc94
+ *
1bdc94
+ * Callers must hold the AioContext lock of job->aio_context.
1bdc94
  */
1bdc94
 int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp);
1bdc94
 
1bdc94
diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c
1bdc94
index de4c1c2..652d1e8 100644
1bdc94
--- a/tests/test-blockjob.c
1bdc94
+++ b/tests/test-blockjob.c
1bdc94
@@ -223,6 +223,10 @@ static void cancel_common(CancelJob *s)
1bdc94
     BlockJob *job = &s->common;
1bdc94
     BlockBackend *blk = s->blk;
1bdc94
     JobStatus sts = job->job.status;
1bdc94
+    AioContext *ctx;
1bdc94
+
1bdc94
+    ctx = job->job.aio_context;
1bdc94
+    aio_context_acquire(ctx);
1bdc94
 
1bdc94
     job_cancel_sync(&job->job);
1bdc94
     if (sts != JOB_STATUS_CREATED && sts != JOB_STATUS_CONCLUDED) {
1bdc94
@@ -232,6 +236,8 @@ static void cancel_common(CancelJob *s)
1bdc94
     assert(job->job.status == JOB_STATUS_NULL);
1bdc94
     job_unref(&job->job);
1bdc94
     destroy_blk(blk);
1bdc94
+
1bdc94
+    aio_context_release(ctx);
1bdc94
 }
1bdc94
 
1bdc94
 static void test_cancel_created(void)
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94