Blame SOURCES/kvm-job-Add-JOB_STATUS_CHANGE-QMP-event.patch

357786
From 72b18613852189fb6b2c1a8e88f5bd83749dfe2e Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Tue, 26 Jun 2018 09:48:31 +0200
357786
Subject: [PATCH 62/89] job: Add JOB_STATUS_CHANGE QMP event
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180626094856.6924-49-kwolf@redhat.com>
357786
Patchwork-id: 81121
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 48/73] job: Add JOB_STATUS_CHANGE QMP event
357786
Bugzilla: 1513543
357786
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
357786
RH-Acked-by: Max Reitz <mreitz@redhat.com>
357786
RH-Acked-by: Fam Zheng <famz@redhat.com>
357786
357786
This adds a QMP event that is emitted whenever a job transitions from
357786
one status to another.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Eric Blake <eblake@redhat.com>
357786
(cherry picked from commit 1dac83f1a10c4c66858075970e199f4e4a8d8b71)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 job.c                         |  10 +++
357786
 qapi/job.json                 |  14 ++++
357786
 tests/qemu-iotests/030        |  17 +++-
357786
 tests/qemu-iotests/040        |   2 +
357786
 tests/qemu-iotests/041        |  17 +++-
357786
 tests/qemu-iotests/094.out    |   7 ++
357786
 tests/qemu-iotests/095        |   2 +-
357786
 tests/qemu-iotests/095.out    |   6 ++
357786
 tests/qemu-iotests/109        |   2 +-
357786
 tests/qemu-iotests/109.out    | 178 ++++++++++++++++++++++++++++++++++++------
357786
 tests/qemu-iotests/124        |   8 ++
357786
 tests/qemu-iotests/127.out    |   7 ++
357786
 tests/qemu-iotests/141        |  13 ++-
357786
 tests/qemu-iotests/141.out    |  29 +++++++
357786
 tests/qemu-iotests/144        |   2 +-
357786
 tests/qemu-iotests/144.out    |   7 ++
357786
 tests/qemu-iotests/156        |   2 +-
357786
 tests/qemu-iotests/156.out    |   7 ++
357786
 tests/qemu-iotests/185        |  12 +--
357786
 tests/qemu-iotests/185.out    |  10 +++
357786
 tests/qemu-iotests/191        |   4 +-
357786
 tests/qemu-iotests/191.out    | 132 +++++++++++++++++++++++++++++++
357786
 tests/qemu-iotests/iotests.py |   5 ++
357786
 23 files changed, 449 insertions(+), 44 deletions(-)
357786
357786
diff --git a/job.c b/job.c
357786
index 2046d2f..599a104 100644
357786
--- a/job.c
357786
+++ b/job.c
357786
@@ -30,6 +30,7 @@
357786
 #include "qemu/id.h"
357786
 #include "qemu/main-loop.h"
357786
 #include "trace-root.h"
357786
+#include "qapi/qapi-events-job.h"
357786
 
357786
 static QLIST_HEAD(, Job) jobs = QLIST_HEAD_INITIALIZER(jobs);
357786
 
357786
@@ -157,6 +158,11 @@ static int job_txn_apply(JobTxn *txn, int fn(Job *), bool lock)
357786
     return rc;
357786
 }
357786
 
357786
+static bool job_is_internal(Job *job)
357786
+{
357786
+    return (job->id == NULL);
357786
+}
357786
+
357786
 static void job_state_transition(Job *job, JobStatus s1)
357786
 {
357786
     JobStatus s0 = job->status;
357786
@@ -166,6 +172,10 @@ static void job_state_transition(Job *job, JobStatus s1)
357786
                                JobStatus_str(s0), JobStatus_str(s1));
357786
     assert(JobSTT[s0][s1]);
357786
     job->status = s1;
357786
+
357786
+    if (!job_is_internal(job) && s1 != s0) {
357786
+        qapi_event_send_job_status_change(job->id, job->status, &error_abort);
357786
+    }
357786
 }
357786
 
357786
 int job_apply_verb(Job *job, JobVerb verb, Error **errp)
357786
diff --git a/qapi/job.json b/qapi/job.json
357786
index a472c0c..9fbdd0c 100644
357786
--- a/qapi/job.json
357786
+++ b/qapi/job.json
357786
@@ -92,3 +92,17 @@
357786
 { 'enum': 'JobVerb',
357786
   'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
357786
            'finalize' ] }
