Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 1 | #ifndef INTERNAL_IO_WQ_H |
| 2 | #define INTERNAL_IO_WQ_H |
| 3 | |
Jens Axboe | e941894 | 2021-02-19 12:33:30 -0700 | [diff] [blame] | 4 | #include <linux/refcount.h> |
Jens Axboe | 98447d6 | 2020-10-14 10:48:51 -0600 | [diff] [blame] | 5 | |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 6 | struct io_wq; |
| 7 | |
| 8 | enum { |
| 9 | IO_WQ_WORK_CANCEL = 1, |
Pavel Begunkov | e883a79 | 2020-06-25 18:20:53 +0300 | [diff] [blame] | 10 | IO_WQ_WORK_HASHED = 2, |
| 11 | IO_WQ_WORK_UNBOUND = 4, |
Pavel Begunkov | e883a79 | 2020-06-25 18:20:53 +0300 | [diff] [blame] | 12 | IO_WQ_WORK_CONCURRENT = 16, |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 13 | |
| 14 | IO_WQ_HASH_SHIFT = 24, /* upper 8 bits are used for hash key */ |
| 15 | }; |
| 16 | |
| 17 | enum io_wq_cancel { |
| 18 | IO_WQ_CANCEL_OK, /* cancelled before started */ |
| 19 | IO_WQ_CANCEL_RUNNING, /* found, running, and attempted cancelled */ |
| 20 | IO_WQ_CANCEL_NOTFOUND, /* work not found */ |
| 21 | }; |
| 22 | |
Stefan Metzmacher | 53e043b | 2021-03-15 12:56:56 +0100 | [diff] [blame] | 23 | struct io_wq_work_node { |
| 24 | struct io_wq_work_node *next; |
| 25 | }; |
| 26 | |
| 27 | struct io_wq_work_list { |
| 28 | struct io_wq_work_node *first; |
| 29 | struct io_wq_work_node *last; |
| 30 | }; |
| 31 | |
Pavel Begunkov | 86f3cd1 | 2020-03-23 22:57:22 +0300 | [diff] [blame] | 32 | static inline void wq_list_add_after(struct io_wq_work_node *node, |
| 33 | struct io_wq_work_node *pos, |
| 34 | struct io_wq_work_list *list) |
| 35 | { |
| 36 | struct io_wq_work_node *next = pos->next; |
| 37 | |
| 38 | pos->next = node; |
| 39 | node->next = next; |
| 40 | if (!next) |
| 41 | list->last = node; |
| 42 | } |
| 43 | |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 44 | static inline void wq_list_add_tail(struct io_wq_work_node *node, |
| 45 | struct io_wq_work_list *list) |
| 46 | { |
Pavel Begunkov | 8724dd8 | 2021-08-09 13:04:07 +0100 | [diff] [blame] | 47 | node->next = NULL; |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 48 | if (!list->first) { |
Jens Axboe | e995d51 | 2019-12-07 21:06:46 -0700 | [diff] [blame] | 49 | list->last = node; |
| 50 | WRITE_ONCE(list->first, node); |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 51 | } else { |
| 52 | list->last->next = node; |
| 53 | list->last = node; |
| 54 | } |
| 55 | } |
| 56 | |
Pavel Begunkov | 86f3cd1 | 2020-03-23 22:57:22 +0300 | [diff] [blame] | 57 | static inline void wq_list_cut(struct io_wq_work_list *list, |
| 58 | struct io_wq_work_node *last, |
| 59 | struct io_wq_work_node *prev) |
| 60 | { |
| 61 | /* first in the list, if prev==NULL */ |
| 62 | if (!prev) |
| 63 | WRITE_ONCE(list->first, last->next); |
| 64 | else |
| 65 | prev->next = last->next; |
| 66 | |
| 67 | if (last == list->last) |
| 68 | list->last = prev; |
| 69 | last->next = NULL; |
| 70 | } |
| 71 | |
| 72 | static inline void wq_list_del(struct io_wq_work_list *list, |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 73 | struct io_wq_work_node *node, |
| 74 | struct io_wq_work_node *prev) |
| 75 | { |
Pavel Begunkov | 86f3cd1 | 2020-03-23 22:57:22 +0300 | [diff] [blame] | 76 | wq_list_cut(list, node, prev); |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | #define wq_list_for_each(pos, prv, head) \ |
| 80 | for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next) |
| 81 | |
Jens Axboe | e995d51 | 2019-12-07 21:06:46 -0700 | [diff] [blame] | 82 | #define wq_list_empty(list) (READ_ONCE((list)->first) == NULL) |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 83 | #define INIT_WQ_LIST(list) do { \ |
| 84 | (list)->first = NULL; \ |
| 85 | (list)->last = NULL; \ |
| 86 | } while (0) |
| 87 | |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 88 | struct io_wq_work { |
Pavel Begunkov | 18a542f | 2020-03-23 00:23:29 +0300 | [diff] [blame] | 89 | struct io_wq_work_node list; |
Jens Axboe | 6206f0e | 2019-11-26 11:59:32 -0700 | [diff] [blame] | 90 | unsigned flags; |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 91 | }; |
| 92 | |
Pavel Begunkov | 86f3cd1 | 2020-03-23 22:57:22 +0300 | [diff] [blame] | 93 | static inline struct io_wq_work *wq_next_work(struct io_wq_work *work) |
| 94 | { |
| 95 | if (!work->list.next) |
| 96 | return NULL; |
| 97 | |
| 98 | return container_of(work->list.next, struct io_wq_work, list); |
| 99 | } |
| 100 | |
Pavel Begunkov | 5280f7e | 2021-02-04 13:52:08 +0000 | [diff] [blame] | 101 | typedef struct io_wq_work *(free_work_fn)(struct io_wq_work *); |
| 102 | typedef void (io_wq_work_fn)(struct io_wq_work *); |
Jens Axboe | 7d72306 | 2019-11-12 22:31:31 -0700 | [diff] [blame] | 103 | |
Jens Axboe | e941894 | 2021-02-19 12:33:30 -0700 | [diff] [blame] | 104 | struct io_wq_hash { |
| 105 | refcount_t refs; |
| 106 | unsigned long map; |
| 107 | struct wait_queue_head wait; |
| 108 | }; |
| 109 | |
| 110 | static inline void io_wq_put_hash(struct io_wq_hash *hash) |
| 111 | { |
| 112 | if (refcount_dec_and_test(&hash->refs)) |
| 113 | kfree(hash); |
| 114 | } |
| 115 | |
Jens Axboe | 576a347 | 2019-11-25 08:49:20 -0700 | [diff] [blame] | 116 | struct io_wq_data { |
Jens Axboe | e941894 | 2021-02-19 12:33:30 -0700 | [diff] [blame] | 117 | struct io_wq_hash *hash; |
Jens Axboe | 685fe7f | 2021-03-08 09:37:51 -0700 | [diff] [blame] | 118 | struct task_struct *task; |
Pavel Begunkov | f5fa38c | 2020-06-08 21:08:20 +0300 | [diff] [blame] | 119 | io_wq_work_fn *do_work; |
Pavel Begunkov | e9fd939 | 2020-03-04 16:14:12 +0300 | [diff] [blame] | 120 | free_work_fn *free_work; |
Jens Axboe | 576a347 | 2019-11-25 08:49:20 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data); |
Pavel Begunkov | 17a9105 | 2021-05-23 15:48:39 +0100 | [diff] [blame] | 124 | void io_wq_exit_start(struct io_wq *wq); |
Jens Axboe | afcc401 | 2021-02-26 13:48:19 -0700 | [diff] [blame] | 125 | void io_wq_put_and_exit(struct io_wq *wq); |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 126 | |
| 127 | void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work); |
Pavel Begunkov | 8766dd5 | 2020-03-14 00:31:04 +0300 | [diff] [blame] | 128 | void io_wq_hash_work(struct io_wq_work *work, void *val); |
| 129 | |
Jens Axboe | fe76421 | 2021-06-17 10:19:54 -0600 | [diff] [blame] | 130 | int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask); |
Jens Axboe | 2e48005 | 2021-08-27 11:33:19 -0600 | [diff] [blame] | 131 | int io_wq_max_workers(struct io_wq *wq, int *new_count); |
Jens Axboe | fe76421 | 2021-06-17 10:19:54 -0600 | [diff] [blame] | 132 | |
Pavel Begunkov | 8766dd5 | 2020-03-14 00:31:04 +0300 | [diff] [blame] | 133 | static inline bool io_wq_is_hashed(struct io_wq_work *work) |
| 134 | { |
| 135 | return work->flags & IO_WQ_WORK_HASHED; |
| 136 | } |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 137 | |
Jens Axboe | 62755e3 | 2019-10-28 21:49:21 -0600 | [diff] [blame] | 138 | typedef bool (work_cancel_fn)(struct io_wq_work *, void *); |
| 139 | |
| 140 | enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel, |
Pavel Begunkov | 4f26bda | 2020-06-15 10:24:03 +0300 | [diff] [blame] | 141 | void *data, bool cancel_all); |
Jens Axboe | 62755e3 | 2019-10-28 21:49:21 -0600 | [diff] [blame] | 142 | |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 143 | #if defined(CONFIG_IO_WQ) |
| 144 | extern void io_wq_worker_sleeping(struct task_struct *); |
| 145 | extern void io_wq_worker_running(struct task_struct *); |
| 146 | #else |
| 147 | static inline void io_wq_worker_sleeping(struct task_struct *tsk) |
| 148 | { |
| 149 | } |
| 150 | static inline void io_wq_worker_running(struct task_struct *tsk) |
| 151 | { |
| 152 | } |
Jens Axboe | 525b305 | 2019-12-17 14:13:37 -0700 | [diff] [blame] | 153 | #endif |
Jens Axboe | 771b53d0 | 2019-10-22 10:25:58 -0600 | [diff] [blame] | 154 | |
Jens Axboe | 525b305 | 2019-12-17 14:13:37 -0700 | [diff] [blame] | 155 | static inline bool io_wq_current_is_worker(void) |
| 156 | { |
Jens Axboe | 3bfe610 | 2021-02-16 14:15:30 -0700 | [diff] [blame] | 157 | return in_task() && (current->flags & PF_IO_WORKER) && |
| 158 | current->pf_io_worker; |
Jens Axboe | 525b305 | 2019-12-17 14:13:37 -0700 | [diff] [blame] | 159 | } |
| 160 | #endif |