mirror of https://gitee.com/openkylin/linux.git
io_uring: kill REQ_F_TIMEOUT
Now REQ_F_TIMEOUT is set but never used, kill it Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
9b5f7bd932
commit
a1a4661691
|
@ -531,7 +531,6 @@ enum {
|
||||||
REQ_F_CUR_POS_BIT,
|
REQ_F_CUR_POS_BIT,
|
||||||
REQ_F_NOWAIT_BIT,
|
REQ_F_NOWAIT_BIT,
|
||||||
REQ_F_LINK_TIMEOUT_BIT,
|
REQ_F_LINK_TIMEOUT_BIT,
|
||||||
REQ_F_TIMEOUT_BIT,
|
|
||||||
REQ_F_ISREG_BIT,
|
REQ_F_ISREG_BIT,
|
||||||
REQ_F_TIMEOUT_NOSEQ_BIT,
|
REQ_F_TIMEOUT_NOSEQ_BIT,
|
||||||
REQ_F_COMP_LOCKED_BIT,
|
REQ_F_COMP_LOCKED_BIT,
|
||||||
|
@ -574,8 +573,6 @@ enum {
|
||||||
REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
|
REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
|
||||||
/* has linked timeout */
|
/* has linked timeout */
|
||||||
REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
|
REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
|
||||||
/* timeout request */
|
|
||||||
REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
|
|
||||||
/* regular file */
|
/* regular file */
|
||||||
REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
|
REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
|
||||||
/* no timeout sequence */
|
/* no timeout sequence */
|
||||||
|
@ -5063,7 +5060,6 @@ static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
|
||||||
|
|
||||||
data = &req->io->timeout;
|
data = &req->io->timeout;
|
||||||
data->req = req;
|
data->req = req;
|
||||||
req->flags |= REQ_F_TIMEOUT;
|
|
||||||
|
|
||||||
if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
|
if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
Loading…
Reference in New Issue