tests-aio-multithread: fix /aio/multi/schedule race condition
commitfb0c43f34eed8b18678c6e1f481d8564b35c99ed
authorStefan Hajnoczi <stefanha@redhat.com>
Mon, 6 Nov 2017 19:02:33 +0000 (6 19:02 +0000)
committerStefan Hajnoczi <stefanha@redhat.com>
Wed, 8 Nov 2017 09:22:55 +0000 (8 09:22 +0000)
tree1901a8e7d582ec492a656c37da9586d9e151e8c5
parentb0fbe46ad82982b289a44ee2495b59b0bad8a842
tests-aio-multithread: fix /aio/multi/schedule race condition

test_multi_co_schedule_entry() set to_schedule[id] in the final loop
iteration before terminating the coroutine.  There is a race condition
where the main thread attempts to enter the terminating or terminated
coroutine when signalling coroutines to stop:

  atomic_mb_set(&now_stopping, true);
  for (i = 0; i < NUM_CONTEXTS; i++) {
      ctx_run(i, finish_cb, NULL);  <--- enters dead coroutine!
      to_schedule[i] = NULL;
  }

Make sure only to set to_schedule[id] if this coroutine really needs to
be scheduled!

Reported-by: "R.Nageswara Sastry" <nasastry@in.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 20171106190233.1175-1-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
tests/test-aio-multithread.c