357786
+
357786
+##
357786
+# @JOB_STATUS_CHANGE:
357786
+#
357786
+# Emitted when a job transitions to a different status.
357786
+#
357786
+# @id: The job identifier
357786
+# @status: The new job status
357786
+#
357786
+# Since: 2.13
357786
+##
357786
+{ 'event': 'JOB_STATUS_CHANGE',
357786
+  'data': { 'id': 'str',
357786
+            'status': 'JobStatus' } }
357786
diff --git a/tests/qemu-iotests/030 b/tests/qemu-iotests/030
357786
index 640a6df..1dbc2dd 100755
357786
--- a/tests/qemu-iotests/030
357786
+++ b/tests/qemu-iotests/030
357786
@@ -304,8 +304,7 @@ class TestParallelOps(iotests.QMPTestCase):
357786
         result = self.vm.qmp('block-stream', device='node5', base=self.imgs[3], job_id='stream-node6')
357786
         self.assert_qmp(result, 'error/class', 'GenericError')
357786
 
357786
-        event = self.vm.get_qmp_event(wait=True)
357786
-        self.assertEqual(event['event'], 'BLOCK_JOB_READY')
357786
+        event = self.vm.event_wait(name='BLOCK_JOB_READY')
357786
         self.assert_qmp(event, 'data/device', 'commit-drive0')
357786
         self.assert_qmp(event, 'data/type', 'commit')
357786
         self.assert_qmp_absent(event, 'data/error')
357786
@@ -565,6 +564,8 @@ class TestEIO(TestErrors):
357786
                     self.assert_qmp(event, 'data/offset', self.STREAM_BUFFER_SIZE)
357786
                     self.assert_qmp(event, 'data/len', self.image_len)
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -596,6 +597,8 @@ class TestEIO(TestErrors):
357786
                     self.assert_qmp(event, 'data/offset', self.image_len)
357786
                     self.assert_qmp(event, 'data/len', self.image_len)
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -637,6 +640,8 @@ class TestEIO(TestErrors):
357786
                     self.assert_qmp(event, 'data/offset', self.image_len)
357786
                     self.assert_qmp(event, 'data/len', self.image_len)
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -663,6 +668,8 @@ class TestEIO(TestErrors):
357786
                     self.assert_qmp(event, 'data/offset', self.STREAM_BUFFER_SIZE)
357786
                     self.assert_qmp(event, 'data/len', self.image_len)
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -722,6 +729,8 @@ class TestENOSPC(TestErrors):
357786
                     self.assert_qmp(event, 'data/offset', self.image_len)
357786
                     self.assert_qmp(event, 'data/len', self.image_len)
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -751,7 +760,9 @@ class TestStreamStop(iotests.QMPTestCase):
357786
 
357786
         time.sleep(0.1)
357786
         events = self.vm.get_qmp_events(wait=False)
357786
-        self.assertEqual(events, [], 'unexpected QMP event: %s' % events)
357786
+        for e in events:
357786
+            self.assert_qmp(e, 'event', 'JOB_STATUS_CHANGE')
357786
+            self.assert_qmp(e, 'data/id', 'drive0')
357786
 
357786
         self.cancel_and_wait(resume=True)
357786
 
357786
diff --git a/tests/qemu-iotests/040 b/tests/qemu-iotests/040
357786
index 90b5b4f..1beb5e6 100755
357786
--- a/tests/qemu-iotests/040
357786
+++ b/tests/qemu-iotests/040
357786
@@ -162,6 +162,8 @@ class TestSingleDrive(ImageCommitTestCase):
357786
                 elif event['event'] == 'BLOCK_JOB_CANCELLED':
357786
                     self.assert_qmp(event, 'data/device', 'drive0')
357786
                     cancelled = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
                 else:
357786
                     self.fail("Unexpected event %s" % (event['event']))
357786
 
357786
diff --git a/tests/qemu-iotests/041 b/tests/qemu-iotests/041
357786
index a860a31..e945879 100755
357786
--- a/tests/qemu-iotests/041
357786
+++ b/tests/qemu-iotests/041
357786
@@ -445,6 +445,8 @@ new_state = "1"
357786
                     self.assert_qmp(event, 'data/device', 'drive0')
357786
                     self.assert_qmp(event, 'data/error', 'Input/output error')
357786
                     completed = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', 'drive0')
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         self.vm.shutdown()
357786
@@ -457,6 +459,10 @@ new_state = "1"
357786
         self.assert_qmp(result, 'return', {})
357786
 
357786
         event = self.vm.get_qmp_event(wait=True)
357786
+        while event['event'] == 'JOB_STATUS_CHANGE':
357786
+            self.assert_qmp(event, 'data/id', 'drive0')
357786
+            event = self.vm.get_qmp_event(wait=True)
357786
+
357786
         self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
