workqueue: move last bits of end accounting to caller
[fio.git] / workqueue.h
CommitLineData
a9da8ab2
JA
1#ifndef FIO_RATE_H
2#define FIO_RATE_H
3
4#include "flist.h"
5
88271841
JA
6struct workqueue_work {
7 struct flist_head list;
8};
9
ee2b6d6e
JA
10struct submit_worker {
11 pthread_t thread;
12 pthread_mutex_t lock;
13 pthread_cond_t cond;
14 struct flist_head work_list;
15 unsigned int flags;
16 unsigned int index;
17 uint64_t seq;
18 struct workqueue *wq;
19 void *private;
20};
21
22typedef void (workqueue_work_fn)(struct submit_worker *, struct workqueue_work *);
23typedef bool (workqueue_pre_sleep_flush_fn)(struct submit_worker *);
24typedef void (workqueue_pre_sleep_fn)(struct submit_worker *);
25typedef int (workqueue_alloc_worker_fn)(struct submit_worker *);
26typedef void (workqueue_free_worker_fn)(struct submit_worker *);
80ea26a8 27typedef int (workqueue_init_worker_fn)(struct submit_worker *);
c35c582d 28typedef void (workqueue_exit_worker_fn)(struct submit_worker *, unsigned int *);
17ecadc3 29typedef void (workqueue_update_acct_fn)(struct submit_worker *);
5bb79f69
JA
30
31struct workqueue_ops {
32 workqueue_work_fn *fn;
33 workqueue_pre_sleep_flush_fn *pre_sleep_flush_fn;
34 workqueue_pre_sleep_fn *pre_sleep_fn;
df8472e1 35
17ecadc3
JA
36 workqueue_update_acct_fn *update_acct_fn;
37
ee2b6d6e
JA
38 workqueue_alloc_worker_fn *alloc_worker_fn;
39 workqueue_free_worker_fn *free_worker_fn;
df8472e1 40
80ea26a8 41 workqueue_init_worker_fn *init_worker_fn;
df8472e1 42 workqueue_exit_worker_fn *exit_worker_fn;
5bb79f69 43};
a9da8ab2
JA
44
45struct workqueue {
46 unsigned int max_workers;
47
48 struct thread_data *td;
5bb79f69 49 struct workqueue_ops ops;
a9da8ab2
JA
50
51 uint64_t work_seq;
52 struct submit_worker *workers;
53 unsigned int next_free_worker;
54
55 pthread_cond_t flush_cond;
56 pthread_mutex_t flush_lock;
2a274336 57 pthread_mutex_t stat_lock;
a9da8ab2
JA
58 volatile int wake_idle;
59};
60
5bb79f69 61int workqueue_init(struct thread_data *td, struct workqueue *wq, struct workqueue_ops *ops, unsigned int max_workers);
a9da8ab2
JA
62void workqueue_exit(struct workqueue *wq);
63
88271841 64bool workqueue_enqueue(struct workqueue *wq, struct workqueue_work *work);
a9da8ab2
JA
65void workqueue_flush(struct workqueue *wq);
66
ee2b6d6e 67static inline bool workqueue_pre_sleep_check(struct submit_worker *sw)
5bb79f69 68{
ee2b6d6e
JA
69 struct workqueue *wq = sw->wq;
70
5bb79f69
JA
71 if (!wq->ops.pre_sleep_flush_fn)
72 return false;
73
ee2b6d6e 74 return wq->ops.pre_sleep_flush_fn(sw);
5bb79f69
JA
75}
76
ee2b6d6e 77static inline void workqueue_pre_sleep(struct submit_worker *sw)
5bb79f69 78{
ee2b6d6e
JA
79 struct workqueue *wq = sw->wq;
80
5bb79f69 81 if (wq->ops.pre_sleep_fn)
ee2b6d6e 82 wq->ops.pre_sleep_fn(sw);
5bb79f69
JA
83}
84
80ea26a8
JA
85static inline int workqueue_init_worker(struct submit_worker *sw)
86{
87 struct workqueue *wq = sw->wq;
88
89 if (!wq->ops.init_worker_fn)
90 return 0;
91
92 return wq->ops.init_worker_fn(sw);
93}
94
c35c582d
JA
95static inline void workqueue_exit_worker(struct submit_worker *sw,
96 unsigned int *sum_cnt)
df8472e1
JA
97{
98 struct workqueue *wq = sw->wq;
c35c582d 99 unsigned int tmp = 1;
df8472e1
JA
100
101 if (!wq->ops.exit_worker_fn)
102 return;
103
c35c582d
JA
104 if (!sum_cnt)
105 sum_cnt = &tmp;
106
107 wq->ops.exit_worker_fn(sw, sum_cnt);
df8472e1 108}
a9da8ab2 109#endif