diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2025-03-07 16:00:37 +0000 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2025-03-07 13:41:08 -0700 |
commit | 0396ad3766ad4879b35c5401cee41bba64fe75d2 (patch) | |
tree | d43c78a1de1140abbb4527d489d34d79f0469176 /io_uring/rw.c | |
parent | 23371eac7d9a9bca5360cfb3eb3aa08648ee7246 (diff) |
io_uring: cap cached iovec/bvec size
Bvecs can be large, put an arbitrary limit on the max vector size it
can cache.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/823055fa6628daa24bbc9cd77c2da87e9a1e1e32.1741362889.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/rw.c')
-rw-r--r-- | io_uring/rw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/io_uring/rw.c b/io_uring/rw.c index e62f4ce34171..bf35599d1078 100644 --- a/io_uring/rw.c +++ b/io_uring/rw.c @@ -150,6 +150,9 @@ static void io_rw_recycle(struct io_kiocb *req, unsigned int issue_flags) return; io_alloc_cache_vec_kasan(&rw->vec); + if (rw->vec.nr > IO_VEC_CACHE_SOFT_CAP) + io_vec_free(&rw->vec); + if (io_alloc_cache_put(&req->ctx->rw_cache, rw)) { req->async_data = NULL; req->flags &= ~REQ_F_ASYNC_DATA; |