357786
         self.assert_qmp(event, 'data/device', 'drive0')
357786
         self.assert_qmp(event, 'data/operation', 'read')
357786
@@ -478,6 +484,10 @@ new_state = "1"
357786
         self.assert_qmp(result, 'return', {})
357786
 
357786
         event = self.vm.get_qmp_event(wait=True)
357786
+        while event['event'] == 'JOB_STATUS_CHANGE':
357786
+            self.assert_qmp(event, 'data/id', 'drive0')
357786
+            event = self.vm.get_qmp_event(wait=True)
357786
+
357786
         self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
357786
         self.assert_qmp(event, 'data/device', 'drive0')
357786
         self.assert_qmp(event, 'data/operation', 'read')
357786
@@ -608,7 +618,7 @@ new_state = "1"
357786
                              on_target_error='ignore')
357786
         self.assert_qmp(result, 'return', {})
357786
 
357786
-        event = self.vm.get_qmp_event(wait=True)
357786
+        event = self.vm.event_wait(name='BLOCK_JOB_ERROR')
357786
         self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
357786
         self.assert_qmp(event, 'data/device', 'drive0')
357786
         self.assert_qmp(event, 'data/operation', 'write')
357786
@@ -784,7 +794,12 @@ class TestGranularity(iotests.QMPTestCase):
357786
                              sync='full', target=target_img,
357786
                              mode='absolute-paths', granularity=8192)
357786
         self.assert_qmp(result, 'return', {})
357786
+
357786
         event = self.vm.get_qmp_event(wait=60.0)
357786
+        while event['event'] == 'JOB_STATUS_CHANGE':
357786
+            self.assert_qmp(event, 'data/id', 'drive0')
357786
+            event = self.vm.get_qmp_event(wait=60.0)
357786
+
357786
         # Failures will manifest as COMPLETED/ERROR.
357786
         self.assert_qmp(event, 'event', 'BLOCK_JOB_READY')
357786
         self.complete_and_wait(drive='drive0', wait_ready=False)
357786
diff --git a/tests/qemu-iotests/094.out b/tests/qemu-iotests/094.out
357786
index f52baff..665b630 100644
357786
--- a/tests/qemu-iotests/094.out
357786
+++ b/tests/qemu-iotests/094.out
357786
@@ -2,10 +2,17 @@ QA output created by 094
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/source.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 67108864, "offset": 67108864, "speed": 0, "type": "mirror"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 67108864, "offset": 67108864, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 *** done
357786
diff --git a/tests/qemu-iotests/095 b/tests/qemu-iotests/095
357786
index 030adb2..72ecc22 100755
357786
--- a/tests/qemu-iotests/095
357786
+++ b/tests/qemu-iotests/095
357786
@@ -72,7 +72,7 @@ _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" "return"
357786
 
357786
 _send_qemu_cmd $h "{ 'execute': 'block-commit',
357786
                                  'arguments': { 'device': 'test',
357786
-                                 'top': '"${TEST_IMG}.snp1"' } }" "BLOCK_JOB_COMPLETED"
357786
+                                 'top': '"${TEST_IMG}.snp1"' } }" '"status": "null"'
357786
 
357786
 _cleanup_qemu
357786
 
357786
diff --git a/tests/qemu-iotests/095.out b/tests/qemu-iotests/095.out
357786
index 73875ca..8c093df 100644
357786
--- a/tests/qemu-iotests/095.out
357786
+++ b/tests/qemu-iotests/095.out
357786
@@ -11,8 +11,14 @@ virtual size: 5.0M (5242880 bytes)
357786
 === Running QEMU Live Commit Test ===
357786
 
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "test"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "test"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "test"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "test"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "test", "len": 104857600, "offset": 104857600, "speed": 0, "type": "commit"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "test"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "test"}}
357786
 
357786
 === Base image info after commit and resize ===
357786
 image: TEST_DIR/t.IMGFMT.base
357786
diff --git a/tests/qemu-iotests/109 b/tests/qemu-iotests/109
357786
index d70b574..acbd079 100755
357786
--- a/tests/qemu-iotests/109
357786
+++ b/tests/qemu-iotests/109
357786
@@ -64,7 +64,7 @@ function run_qemu()
357786
 
357786
     _send_qemu_cmd $QEMU_HANDLE '' "$qmp_event"
357786
     if test "$qmp_event" = BLOCK_JOB_ERROR; then
357786
-        _send_qemu_cmd $QEMU_HANDLE '' "BLOCK_JOB_COMPLETED"
357786
+        _send_qemu_cmd $QEMU_HANDLE '' '"status": "null"'
357786
     fi
