Blame SOURCES/kvm-job-Add-error-message-for-failing-jobs.patch

383d26
From 864c5b5a3146aac264065f9ef5cf397451747440 Mon Sep 17 00:00:00 2001
383d26
From: Kevin Wolf <kwolf@redhat.com>
383d26
Date: Tue, 26 Jun 2018 09:48:39 +0200
383d26
Subject: [PATCH 70/89] job: Add error message for failing jobs
383d26
383d26
RH-Author: Kevin Wolf <kwolf@redhat.com>
383d26
Message-id: <20180626094856.6924-57-kwolf@redhat.com>
383d26
Patchwork-id: 81110
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 56/73] job: Add error message for failing jobs
383d26
Bugzilla: 1513543
383d26
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
383d26
RH-Acked-by: Max Reitz <mreitz@redhat.com>
383d26
RH-Acked-by: Fam Zheng <famz@redhat.com>
383d26
383d26
So far we relied on job->ret and strerror() to produce an error message
383d26
for failed jobs. Not surprisingly, this tends to result in completely
383d26
useless messages.
383d26
383d26
This adds a Job.error field that can contain an error string for a
383d26
failing job, and a parameter to job_completed() that sets the field. As
383d26
a default, if NULL is passed, we continue to use strerror(job->ret).
383d26
383d26
All existing callers are changed to pass NULL. They can be improved in
383d26
separate patches.
383d26
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Reviewed-by: Max Reitz <mreitz@redhat.com>
383d26
Reviewed-by: Jeff Cody <jcody@redhat.com>
383d26
(cherry picked from commit 1266c9b9f5fa05877b979eece5963a2bd99c3bfd)
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/backup.c            |  2 +-
383d26
 block/commit.c            |  2 +-
383d26
 block/mirror.c            |  2 +-
383d26
 block/stream.c            |  2 +-
383d26
 include/qemu/job.h        |  7 ++++++-
383d26
 job-qmp.c                 |  9 ++-------
383d26
 job.c                     | 16 ++++++++++++++--
383d26
 tests/test-bdrv-drain.c   |  2 +-
383d26
 tests/test-blockjob-txn.c |  2 +-
383d26
 tests/test-blockjob.c     |  2 +-
383d26
 10 files changed, 29 insertions(+), 17 deletions(-)
383d26
383d26
diff --git a/block/backup.c b/block/backup.c
383d26
index 4e228e9..5661435 100644
383d26
--- a/block/backup.c
383d26
+++ b/block/backup.c
383d26
@@ -321,7 +321,7 @@ static void backup_complete(Job *job, void *opaque)
383d26
 {
383d26
     BackupCompleteData *data = opaque;
383d26
 
383d26
-    job_completed(job, data->ret);
383d26
+    job_completed(job, data->ret, NULL);
383d26
     g_free(data);
383d26
 }
383d26
 
383d26
diff --git a/block/commit.c b/block/commit.c
383d26
index 6206661..e1814d9 100644
383d26
--- a/block/commit.c
383d26
+++ b/block/commit.c
383d26
@@ -117,7 +117,7 @@ static void commit_complete(Job *job, void *opaque)
383d26
      * bdrv_set_backing_hd() to fail. */
383d26
     block_job_remove_all_bdrv(bjob);
383d26
 
383d26
-    job_completed(job, ret);
383d26
+    job_completed(job, ret, NULL);
383d26
     g_free(data);
383d26
 
