projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4068bf
)
io-wq: kill unused IO_WORKER_F_EXITING
author
Jens Axboe
<axboe@kernel.dk>
Sat, 26 Sep 2020 18:37:46 +0000
(12:37 -0600)
committer
Jens Axboe
<axboe@kernel.dk>
Thu, 1 Oct 2020 02:32:34 +0000
(20:32 -0600)
This flag is no longer used, remove it.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io-wq.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/io-wq.c
b/fs/io-wq.c
index 98f9c74b25d2fa7faf0212d65d024c778da04819..0a182f1333e879f1c8b756b7b49fcfdaf44fd00b 100644
(file)
--- a/
fs/io-wq.c
+++ b/
fs/io-wq.c
@@
-27,9
+27,8
@@
enum {
IO_WORKER_F_UP = 1, /* up and active */
IO_WORKER_F_RUNNING = 2, /* account as running */
IO_WORKER_F_FREE = 4, /* worker on free list */
- IO_WORKER_F_EXITING = 8, /* worker exiting */
- IO_WORKER_F_FIXED = 16, /* static idle worker */
- IO_WORKER_F_BOUND = 32, /* is doing bounded work */
+ IO_WORKER_F_FIXED = 8, /* static idle worker */
+ IO_WORKER_F_BOUND = 16, /* is doing bounded work */
};
enum {