mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
io_uring: simplify apoll hash removal
hash_del() works well with non-hashed nodes, there's no need to check if it is hashed first. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
e27414bef7
commit
0ea13b448e
@ -5059,10 +5059,7 @@ static void io_async_task_func(struct callback_head *cb)
|
||||
return;
|
||||
}
|
||||
|
||||
/* If req is still hashed, it cannot have been canceled. Don't check. */
|
||||
if (hash_hashed(&req->hash_node))
|
||||
hash_del(&req->hash_node);
|
||||
|
||||
hash_del(&req->hash_node);
|
||||
io_poll_remove_double(req);
|
||||
spin_unlock_irq(&ctx->completion_lock);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user