1 // SPDX-License-Identifier: GPL-2.0
10 #include <linux/poison.h>
11 #include <linux/slab.h>
12 #include <linux/radix-tree.h>
13 #include <urcu/uatomic.h>
26 unsigned int non_kernel;
27 unsigned long nr_allocated;
28 unsigned long nr_tallocated;
31 void kmem_cache_set_non_kernel(struct kmem_cache *cachep, unsigned int val)
33 cachep->non_kernel = val;
36 unsigned long kmem_cache_get_alloc(struct kmem_cache *cachep)
38 return cachep->size * cachep->nr_allocated;
41 unsigned long kmem_cache_nr_allocated(struct kmem_cache *cachep)
43 return cachep->nr_allocated;
46 unsigned long kmem_cache_nr_tallocated(struct kmem_cache *cachep)
48 return cachep->nr_tallocated;
51 void kmem_cache_zero_nr_tallocated(struct kmem_cache *cachep)
53 cachep->nr_tallocated = 0;
56 void *kmem_cache_alloc_lru(struct kmem_cache *cachep, struct list_lru *lru,
61 if (!(gfp & __GFP_DIRECT_RECLAIM)) {
62 if (!cachep->non_kernel)
68 pthread_mutex_lock(&cachep->lock);
69 if (cachep->nr_objs) {
70 struct radix_tree_node *node = cachep->objs;
72 cachep->objs = node->parent;
73 pthread_mutex_unlock(&cachep->lock);
77 pthread_mutex_unlock(&cachep->lock);
79 posix_memalign(&p, cachep->align, cachep->size);
81 p = malloc(cachep->size);
84 else if (gfp & __GFP_ZERO)
85 memset(p, 0, cachep->size);
88 uatomic_inc(&cachep->nr_allocated);
89 uatomic_inc(&nr_allocated);
90 uatomic_inc(&cachep->nr_tallocated);
92 printf("Allocating %p from slab\n", p);
96 void kmem_cache_free_locked(struct kmem_cache *cachep, void *objp)
99 uatomic_dec(&nr_allocated);
100 uatomic_dec(&cachep->nr_allocated);
102 printf("Freeing %p to slab\n", objp);
103 if (cachep->nr_objs > 10 || cachep->align) {
104 memset(objp, POISON_FREE, cachep->size);
107 struct radix_tree_node *node = objp;
109 node->parent = cachep->objs;
114 void kmem_cache_free(struct kmem_cache *cachep, void *objp)
116 pthread_mutex_lock(&cachep->lock);
117 kmem_cache_free_locked(cachep, objp);
118 pthread_mutex_unlock(&cachep->lock);
121 void kmem_cache_free_bulk(struct kmem_cache *cachep, size_t size, void **list)
124 pr_debug("Bulk free %p[0-%lu]\n", list, size - 1);
126 pthread_mutex_lock(&cachep->lock);
127 for (int i = 0; i < size; i++)
128 kmem_cache_free_locked(cachep, list[i]);
129 pthread_mutex_unlock(&cachep->lock);
132 void kmem_cache_shrink(struct kmem_cache *cachep)
136 int kmem_cache_alloc_bulk(struct kmem_cache *cachep, gfp_t gfp, size_t size,
142 pr_debug("Bulk alloc %lu\n", size);
144 if (!(gfp & __GFP_DIRECT_RECLAIM)) {
145 if (cachep->non_kernel < size)
148 cachep->non_kernel -= size;
151 pthread_mutex_lock(&cachep->lock);
152 if (cachep->nr_objs >= size) {
153 struct radix_tree_node *node;
155 for (i = 0; i < size; i++) {
158 cachep->objs = node->parent;
162 pthread_mutex_unlock(&cachep->lock);
164 pthread_mutex_unlock(&cachep->lock);
165 for (i = 0; i < size; i++) {
167 posix_memalign(&p[i], cachep->align,
168 cachep->size * size);
170 p[i] = malloc(cachep->size * size);
174 else if (gfp & __GFP_ZERO)
175 memset(p[i], 0, cachep->size);
179 for (i = 0; i < size; i++) {
180 uatomic_inc(&nr_allocated);
181 uatomic_inc(&cachep->nr_allocated);
182 uatomic_inc(&cachep->nr_tallocated);
184 printf("Allocating %p from slab\n", p[i]);
191 kmem_cache_create(const char *name, unsigned int size, unsigned int align,
192 unsigned int flags, void (*ctor)(void *))
194 struct kmem_cache *ret = malloc(sizeof(*ret));
196 pthread_mutex_init(&ret->lock, NULL);
200 ret->nr_allocated = 0;
201 ret->nr_tallocated = 0;
209 * Test the test infrastructure for kem_cache_alloc/free and bulk counterparts.
211 void test_kmem_cache_bulk(void)
215 static struct kmem_cache *test_cache, *test_cache2;
218 * Testing the bulk allocators without aligned kmem_cache to force the
219 * bulk alloc/free to reuse
221 test_cache = kmem_cache_create("test_cache", 256, 0, SLAB_PANIC, NULL);
223 for (i = 0; i < 5; i++)
224 list[i] = kmem_cache_alloc(test_cache, __GFP_DIRECT_RECLAIM);
226 for (i = 0; i < 5; i++)
227 kmem_cache_free(test_cache, list[i]);
228 assert(test_cache->nr_objs == 5);
230 kmem_cache_alloc_bulk(test_cache, __GFP_DIRECT_RECLAIM, 5, list);
231 kmem_cache_free_bulk(test_cache, 5, list);
233 for (i = 0; i < 12 ; i++)
234 list[i] = kmem_cache_alloc(test_cache, __GFP_DIRECT_RECLAIM);
236 for (i = 0; i < 12; i++)
237 kmem_cache_free(test_cache, list[i]);
239 /* The last free will not be kept around */
240 assert(test_cache->nr_objs == 11);
242 /* Aligned caches will immediately free */
243 test_cache2 = kmem_cache_create("test_cache2", 128, 128, SLAB_PANIC, NULL);
245 kmem_cache_alloc_bulk(test_cache2, __GFP_DIRECT_RECLAIM, 10, list);
246 kmem_cache_free_bulk(test_cache2, 10, list);
247 assert(!test_cache2->nr_objs);