2020-09-28 18:48:32 +03:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Stefan Reiter <s.reiter@proxmox.com>
|
|
|
|
Date: Thu, 20 Aug 2020 14:31:59 +0200
|
|
|
|
Subject: [PATCH] PVE: Add sequential job transaction support
|
|
|
|
|
2020-10-29 16:10:36 +03:00
|
|
|
Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
|
2022-01-13 12:34:33 +03:00
|
|
|
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
2020-09-28 18:48:32 +03:00
|
|
|
---
|
|
|
|
include/qemu/job.h | 12 ++++++++++++
|
2022-12-14 17:16:32 +03:00
|
|
|
job.c | 34 ++++++++++++++++++++++++++++++++++
|
|
|
|
2 files changed, 46 insertions(+)
|
2020-09-28 18:48:32 +03:00
|
|
|
|
|
|
|
diff --git a/include/qemu/job.h b/include/qemu/job.h
|
2022-12-14 17:16:32 +03:00
|
|
|
index e502787dd8..963cf2bef5 100644
|
2020-09-28 18:48:32 +03:00
|
|
|
--- a/include/qemu/job.h
|
|
|
|
+++ b/include/qemu/job.h
|
2022-12-14 17:16:32 +03:00
|
|
|
@@ -381,6 +381,18 @@ void job_unlock(void);
|
2020-09-28 18:48:32 +03:00
|
|
|
*/
|
|
|
|
JobTxn *job_txn_new(void);
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * Create a new transaction and set it to sequential mode, i.e. run all jobs
|
|
|
|
+ * one after the other instead of at the same time.
|
|
|
|
+ */
|
|
|
|
+JobTxn *job_txn_new_seq(void);
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Helper method to start the first job in a sequential transaction to kick it
|
|
|
|
+ * off. Other jobs will be run after this one completes.
|
|
|
|
+ */
|
|
|
|
+void job_txn_start_seq(JobTxn *txn);
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Release a reference that was previously acquired with job_txn_add_job or
|
|
|
|
* job_txn_new. If it's the last reference to the object, it will be freed.
|
|
|
|
diff --git a/job.c b/job.c
|
2022-12-14 17:16:32 +03:00
|
|
|
index 93e22d180b..2b31f1e14f 100644
|
2020-09-28 18:48:32 +03:00
|
|
|
--- a/job.c
|
|
|
|
+++ b/job.c
|
2022-12-14 17:16:32 +03:00
|
|
|
@@ -93,6 +93,8 @@ struct JobTxn {
|
2020-09-28 18:48:32 +03:00
|
|
|
|
|
|
|
/* Reference count */
|
|
|
|
int refcnt;
|
|
|
|
+
|
|
|
|
+ bool sequential;
|
|
|
|
};
|
|
|
|
|
2022-12-14 17:16:32 +03:00
|
|
|
void job_lock(void)
|
|
|
|
@@ -118,6 +120,25 @@ JobTxn *job_txn_new(void)
|
2020-09-28 18:48:32 +03:00
|
|
|
return txn;
|
|
|
|
}
|
|
|
|
|
|
|
|
+JobTxn *job_txn_new_seq(void)
|
|
|
|
+{
|
|
|
|
+ JobTxn *txn = job_txn_new();
|
|
|
|
+ txn->sequential = true;
|
|
|
|
+ return txn;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void job_txn_start_seq(JobTxn *txn)
|
|
|
|
+{
|
|
|
|
+ assert(txn->sequential);
|
|
|
|
+ assert(!txn->aborting);
|
|
|
|
+
|
|
|
|
+ Job *first = QLIST_FIRST(&txn->jobs);
|
|
|
|
+ assert(first);
|
|
|
|
+ assert(first->status == JOB_STATUS_CREATED);
|
|
|
|
+
|
|
|
|
+ job_start(first);
|
|
|
|
+}
|
|
|
|
+
|
2022-12-14 17:16:32 +03:00
|
|
|
/* Called with job_mutex held. */
|
|
|
|
static void job_txn_ref_locked(JobTxn *txn)
|
2020-09-28 18:48:32 +03:00
|
|
|
{
|
2022-12-14 17:16:32 +03:00
|
|
|
@@ -1057,6 +1078,12 @@ static void job_completed_txn_success_locked(Job *job)
|
2020-09-28 18:48:32 +03:00
|
|
|
*/
|
|
|
|
QLIST_FOREACH(other_job, &txn->jobs, txn_list) {
|
2022-12-14 17:16:32 +03:00
|
|
|
if (!job_is_completed_locked(other_job)) {
|
2020-09-28 18:48:32 +03:00
|
|
|
+ if (txn->sequential) {
|
2022-12-14 17:16:32 +03:00
|
|
|
+ job_unlock();
|
|
|
|
+ /* Needs to be called without holding the job lock */
|
2020-09-28 18:48:32 +03:00
|
|
|
+ job_start(other_job);
|
2022-12-14 17:16:32 +03:00
|
|
|
+ job_lock();
|
2020-09-28 18:48:32 +03:00
|
|
|
+ }
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(other_job->ret == 0);
|
2022-12-14 17:16:32 +03:00
|
|
|
@@ -1268,6 +1295,13 @@ int job_finish_sync_locked(Job *job,
|
2021-03-03 12:56:02 +03:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /* in a sequential transaction jobs with status CREATED can appear at time
|
|
|
|
+ * of cancelling, these have not begun work so job_enter won't do anything,
|
|
|
|
+ * let's ensure they are marked as ABORTING if required */
|
|
|
|
+ if (job->status == JOB_STATUS_CREATED && job->txn->sequential) {
|
2022-12-14 17:16:32 +03:00
|
|
|
+ job_update_rc_locked(job);
|
2021-03-03 12:56:02 +03:00
|
|
|
+ }
|
|
|
|
+
|
2022-12-14 17:16:32 +03:00
|
|
|
job_unlock();
|
|
|
|
AIO_WAIT_WHILE_UNLOCKED(job->aio_context,
|
|
|
|
(job_enter(job), !job_is_completed(job)));
|