357786
     _send_qemu_cmd $QEMU_HANDLE '{"execute":"query-block-jobs"}' "return"
357786
     _send_qemu_cmd $QEMU_HANDLE '{"execute":"quit"}' "return"
357786
diff --git a/tests/qemu-iotests/109.out b/tests/qemu-iotests/109.out
357786
index 8a9b936..ad0ee6f 100644
357786
--- a/tests/qemu-iotests/109.out
357786
+++ b/tests/qemu-iotests/109.out
357786
@@ -6,23 +6,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 0, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 1024, "offset": 1024, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 1024, "offset": 1024, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 1024, "offset": 1024, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -32,23 +44,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 512, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 197120, "offset": 197120, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 197120, "offset": 197120, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 197120, "offset": 197120, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -58,23 +82,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 262144, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 327680, "offset": 327680, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 327680, "offset": 327680, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 327680, "offset": 327680, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -84,23 +120,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 0, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 1024, "offset": 1024, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 1024, "offset": 1024, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 1024, "offset": 1024, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -110,23 +158,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 0, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 65536, "offset": 65536, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 65536, "offset": 65536, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 65536, "offset": 65536, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -136,23 +196,35 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 Formatting 'TEST_DIR/t.raw.src', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": 0, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 2560, "offset": 2560, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 2560, "offset": 2560, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 2560, "offset": 2560, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -161,23 +233,35 @@ Images are identical.
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": OFFSET, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 2560, "offset": 2560, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 2560, "offset": 2560, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 2560, "offset": 2560, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -186,23 +270,35 @@ Images are identical.
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": OFFSET, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 31457280, "offset": 31457280, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 31457280, "offset": 31457280, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 31457280, "offset": 31457280, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -211,23 +307,35 @@ Images are identical.
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": OFFSET, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 327680, "offset": 327680, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 327680, "offset": 327680, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 327680, "offset": 327680, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -236,23 +344,35 @@ Images are identical.
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_ERROR", "data": {"device": "src", "operation": "write", "action": "report"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": LEN, "offset": OFFSET, "speed": 0, "type": "mirror", "error": "Operation not permitted"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 {"return": []}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 2048, "offset": 2048, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 2048, "offset": 2048, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 2048, "offset": 2048, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 
357786
@@ -261,23 +381,37 @@ Images are identical.
357786
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
 {"return": {}}
357786
 WARNING: Image format was not specified for 'TEST_DIR/t.raw' and probing guessed raw.
357786
-Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
-Specify the 'raw' format explicitly to remove the restrictions.
357786
+         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
357786
+         Specify the 'raw' format explicitly to remove the restrictions.
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 512, "offset": 512, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 512, "offset": 512, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 512, "offset": 512, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "src"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "src", "len": 512, "offset": 512, "speed": 0, "type": "mirror"}}
357786
 {"return": [{"auto-finalize": true, "io-status": "ok", "device": "src", "auto-dismiss": true, "busy": false, "len": 512, "offset": 512, "status": "ready", "paused": false, "speed": 0, "ready": true, "type": "mirror"}]}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "src"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "src", "len": 512, "offset": 512, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "src"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "src"}}
357786
 Warning: Image size mismatch!
357786
 Images are identical.
357786
 *** done
357786
diff --git a/tests/qemu-iotests/124 b/tests/qemu-iotests/124
357786
index 8e76e62..3ea4ac5 100755
357786
--- a/tests/qemu-iotests/124
357786
+++ b/tests/qemu-iotests/124
357786
@@ -151,10 +151,17 @@ class TestIncrementalBackupBase(iotests.QMPTestCase):
357786
         return self.wait_qmp_backup(kwargs['device'], error)
357786
 
357786
 
357786
+    def ignore_job_status_change_events(self):
357786
+        while True:
357786
+            e = self.vm.event_wait(name="JOB_STATUS_CHANGE")
357786
+            if e['data']['status'] == 'null':
357786
+                break
357786
+
357786
     def wait_qmp_backup(self, device, error='Input/output error'):
357786
         event = self.vm.event_wait(name="BLOCK_JOB_COMPLETED",
357786
                                    match={'data': {'device': device}})
357786
         self.assertNotEqual(event, None)
357786
+        self.ignore_job_status_change_events()
357786
 
357786
         try:
357786
             failure = self.dictpath(event, 'data/error')
357786
@@ -172,6 +179,7 @@ class TestIncrementalBackupBase(iotests.QMPTestCase):
357786
         event = self.vm.event_wait(name='BLOCK_JOB_CANCELLED',
357786
                                    match={'data': {'device': device}})
