|
|
357786 |
From 9382be6ea4b3785bcc3a4868e1f69348157ba5b1 Mon Sep 17 00:00:00 2001
|
|
|
357786 |
From: Jeffrey Cody <jcody@redhat.com>
|
|
|
357786 |
Date: Tue, 28 Aug 2018 21:08:16 +0200
|
|
|
357786 |
Subject: [PATCH 03/29] block: for jobs, do not clear user_paused until after
|
|
|
357786 |
the resume
|
|
|
357786 |
|
|
|
357786 |
RH-Author: Jeffrey Cody <jcody@redhat.com>
|
|
|
357786 |
Message-id: <b7236ceff2905bca32576f0932fe569344ecbc5e.1535490170.git.jcody@redhat.com>
|
|
|
357786 |
Patchwork-id: 81957
|
|
|
357786 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 1/3] block: for jobs, do not clear user_paused until after the resume
|
|
|
357786 |
Bugzilla: 1605026
|
|
|
357786 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
357786 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
357786 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
357786 |
|
|
|
357786 |
The function job_cancel_async() will always cause an assert for blockjob
|
|
|
357786 |
user resume. We set job->user_paused to false, and then call
|
|
|
357786 |
job->driver->user_resume(). In the case of blockjobs, this is the
|
|
|
357786 |
block_job_user_resume() function.
|
|
|
357786 |
|
|
|
357786 |
In that function, we assert that job.user_paused is set to true.
|
|
|
357786 |
Unfortunately, right before calling this function, it has explicitly
|
|
|
357786 |
been set to false.
|
|
|
357786 |
|
|
|
357786 |
The fix is pretty simple: set job->user_paused to false only after the
|
|
|
357786 |
job user_resume() function has been called.
|
|
|
357786 |
|
|
|
357786 |
Reviewed-by: John Snow <jsnow@redhat.com>
|
|
|
357786 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
357786 |
Signed-off-by: Jeff Cody <jcody@redhat.com>
|
|
|
357786 |
Message-id: bb183b77d8f2dd6bd67b8da559a90ac1e74b2052.1534868459.git.jcody@redhat.com
|
|
|
357786 |
Signed-off-by: Jeff Cody <jcody@redhat.com>
|
|
|
357786 |
(cherry picked from commit e321c0597c7590499bacab239d7f86e257f96bcd)
|
|
|
357786 |
Signed-off-by: Jeff Cody <jcody@redhat.com>
|
|
|
357786 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
357786 |
---
|
|
|
357786 |
job.c | 2 +-
|
|
|
357786 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
357786 |
|
|
|
357786 |
diff --git a/job.c b/job.c
|
|
|
357786 |
index 84e1402..95dc998 100644
|
|
|
357786 |
--- a/job.c
|
|
|
357786 |
+++ b/job.c
|
|
|
357786 |
@@ -727,10 +727,10 @@ static void job_cancel_async(Job *job, bool force)
|
|
|
357786 |
{
|
|
|
357786 |
if (job->user_paused) {
|
|
|
357786 |
/* Do not call job_enter here, the caller will handle it. */
|
|
|
357786 |
- job->user_paused = false;
|
|
|
357786 |
if (job->driver->user_resume) {
|
|
|
357786 |
job->driver->user_resume(job);
|
|
|
357786 |
}
|
|
|
357786 |
+ job->user_paused = false;
|
|
|
357786 |
assert(job->pause_count > 0);
|
|
|
357786 |
job->pause_count--;
|
|
|
357786 |
}
|
|
|
357786 |
--
|
|
|
357786 |
1.8.3.1
|
|
|
357786 |
|