From: Caleb Sander Mateos Date: Fri, 28 Feb 2025 23:59:11 +0000 (-0700) Subject: io_uring/rsrc: free io_rsrc_node using kfree() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a387b96d2a9687201318826d23c770eb794c778e;p=users%2Fjedix%2Flinux-maple.git io_uring/rsrc: free io_rsrc_node using kfree() io_rsrc_node_alloc() calls io_cache_alloc(), which uses kmalloc() to allocate the node. So it can be freed with kfree() instead of kvfree(). Signed-off-by: Caleb Sander Mateos Link: https://lore.kernel.org/r/20250228235916.670437-2-csander@purestorage.com Signed-off-by: Jens Axboe --- diff --git a/io_uring/rsrc.c b/io_uring/rsrc.c index c8d7284f20b8..19e9de040a20 100644 --- a/io_uring/rsrc.c +++ b/io_uring/rsrc.c @@ -490,7 +490,7 @@ int io_files_update(struct io_kiocb *req, unsigned int issue_flags) static void io_free_node(struct io_ring_ctx *ctx, struct io_rsrc_node *node) { if (!io_alloc_cache_put(&ctx->node_cache, node)) - kvfree(node); + kfree(node); } void io_free_rsrc_node(struct io_ring_ctx *ctx, struct io_rsrc_node *node)