The following changes since commit 249ad5bfaded90c0431041b4a3816e7371c2d403: time: use correct size type for usecs (2017-04-02 16:01:18 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 5ba01402d96e113ac451441f45d0c8b4dd281f4d: backend: move freeing of td->mutex to main thread (2017-04-03 08:46:34 -0600) ---------------------------------------------------------------- Jens Axboe (1): backend: move freeing of td->mutex to main thread backend.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index b61de7c..38ef348 100644 --- a/backend.c +++ b/backend.c @@ -1836,9 +1836,6 @@ err: if (o->write_iolog_file) write_iolog_close(td); - fio_mutex_remove(td->mutex); - td->mutex = NULL; - td_set_runstate(td, TD_EXITED); /* @@ -2435,6 +2432,8 @@ int fio_backend(struct sk_out *sk_out) fio_mutex_remove(td->rusage_sem); td->rusage_sem = NULL; } + fio_mutex_remove(td->mutex); + td->mutex = NULL; } free_disk_util(); -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html