mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
mempool:Calibration total memory statistics
Signed-off-by: anjiahao <anjiahao@xiaomi.com>
This commit is contained in:
@@ -154,6 +154,8 @@ int mempool_init(FAR struct mempool_s *pool, FAR const char *name)
|
||||
sq_init(&pool->queue);
|
||||
sq_init(&pool->iqueue);
|
||||
sq_init(&pool->equeue);
|
||||
pool->nexpend = 0;
|
||||
pool->totalsize = 0;
|
||||
|
||||
#if CONFIG_MM_BACKTRACE >= 0
|
||||
list_initialize(&pool->alist);
|
||||
@@ -173,6 +175,8 @@ int mempool_init(FAR struct mempool_s *pool, FAR const char *name)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
pool->nexpend++;
|
||||
pool->totalsize += size;
|
||||
mempool_add_queue(&pool->iqueue, pool->ibase, ninterrupt, blocksize);
|
||||
kasan_poison(pool->ibase, size);
|
||||
}
|
||||
@@ -194,6 +198,8 @@ int mempool_init(FAR struct mempool_s *pool, FAR const char *name)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
pool->nexpend++;
|
||||
pool->totalsize += size;
|
||||
mempool_add_queue(&pool->queue, base, ninitial, blocksize);
|
||||
sq_addlast((FAR sq_entry_t *)(base + ninitial * blocksize),
|
||||
&pool->equeue);
|
||||
@@ -273,6 +279,8 @@ retry:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
pool->nexpend++;
|
||||
pool->totalsize += size;
|
||||
kasan_poison(base, size);
|
||||
flags = spin_lock_irqsave(&pool->lock);
|
||||
mempool_add_queue(&pool->queue, base, nexpand, blocksize);
|
||||
@@ -425,6 +433,11 @@ int mempool_info_task(FAR struct mempool_s *pool,
|
||||
|
||||
info->aordblks += count;
|
||||
info->uordblks += count * pool->blocksize;
|
||||
if (pool->calibrate)
|
||||
{
|
||||
info->aordblks -= pool->nexpend;
|
||||
info->uordblks -= pool->totalsize;
|
||||
}
|
||||
}
|
||||
else if (info->pid == -1)
|
||||
{
|
||||
@@ -436,6 +449,8 @@ int mempool_info_task(FAR struct mempool_s *pool,
|
||||
|
||||
info->aordblks += count;
|
||||
info->uordblks += count * pool->blocksize;
|
||||
info->aordblks -= pool->nexpend;
|
||||
info->uordblks -= pool->totalsize;
|
||||
}
|
||||
#if CONFIG_MM_BACKTRACE >= 0
|
||||
else
|
||||
|
||||
@@ -253,7 +253,8 @@ mempool_multiple_get_dict(FAR struct mempool_multiple_s *mpool,
|
||||
* free - The free memory function for multiples pool.
|
||||
* arg - The alloc & free memory fuctions used arg.
|
||||
* expandsize - The expend mempry for all pools in multiples pool.
|
||||
* dict_expendsize - The expend size for multiple dictnoary
|
||||
* dict_expendsize - The expend size for multiple dictnoary.
|
||||
* calibrate - Whether to calibrate when counting memory usage.
|
||||
* Returned Value:
|
||||
* Return an initialized multiple pool pointer on success,
|
||||
* otherwise NULL is returned.
|
||||
@@ -266,7 +267,7 @@ mempool_multiple_init(FAR const char *name,
|
||||
mempool_multiple_alloc_t alloc,
|
||||
mempool_multiple_free_t free,
|
||||
FAR void *arg, size_t expandsize,
|
||||
size_t dict_expendsize)
|
||||
size_t dict_expendsize, bool calibrate)
|
||||
{
|
||||
FAR struct mempool_multiple_s *mpool;
|
||||
FAR struct mempool_s *pools;
|
||||
@@ -325,6 +326,7 @@ mempool_multiple_init(FAR const char *name,
|
||||
pools[i].priv = mpool;
|
||||
pools[i].alloc = mempool_multiple_alloc_callback;
|
||||
pools[i].free = mempool_multiple_free_callback;
|
||||
pools[i].calibrate = calibrate;
|
||||
|
||||
ret = mempool_init(pools + i, name);
|
||||
if (ret < 0)
|
||||
|
||||
@@ -259,7 +259,8 @@ FAR struct mm_heap_s *mm_initialize(FAR const char *name,
|
||||
(mempool_multiple_alloc_t)mm_memalign,
|
||||
(mempool_multiple_free_t)mm_free, heap,
|
||||
CONFIG_MM_HEAP_MEMPOOL_EXPAND,
|
||||
CONFIG_MM_HEAP_MEMPOOL_DICTIONARY_EXPAND);
|
||||
CONFIG_MM_HEAP_MEMPOOL_DICTIONARY_EXPAND,
|
||||
true);
|
||||
#endif
|
||||
|
||||
return heap;
|
||||
|
||||
+2
-1
@@ -804,7 +804,8 @@ FAR struct mm_heap_s *mm_initialize(FAR const char *name,
|
||||
(mempool_multiple_alloc_t)mm_memalign,
|
||||
(mempool_multiple_free_t)mm_free, heap,
|
||||
CONFIG_MM_HEAP_MEMPOOL_EXPAND,
|
||||
CONFIG_MM_HEAP_MEMPOOL_DICTIONARY_EXPAND);
|
||||
CONFIG_MM_HEAP_MEMPOOL_DICTIONARY_EXPAND,
|
||||
true);
|
||||
#endif
|
||||
|
||||
return heap;
|
||||
|
||||
Reference in New Issue
Block a user