From: Jens Axboe Date: Sun, 17 Mar 2024 00:23:44 +0000 (-0600) Subject: io_uring/alloc_cache: shrink default max entries from 512 to 128 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0ae9b9a14d54bd0aa68c1e8bda9dd8e6346f1d87;p=linux.git io_uring/alloc_cache: shrink default max entries from 512 to 128 In practice, we just need to recycle a few elements for (by far) most use cases. Shrink the total size down from 512 to 128, which should be more than plenty. Signed-off-by: Jens Axboe --- diff --git a/io_uring/alloc_cache.h b/io_uring/alloc_cache.h index bf2fb26a65398..138ad14b0b12c 100644 --- a/io_uring/alloc_cache.h +++ b/io_uring/alloc_cache.h @@ -4,7 +4,7 @@ /* * Don't allow the cache to grow beyond this size. */ -#define IO_ALLOC_CACHE_MAX 512 +#define IO_ALLOC_CACHE_MAX 128 struct io_cache_entry { struct io_wq_work_node node;