* [PATCH] io_uring: allow IO_SQE_* flags on IORING_OP_TIMEOUT
@ 2019-12-04 16:39 Jens Axboe
0 siblings, 0 replies; only message in thread
From: Jens Axboe @ 2019-12-04 16:39 UTC (permalink / raw)
To: io-uring; +Cc: carter.li
There's really no reason why we forbid things like link/drain etc on
regular timeout commands. Enable the usual SQE flags on timeouts.
Reported-by: 李通洲 <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
---
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 6c22a277904e..00f119bdd8ff 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -2703,9 +2703,6 @@ static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
int ret;
ret = io_timeout_setup(req);
- /* common setup allows flags (like links) set, we don't */
- if (!ret && sqe->flags)
- ret = -EINVAL;
if (ret)
return ret;
--
Jens Axboe
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-12-04 16:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-04 16:39 [PATCH] io_uring: allow IO_SQE_* flags on IORING_OP_TIMEOUT Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox