target-i386: document how x86 gdb_num_core_regs is computed.
[qemu/ar7.git] / tests / test-blockjob-txn.c
blobf9afc3be41d32fe9cd93e3e89cf8bc911aa3aa9b
1 /*
2 * Blockjob transactions tests
4 * Copyright Red Hat, Inc. 2015
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qemu/main-loop.h"
16 #include "block/blockjob_int.h"
17 #include "sysemu/block-backend.h"
19 typedef struct {
20 BlockJob common;
21 unsigned int iterations;
22 bool use_timer;
23 int rc;
24 int *result;
25 } TestBlockJob;
27 static const BlockJobDriver test_block_job_driver = {
28 .instance_size = sizeof(TestBlockJob),
31 static void test_block_job_complete(BlockJob *job, void *opaque)
33 BlockDriverState *bs = blk_bs(job->blk);
34 int rc = (intptr_t)opaque;
36 if (block_job_is_cancelled(job)) {
37 rc = -ECANCELED;
40 block_job_completed(job, rc);
41 bdrv_unref(bs);
44 static void coroutine_fn test_block_job_run(void *opaque)
46 TestBlockJob *s = opaque;
47 BlockJob *job = &s->common;
49 while (s->iterations--) {
50 if (s->use_timer) {
51 block_job_sleep_ns(job, QEMU_CLOCK_REALTIME, 0);
52 } else {
53 block_job_yield(job);
56 if (block_job_is_cancelled(job)) {
57 break;
61 block_job_defer_to_main_loop(job, test_block_job_complete,
62 (void *)(intptr_t)s->rc);
65 typedef struct {
66 TestBlockJob *job;
67 int *result;
68 } TestBlockJobCBData;
70 static void test_block_job_cb(void *opaque, int ret)
72 TestBlockJobCBData *data = opaque;
73 if (!ret && block_job_is_cancelled(&data->job->common)) {
74 ret = -ECANCELED;
76 *data->result = ret;
77 g_free(data);
80 /* Create a block job that completes with a given return code after a given
81 * number of event loop iterations. The return code is stored in the given
82 * result pointer.
84 * The event loop iterations can either be handled automatically with a 0 delay
85 * timer, or they can be stepped manually by entering the coroutine.
87 static BlockJob *test_block_job_start(unsigned int iterations,
88 bool use_timer,
89 int rc, int *result)
91 BlockDriverState *bs;
92 TestBlockJob *s;
93 TestBlockJobCBData *data;
94 static unsigned counter;
95 char job_id[24];
97 data = g_new0(TestBlockJobCBData, 1);
98 bs = bdrv_new();
99 snprintf(job_id, sizeof(job_id), "job%u", counter++);
100 s = block_job_create(job_id, &test_block_job_driver, bs, 0,
101 BLOCK_JOB_DEFAULT, test_block_job_cb,
102 data, &error_abort);
103 s->iterations = iterations;
104 s->use_timer = use_timer;
105 s->rc = rc;
106 s->result = result;
107 s->common.co = qemu_coroutine_create(test_block_job_run, s);
108 data->job = s;
109 data->result = result;
110 qemu_coroutine_enter(s->common.co);
111 return &s->common;
114 static void test_single_job(int expected)
116 BlockJob *job;
117 BlockJobTxn *txn;
118 int result = -EINPROGRESS;
120 txn = block_job_txn_new();
121 job = test_block_job_start(1, true, expected, &result);
122 block_job_txn_add_job(txn, job);
124 if (expected == -ECANCELED) {
125 block_job_cancel(job);
128 while (result == -EINPROGRESS) {
129 aio_poll(qemu_get_aio_context(), true);
131 g_assert_cmpint(result, ==, expected);
133 block_job_txn_unref(txn);
136 static void test_single_job_success(void)
138 test_single_job(0);
141 static void test_single_job_failure(void)
143 test_single_job(-EIO);
146 static void test_single_job_cancel(void)
148 test_single_job(-ECANCELED);
151 static void test_pair_jobs(int expected1, int expected2)
153 BlockJob *job1;
154 BlockJob *job2;
155 BlockJobTxn *txn;
156 int result1 = -EINPROGRESS;
157 int result2 = -EINPROGRESS;
159 txn = block_job_txn_new();
160 job1 = test_block_job_start(1, true, expected1, &result1);
161 block_job_txn_add_job(txn, job1);
162 job2 = test_block_job_start(2, true, expected2, &result2);
163 block_job_txn_add_job(txn, job2);
165 if (expected1 == -ECANCELED) {
166 block_job_cancel(job1);
168 if (expected2 == -ECANCELED) {
169 block_job_cancel(job2);
172 while (result1 == -EINPROGRESS || result2 == -EINPROGRESS) {
173 aio_poll(qemu_get_aio_context(), true);
176 /* Failure or cancellation of one job cancels the other job */
177 if (expected1 != 0) {
178 expected2 = -ECANCELED;
179 } else if (expected2 != 0) {
180 expected1 = -ECANCELED;
183 g_assert_cmpint(result1, ==, expected1);
184 g_assert_cmpint(result2, ==, expected2);
186 block_job_txn_unref(txn);
189 static void test_pair_jobs_success(void)
191 test_pair_jobs(0, 0);
194 static void test_pair_jobs_failure(void)
196 /* Test both orderings. The two jobs run for a different number of
197 * iterations so the code path is different depending on which job fails
198 * first.
200 test_pair_jobs(-EIO, 0);
201 test_pair_jobs(0, -EIO);
204 static void test_pair_jobs_cancel(void)
206 test_pair_jobs(-ECANCELED, 0);
207 test_pair_jobs(0, -ECANCELED);
210 static void test_pair_jobs_fail_cancel_race(void)
212 BlockJob *job1;
213 BlockJob *job2;
214 BlockJobTxn *txn;
215 int result1 = -EINPROGRESS;
216 int result2 = -EINPROGRESS;
218 txn = block_job_txn_new();
219 job1 = test_block_job_start(1, true, -ECANCELED, &result1);
220 block_job_txn_add_job(txn, job1);
221 job2 = test_block_job_start(2, false, 0, &result2);
222 block_job_txn_add_job(txn, job2);
224 block_job_cancel(job1);
226 /* Now make job2 finish before the main loop kicks jobs. This simulates
227 * the race between a pending kick and another job completing.
229 block_job_enter(job2);
230 block_job_enter(job2);
232 while (result1 == -EINPROGRESS || result2 == -EINPROGRESS) {
233 aio_poll(qemu_get_aio_context(), true);
236 g_assert_cmpint(result1, ==, -ECANCELED);
237 g_assert_cmpint(result2, ==, -ECANCELED);
239 block_job_txn_unref(txn);
242 int main(int argc, char **argv)
244 qemu_init_main_loop(&error_abort);
246 g_test_init(&argc, &argv, NULL);
247 g_test_add_func("/single/success", test_single_job_success);
248 g_test_add_func("/single/failure", test_single_job_failure);
249 g_test_add_func("/single/cancel", test_single_job_cancel);
250 g_test_add_func("/pair/success", test_pair_jobs_success);
251 g_test_add_func("/pair/failure", test_pair_jobs_failure);
252 g_test_add_func("/pair/cancel", test_pair_jobs_cancel);
253 g_test_add_func("/pair/fail-cancel-race", test_pair_jobs_fail_cancel_race);
254 return g_test_run();