357786
         self.assertNotEqual(event, None)
357786
+        self.ignore_job_status_change_events()
357786
 
357786
 
357786
     def create_anchor_backup(self, drive=None):
357786
diff --git a/tests/qemu-iotests/127.out b/tests/qemu-iotests/127.out
357786
index 543d075..83b522d 100644
357786
--- a/tests/qemu-iotests/127.out
357786
+++ b/tests/qemu-iotests/127.out
357786
@@ -5,10 +5,17 @@ Formatting 'TEST_DIR/t.IMGFMT.overlay1', fmt=IMGFMT size=65536 backing_file=TEST
357786
 wrote 42/42 bytes at offset 0
357786
 42 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "mirror"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "mirror"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "mirror", "len": 65536, "offset": 65536, "speed": 0, "type": "mirror"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "mirror"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "mirror", "len": 65536, "offset": 65536, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "mirror"}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
 *** done
357786
diff --git a/tests/qemu-iotests/141 b/tests/qemu-iotests/141
357786
index 2f9d7b9..4246d38 100755
357786
--- a/tests/qemu-iotests/141
357786
+++ b/tests/qemu-iotests/141
357786
@@ -107,7 +107,7 @@ test_blockjob \
357786
                     'format': '$IMGFMT',
357786
                     'sync': 'none'}}" \
357786
     'return' \
357786
-    'BLOCK_JOB_CANCELLED'
357786
+    '"status": "null"'
357786
 
357786
 echo
357786
 echo '=== Testing drive-mirror ==='
357786
@@ -124,7 +124,7 @@ test_blockjob \
357786
                     'format': '$IMGFMT',
357786
                     'sync': 'none'}}" \
357786
     'BLOCK_JOB_READY' \
357786
-    'BLOCK_JOB_COMPLETED'
357786
+    '"status": "null"'
357786
 
357786
 echo
357786
 echo '=== Testing active block-commit ==='
357786
@@ -138,7 +138,7 @@ test_blockjob \
357786
     "{'execute': 'block-commit',
357786
       'arguments': {'job-id': 'job0', 'device': 'drv0'}}" \
357786
     'BLOCK_JOB_READY' \
357786
-    'BLOCK_JOB_COMPLETED'
357786
+    '"status": "null"'
357786
 
357786
 echo
357786
 echo '=== Testing non-active block-commit ==='
357786
@@ -157,7 +157,7 @@ test_blockjob \
357786
                     'top':    '$TEST_DIR/m.$IMGFMT',
357786
                     'speed':  1}}" \
357786
     'return' \
357786
-    'BLOCK_JOB_CANCELLED'
357786
+    '"status": "null"'
357786
 
357786
 echo
357786
 echo '=== Testing block-stream ==='
357786
@@ -170,8 +170,7 @@ echo
357786
 $QEMU_IO -c 'write 0 1M' "$TEST_DIR/b.$IMGFMT" | _filter_qemu_io
357786
 
357786
 # With some data to stream (and @speed set to 1), block-stream will not complete
357786
-# until we send the block-job-cancel command. Therefore, no event other than
357786
-# BLOCK_JOB_CANCELLED will be emitted.
357786
+# until we send the block-job-cancel command.
357786
 
357786
 test_blockjob \
357786
     "{'execute': 'block-stream',
357786
@@ -179,7 +178,7 @@ test_blockjob \
357786
                     'device': 'drv0',
357786
                     'speed': 1}}" \
357786
     'return' \
357786
-    'BLOCK_JOB_CANCELLED'
357786
+    '"status": "null"'
357786
 
357786
 _cleanup_qemu
357786
 
357786
diff --git a/tests/qemu-iotests/141.out b/tests/qemu-iotests/141.out
357786
index 82e763b..f252c86 100644
357786
--- a/tests/qemu-iotests/141.out
357786
+++ b/tests/qemu-iotests/141.out
357786
@@ -8,31 +8,50 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/m.
357786
 
357786
 {"return": {}}
357786
 Formatting 'TEST_DIR/o.IMGFMT', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/t.IMGFMT backing_fmt=IMGFMT
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "job0"}}
357786
 {"return": {}}
357786
 {"error": {"class": "GenericError", "desc": "Node drv0 is in use"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_CANCELLED", "data": {"device": "job0", "len": 1048576, "offset": 0, "speed": 0, "type": "backup"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "job0"}}
357786
 {"return": {}}
357786
 
357786
 === Testing drive-mirror ===
357786
 
357786
 {"return": {}}
357786
 Formatting 'TEST_DIR/o.IMGFMT', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/t.IMGFMT backing_fmt=IMGFMT
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "job0", "len": 0, "offset": 0, "speed": 0, "type": "mirror"}}
357786
 {"return": {}}
