1 #ifndef INTERNAL_IO_WQ_H
2 #define INTERNAL_IO_WQ_H
10 IO_WQ_WORK_UNBOUND = 32,
12 IO_WQ_WORK_NO_CANCEL = 256,
13 IO_WQ_WORK_CONCURRENT = 512,
15 IO_WQ_HASH_SHIFT = 24, /* upper 8 bits are used for hash key */
19 IO_WQ_CANCEL_OK, /* cancelled before started */
20 IO_WQ_CANCEL_RUNNING, /* found, running, and attempted cancelled */
21 IO_WQ_CANCEL_NOTFOUND, /* work not found */
24 struct io_wq_work_node {
25 struct io_wq_work_node *next;
28 struct io_wq_work_list {
29 struct io_wq_work_node *first;
30 struct io_wq_work_node *last;
33 static inline void wq_list_add_tail(struct io_wq_work_node *node,
34 struct io_wq_work_list *list)
38 WRITE_ONCE(list->first, node);
40 list->last->next = node;
45 static inline void wq_node_del(struct io_wq_work_list *list,
46 struct io_wq_work_node *node,
47 struct io_wq_work_node *prev)
49 if (node == list->first)
50 WRITE_ONCE(list->first, node->next);
51 if (node == list->last)
54 prev->next = node->next;
58 #define wq_list_for_each(pos, prv, head) \
59 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
61 #define wq_list_empty(list) (READ_ONCE((list)->first) == NULL)
62 #define INIT_WQ_LIST(list) do { \
63 (list)->first = NULL; \
64 (list)->last = NULL; \
69 struct io_wq_work_node list;
72 void (*func)(struct io_wq_work **);
73 struct files_struct *files;
75 const struct cred *creds;
81 #define INIT_IO_WORK(work, _func) \
83 *(work) = (struct io_wq_work){ .func = _func }; \
86 typedef void (get_work_fn)(struct io_wq_work *);
87 typedef void (put_work_fn)(struct io_wq_work *);
90 struct user_struct *user;
92 get_work_fn *get_work;
93 put_work_fn *put_work;
96 struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data);
97 bool io_wq_get(struct io_wq *wq, struct io_wq_data *data);
98 void io_wq_destroy(struct io_wq *wq);
100 void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work);
101 void io_wq_enqueue_hashed(struct io_wq *wq, struct io_wq_work *work, void *val);
103 void io_wq_cancel_all(struct io_wq *wq);
104 enum io_wq_cancel io_wq_cancel_work(struct io_wq *wq, struct io_wq_work *cwork);
105 enum io_wq_cancel io_wq_cancel_pid(struct io_wq *wq, pid_t pid);
107 typedef bool (work_cancel_fn)(struct io_wq_work *, void *);
109 enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
112 #if defined(CONFIG_IO_WQ)
113 extern void io_wq_worker_sleeping(struct task_struct *);
114 extern void io_wq_worker_running(struct task_struct *);
116 static inline void io_wq_worker_sleeping(struct task_struct *tsk)
119 static inline void io_wq_worker_running(struct task_struct *tsk)
124 static inline bool io_wq_current_is_worker(void)
126 return in_task() && (current->flags & PF_IO_WORKER);