Blame view

fs/io-wq.h 3.69 KB
771b53d03   Jens Axboe   io-wq: small thre...
1
2
  #ifndef INTERNAL_IO_WQ_H
  #define INTERNAL_IO_WQ_H
98447d65b   Jens Axboe   io_uring: move io...
3
  #include <linux/io_uring.h>
771b53d03   Jens Axboe   io-wq: small thre...
4
5
6
7
  struct io_wq;
  
  enum {
  	IO_WQ_WORK_CANCEL	= 1,
e883a79d8   Pavel Begunkov   io-wq: compact io...
8
9
10
11
  	IO_WQ_WORK_HASHED	= 2,
  	IO_WQ_WORK_UNBOUND	= 4,
  	IO_WQ_WORK_NO_CANCEL	= 8,
  	IO_WQ_WORK_CONCURRENT	= 16,
771b53d03   Jens Axboe   io-wq: small thre...
12

0f2037658   Jens Axboe   io_uring: pass re...
13
14
15
16
17
  	IO_WQ_WORK_FILES	= 32,
  	IO_WQ_WORK_FS		= 64,
  	IO_WQ_WORK_MM		= 128,
  	IO_WQ_WORK_CREDS	= 256,
  	IO_WQ_WORK_BLKCG	= 512,
69228338c   Jens Axboe   io_uring: unify f...
18
  	IO_WQ_WORK_FSIZE	= 1024,
0f2037658   Jens Axboe   io_uring: pass re...
19

771b53d03   Jens Axboe   io-wq: small thre...
20
21
22
23
24
25
26
27
  	IO_WQ_HASH_SHIFT	= 24,	/* upper 8 bits are used for hash key */
  };
  
  enum io_wq_cancel {
  	IO_WQ_CANCEL_OK,	/* cancelled before started */
  	IO_WQ_CANCEL_RUNNING,	/* found, running, and attempted cancelled */
  	IO_WQ_CANCEL_NOTFOUND,	/* work not found */
  };
6206f0e18   Jens Axboe   io-wq: shrink io_...
28
29
30
31
32
33
34
35
  struct io_wq_work_node {
  	struct io_wq_work_node *next;
  };
  
  struct io_wq_work_list {
  	struct io_wq_work_node *first;
  	struct io_wq_work_node *last;
  };
86f3cd1b5   Pavel Begunkov   io-wq: handle has...
36
37
38
39
40
41
42
43
44
45
46
  static inline void wq_list_add_after(struct io_wq_work_node *node,
  				     struct io_wq_work_node *pos,
  				     struct io_wq_work_list *list)
  {
  	struct io_wq_work_node *next = pos->next;
  
  	pos->next = node;
  	node->next = next;
  	if (!next)
  		list->last = node;
  }
6206f0e18   Jens Axboe   io-wq: shrink io_...
47
48
49
50
  static inline void wq_list_add_tail(struct io_wq_work_node *node,
  				    struct io_wq_work_list *list)
  {
  	if (!list->first) {
e995d5123   Jens Axboe   io-wq: briefly sp...
51
52
  		list->last = node;
  		WRITE_ONCE(list->first, node);
6206f0e18   Jens Axboe   io-wq: shrink io_...
53
54
55
56
  	} else {
  		list->last->next = node;
  		list->last = node;
  	}
b1442adcd   Xiaoguang Wang   io_uring: fix io_...
57
  	node->next = NULL;
6206f0e18   Jens Axboe   io-wq: shrink io_...
58
  }
86f3cd1b5   Pavel Begunkov   io-wq: handle has...
59
60
  static inline void wq_list_cut(struct io_wq_work_list *list,
  			       struct io_wq_work_node *last,
6206f0e18   Jens Axboe   io-wq: shrink io_...
61
62
  			       struct io_wq_work_node *prev)
  {
86f3cd1b5   Pavel Begunkov   io-wq: handle has...
63
64
65
66
67
68
69
  	/* first in the list, if prev==NULL */
  	if (!prev)
  		WRITE_ONCE(list->first, last->next);
  	else
  		prev->next = last->next;
  
  	if (last == list->last)
6206f0e18   Jens Axboe   io-wq: shrink io_...
70
  		list->last = prev;
86f3cd1b5   Pavel Begunkov   io-wq: handle has...
71
72
73
74
75
76
77
78
  	last->next = NULL;
  }
  
  static inline void wq_list_del(struct io_wq_work_list *list,
  			       struct io_wq_work_node *node,
  			       struct io_wq_work_node *prev)
  {
  	wq_list_cut(list, node, prev);
6206f0e18   Jens Axboe   io-wq: shrink io_...
79
80
81
82
  }
  
  #define wq_list_for_each(pos, prv, head)			\
  	for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
