123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- /******************************************************************************
- *
- * Module Name: utcache - local cache allocation routines
- *
- *****************************************************************************/
- /*
- * Copyright (C) 2000 - 2015, Intel Corp.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions, and the following disclaimer,
- * without modification.
- * 2. Redistributions in binary form must reproduce at minimum a disclaimer
- * substantially similar to the "NO WARRANTY" disclaimer below
- * ("Disclaimer") and any redistribution must be conditioned upon
- * including a substantially similar Disclaimer requirement for further
- * binary redistribution.
- * 3. Neither the names of the above-listed copyright holders nor the names
- * of any contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * Alternatively, this software may be distributed under the terms of the
- * GNU General Public License ("GPL") version 2 as published by the Free
- * Software Foundation.
- *
- * NO WARRANTY
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
- * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGES.
- */
- #include <acpi/acpi.h>
- #include "accommon.h"
- #define _COMPONENT ACPI_UTILITIES
- ACPI_MODULE_NAME("utcache")
- #ifdef ACPI_USE_LOCAL_CACHE
- /*******************************************************************************
- *
- * FUNCTION: acpi_os_create_cache
- *
- * PARAMETERS: cache_name - Ascii name for the cache
- * object_size - Size of each cached object
- * max_depth - Maximum depth of the cache (in objects)
- * return_cache - Where the new cache object is returned
- *
- * RETURN: Status
- *
- * DESCRIPTION: Create a cache object
- *
- ******************************************************************************/
- acpi_status
- acpi_os_create_cache(char *cache_name,
- u16 object_size,
- u16 max_depth, struct acpi_memory_list **return_cache)
- {
- struct acpi_memory_list *cache;
- ACPI_FUNCTION_ENTRY();
- if (!cache_name || !return_cache || (object_size < 16)) {
- return (AE_BAD_PARAMETER);
- }
- /* Create the cache object */
- cache = acpi_os_allocate(sizeof(struct acpi_memory_list));
- if (!cache) {
- return (AE_NO_MEMORY);
- }
- /* Populate the cache object and return it */
- memset(cache, 0, sizeof(struct acpi_memory_list));
- cache->list_name = cache_name;
- cache->object_size = object_size;
- cache->max_depth = max_depth;
- *return_cache = cache;
- return (AE_OK);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_os_purge_cache
- *
- * PARAMETERS: cache - Handle to cache object
- *
- * RETURN: Status
- *
- * DESCRIPTION: Free all objects within the requested cache.
- *
- ******************************************************************************/
- acpi_status acpi_os_purge_cache(struct acpi_memory_list * cache)
- {
- void *next;
- acpi_status status;
- ACPI_FUNCTION_ENTRY();
- if (!cache) {
- return (AE_BAD_PARAMETER);
- }
- status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
- if (ACPI_FAILURE(status)) {
- return (status);
- }
- /* Walk the list of objects in this cache */
- while (cache->list_head) {
- /* Delete and unlink one cached state object */
- next = ACPI_GET_DESCRIPTOR_PTR(cache->list_head);
- ACPI_FREE(cache->list_head);
- cache->list_head = next;
- cache->current_depth--;
- }
- (void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
- return (AE_OK);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_os_delete_cache
- *
- * PARAMETERS: cache - Handle to cache object
- *
- * RETURN: Status
- *
- * DESCRIPTION: Free all objects within the requested cache and delete the
- * cache object.
- *
- ******************************************************************************/
- acpi_status acpi_os_delete_cache(struct acpi_memory_list * cache)
- {
- acpi_status status;
- ACPI_FUNCTION_ENTRY();
- /* Purge all objects in the cache */
- status = acpi_os_purge_cache(cache);
- if (ACPI_FAILURE(status)) {
- return (status);
- }
- /* Now we can delete the cache object */
- acpi_os_free(cache);
- return (AE_OK);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_os_release_object
- *
- * PARAMETERS: cache - Handle to cache object
- * object - The object to be released
- *
- * RETURN: None
- *
- * DESCRIPTION: Release an object to the specified cache. If cache is full,
- * the object is deleted.
- *
- ******************************************************************************/
- acpi_status
- acpi_os_release_object(struct acpi_memory_list * cache, void *object)
- {
- acpi_status status;
- ACPI_FUNCTION_ENTRY();
- if (!cache || !object) {
- return (AE_BAD_PARAMETER);
- }
- /* If cache is full, just free this object */
- if (cache->current_depth >= cache->max_depth) {
- ACPI_FREE(object);
- ACPI_MEM_TRACKING(cache->total_freed++);
- }
- /* Otherwise put this object back into the cache */
- else {
- status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
- if (ACPI_FAILURE(status)) {
- return (status);
- }
- /* Mark the object as cached */
- memset(object, 0xCA, cache->object_size);
- ACPI_SET_DESCRIPTOR_TYPE(object, ACPI_DESC_TYPE_CACHED);
- /* Put the object at the head of the cache list */
- ACPI_SET_DESCRIPTOR_PTR(object, cache->list_head);
- cache->list_head = object;
- cache->current_depth++;
- (void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
- }
- return (AE_OK);
- }
- /*******************************************************************************
- *
- * FUNCTION: acpi_os_acquire_object
- *
- * PARAMETERS: cache - Handle to cache object
- *
- * RETURN: the acquired object. NULL on error
- *
- * DESCRIPTION: Get an object from the specified cache. If cache is empty,
- * the object is allocated.
- *
- ******************************************************************************/
- void *acpi_os_acquire_object(struct acpi_memory_list *cache)
- {
- acpi_status status;
- void *object;
- ACPI_FUNCTION_NAME(os_acquire_object);
- if (!cache) {
- return_PTR(NULL);
- }
- status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
- if (ACPI_FAILURE(status)) {
- return_PTR(NULL);
- }
- ACPI_MEM_TRACKING(cache->requests++);
- /* Check the cache first */
- if (cache->list_head) {
- /* There is an object available, use it */
- object = cache->list_head;
- cache->list_head = ACPI_GET_DESCRIPTOR_PTR(object);
- cache->current_depth--;
- ACPI_MEM_TRACKING(cache->hits++);
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
- "Object %p from %s cache\n", object,
- cache->list_name));
- status = acpi_ut_release_mutex(ACPI_MTX_CACHES);
- if (ACPI_FAILURE(status)) {
- return_PTR(NULL);
- }
- /* Clear (zero) the previously used Object */
- memset(object, 0, cache->object_size);
- } else {
- /* The cache is empty, create a new object */
- ACPI_MEM_TRACKING(cache->total_allocated++);
- #ifdef ACPI_DBG_TRACK_ALLOCATIONS
- if ((cache->total_allocated - cache->total_freed) >
- cache->max_occupied) {
- cache->max_occupied =
- cache->total_allocated - cache->total_freed;
- }
- #endif
- /* Avoid deadlock with ACPI_ALLOCATE_ZEROED */
- status = acpi_ut_release_mutex(ACPI_MTX_CACHES);
- if (ACPI_FAILURE(status)) {
- return_PTR(NULL);
- }
- object = ACPI_ALLOCATE_ZEROED(cache->object_size);
- if (!object) {
- return_PTR(NULL);
- }
- }
- return_PTR(object);
- }
- #endif /* ACPI_USE_LOCAL_CACHE */
|