357786
 {"error": {"class": "GenericError", "desc": "Node 'drv0' is busy: node is used as backing hd of 'NODE_NAME'"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "job0", "len": 0, "offset": 0, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "job0"}}
357786
 {"return": {}}
357786
 
357786
 === Testing active block-commit ===
357786
 
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "job0", "len": 0, "offset": 0, "speed": 0, "type": "commit"}}
357786
 {"return": {}}
357786
 {"error": {"class": "GenericError", "desc": "Node 'drv0' is busy: node is used as backing hd of 'NODE_NAME'"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "job0", "len": 0, "offset": 0, "speed": 0, "type": "commit"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "job0"}}
357786
 {"return": {}}
357786
 
357786
 === Testing non-active block-commit ===
357786
@@ -40,10 +59,15 @@ Formatting 'TEST_DIR/o.IMGFMT', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/t.
357786
 wrote 1048576/1048576 bytes at offset 0
357786
 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "job0"}}
357786
 {"return": {}}
357786
 {"error": {"class": "GenericError", "desc": "Node drv0 is in use"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_CANCELLED", "data": {"device": "job0", "len": 1048576, "offset": 524288, "speed": 1, "type": "commit"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "job0"}}
357786
 {"return": {}}
357786
 
357786
 === Testing block-stream ===
357786
@@ -51,9 +75,14 @@ wrote 1048576/1048576 bytes at offset 0
357786
 wrote 1048576/1048576 bytes at offset 0
357786
 1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "job0"}}
357786
 {"return": {}}
357786
 {"error": {"class": "GenericError", "desc": "Node drv0 is in use"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "aborting", "id": "job0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_CANCELLED", "data": {"device": "job0", "len": 1048576, "offset": 524288, "speed": 1, "type": "stream"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "job0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "job0"}}
357786
 {"return": {}}
357786
 *** done
357786
diff --git a/tests/qemu-iotests/144 b/tests/qemu-iotests/144
357786
index 00de3c33..4b91571 100755
357786
--- a/tests/qemu-iotests/144
357786
+++ b/tests/qemu-iotests/144
357786
@@ -93,7 +93,7 @@ _send_qemu_cmd $h "{ 'execute': 'block-job-complete',
357786
                                 'arguments': {
357786
                                                 'device': 'virtio0'
357786
                                               }
357786
-                   }" "COMPLETED"
357786
+                   }" '"status": "null"'
357786
 
357786
 echo
357786
 echo === Performing Live Snapshot 2 ===
357786
diff --git a/tests/qemu-iotests/144.out b/tests/qemu-iotests/144.out
357786
index 014b281..5529920 100644
357786
--- a/tests/qemu-iotests/144.out
357786
+++ b/tests/qemu-iotests/144.out
357786
@@ -12,10 +12,17 @@ Formatting 'TEST_DIR/tmp.qcow2', fmt=qcow2 size=536870912 backing_file=TEST_DIR/
357786
 
357786
 === Performing block-commit on active layer ===
357786
 
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "virtio0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "virtio0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "virtio0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "virtio0", "len": 0, "offset": 0, "speed": 0, "type": "commit"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "virtio0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "virtio0"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "virtio0", "len": 0, "offset": 0, "speed": 0, "type": "commit"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "virtio0"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "virtio0"}}
357786
 
357786
 === Performing Live Snapshot 2 ===
357786
 
357786
diff --git a/tests/qemu-iotests/156 b/tests/qemu-iotests/156
357786
index e75dc4d..0a9a098 100755
357786
--- a/tests/qemu-iotests/156
357786
+++ b/tests/qemu-iotests/156
357786
@@ -119,7 +119,7 @@ _send_qemu_cmd $QEMU_HANDLE \
357786
 
357786
 _send_qemu_cmd $QEMU_HANDLE \
357786
     '' \
357786
-    'BLOCK_JOB_COMPLETED'
357786
+    '"status": "null"'
357786
 
357786
 # Remove the source images
357786
 rm -f "$TEST_IMG{,.backing,.overlay}"
357786
diff --git a/tests/qemu-iotests/156.out b/tests/qemu-iotests/156.out
357786
index f96a564..34c057b 100644
357786
--- a/tests/qemu-iotests/156.out
357786
+++ b/tests/qemu-iotests/156.out
357786
@@ -12,13 +12,20 @@ wrote 131072/131072 bytes at offset 131072
357786
 128 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": ""}
