Signal td->free_cond with the associated mutex held
[fio.git] / workqueue.c
index 1131400fd23a5acc8479c813fef0135c4987cf30..18ec198bee7e9de9c81db22758ad5c1e28ec62e4 100644 (file)
@@ -109,9 +109,9 @@ void workqueue_enqueue(struct workqueue *wq, struct workqueue_work *work)
        flist_add_tail(&work->list, &sw->work_list);
        sw->seq = ++wq->work_seq;
        sw->flags &= ~SW_F_IDLE;
-       pthread_mutex_unlock(&sw->lock);
 
        pthread_cond_signal(&sw->cond);
+       pthread_mutex_unlock(&sw->lock);
 }
 
 static void handle_list(struct submit_worker *sw, struct flist_head *list)