[PATCH v1] mm:slab:use kmem_cache_free() to free
From: Yan Zhen
Date: Wed Aug 21 2024 - 22:32:52 EST
The kmem_cache_alloc() is typically used to free memory allocated through
the kernel memory cache (slab allocator).
Using kmem_cache_free() for deallocation may be more reasonable.
Signed-off-by: Yan Zhen <yanzhen@xxxxxxxx>
---
mm/slab_common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/slab_common.c b/mm/slab_common.c
index da1b00665..0463df45e 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -491,7 +491,7 @@ kmem_buckets *kmem_buckets_create(const char *name, slab_flags_t flags,
fail:
for (idx = 0; idx < ARRAY_SIZE(kmalloc_caches[KMALLOC_NORMAL]); idx++)
kmem_cache_destroy((*b)[idx]);
- kfree(b);
+ kmem_cache_free(kmem_buckets_cache, b);
return NULL;
}
--
2.34.1