357786
 Formatting 'TEST_DIR/t.IMGFMT.target.overlay', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/t.IMGFMT.target
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "source"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "source"}}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "ready", "id": "source"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_READY", "data": {"device": "source", "len": 131072, "offset": 131072, "speed": 0, "type": "mirror"}}
357786
 wrote 65536/65536 bytes at offset 196608
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
 {"return": ""}
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "source"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "pending", "id": "source"}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_JOB_COMPLETED", "data": {"device": "source", "len": 196608, "offset": 196608, "speed": 0, "type": "mirror"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "concluded", "id": "source"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "null", "id": "source"}}
357786
 
357786
 read 65536/65536 bytes at offset 0
357786
 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
357786
diff --git a/tests/qemu-iotests/185 b/tests/qemu-iotests/185
357786
index 9a2d317..567ba67 100755
357786
--- a/tests/qemu-iotests/185
357786
+++ b/tests/qemu-iotests/185
357786
@@ -118,8 +118,10 @@ _send_qemu_cmd $h \
357786
 # If we don't sleep here 'quit' command races with disk I/O
357786
 sleep 0.5
357786
 
357786
+# Ignore the JOB_STATUS_CHANGE events while shutting down the VM. Depending on
357786
+# the timing, jobs may or may not transition through a paused state.
357786
 _send_qemu_cmd $h "{ 'execute': 'quit' }" "return"
357786
-wait=1 _cleanup_qemu
357786
+wait=1 _cleanup_qemu | grep -v 'JOB_STATUS_CHANGE'
357786
 
357786
 echo
357786
 echo === Start active commit job and exit qemu ===
357786
@@ -141,7 +143,7 @@ _send_qemu_cmd $h \
357786
 sleep 0.5
357786
 
357786
 _send_qemu_cmd $h "{ 'execute': 'quit' }" "return"
357786
-wait=1 _cleanup_qemu
357786
+wait=1 _cleanup_qemu | grep -v 'JOB_STATUS_CHANGE'
357786
 
357786
 echo
357786
 echo === Start mirror job and exit qemu ===
357786
@@ -166,7 +168,7 @@ _send_qemu_cmd $h \
357786
 sleep 0.5
357786
 
357786
 _send_qemu_cmd $h "{ 'execute': 'quit' }" "return"
357786
-wait=1 _cleanup_qemu
357786
+wait=1 _cleanup_qemu | grep -v 'JOB_STATUS_CHANGE'
357786
 
357786
 echo
357786
 echo === Start backup job and exit qemu ===
357786
@@ -190,7 +192,7 @@ _send_qemu_cmd $h \
357786
 sleep 0.5
357786
 
357786
 _send_qemu_cmd $h "{ 'execute': 'quit' }" "return"
357786
-wait=1 _cleanup_qemu
357786
+wait=1 _cleanup_qemu | grep -v 'JOB_STATUS_CHANGE'
357786
 
357786
 echo
357786
 echo === Start streaming job and exit qemu ===
357786
@@ -211,7 +213,7 @@ _send_qemu_cmd $h \
357786
 sleep 0.5
357786
 
357786
 _send_qemu_cmd $h "{ 'execute': 'quit' }" "return"
357786
-wait=1 _cleanup_qemu
357786
+wait=1 _cleanup_qemu | grep -v 'JOB_STATUS_CHANGE'
357786
 
357786
 _check_test_img
357786
 
357786
diff --git a/tests/qemu-iotests/185.out b/tests/qemu-iotests/185.out
357786
index 57eaf8d..4e0ca0d 100644
357786
--- a/tests/qemu-iotests/185.out
357786
+++ b/tests/qemu-iotests/185.out
357786
@@ -17,6 +17,8 @@ Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 backing_file=TEST_DIR/t.q
357786
 
357786
 === Start commit job and exit qemu ===
357786
 
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "disk"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "disk"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
@@ -25,6 +27,8 @@ Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 backing_file=TEST_DIR/t.q
357786
 === Start active commit job and exit qemu ===
357786
 
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "disk"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "disk"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
@@ -34,6 +38,8 @@ Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 size=67108864 backing_file=TEST_DIR/t.q
357786
 
357786
 {"return": {}}
357786
 Formatting 'TEST_DIR/t.qcow2.copy', fmt=qcow2 size=67108864 cluster_size=65536 lazy_refcounts=off refcount_bits=16
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "disk"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "disk"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
@@ -43,6 +49,8 @@ Formatting 'TEST_DIR/t.qcow2.copy', fmt=qcow2 size=67108864 cluster_size=65536 l
357786
 
357786
 {"return": {}}
