
Add APIs for t(ree) alloc(ated) memory management. These APIs allocate memory like malloc, but track those allocations via a parent-child relationship, or tree. If the parent is freed while it still has children, a panic will be triggered. This effectively gives you the ability to limit the lifetime of an allocation by ensuring the child allocation lifetime will be strictly less than the parent allocation lifetime. Change-Id: I6308c96061e125b2e5a9c424ec2d2298c1c503ab CRs-Fixed: 2359469
38 行
1.1 KiB
C
38 行
1.1 KiB
C
/*
|
|
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
* above copyright notice and this permission notice appear in all
|
|
* copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#ifndef __QDF_TALLOC_TEST
|
|
#define __QDF_TALLOC_TEST
|
|
|
|
#ifdef WLAN_TALLOC_TEST
|
|
/**
|
|
* qdf_talloc_unit_test() - run the qdf talloc unit test suite
|
|
*
|
|
* Return: number of failed test cases
|
|
*/
|
|
uint32_t qdf_talloc_unit_test(void);
|
|
#else
|
|
static inline uint32_t qdf_talloc_unit_test(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* WLAN_TALLOC_TEST */
|
|
|
|
#endif /* __QDF_TALLOC_TEST */
|
|
|