blob: e82ef1da0b59faab23a706db1257808c3fb10bbb [file] [log] [blame]
Jens Axboed24c33a2008-03-01 18:27:36 +01001/*
2 * simple memory allocator, backed by mmap() so that it hands out memory
3 * that can be shared across processes and threads
4 */
5#include <sys/mman.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <assert.h>
9#include <string.h>
10#include <unistd.h>
11#include <sys/types.h>
12#include <limits.h>
13
Jens Axboe6548f472008-06-13 08:38:31 +020014#include "mutex.h"
Jens Axboeb3268b92008-06-02 09:59:32 +020015#include "arch/arch.h"
Jens Axboed24c33a2008-03-01 18:27:36 +010016
Jens Axboe55f64912008-05-26 09:37:21 +020017#define SMALLOC_REDZONE /* define to detect memory corruption */
Jens Axboed24c33a2008-03-01 18:27:36 +010018
Jens Axboeec996e92008-05-27 11:39:39 +020019#define SMALLOC_BPB 32 /* block size, bytes-per-bit in bitmap */
20#define SMALLOC_BPI (sizeof(unsigned int) * 8)
21#define SMALLOC_BPL (SMALLOC_BPB * SMALLOC_BPI)
22
23#define INITIAL_SIZE 1024*1024 /* new pool size */
Jens Axboe68857682008-07-31 19:50:54 +020024#define MAX_POOLS 128 /* maximum number of pools to setup */
Jens Axboed24c33a2008-03-01 18:27:36 +010025
Jens Axboe55f64912008-05-26 09:37:21 +020026#define SMALLOC_PRE_RED 0xdeadbeefU
27#define SMALLOC_POST_RED 0x5aa55aa5U
Jens Axboe55f64912008-05-26 09:37:21 +020028
Jens Axboe2b386d22008-03-26 10:32:57 +010029unsigned int smalloc_pool_size = INITIAL_SIZE;
30
Jens Axboed24c33a2008-03-01 18:27:36 +010031struct pool {
Jens Axboe6548f472008-06-13 08:38:31 +020032 struct fio_mutex *lock; /* protects this pool */
Jens Axboed24c33a2008-03-01 18:27:36 +010033 void *map; /* map of blocks */
Jens Axboeec996e92008-05-27 11:39:39 +020034 unsigned int *bitmap; /* blocks free/busy map */
35 unsigned int free_blocks; /* free blocks */
36 unsigned int nr_blocks; /* total blocks */
37 unsigned int next_non_full;
Jens Axboed24c33a2008-03-01 18:27:36 +010038 int fd; /* memory backing fd */
Jens Axboeec996e92008-05-27 11:39:39 +020039 unsigned int mmap_size;
40};
41
42struct block_hdr {
43 unsigned int size;
44#ifdef SMALLOC_REDZONE
45 unsigned int prered;
46#endif
Jens Axboed24c33a2008-03-01 18:27:36 +010047};
48
49static struct pool mp[MAX_POOLS];
50static unsigned int nr_pools;
51static unsigned int last_pool;
Jens Axboe6548f472008-06-13 08:38:31 +020052static struct fio_mutex *lock;
Jens Axboed24c33a2008-03-01 18:27:36 +010053
Jens Axboed24c33a2008-03-01 18:27:36 +010054static inline void pool_lock(struct pool *pool)
55{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010056 fio_mutex_down(pool->lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010057}
58
59static inline void pool_unlock(struct pool *pool)
60{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010061 fio_mutex_up(pool->lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010062}
63
Jens Axboe65864cf2008-03-03 10:36:36 +010064static inline void global_read_lock(void)
Jens Axboed24c33a2008-03-01 18:27:36 +010065{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010066 fio_mutex_down_read(lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010067}
68
Jens Axboe65864cf2008-03-03 10:36:36 +010069static inline void global_read_unlock(void)
Jens Axboed24c33a2008-03-01 18:27:36 +010070{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010071 fio_mutex_up_read(lock);
Jens Axboe65864cf2008-03-03 10:36:36 +010072}
73
74static inline void global_write_lock(void)
75{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010076 fio_mutex_down_write(lock);
Jens Axboe65864cf2008-03-03 10:36:36 +010077}
78
79static inline void global_write_unlock(void)
80{
Jens Axboe2e3e31e2009-01-06 11:30:08 +010081 fio_mutex_up_write(lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010082}
83
Jens Axboed24c33a2008-03-01 18:27:36 +010084static inline int ptr_valid(struct pool *pool, void *ptr)
85{
Jens Axboedcb69092008-05-27 20:35:18 +020086 unsigned int pool_size = pool->nr_blocks * SMALLOC_BPL;
Jens Axboeec996e92008-05-27 11:39:39 +020087
88 return (ptr >= pool->map) && (ptr < pool->map + pool_size);
Jens Axboed24c33a2008-03-01 18:27:36 +010089}
90
Jens Axboe808e9ea2008-05-27 14:12:45 +020091static inline unsigned int size_to_blocks(unsigned int size)
92{
93 return (size + SMALLOC_BPB - 1) / SMALLOC_BPB;
94}
95
Jens Axboedcb69092008-05-27 20:35:18 +020096static int blocks_iter(struct pool *pool, unsigned int pool_idx,
97 unsigned int idx, unsigned int nr_blocks,
Jens Axboeec996e92008-05-27 11:39:39 +020098 int (*func)(unsigned int *map, unsigned int mask))
Jens Axboed24c33a2008-03-01 18:27:36 +010099{
Jens Axboedcb69092008-05-27 20:35:18 +0200100
Jens Axboeec996e92008-05-27 11:39:39 +0200101 while (nr_blocks) {
102 unsigned int this_blocks, mask;
Jens Axboedcb69092008-05-27 20:35:18 +0200103 unsigned int *map;
104
105 if (pool_idx >= pool->nr_blocks)
106 return 0;
107
108 map = &pool->bitmap[pool_idx];
Jens Axboed24c33a2008-03-01 18:27:36 +0100109
Jens Axboeec996e92008-05-27 11:39:39 +0200110 this_blocks = nr_blocks;
111 if (this_blocks + idx > SMALLOC_BPI) {
112 this_blocks = SMALLOC_BPI - idx;
113 idx = SMALLOC_BPI - this_blocks;
Jens Axboed24c33a2008-03-01 18:27:36 +0100114 }
Jens Axboeec996e92008-05-27 11:39:39 +0200115
116 if (this_blocks == SMALLOC_BPI)
117 mask = -1U;
118 else
119 mask = ((1U << this_blocks) - 1) << idx;
120
121 if (!func(map, mask))
122 return 0;
123
124 nr_blocks -= this_blocks;
125 idx = 0;
Jens Axboedcb69092008-05-27 20:35:18 +0200126 pool_idx++;
Jens Axboed24c33a2008-03-01 18:27:36 +0100127 }
128
Jens Axboeec996e92008-05-27 11:39:39 +0200129 return 1;
Jens Axboeec996e92008-05-27 11:39:39 +0200130}
131
132static int mask_cmp(unsigned int *map, unsigned int mask)
133{
134 return !(*map & mask);
135}
136
137static int mask_clear(unsigned int *map, unsigned int mask)
138{
Jens Axboedcb69092008-05-27 20:35:18 +0200139 assert((*map & mask) == mask);
Jens Axboeec996e92008-05-27 11:39:39 +0200140 *map &= ~mask;
141 return 1;
142}
143
144static int mask_set(unsigned int *map, unsigned int mask)
145{
Jens Axboedcb69092008-05-27 20:35:18 +0200146 assert(!(*map & mask));
Jens Axboeec996e92008-05-27 11:39:39 +0200147 *map |= mask;
148 return 1;
149}
150
Jens Axboedcb69092008-05-27 20:35:18 +0200151static int blocks_free(struct pool *pool, unsigned int pool_idx,
152 unsigned int idx, unsigned int nr_blocks)
Jens Axboeec996e92008-05-27 11:39:39 +0200153{
Jens Axboedcb69092008-05-27 20:35:18 +0200154 return blocks_iter(pool, pool_idx, idx, nr_blocks, mask_cmp);
Jens Axboeec996e92008-05-27 11:39:39 +0200155}
156
Jens Axboedcb69092008-05-27 20:35:18 +0200157static void set_blocks(struct pool *pool, unsigned int pool_idx,
158 unsigned int idx, unsigned int nr_blocks)
Jens Axboeec996e92008-05-27 11:39:39 +0200159{
Jens Axboedcb69092008-05-27 20:35:18 +0200160 blocks_iter(pool, pool_idx, idx, nr_blocks, mask_set);
Jens Axboeec996e92008-05-27 11:39:39 +0200161}
162
Jens Axboedcb69092008-05-27 20:35:18 +0200163static void clear_blocks(struct pool *pool, unsigned int pool_idx,
164 unsigned int idx, unsigned int nr_blocks)
Jens Axboeec996e92008-05-27 11:39:39 +0200165{
Jens Axboedcb69092008-05-27 20:35:18 +0200166 blocks_iter(pool, pool_idx, idx, nr_blocks, mask_clear);
Jens Axboeec996e92008-05-27 11:39:39 +0200167}
168
Jens Axboeec996e92008-05-27 11:39:39 +0200169static int find_next_zero(int word, int start)
170{
171 assert(word != -1U);
172 word >>= (start + 1);
Jens Axboeb3268b92008-06-02 09:59:32 +0200173 return ffz(word) + start + 1;
Jens Axboed24c33a2008-03-01 18:27:36 +0100174}
175
Jens Axboeadf57092008-04-16 19:43:17 +0200176static int add_pool(struct pool *pool, unsigned int alloc_size)
Jens Axboed24c33a2008-03-01 18:27:36 +0100177{
Jens Axboeec996e92008-05-27 11:39:39 +0200178 int fd, bitmap_blocks;
Jens Axboeb8a65822008-12-04 14:33:41 +0100179 char file[] = "/tmp/.fio_smalloc.XXXXXX";
180 void *ptr;
Jens Axboeec996e92008-05-27 11:39:39 +0200181
Jens Axboeb8a65822008-12-04 14:33:41 +0100182 fd = mkstemp(file);
Jens Axboed24c33a2008-03-01 18:27:36 +0100183 if (fd < 0)
184 goto out_close;
185
Jens Axboe55f64912008-05-26 09:37:21 +0200186#ifdef SMALLOC_REDZONE
Jens Axboeec996e92008-05-27 11:39:39 +0200187 alloc_size += sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200188#endif
Jens Axboeec996e92008-05-27 11:39:39 +0200189 alloc_size += sizeof(struct block_hdr);
190 if (alloc_size < INITIAL_SIZE)
191 alloc_size = INITIAL_SIZE;
Jens Axboeadf57092008-04-16 19:43:17 +0200192
Jens Axboeec996e92008-05-27 11:39:39 +0200193 /* round up to nearest full number of blocks */
194 alloc_size = (alloc_size + SMALLOC_BPL - 1) & ~(SMALLOC_BPL - 1);
195 bitmap_blocks = alloc_size / SMALLOC_BPL;
196 alloc_size += bitmap_blocks * sizeof(unsigned int);
197 pool->mmap_size = alloc_size;
198
199 pool->nr_blocks = bitmap_blocks;
200 pool->free_blocks = bitmap_blocks * SMALLOC_BPB;
201
202 if (ftruncate(fd, alloc_size) < 0)
Jens Axboed24c33a2008-03-01 18:27:36 +0100203 goto out_unlink;
204
Jens Axboeec996e92008-05-27 11:39:39 +0200205 ptr = mmap(NULL, alloc_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
Jens Axboed24c33a2008-03-01 18:27:36 +0100206 if (ptr == MAP_FAILED)
207 goto out_unlink;
208
Jens Axboeec996e92008-05-27 11:39:39 +0200209 memset(ptr, 0, alloc_size);
210 pool->map = ptr;
211 pool->bitmap = (void *) ptr + (pool->nr_blocks * SMALLOC_BPL);
Jens Axboed24c33a2008-03-01 18:27:36 +0100212
Jens Axboe6548f472008-06-13 08:38:31 +0200213 pool->lock = fio_mutex_init(1);
Jens Axboed24c33a2008-03-01 18:27:36 +0100214 if (!pool->lock)
215 goto out_unlink;
Jens Axboed24c33a2008-03-01 18:27:36 +0100216
Jens Axboe443bb112008-12-04 14:30:13 +0100217 /*
218 * Unlink pool file now. It wont get deleted until the fd is closed,
219 * which happens both for cleanup or unexpected quit. This way we
220 * don't leave temp files around in case of a crash.
221 */
Jens Axboeb8a65822008-12-04 14:33:41 +0100222 unlink(file);
Jens Axboed24c33a2008-03-01 18:27:36 +0100223 pool->fd = fd;
224
Jens Axboed24c33a2008-03-01 18:27:36 +0100225 nr_pools++;
226 return 0;
227out_unlink:
Jens Axboeec996e92008-05-27 11:39:39 +0200228 fprintf(stderr, "smalloc: failed adding pool\n");
Jens Axboed24c33a2008-03-01 18:27:36 +0100229 if (pool->map)
Jens Axboeec996e92008-05-27 11:39:39 +0200230 munmap(pool->map, pool->mmap_size);
Jens Axboeb8a65822008-12-04 14:33:41 +0100231 unlink(file);
Jens Axboed24c33a2008-03-01 18:27:36 +0100232out_close:
Jens Axboeb8a65822008-12-04 14:33:41 +0100233 close(fd);
Jens Axboed24c33a2008-03-01 18:27:36 +0100234 return 1;
235}
236
237void sinit(void)
238{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100239 int ret;
Jens Axboed24c33a2008-03-01 18:27:36 +0100240
Jens Axboe6548f472008-06-13 08:38:31 +0200241 lock = fio_mutex_rw_init();
Jens Axboeadf57092008-04-16 19:43:17 +0200242 ret = add_pool(&mp[0], INITIAL_SIZE);
Jens Axboed24c33a2008-03-01 18:27:36 +0100243 assert(!ret);
244}
245
246static void cleanup_pool(struct pool *pool)
247{
Jens Axboe443bb112008-12-04 14:30:13 +0100248 /*
249 * This will also remove the temporary file we used as a backing
250 * store, it was already unlinked
251 */
Jens Axboed24c33a2008-03-01 18:27:36 +0100252 close(pool->fd);
Jens Axboeec996e92008-05-27 11:39:39 +0200253 munmap(pool->map, pool->mmap_size);
Jens Axboe6548f472008-06-13 08:38:31 +0200254
255 if (pool->lock)
256 fio_mutex_remove(pool->lock);
Jens Axboed24c33a2008-03-01 18:27:36 +0100257}
258
259void scleanup(void)
260{
261 unsigned int i;
262
263 for (i = 0; i < nr_pools; i++)
264 cleanup_pool(&mp[i]);
265
Jens Axboe6548f472008-06-13 08:38:31 +0200266 if (lock)
267 fio_mutex_remove(lock);
Jens Axboed24c33a2008-03-01 18:27:36 +0100268}
269
Jens Axboe89da54e2008-05-27 20:49:29 +0200270#ifdef SMALLOC_REDZONE
Jens Axboeec996e92008-05-27 11:39:39 +0200271static void fill_redzone(struct block_hdr *hdr)
Jens Axboe55f64912008-05-26 09:37:21 +0200272{
Jens Axboeec996e92008-05-27 11:39:39 +0200273 unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200274
Jens Axboeec996e92008-05-27 11:39:39 +0200275 hdr->prered = SMALLOC_PRE_RED;
276 *postred = SMALLOC_POST_RED;
Jens Axboeec996e92008-05-27 11:39:39 +0200277}
Jens Axboe55f64912008-05-26 09:37:21 +0200278
Jens Axboeec996e92008-05-27 11:39:39 +0200279static void sfree_check_redzone(struct block_hdr *hdr)
280{
Jens Axboeec996e92008-05-27 11:39:39 +0200281 unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
282
283 if (hdr->prered != SMALLOC_PRE_RED) {
Jens Axboe55f64912008-05-26 09:37:21 +0200284 fprintf(stderr, "smalloc pre redzone destroyed!\n");
285 fprintf(stderr, " ptr=%p, prered=%x, expected %x\n",
Jens Axboeec996e92008-05-27 11:39:39 +0200286 hdr, hdr->prered, SMALLOC_PRE_RED);
Jens Axboe55f64912008-05-26 09:37:21 +0200287 assert(0);
288 }
289 if (*postred != SMALLOC_POST_RED) {
290 fprintf(stderr, "smalloc post redzone destroyed!\n");
291 fprintf(stderr, " ptr=%p, postred=%x, expected %x\n",
Jens Axboeec996e92008-05-27 11:39:39 +0200292 hdr, *postred, SMALLOC_POST_RED);
Jens Axboe55f64912008-05-26 09:37:21 +0200293 assert(0);
294 }
Jens Axboe55f64912008-05-26 09:37:21 +0200295}
Jens Axboe89da54e2008-05-27 20:49:29 +0200296#else
297static void fill_redzone(struct block_hdr *hdr)
298{
299}
300
301static void sfree_check_redzone(struct block_hdr *hdr)
302{
303}
304#endif
Jens Axboe55f64912008-05-26 09:37:21 +0200305
Jens Axboed24c33a2008-03-01 18:27:36 +0100306static void sfree_pool(struct pool *pool, void *ptr)
307{
Jens Axboeec996e92008-05-27 11:39:39 +0200308 struct block_hdr *hdr;
Jens Axboe179446e2008-05-27 14:11:56 +0200309 unsigned int i, idx;
Jens Axboeec996e92008-05-27 11:39:39 +0200310 unsigned long offset;
Jens Axboed24c33a2008-03-01 18:27:36 +0100311
312 if (!ptr)
313 return;
314
Jens Axboeec996e92008-05-27 11:39:39 +0200315 ptr -= sizeof(*hdr);
316 hdr = ptr;
Jens Axboe55f64912008-05-26 09:37:21 +0200317
Jens Axboed24c33a2008-03-01 18:27:36 +0100318 assert(ptr_valid(pool, ptr));
319
Jens Axboeec996e92008-05-27 11:39:39 +0200320 sfree_check_redzone(hdr);
321
322 offset = ptr - pool->map;
323 i = offset / SMALLOC_BPL;
324 idx = (offset % SMALLOC_BPL) / SMALLOC_BPB;
325
Jens Axboed24c33a2008-03-01 18:27:36 +0100326 pool_lock(pool);
Jens Axboedcb69092008-05-27 20:35:18 +0200327 clear_blocks(pool, i, idx, size_to_blocks(hdr->size));
Jens Axboeec996e92008-05-27 11:39:39 +0200328 if (i < pool->next_non_full)
329 pool->next_non_full = i;
Jens Axboe179446e2008-05-27 14:11:56 +0200330 pool->free_blocks += size_to_blocks(hdr->size);
Jens Axboed24c33a2008-03-01 18:27:36 +0100331 pool_unlock(pool);
332}
333
334void sfree(void *ptr)
335{
336 struct pool *pool = NULL;
337 unsigned int i;
338
Jens Axboe8e5732e2008-04-16 19:51:46 +0200339 if (!ptr)
340 return;
341
Jens Axboe65864cf2008-03-03 10:36:36 +0100342 global_read_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100343
344 for (i = 0; i < nr_pools; i++) {
345 if (ptr_valid(&mp[i], ptr)) {
346 pool = &mp[i];
347 break;
348 }
349 }
350
Jens Axboe65864cf2008-03-03 10:36:36 +0100351 global_read_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100352
353 assert(pool);
354 sfree_pool(pool, ptr);
355}
356
Jens Axboe55f64912008-05-26 09:37:21 +0200357static void *__smalloc_pool(struct pool *pool, unsigned int size)
Jens Axboed24c33a2008-03-01 18:27:36 +0100358{
Jens Axboeec996e92008-05-27 11:39:39 +0200359 unsigned int nr_blocks;
360 unsigned int i;
361 unsigned int offset;
362 unsigned int last_idx;
363 void *ret = NULL;
Jens Axboed24c33a2008-03-01 18:27:36 +0100364
Jens Axboed24c33a2008-03-01 18:27:36 +0100365 pool_lock(pool);
Jens Axboe179446e2008-05-27 14:11:56 +0200366
367 nr_blocks = size_to_blocks(size);
Jens Axboeec996e92008-05-27 11:39:39 +0200368 if (nr_blocks > pool->free_blocks)
Jens Axboed24c33a2008-03-01 18:27:36 +0100369 goto fail;
370
Jens Axboeec996e92008-05-27 11:39:39 +0200371 i = pool->next_non_full;
372 last_idx = 0;
373 offset = -1U;
374 while (i < pool->nr_blocks) {
375 unsigned int idx;
Jens Axboed24c33a2008-03-01 18:27:36 +0100376
Jens Axboeec996e92008-05-27 11:39:39 +0200377 if (pool->bitmap[i] == -1U) {
378 i++;
379 pool->next_non_full = i;
380 last_idx = 0;
381 continue;
Jens Axboed24c33a2008-03-01 18:27:36 +0100382 }
Jens Axboeec996e92008-05-27 11:39:39 +0200383
384 idx = find_next_zero(pool->bitmap[i], last_idx);
Jens Axboedcb69092008-05-27 20:35:18 +0200385 if (!blocks_free(pool, i, idx, nr_blocks)) {
Jens Axboeec996e92008-05-27 11:39:39 +0200386 idx += nr_blocks;
387 if (idx < SMALLOC_BPI)
388 last_idx = idx;
389 else {
390 last_idx = 0;
391 while (idx >= SMALLOC_BPI) {
392 i++;
393 idx -= SMALLOC_BPI;
394 }
395 }
396 continue;
397 }
Jens Axboedcb69092008-05-27 20:35:18 +0200398 set_blocks(pool, i, idx, nr_blocks);
Jens Axboeec996e92008-05-27 11:39:39 +0200399 offset = i * SMALLOC_BPL + idx * SMALLOC_BPB;
400 break;
Jens Axboed24c33a2008-03-01 18:27:36 +0100401 }
Jens Axboeec996e92008-05-27 11:39:39 +0200402
403 if (i < pool->nr_blocks) {
404 pool->free_blocks -= nr_blocks;
405 ret = pool->map + offset;
406 }
407fail:
Jens Axboed24c33a2008-03-01 18:27:36 +0100408 pool_unlock(pool);
Jens Axboeec996e92008-05-27 11:39:39 +0200409 return ret;
Jens Axboed24c33a2008-03-01 18:27:36 +0100410}
411
Jens Axboe55f64912008-05-26 09:37:21 +0200412static void *smalloc_pool(struct pool *pool, unsigned int size)
413{
Jens Axboe89da54e2008-05-27 20:49:29 +0200414 unsigned int alloc_size = size + sizeof(struct block_hdr);
Jens Axboe55f64912008-05-26 09:37:21 +0200415 void *ptr;
416
Jens Axboeec996e92008-05-27 11:39:39 +0200417#ifdef SMALLOC_REDZONE
418 alloc_size += sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200419#endif
Jens Axboeec996e92008-05-27 11:39:39 +0200420
421 ptr = __smalloc_pool(pool, alloc_size);
Jens Axboe89da54e2008-05-27 20:49:29 +0200422 if (ptr) {
423 struct block_hdr *hdr = ptr;
Jens Axboeec996e92008-05-27 11:39:39 +0200424
Jens Axboe89da54e2008-05-27 20:49:29 +0200425 hdr->size = alloc_size;
426 fill_redzone(hdr);
Jens Axboeec996e92008-05-27 11:39:39 +0200427
Jens Axboe89da54e2008-05-27 20:49:29 +0200428 ptr += sizeof(*hdr);
429 memset(ptr, 0, size);
430 }
Jens Axboeec996e92008-05-27 11:39:39 +0200431
Jens Axboeec996e92008-05-27 11:39:39 +0200432 return ptr;
Jens Axboe55f64912008-05-26 09:37:21 +0200433}
434
Jens Axboed24c33a2008-03-01 18:27:36 +0100435void *smalloc(unsigned int size)
436{
437 unsigned int i;
438
Shaozhi Shawn Yed1271dc2008-09-10 09:02:51 +0200439 global_write_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100440 i = last_pool;
441
442 do {
443 for (; i < nr_pools; i++) {
444 void *ptr = smalloc_pool(&mp[i], size);
445
446 if (ptr) {
447 last_pool = i;
Shaozhi Shawn Yed1271dc2008-09-10 09:02:51 +0200448 global_write_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100449 return ptr;
450 }
451 }
452 if (last_pool) {
453 last_pool = 0;
454 continue;
455 }
456
Jens Axboeec996e92008-05-27 11:39:39 +0200457 if (nr_pools + 1 > MAX_POOLS)
Jens Axboed24c33a2008-03-01 18:27:36 +0100458 break;
459 else {
460 i = nr_pools;
Jens Axboeadf57092008-04-16 19:43:17 +0200461 if (add_pool(&mp[nr_pools], size))
Jens Axboe65864cf2008-03-03 10:36:36 +0100462 goto out;
Jens Axboed24c33a2008-03-01 18:27:36 +0100463 }
464 } while (1);
465
Jens Axboe65864cf2008-03-03 10:36:36 +0100466out:
Shaozhi Shawn Yed1271dc2008-09-10 09:02:51 +0200467 global_write_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100468 return NULL;
469}
470
471char *smalloc_strdup(const char *str)
472{
473 char *ptr;
474
475 ptr = smalloc(strlen(str) + 1);
476 strcpy(ptr, str);
477 return ptr;
478}