]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/io-wq.h
io_uring: io_wq_create() returns an error pointer, not NULL
[mirror_ubuntu-hirsute-kernel.git] / fs / io-wq.h
CommitLineData
771b53d0
JA
1#ifndef INTERNAL_IO_WQ_H
2#define INTERNAL_IO_WQ_H
3
4struct io_wq;
5
6enum {
7 IO_WQ_WORK_CANCEL = 1,
8 IO_WQ_WORK_HAS_MM = 2,
9 IO_WQ_WORK_HASHED = 4,
10 IO_WQ_WORK_NEEDS_USER = 8,
fcb323cc 11 IO_WQ_WORK_NEEDS_FILES = 16,
771b53d0
JA
12
13 IO_WQ_HASH_SHIFT = 24, /* upper 8 bits are used for hash key */
14};
15
16enum io_wq_cancel {
17 IO_WQ_CANCEL_OK, /* cancelled before started */
18 IO_WQ_CANCEL_RUNNING, /* found, running, and attempted cancelled */
19 IO_WQ_CANCEL_NOTFOUND, /* work not found */
20};
21
22struct io_wq_work {
23 struct list_head list;
24 void (*func)(struct io_wq_work **);
25 unsigned flags;
fcb323cc 26 struct files_struct *files;
771b53d0
JA
27};
28
29#define INIT_IO_WORK(work, _func) \
30 do { \
31 (work)->func = _func; \
32 (work)->flags = 0; \
fcb323cc 33 (work)->files = NULL; \
771b53d0
JA
34 } while (0) \
35
36struct io_wq *io_wq_create(unsigned concurrency, struct mm_struct *mm);
37void io_wq_destroy(struct io_wq *wq);
38
39void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work);
40void io_wq_enqueue_hashed(struct io_wq *wq, struct io_wq_work *work, void *val);
41void io_wq_flush(struct io_wq *wq);
42
43void io_wq_cancel_all(struct io_wq *wq);
44enum io_wq_cancel io_wq_cancel_work(struct io_wq *wq, struct io_wq_work *cwork);
45
46#if defined(CONFIG_IO_WQ)
47extern void io_wq_worker_sleeping(struct task_struct *);
48extern void io_wq_worker_running(struct task_struct *);
49#else
50static inline void io_wq_worker_sleeping(struct task_struct *tsk)
51{
52}
53static inline void io_wq_worker_running(struct task_struct *tsk)
54{
55}
56#endif
57
58#endif