383d26
     /* If bdrv_drop_intermediate() didn't already do that, remove the commit
383d26
diff --git a/block/mirror.c b/block/mirror.c
383d26
index dcb66ec..435268b 100644
383d26
--- a/block/mirror.c
383d26
+++ b/block/mirror.c
383d26
@@ -581,7 +581,7 @@ static void mirror_exit(Job *job, void *opaque)
383d26
     blk_set_perm(bjob->blk, 0, BLK_PERM_ALL, &error_abort);
383d26
     blk_insert_bs(bjob->blk, mirror_top_bs, &error_abort);
383d26
 
383d26
-    job_completed(job, data->ret);
383d26
+    job_completed(job, data->ret, NULL);
383d26
 
383d26
     g_free(data);
383d26
     bdrv_drained_end(src);
383d26
diff --git a/block/stream.c b/block/stream.c
383d26
index a5d6e0c..9264b68 100644
383d26
--- a/block/stream.c
383d26
+++ b/block/stream.c
383d26
@@ -93,7 +93,7 @@ out:
383d26
     }
383d26
 
383d26
     g_free(s->backing_file_str);
383d26
-    job_completed(job, data->ret);
383d26
+    job_completed(job, data->ret, NULL);
383d26
     g_free(data);
383d26
 }
383d26
 
383d26
diff --git a/include/qemu/job.h b/include/qemu/job.h
383d26
index 8c8badf..1d82053 100644
383d26
--- a/include/qemu/job.h
383d26
+++ b/include/qemu/job.h
383d26
@@ -124,6 +124,9 @@ typedef struct Job {
383d26
     /** Estimated progress_current value at the completion of the job */
383d26
     int64_t progress_total;
383d26
 
383d26
+    /** Error string for a failed job (NULL if, and only if, job->ret == 0) */
383d26
+    char *error;
383d26
+
383d26
     /** ret code passed to job_completed. */
383d26
     int ret;
383d26
 
383d26
@@ -466,13 +469,15 @@ void job_transition_to_ready(Job *job);
383d26
 /**
383d26
  * @job: The job being completed.
383d26
  * @ret: The status code.
383d26
+ * @error: The error message for a failing job (only with @ret < 0). If @ret is
383d26
+ *         negative, but NULL is given for @error, strerror() is used.
383d26
  *
383d26
  * Marks @job as completed. If @ret is non-zero, the job transaction it is part
383d26
  * of is aborted. If @ret is zero, the job moves into the WAITING state. If it
383d26
  * is the last job to complete in its transaction, all jobs in the transaction
383d26
  * move from WAITING to PENDING.
383d26
  */
383d26
-void job_completed(Job *job, int ret);
383d26
+void job_completed(Job *job, int ret, Error *error);
383d26
 
383d26
 /** Asynchronously complete the specified @job. */
383d26
 void job_complete(Job *job, Error **errp);
383d26
diff --git a/job-qmp.c b/job-qmp.c
383d26
index 7f38f63..410775d 100644
383d26
--- a/job-qmp.c
383d26
+++ b/job-qmp.c
383d26
@@ -136,14 +136,9 @@ void qmp_job_dismiss(const char *id, Error **errp)
383d26
 static JobInfo *job_query_single(Job *job, Error **errp)
383d26
 {
383d26
     JobInfo *info;
383d26
-    const char *errmsg = NULL;
383d26
 
383d26
     assert(!job_is_internal(job));
383d26
 
383d26
-    if (job->ret < 0) {
383d26
-        errmsg = strerror(-job->ret);
383d26
-    }
383d26
-
383d26
     info = g_new(JobInfo, 1);
383d26
     *info = (JobInfo) {
383d26
         .id                 = g_strdup(job->id),
383d26
@@ -151,8 +146,8 @@ static JobInfo *job_query_single(Job *job, Error **errp)
383d26
         .status             = job->status,
383d26
         .current_progress   = job->progress_current,
383d26
         .total_progress     = job->progress_total,
383d26
-        .has_error          = !!errmsg,
383d26
-        .error              = g_strdup(errmsg),
383d26
+        .has_error          = !!job->error,
383d26
+        .error              = g_strdup(job->error),
383d26
     };
383d26
 
383d26
     return info;
383d26
diff --git a/job.c b/job.c
383d26
index f026661..84e1402 100644
383d26
--- a/job.c
383d26
+++ b/job.c
383d26
@@ -369,6 +369,7 @@ void job_unref(Job *job)
383d26
 
383d26
         QLIST_REMOVE(job, job_list);
383d26
 
383d26
+        g_free(job->error);
383d26
         g_free(job->id);
383d26
         g_free(job);
383d26
     }
