2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2014-09-22 18:53:50 +02:00
|
|
|
* mm/mm_heap/mm_free.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <assert.h>
|
2013-03-08 21:36:18 +01:00
|
|
|
#include <debug.h>
|
2012-07-15 01:31:12 +02:00
|
|
|
|
2020-04-07 16:21:42 +02:00
|
|
|
#include <nuttx/arch.h>
|
2014-09-24 15:29:09 +02:00
|
|
|
#include <nuttx/mm/mm.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2021-03-02 09:03:00 +01:00
|
|
|
#include "mm_heap/mm.h"
|
|
|
|
|
2020-04-07 16:21:42 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-10 06:32:32 +02:00
|
|
|
#if defined(CONFIG_BUILD_FLAT) || defined(__KERNEL__)
|
2020-04-07 16:21:42 +02:00
|
|
|
static void mm_add_delaylist(FAR struct mm_heap_s *heap, FAR void *mem)
|
|
|
|
{
|
2021-03-02 09:03:00 +01:00
|
|
|
FAR struct mm_heap_impl_s *heap_impl;
|
2020-04-10 06:32:32 +02:00
|
|
|
FAR struct mm_delaynode_s *tmp = mem;
|
2020-04-07 16:21:42 +02:00
|
|
|
irqstate_t flags;
|
|
|
|
|
2021-03-02 09:03:00 +01:00
|
|
|
DEBUGASSERT(MM_IS_VALID(heap));
|
|
|
|
heap_impl = heap->mm_impl;
|
|
|
|
|
2020-04-07 16:21:42 +02:00
|
|
|
/* Delay the deallocation until a more appropriate time. */
|
|
|
|
|
|
|
|
flags = enter_critical_section();
|
|
|
|
|
2021-03-02 09:03:00 +01:00
|
|
|
tmp->flink = heap_impl->mm_delaylist;
|
|
|
|
heap_impl->mm_delaylist = tmp;
|
2020-04-07 16:21:42 +02:00
|
|
|
|
|
|
|
leave_critical_section(flags);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-31 18:54:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2013-03-08 21:36:18 +01:00
|
|
|
* Name: mm_free
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2013-03-08 19:29:56 +01:00
|
|
|
* Returns a chunk of memory to the list of free nodes, merging with
|
2012-07-15 01:31:12 +02:00
|
|
|
* adjacent free chunks if possible.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
void mm_free(FAR struct mm_heap_s *heap, FAR void *mem)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR struct mm_freenode_s *node;
|
|
|
|
FAR struct mm_freenode_s *prev;
|
|
|
|
FAR struct mm_freenode_s *next;
|
2020-04-10 06:32:32 +02:00
|
|
|
int ret;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-04-29 21:21:23 +02:00
|
|
|
UNUSED(ret);
|
2016-06-11 19:59:51 +02:00
|
|
|
minfo("Freeing %p\n", mem);
|
2007-03-08 19:34:11 +01:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
/* Protect against attempts to free a NULL reference */
|
|
|
|
|
|
|
|
if (!mem)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-10 06:32:32 +02:00
|
|
|
#if defined(CONFIG_BUILD_FLAT) || defined(__KERNEL__)
|
2020-04-07 16:21:42 +02:00
|
|
|
/* Check current environment */
|
|
|
|
|
|
|
|
if (up_interrupt_context())
|
|
|
|
{
|
|
|
|
/* We are in ISR, add to mm_delaylist */
|
|
|
|
|
|
|
|
mm_add_delaylist(heap, mem);
|
|
|
|
return;
|
|
|
|
}
|
2020-04-10 06:32:32 +02:00
|
|
|
else if ((ret = mm_trysemaphore(heap)) == 0)
|
2020-04-07 16:21:42 +02:00
|
|
|
{
|
|
|
|
/* Got the sem, do free immediately */
|
|
|
|
}
|
2020-04-10 06:32:32 +02:00
|
|
|
else if (ret == -ESRCH || sched_idletask())
|
2020-04-07 16:21:42 +02:00
|
|
|
{
|
2020-04-10 06:32:32 +02:00
|
|
|
/* We are in IDLE task & can't get sem, or meet -ESRCH return,
|
|
|
|
* which means we are in situations during context switching(See
|
|
|
|
* mm_trysemaphore() & getpid()). Then add to mm_delaylist.
|
|
|
|
*/
|
2020-04-07 16:21:42 +02:00
|
|
|
|
|
|
|
mm_add_delaylist(heap, mem);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* We need to hold the MM semaphore while we muck with the
|
|
|
|
* nodelist.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mm_takesemaphore(heap);
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-02-13 09:06:05 +01:00
|
|
|
DEBUGASSERT(mm_heapmember(heap, mem));
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Map the memory chunk into a free node */
|
|
|
|
|
2015-10-08 17:10:22 +02:00
|
|
|
node = (FAR struct mm_freenode_s *)((FAR char *)mem - SIZEOF_MM_ALLOCNODE);
|
2018-11-12 16:36:35 +01:00
|
|
|
|
|
|
|
/* Sanity check against double-frees */
|
|
|
|
|
|
|
|
DEBUGASSERT(node->preceding & MM_ALLOC_BIT);
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
node->preceding &= ~MM_ALLOC_BIT;
|
|
|
|
|
|
|
|
/* Check if the following node is free and, if so, merge it */
|
|
|
|
|
2015-10-08 17:10:22 +02:00
|
|
|
next = (FAR struct mm_freenode_s *)((FAR char *)node + node->size);
|
2018-11-12 16:36:35 +01:00
|
|
|
DEBUGASSERT((next->preceding & ~MM_ALLOC_BIT) == node->size);
|
2007-02-18 00:21:28 +01:00
|
|
|
if ((next->preceding & MM_ALLOC_BIT) == 0)
|
|
|
|
{
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR struct mm_allocnode_s *andbeyond;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Get the node following the next node (which will
|
|
|
|
* become the new next node). We know that we can never
|
|
|
|
* index past the tail chunk because it is always allocated.
|
|
|
|
*/
|
|
|
|
|
2020-04-09 14:46:24 +02:00
|
|
|
andbeyond = (FAR struct mm_allocnode_s *)
|
|
|
|
((FAR char *)next + next->size);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Remove the next node. There must be a predecessor,
|
|
|
|
* but there may not be a successor node.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DEBUGASSERT(next->blink);
|
|
|
|
next->blink->flink = next->flink;
|
|
|
|
if (next->flink)
|
|
|
|
{
|
|
|
|
next->flink->blink = next->blink;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then merge the two chunks */
|
|
|
|
|
|
|
|
node->size += next->size;
|
2020-04-09 14:46:24 +02:00
|
|
|
andbeyond->preceding = node->size |
|
|
|
|
(andbeyond->preceding & MM_ALLOC_BIT);
|
2007-02-27 22:17:21 +01:00
|
|
|
next = (FAR struct mm_freenode_s *)andbeyond;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the preceding node is also free and, if so, merge
|
|
|
|
* it with this node
|
|
|
|
*/
|
|
|
|
|
2015-10-08 17:10:22 +02:00
|
|
|
prev = (FAR struct mm_freenode_s *)((FAR char *)node - node->preceding);
|
2018-11-12 16:36:35 +01:00
|
|
|
DEBUGASSERT((node->preceding & ~MM_ALLOC_BIT) == prev->size);
|
2007-02-18 00:21:28 +01:00
|
|
|
if ((prev->preceding & MM_ALLOC_BIT) == 0)
|
|
|
|
{
|
|
|
|
/* Remove the node. There must be a predecessor, but there may
|
|
|
|
* not be a successor node.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DEBUGASSERT(prev->blink);
|
|
|
|
prev->blink->flink = prev->flink;
|
|
|
|
if (prev->flink)
|
|
|
|
{
|
|
|
|
prev->flink->blink = prev->blink;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then merge the two chunks */
|
|
|
|
|
|
|
|
prev->size += node->size;
|
|
|
|
next->preceding = prev->size | (next->preceding & MM_ALLOC_BIT);
|
|
|
|
node = prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the merged node to the nodelist */
|
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
mm_addfreechunk(heap, node);
|
|
|
|
mm_givesemaphore(heap);
|
|
|
|
}
|