X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=workqueue.h;h=0a62b5f7d38d1868e63c47fa493c8324a30e042f;hp=3119ff1782ad7b4dba99ebfccddcc4965db61d23;hb=83742c72e3d69b2d5c8a890b3803042b5fd1aae0;hpb=17ecadc3fababaace961051765f140d3332d362d diff --git a/workqueue.h b/workqueue.h index 3119ff17..0a62b5f7 100644 --- a/workqueue.h +++ b/workqueue.h @@ -1,7 +1,14 @@ #ifndef FIO_RATE_H #define FIO_RATE_H +#include +#include + #include "flist.h" +#include "lib/types.h" + +struct sk_out; +struct thread_data; struct workqueue_work { struct flist_head list; @@ -16,16 +23,17 @@ struct submit_worker { unsigned int index; uint64_t seq; struct workqueue *wq; - void *private; + void *priv; + struct sk_out *sk_out; }; -typedef void (workqueue_work_fn)(struct submit_worker *, struct workqueue_work *); +typedef int (workqueue_work_fn)(struct submit_worker *, struct workqueue_work *); typedef bool (workqueue_pre_sleep_flush_fn)(struct submit_worker *); typedef void (workqueue_pre_sleep_fn)(struct submit_worker *); typedef int (workqueue_alloc_worker_fn)(struct submit_worker *); typedef void (workqueue_free_worker_fn)(struct submit_worker *); typedef int (workqueue_init_worker_fn)(struct submit_worker *); -typedef void (workqueue_exit_worker_fn)(struct submit_worker *); +typedef void (workqueue_exit_worker_fn)(struct submit_worker *, unsigned int *); typedef void (workqueue_update_acct_fn)(struct submit_worker *); struct workqueue_ops { @@ -40,6 +48,8 @@ struct workqueue_ops { workqueue_init_worker_fn *init_worker_fn; workqueue_exit_worker_fn *exit_worker_fn; + + unsigned int nice; }; struct workqueue { @@ -58,10 +68,10 @@ struct workqueue { volatile int wake_idle; }; -int workqueue_init(struct thread_data *td, struct workqueue *wq, struct workqueue_ops *ops, unsigned int max_workers); +int workqueue_init(struct thread_data *td, struct workqueue *wq, struct workqueue_ops *ops, unsigned int max_workers, struct sk_out *sk_out); void workqueue_exit(struct workqueue *wq); -bool workqueue_enqueue(struct workqueue *wq, struct workqueue_work *work); +void workqueue_enqueue(struct workqueue *wq, struct workqueue_work *work); void workqueue_flush(struct workqueue *wq); static inline bool workqueue_pre_sleep_check(struct submit_worker *sw) @@ -92,13 +102,18 @@ static inline int workqueue_init_worker(struct submit_worker *sw) return wq->ops.init_worker_fn(sw); } -static inline void workqueue_exit_worker(struct submit_worker *sw) +static inline void workqueue_exit_worker(struct submit_worker *sw, + unsigned int *sum_cnt) { struct workqueue *wq = sw->wq; + unsigned int tmp = 1; if (!wq->ops.exit_worker_fn) return; - wq->ops.exit_worker_fn(sw); + if (!sum_cnt) + sum_cnt = &tmp; + + wq->ops.exit_worker_fn(sw, sum_cnt); } #endif