383d26
@@ -660,6 +661,9 @@ static void job_update_rc(Job *job)
383d26
         job->ret = -ECANCELED;
383d26
     }
383d26
     if (job->ret) {
383d26
+        if (!job->error) {
383d26
+            job->error = g_strdup(strerror(-job->ret));
383d26
+        }
383d26
         job_state_transition(job, JOB_STATUS_ABORTING);
383d26
     }
383d26
 }
383d26
@@ -782,6 +786,7 @@ static int job_prepare(Job *job)
383d26
 {
383d26
     if (job->ret == 0 && job->driver->prepare) {
383d26
         job->ret = job->driver->prepare(job);
383d26
+        job_update_rc(job);
383d26
     }
383d26
     return job->ret;
383d26
 }
383d26
@@ -855,10 +860,17 @@ static void job_completed_txn_success(Job *job)
383d26
     }
383d26
 }
383d26
 
383d26
-void job_completed(Job *job, int ret)
383d26
+void job_completed(Job *job, int ret, Error *error)
383d26
 {
383d26
     assert(job && job->txn && !job_is_completed(job));
383d26
+
383d26
     job->ret = ret;
383d26
+    if (error) {
383d26
+        assert(job->ret < 0);
383d26
+        job->error = g_strdup(error_get_pretty(error));
383d26
+        error_free(error);
383d26
+    }
383d26
+
383d26
     job_update_rc(job);
383d26
     trace_job_completed(job, ret, job->ret);
383d26
     if (job->ret) {
383d26
@@ -876,7 +888,7 @@ void job_cancel(Job *job, bool force)
383d26
     }
383d26
     job_cancel_async(job, force);
383d26
     if (!job_started(job)) {
383d26
-        job_completed(job, -ECANCELED);
383d26
+        job_completed(job, -ECANCELED, NULL);
383d26
     } else if (job->deferred_to_main_loop) {
383d26
         job_completed_txn_abort(job);
383d26
     } else {
383d26
diff --git a/tests/test-bdrv-drain.c b/tests/test-bdrv-drain.c
383d26
index 2cba63b..a11c4cf 100644
383d26
--- a/tests/test-bdrv-drain.c
383d26
+++ b/tests/test-bdrv-drain.c
383d26
@@ -498,7 +498,7 @@ typedef struct TestBlockJob {
383d26
 
383d26
 static void test_job_completed(Job *job, void *opaque)
383d26
 {
383d26
-    job_completed(job, 0);
383d26
+    job_completed(job, 0, NULL);
383d26
 }
383d26
 
383d26
 static void coroutine_fn test_job_start(void *opaque)
383d26
diff --git a/tests/test-blockjob-txn.c b/tests/test-blockjob-txn.c
383d26
index fce8366..58d9b87 100644
383d26
--- a/tests/test-blockjob-txn.c
383d26
+++ b/tests/test-blockjob-txn.c
383d26
@@ -34,7 +34,7 @@ static void test_block_job_complete(Job *job, void *opaque)
383d26
         rc = -ECANCELED;
383d26
     }
383d26
 
383d26
-    job_completed(job, rc);
383d26
+    job_completed(job, rc, NULL);
383d26
     bdrv_unref(bs);
383d26
 }
383d26
 
383d26
diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c
383d26
index e408d52..cb42f06 100644
383d26
--- a/tests/test-blockjob.c
383d26
+++ b/tests/test-blockjob.c
383d26
@@ -167,7 +167,7 @@ static void cancel_job_completed(Job *job, void *opaque)
383d26
 {
383d26
     CancelJob *s = opaque;
383d26
     s->completed = true;
383d26
-    job_completed(job, 0);
383d26
+    job_completed(job, 0, NULL);
383d26
 }
383d26
 
383d26
 static void cancel_job_complete(Job *job, Error **errp)
383d26
-- 
383d26
1.8.3.1
383d26