e995d5123   Jens Axboe   io-wq: briefly sp...
83
  #define wq_list_empty(list)	(READ_ONCE((list)->first) == NULL)
6206f0e18   Jens Axboe   io-wq: shrink io_...
84
85
86
87
  #define INIT_WQ_LIST(list)	do {				\
  	(list)->first = NULL;					\
  	(list)->last = NULL;					\
  } while (0)
771b53d03   Jens Axboe   io-wq: small thre...
88
  struct io_wq_work {
18a542ff1   Pavel Begunkov   io_uring: Fix ->d...
89
  	struct io_wq_work_node list;
98447d65b   Jens Axboe   io_uring: move io...
90
  	struct io_identity *identity;
6206f0e18   Jens Axboe   io-wq: shrink io_...
91
  	unsigned flags;
771b53d03   Jens Axboe   io-wq: small thre...
92
  };
86f3cd1b5   Pavel Begunkov   io-wq: handle has...
93
94
95
96
97
98
99
  static inline struct io_wq_work *wq_next_work(struct io_wq_work *work)
  {
  	if (!work->list.next)
  		return NULL;
  
  	return container_of(work->list.next, struct io_wq_work, list);
  }
e9fd93965   Pavel Begunkov   io_uring/io-wq: f...
100
  typedef void (free_work_fn)(struct io_wq_work *);
f4db7182e   Pavel Begunkov   io-wq: return nex...
101
  typedef struct io_wq_work *(io_wq_work_fn)(struct io_wq_work *);
7d7230652   Jens Axboe   io_wq: add get/pu...
102

576a347b7   Jens Axboe   io-wq: have io_wq...
103
  struct io_wq_data {
576a347b7   Jens Axboe   io-wq: have io_wq...
104
  	struct user_struct *user;
f5fa38c59   Pavel Begunkov   io_wq: add per-wq...
105
  	io_wq_work_fn *do_work;
e9fd93965   Pavel Begunkov   io_uring/io-wq: f...
106
  	free_work_fn *free_work;
576a347b7   Jens Axboe   io-wq: have io_wq...
107
108
109
  };
  
  struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data);
eba6f5a33   Pavel Begunkov   io-wq: allow grab...
110
  bool io_wq_get(struct io_wq *wq, struct io_wq_data *data);
771b53d03   Jens Axboe   io-wq: small thre...
111
112
113
  void io_wq_destroy(struct io_wq *wq);
  
  void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work);
8766dd516   Pavel Begunkov   io-wq: split hash...
114
115
116
117
118
119
  void io_wq_hash_work(struct io_wq_work *work, void *val);
  
  static inline bool io_wq_is_hashed(struct io_wq_work *work)
  {
  	return work->flags & IO_WQ_WORK_HASHED;
  }
771b53d03   Jens Axboe   io-wq: small thre...
120
121
122
  
  void io_wq_cancel_all(struct io_wq *wq);
  enum io_wq_cancel io_wq_cancel_work(struct io_wq *wq, struct io_wq_work *cwork);
62755e35d   Jens Axboe   io_uring: support...
123
124
125
  typedef bool (work_cancel_fn)(struct io_wq_work *, void *);
  
  enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
4f26bda15   Pavel Begunkov   io-wq: add an opt...
126
  					void *data, bool cancel_all);
62755e35d   Jens Axboe   io_uring: support...
127

aa96bf8a9   Jens Axboe   io_uring: use io-...
128
  struct task_struct *io_wq_get_task(struct io_wq *wq);
771b53d03   Jens Axboe   io-wq: small thre...
129
130
131
132
133
134
135
136
137
138
  #if defined(CONFIG_IO_WQ)
  extern void io_wq_worker_sleeping(struct task_struct *);
  extern void io_wq_worker_running(struct task_struct *);
  #else
  static inline void io_wq_worker_sleeping(struct task_struct *tsk)
  {
  }
  static inline void io_wq_worker_running(struct task_struct *tsk)
  {
  }
525b305d6   Jens Axboe   io-wq: re-add io_...
139
  #endif
771b53d03   Jens Axboe   io-wq: small thre...
140

525b305d6   Jens Axboe   io-wq: re-add io_...
141
142
143
144
145
  static inline bool io_wq_current_is_worker(void)
  {
  	return in_task() && (current->flags & PF_IO_WORKER);
  }
  #endif