357786
 Formatting 'TEST_DIR/t.qcow2.copy', fmt=qcow2 size=67108864 cluster_size=65536 lazy_refcounts=off refcount_bits=16
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "disk"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "disk"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
@@ -51,6 +59,8 @@ Formatting 'TEST_DIR/t.qcow2.copy', fmt=qcow2 size=67108864 cluster_size=65536 l
357786
 === Start streaming job and exit qemu ===
357786
 
357786
 {"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "created", "id": "disk"}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "running", "id": "disk"}}
357786
 {"return": {}}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
diff --git a/tests/qemu-iotests/191 b/tests/qemu-iotests/191
357786
index dfad655..b3629ff 100755
357786
--- a/tests/qemu-iotests/191
357786
+++ b/tests/qemu-iotests/191
357786
@@ -83,7 +83,7 @@ _send_qemu_cmd $h \
357786
                       'device': 'top',
357786
                       'base':'$TEST_IMG.base',
357786
                       'top': '$TEST_IMG.mid' } }" \
357786
-    "BLOCK_JOB_COMPLETED"
357786
+    '"status": "null"'
357786
 _send_qemu_cmd $h "" "^}"
357786
 
357786
 echo
357786
@@ -131,7 +131,7 @@ _send_qemu_cmd $h \
357786
                       'device': 'top',
357786
                       'base':'$TEST_IMG.base',
357786
                       'top': '$TEST_IMG.mid' } }" \
357786
-    "BLOCK_JOB_COMPLETED"
357786
+    '"status": "null"'
357786
 _send_qemu_cmd $h "" "^}"
357786
 
357786
 echo
357786
diff --git a/tests/qemu-iotests/191.out b/tests/qemu-iotests/191.out
357786
index 190c5f0..31a0c7d 100644
357786
--- a/tests/qemu-iotests/191.out
357786
+++ b/tests/qemu-iotests/191.out
357786
@@ -16,6 +16,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
 === Perform commit job ===
357786
 
357786
 {
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "created",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "running",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
     "return": {
357786
     }
357786
 }
357786
@@ -24,6 +46,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
         "seconds":  TIMESTAMP,
357786
         "microseconds":  TIMESTAMP
357786
     },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "waiting",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "pending",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
     "event": "BLOCK_JOB_COMPLETED",
357786
     "data": {
357786
         "device": "commit0",
357786
@@ -33,6 +77,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
         "type": "commit"
357786
     }
357786
 }
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "concluded",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "null",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
 
357786
 === Check that both top and top2 point to base now ===
357786
 
357786
@@ -356,6 +422,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
 === Perform commit job ===
357786
 
357786
 {
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "created",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "running",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
     "return": {
357786
     }
357786
 }
357786
@@ -364,6 +452,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
         "seconds":  TIMESTAMP,
357786
         "microseconds":  TIMESTAMP
357786
     },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "waiting",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "pending",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
     "event": "BLOCK_JOB_COMPLETED",
357786
     "data": {
357786
         "device": "commit0",
357786
@@ -373,6 +483,28 @@ wrote 65536/65536 bytes at offset 1048576
357786
         "type": "commit"
357786
     }
357786
 }
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "concluded",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
+{
357786
+    "timestamp": {
357786
+        "seconds":  TIMESTAMP,
357786
+        "microseconds":  TIMESTAMP
357786
+    },
357786
+    "event": "JOB_STATUS_CHANGE",
357786
+    "data": {
357786
+        "status": "null",
357786
+        "id": "commit0"
357786
+    }
357786
+}
357786
 
357786
 === Check that both top and top2 point to base now ===
357786
 
357786
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
357786
index 9747ca9..3dab1bf 100644
357786
--- a/tests/qemu-iotests/iotests.py
357786
+++ b/tests/qemu-iotests/iotests.py
357786
@@ -473,6 +473,9 @@ class QMPTestCase(unittest.TestCase):
357786
                     self.assert_qmp(event, 'data/device', drive)
357786
                     result = event
357786
                     cancelled = True
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', drive)
357786
+
357786
 
357786
         self.assert_no_active_block_jobs()
357786
         return result
357786
@@ -488,6 +491,8 @@ class QMPTestCase(unittest.TestCase):
357786
                         self.assert_qmp(event, 'data/offset', event['data']['len'])
357786
                     self.assert_no_active_block_jobs()
357786
                     return event
357786
+                elif event['event'] == 'JOB_STATUS_CHANGE':
357786
+                    self.assert_qmp(event, 'data/id', drive)
357786
 
357786
     def wait_ready(self, drive='drive0'):
357786
         '''Wait until a block job BLOCK_JOB_READY event'''
357786
-- 
357786
1.8.3.1
357786