Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 3 | * Module Name: utalloc - local memory allocation routines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
| 8 | * Copyright (C) 2000 - 2005, R. Byron Moore |
| 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> |
| 45 | |
| 46 | #define _COMPONENT ACPI_UTILITIES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 47 | ACPI_MODULE_NAME("utalloc") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 49 | /* Local prototypes */ |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 50 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | static struct acpi_debug_mem_block *acpi_ut_find_allocation(void *allocation); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 52 | |
| 53 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 54 | acpi_ut_track_allocation(struct acpi_debug_mem_block *address, |
| 55 | acpi_size size, |
| 56 | u8 alloc_type, u32 component, char *module, u32 line); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 57 | |
| 58 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 59 | acpi_ut_remove_allocation(struct acpi_debug_mem_block *address, |
| 60 | u32 component, char *module, u32 line); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 61 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 62 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 63 | acpi_ut_create_list(char *list_name, |
| 64 | u16 object_size, struct acpi_memory_list **return_cache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 67 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 69 | * FUNCTION: acpi_ut_create_caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 71 | * PARAMETERS: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 73 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 75 | * DESCRIPTION: Create all local caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | * |
| 77 | ******************************************************************************/ |
| 78 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 79 | acpi_status acpi_ut_create_caches(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 81 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 85 | /* Memory allocation lists */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 87 | status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list); |
| 88 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 89 | return (status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | status = |
| 93 | acpi_ut_create_list("Acpi-Namespace", |
| 94 | sizeof(struct acpi_namespace_node), |
| 95 | &acpi_gbl_ns_node_list); |
| 96 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 97 | return (status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #endif |
| 100 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 101 | /* Object Caches, for frequently used objects */ |
| 102 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | status = |
| 104 | acpi_os_create_cache("acpi_state", sizeof(union acpi_generic_state), |
| 105 | ACPI_MAX_STATE_CACHE_DEPTH, |
| 106 | &acpi_gbl_state_cache); |
| 107 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 108 | return (status); |
| 109 | } |
| 110 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 111 | status = |
| 112 | acpi_os_create_cache("acpi_parse", |
| 113 | sizeof(struct acpi_parse_obj_common), |
| 114 | ACPI_MAX_PARSE_CACHE_DEPTH, |
| 115 | &acpi_gbl_ps_node_cache); |
| 116 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 117 | return (status); |
| 118 | } |
| 119 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | status = |
| 121 | acpi_os_create_cache("acpi_parse_ext", |
| 122 | sizeof(struct acpi_parse_obj_named), |
| 123 | ACPI_MAX_EXTPARSE_CACHE_DEPTH, |
| 124 | &acpi_gbl_ps_node_ext_cache); |
| 125 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 126 | return (status); |
| 127 | } |
| 128 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | status = |
| 130 | acpi_os_create_cache("acpi_operand", |
| 131 | sizeof(union acpi_operand_object), |
| 132 | ACPI_MAX_OBJECT_CACHE_DEPTH, |
| 133 | &acpi_gbl_operand_cache); |
| 134 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 135 | return (status); |
| 136 | } |
| 137 | |
| 138 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 141 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 143 | * FUNCTION: acpi_ut_delete_caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 145 | * PARAMETERS: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 147 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 149 | * DESCRIPTION: Purge and delete all local caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | * |
| 151 | ******************************************************************************/ |
| 152 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 153 | acpi_status acpi_ut_delete_caches(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 156 | (void)acpi_os_delete_cache(acpi_gbl_state_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 157 | acpi_gbl_state_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | (void)acpi_os_delete_cache(acpi_gbl_operand_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 160 | acpi_gbl_operand_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 162 | (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 163 | acpi_gbl_ps_node_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 166 | acpi_gbl_ps_node_ext_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 168 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | /******************************************************************************* |
| 172 | * |
| 173 | * FUNCTION: acpi_ut_validate_buffer |
| 174 | * |
| 175 | * PARAMETERS: Buffer - Buffer descriptor to be validated |
| 176 | * |
| 177 | * RETURN: Status |
| 178 | * |
| 179 | * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer |
| 180 | * |
| 181 | ******************************************************************************/ |
| 182 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | |
| 186 | /* Obviously, the structure pointer must be valid */ |
| 187 | |
| 188 | if (!buffer) { |
| 189 | return (AE_BAD_PARAMETER); |
| 190 | } |
| 191 | |
| 192 | /* Special semantics for the length */ |
| 193 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 194 | if ((buffer->length == ACPI_NO_BUFFER) || |
| 195 | (buffer->length == ACPI_ALLOCATE_BUFFER) || |
| 196 | (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return (AE_OK); |
| 198 | } |
| 199 | |
| 200 | /* Length is valid, the buffer pointer must be also */ |
| 201 | |
| 202 | if (!buffer->pointer) { |
| 203 | return (AE_BAD_PARAMETER); |
| 204 | } |
| 205 | |
| 206 | return (AE_OK); |
| 207 | } |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /******************************************************************************* |
| 210 | * |
| 211 | * FUNCTION: acpi_ut_initialize_buffer |
| 212 | * |
| 213 | * PARAMETERS: Buffer - Buffer to be validated |
| 214 | * required_length - Length needed |
| 215 | * |
| 216 | * RETURN: Status |
| 217 | * |
| 218 | * DESCRIPTION: Validate that the buffer is of the required length or |
| 219 | * allocate a new buffer. Returned buffer is always zeroed. |
| 220 | * |
| 221 | ******************************************************************************/ |
| 222 | |
| 223 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 224 | acpi_ut_initialize_buffer(struct acpi_buffer * buffer, |
| 225 | acpi_size required_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | switch (buffer->length) { |
| 230 | case ACPI_NO_BUFFER: |
| 231 | |
| 232 | /* Set the exception and returned the required length */ |
| 233 | |
| 234 | status = AE_BUFFER_OVERFLOW; |
| 235 | break; |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | case ACPI_ALLOCATE_BUFFER: |
| 238 | |
| 239 | /* Allocate a new buffer */ |
| 240 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 241 | buffer->pointer = acpi_os_allocate(required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | if (!buffer->pointer) { |
| 243 | return (AE_NO_MEMORY); |
| 244 | } |
| 245 | |
| 246 | /* Clear the buffer */ |
| 247 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 248 | ACPI_MEMSET(buffer->pointer, 0, required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | break; |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | case ACPI_ALLOCATE_LOCAL_BUFFER: |
| 252 | |
| 253 | /* Allocate a new buffer with local interface to allow tracking */ |
| 254 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | buffer->pointer = ACPI_MEM_CALLOCATE(required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (!buffer->pointer) { |
| 257 | return (AE_NO_MEMORY); |
| 258 | } |
| 259 | break; |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | default: |
| 262 | |
| 263 | /* Existing buffer: Validate the size of the buffer */ |
| 264 | |
| 265 | if (buffer->length < required_length) { |
| 266 | status = AE_BUFFER_OVERFLOW; |
| 267 | break; |
| 268 | } |
| 269 | |
| 270 | /* Clear the buffer */ |
| 271 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 272 | ACPI_MEMSET(buffer->pointer, 0, required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | break; |
| 274 | } |
| 275 | |
| 276 | buffer->length = required_length; |
| 277 | return (status); |
| 278 | } |
| 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /******************************************************************************* |
| 281 | * |
| 282 | * FUNCTION: acpi_ut_allocate |
| 283 | * |
| 284 | * PARAMETERS: Size - Size of the allocation |
| 285 | * Component - Component type of caller |
| 286 | * Module - Source file name of caller |
| 287 | * Line - Line number of caller |
| 288 | * |
| 289 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 290 | * |
| 291 | * DESCRIPTION: The subsystem's equivalent of malloc. |
| 292 | * |
| 293 | ******************************************************************************/ |
| 294 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 295 | void *acpi_ut_allocate(acpi_size size, u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 297 | void *allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | ACPI_FUNCTION_TRACE_U32("ut_allocate", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | /* Check for an inadvertent size of zero bytes */ |
| 302 | |
| 303 | if (!size) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 304 | _ACPI_REPORT_ERROR(module, line, component, |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 305 | ("ut_allocate: Attempt to allocate zero bytes, allocating 1 byte\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | size = 1; |
| 307 | } |
| 308 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 309 | allocation = acpi_os_allocate(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | if (!allocation) { |
| 311 | /* Report allocation error */ |
| 312 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 313 | _ACPI_REPORT_ERROR(module, line, component, |
| 314 | ("ut_allocate: Could not allocate size %X\n", |
| 315 | (u32) size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 317 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 320 | return_PTR(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | /******************************************************************************* |
| 324 | * |
| 325 | * FUNCTION: acpi_ut_callocate |
| 326 | * |
| 327 | * PARAMETERS: Size - Size of the allocation |
| 328 | * Component - Component type of caller |
| 329 | * Module - Source file name of caller |
| 330 | * Line - Line number of caller |
| 331 | * |
| 332 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 333 | * |
| 334 | * DESCRIPTION: Subsystem equivalent of calloc. |
| 335 | * |
| 336 | ******************************************************************************/ |
| 337 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 338 | void *acpi_ut_callocate(acpi_size size, u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 340 | void *allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 342 | ACPI_FUNCTION_TRACE_U32("ut_callocate", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* Check for an inadvertent size of zero bytes */ |
| 345 | |
| 346 | if (!size) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 347 | _ACPI_REPORT_ERROR(module, line, component, |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 348 | ("ut_callocate: Attempt to allocate zero bytes, allocating 1 byte\n")); |
| 349 | size = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 352 | allocation = acpi_os_allocate(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | if (!allocation) { |
| 354 | /* Report allocation error */ |
| 355 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | _ACPI_REPORT_ERROR(module, line, component, |
| 357 | ("ut_callocate: Could not allocate size %X\n", |
| 358 | (u32) size)); |
| 359 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | /* Clear the memory block */ |
| 363 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | ACPI_MEMSET(allocation, 0, size); |
| 365 | return_PTR(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
| 369 | /* |
| 370 | * These procedures are used for tracking memory leaks in the subsystem, and |
| 371 | * they get compiled out when the ACPI_DBG_TRACK_ALLOCATIONS is not set. |
| 372 | * |
| 373 | * Each memory allocation is tracked via a doubly linked list. Each |
| 374 | * element contains the caller's component, module name, function name, and |
| 375 | * line number. acpi_ut_allocate and acpi_ut_callocate call |
| 376 | * acpi_ut_track_allocation to add an element to the list; deletion |
| 377 | * occurs in the body of acpi_ut_free. |
| 378 | */ |
| 379 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 380 | /******************************************************************************* |
| 381 | * |
| 382 | * FUNCTION: acpi_ut_create_list |
| 383 | * |
| 384 | * PARAMETERS: cache_name - Ascii name for the cache |
| 385 | * object_size - Size of each cached object |
| 386 | * return_cache - Where the new cache object is returned |
| 387 | * |
| 388 | * RETURN: Status |
| 389 | * |
| 390 | * DESCRIPTION: Create a local memory list for tracking purposed |
| 391 | * |
| 392 | ******************************************************************************/ |
| 393 | |
| 394 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 395 | acpi_ut_create_list(char *list_name, |
| 396 | u16 object_size, struct acpi_memory_list **return_cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 397 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | struct acpi_memory_list *cache; |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 399 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 400 | cache = acpi_os_allocate(sizeof(struct acpi_memory_list)); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 401 | if (!cache) { |
| 402 | return (AE_NO_MEMORY); |
| 403 | } |
| 404 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 405 | ACPI_MEMSET(cache, 0, sizeof(struct acpi_memory_list)); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 406 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 407 | cache->list_name = list_name; |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 408 | cache->object_size = object_size; |
| 409 | |
| 410 | *return_cache = cache; |
| 411 | return (AE_OK); |
| 412 | } |
| 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | /******************************************************************************* |
| 415 | * |
| 416 | * FUNCTION: acpi_ut_allocate_and_track |
| 417 | * |
| 418 | * PARAMETERS: Size - Size of the allocation |
| 419 | * Component - Component type of caller |
| 420 | * Module - Source file name of caller |
| 421 | * Line - Line number of caller |
| 422 | * |
| 423 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 424 | * |
| 425 | * DESCRIPTION: The subsystem's equivalent of malloc. |
| 426 | * |
| 427 | ******************************************************************************/ |
| 428 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 429 | void *acpi_ut_allocate_and_track(acpi_size size, |
| 430 | u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 432 | struct acpi_debug_mem_block *allocation; |
| 433 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 435 | allocation = |
| 436 | acpi_ut_allocate(size + sizeof(struct acpi_debug_mem_header), |
| 437 | component, module, line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | if (!allocation) { |
| 439 | return (NULL); |
| 440 | } |
| 441 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 442 | status = acpi_ut_track_allocation(allocation, size, |
| 443 | ACPI_MEM_MALLOC, component, module, |
| 444 | line); |
| 445 | if (ACPI_FAILURE(status)) { |
| 446 | acpi_os_free(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | return (NULL); |
| 448 | } |
| 449 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 450 | acpi_gbl_global_list->total_allocated++; |
| 451 | acpi_gbl_global_list->current_total_size += (u32) size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 453 | return ((void *)&allocation->user_space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | /******************************************************************************* |
| 457 | * |
| 458 | * FUNCTION: acpi_ut_callocate_and_track |
| 459 | * |
| 460 | * PARAMETERS: Size - Size of the allocation |
| 461 | * Component - Component type of caller |
| 462 | * Module - Source file name of caller |
| 463 | * Line - Line number of caller |
| 464 | * |
| 465 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 466 | * |
| 467 | * DESCRIPTION: Subsystem equivalent of calloc. |
| 468 | * |
| 469 | ******************************************************************************/ |
| 470 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 471 | void *acpi_ut_callocate_and_track(acpi_size size, |
| 472 | u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 474 | struct acpi_debug_mem_block *allocation; |
| 475 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 477 | allocation = |
| 478 | acpi_ut_callocate(size + sizeof(struct acpi_debug_mem_header), |
| 479 | component, module, line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | if (!allocation) { |
| 481 | /* Report allocation error */ |
| 482 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | _ACPI_REPORT_ERROR(module, line, component, |
| 484 | ("ut_callocate: Could not allocate size %X\n", |
| 485 | (u32) size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return (NULL); |
| 487 | } |
| 488 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 489 | status = acpi_ut_track_allocation(allocation, size, |
| 490 | ACPI_MEM_CALLOC, component, module, |
| 491 | line); |
| 492 | if (ACPI_FAILURE(status)) { |
| 493 | acpi_os_free(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | return (NULL); |
| 495 | } |
| 496 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 497 | acpi_gbl_global_list->total_allocated++; |
| 498 | acpi_gbl_global_list->current_total_size += (u32) size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 500 | return ((void *)&allocation->user_space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } |
| 502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /******************************************************************************* |
| 504 | * |
| 505 | * FUNCTION: acpi_ut_free_and_track |
| 506 | * |
| 507 | * PARAMETERS: Allocation - Address of the memory to deallocate |
| 508 | * Component - Component type of caller |
| 509 | * Module - Source file name of caller |
| 510 | * Line - Line number of caller |
| 511 | * |
| 512 | * RETURN: None |
| 513 | * |
| 514 | * DESCRIPTION: Frees the memory at Allocation |
| 515 | * |
| 516 | ******************************************************************************/ |
| 517 | |
| 518 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | acpi_ut_free_and_track(void *allocation, u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 521 | struct acpi_debug_mem_block *debug_block; |
| 522 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 524 | ACPI_FUNCTION_TRACE_PTR("ut_free", allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | if (NULL == allocation) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | _ACPI_REPORT_ERROR(module, line, component, |
| 528 | ("acpi_ut_free: Attempt to delete a NULL address\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | return_VOID; |
| 531 | } |
| 532 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 533 | debug_block = ACPI_CAST_PTR(struct acpi_debug_mem_block, |
| 534 | (((char *)allocation) - |
| 535 | sizeof(struct acpi_debug_mem_header))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 537 | acpi_gbl_global_list->total_freed++; |
| 538 | acpi_gbl_global_list->current_total_size -= debug_block->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 540 | status = acpi_ut_remove_allocation(debug_block, |
| 541 | component, module, line); |
| 542 | if (ACPI_FAILURE(status)) { |
| 543 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Could not free memory, %s\n", |
| 544 | acpi_format_exception(status))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 547 | acpi_os_free(debug_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 549 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "%p freed\n", allocation)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
| 551 | return_VOID; |
| 552 | } |
| 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | /******************************************************************************* |
| 555 | * |
| 556 | * FUNCTION: acpi_ut_find_allocation |
| 557 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 558 | * PARAMETERS: Allocation - Address of allocated memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | * |
| 560 | * RETURN: A list element if found; NULL otherwise. |
| 561 | * |
| 562 | * DESCRIPTION: Searches for an element in the global allocation tracking list. |
| 563 | * |
| 564 | ******************************************************************************/ |
| 565 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 566 | static struct acpi_debug_mem_block *acpi_ut_find_allocation(void *allocation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 568 | struct acpi_debug_mem_block *element; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 572 | element = acpi_gbl_global_list->list_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
| 574 | /* Search for the address. */ |
| 575 | |
| 576 | while (element) { |
| 577 | if (element == allocation) { |
| 578 | return (element); |
| 579 | } |
| 580 | |
| 581 | element = element->next; |
| 582 | } |
| 583 | |
| 584 | return (NULL); |
| 585 | } |
| 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | /******************************************************************************* |
| 588 | * |
| 589 | * FUNCTION: acpi_ut_track_allocation |
| 590 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 591 | * PARAMETERS: Allocation - Address of allocated memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | * Size - Size of the allocation |
| 593 | * alloc_type - MEM_MALLOC or MEM_CALLOC |
| 594 | * Component - Component type of caller |
| 595 | * Module - Source file name of caller |
| 596 | * Line - Line number of caller |
| 597 | * |
| 598 | * RETURN: None. |
| 599 | * |
| 600 | * DESCRIPTION: Inserts an element into the global allocation tracking list. |
| 601 | * |
| 602 | ******************************************************************************/ |
| 603 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 604 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 605 | acpi_ut_track_allocation(struct acpi_debug_mem_block *allocation, |
| 606 | acpi_size size, |
| 607 | u8 alloc_type, u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 609 | struct acpi_memory_list *mem_list; |
| 610 | struct acpi_debug_mem_block *element; |
| 611 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | ACPI_FUNCTION_TRACE_PTR("ut_track_allocation", allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 615 | mem_list = acpi_gbl_global_list; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 616 | status = acpi_ut_acquire_mutex(ACPI_MTX_MEMORY); |
| 617 | if (ACPI_FAILURE(status)) { |
| 618 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* |
| 622 | * Search list for this address to make sure it is not already on the list. |
| 623 | * This will catch several kinds of problems. |
| 624 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 625 | element = acpi_ut_find_allocation(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | if (element) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 627 | ACPI_REPORT_ERROR(("ut_track_allocation: Allocation already present in list! (%p)\n", allocation)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 629 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Element %p Address %p\n", |
| 630 | element, allocation)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | goto unlock_and_exit; |
| 633 | } |
| 634 | |
| 635 | /* Fill in the instance data. */ |
| 636 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 637 | allocation->size = (u32) size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | allocation->alloc_type = alloc_type; |
| 639 | allocation->component = component; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 640 | allocation->line = line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 642 | ACPI_STRNCPY(allocation->module, module, ACPI_MAX_MODULE_NAME); |
| 643 | allocation->module[ACPI_MAX_MODULE_NAME - 1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
| 645 | /* Insert at list head */ |
| 646 | |
| 647 | if (mem_list->list_head) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 648 | ((struct acpi_debug_mem_block *)(mem_list->list_head))-> |
| 649 | previous = allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | allocation->next = mem_list->list_head; |
| 653 | allocation->previous = NULL; |
| 654 | |
| 655 | mem_list->list_head = allocation; |
| 656 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 657 | unlock_and_exit: |
| 658 | status = acpi_ut_release_mutex(ACPI_MTX_MEMORY); |
| 659 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | /******************************************************************************* |
| 663 | * |
| 664 | * FUNCTION: acpi_ut_remove_allocation |
| 665 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 666 | * PARAMETERS: Allocation - Address of allocated memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | * Component - Component type of caller |
| 668 | * Module - Source file name of caller |
| 669 | * Line - Line number of caller |
| 670 | * |
| 671 | * RETURN: |
| 672 | * |
| 673 | * DESCRIPTION: Deletes an element from the global allocation tracking list. |
| 674 | * |
| 675 | ******************************************************************************/ |
| 676 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 677 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 678 | acpi_ut_remove_allocation(struct acpi_debug_mem_block *allocation, |
| 679 | u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 681 | struct acpi_memory_list *mem_list; |
| 682 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 684 | ACPI_FUNCTION_TRACE("ut_remove_allocation"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 686 | mem_list = acpi_gbl_global_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | if (NULL == mem_list->list_head) { |
| 688 | /* No allocations! */ |
| 689 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 690 | _ACPI_REPORT_ERROR(module, line, component, |
| 691 | ("ut_remove_allocation: Empty allocation list, nothing to free!\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 693 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 696 | status = acpi_ut_acquire_mutex(ACPI_MTX_MEMORY); |
| 697 | if (ACPI_FAILURE(status)) { |
| 698 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | /* Unlink */ |
| 702 | |
| 703 | if (allocation->previous) { |
| 704 | (allocation->previous)->next = allocation->next; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 705 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | mem_list->list_head = allocation->next; |
| 707 | } |
| 708 | |
| 709 | if (allocation->next) { |
| 710 | (allocation->next)->previous = allocation->previous; |
| 711 | } |
| 712 | |
| 713 | /* Mark the segment as deleted */ |
| 714 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | ACPI_MEMSET(&allocation->user_space, 0xEA, allocation->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 717 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "Freeing size 0%X\n", |
| 718 | allocation->size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 720 | status = acpi_ut_release_mutex(ACPI_MTX_MEMORY); |
| 721 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | /******************************************************************************* |
| 725 | * |
| 726 | * FUNCTION: acpi_ut_dump_allocation_info |
| 727 | * |
| 728 | * PARAMETERS: |
| 729 | * |
| 730 | * RETURN: None |
| 731 | * |
| 732 | * DESCRIPTION: Print some info about the outstanding allocations. |
| 733 | * |
| 734 | ******************************************************************************/ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | #ifdef ACPI_FUTURE_USAGE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 737 | void acpi_ut_dump_allocation_info(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | { |
| 739 | /* |
| 740 | struct acpi_memory_list *mem_list; |
| 741 | */ |
| 742 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 743 | ACPI_FUNCTION_TRACE("ut_dump_allocation_info"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
| 745 | /* |
| 746 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 747 | ("%30s: %4d (%3d Kb)\n", "Current allocations", |
| 748 | mem_list->current_count, |
| 749 | ROUND_UP_TO_1K (mem_list->current_size))); |
| 750 | |
| 751 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 752 | ("%30s: %4d (%3d Kb)\n", "Max concurrent allocations", |
| 753 | mem_list->max_concurrent_count, |
| 754 | ROUND_UP_TO_1K (mem_list->max_concurrent_size))); |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 757 | ("%30s: %4d (%3d Kb)\n", "Total (all) internal objects", |
| 758 | running_object_count, |
| 759 | ROUND_UP_TO_1K (running_object_size))); |
| 760 | |
| 761 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 762 | ("%30s: %4d (%3d Kb)\n", "Total (all) allocations", |
| 763 | running_alloc_count, |
| 764 | ROUND_UP_TO_1K (running_alloc_size))); |
| 765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 767 | ("%30s: %4d (%3d Kb)\n", "Current Nodes", |
| 768 | acpi_gbl_current_node_count, |
| 769 | ROUND_UP_TO_1K (acpi_gbl_current_node_size))); |
| 770 | |
| 771 | ACPI_DEBUG_PRINT (TRACE_ALLOCATIONS | TRACE_TABLES, |
| 772 | ("%30s: %4d (%3d Kb)\n", "Max Nodes", |
| 773 | acpi_gbl_max_concurrent_node_count, |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 774 | ROUND_UP_TO_1K ((acpi_gbl_max_concurrent_node_count * |
| 775 | sizeof (struct acpi_namespace_node))))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | */ |
| 777 | return_VOID; |
| 778 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 779 | #endif /* ACPI_FUTURE_USAGE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
| 781 | /******************************************************************************* |
| 782 | * |
| 783 | * FUNCTION: acpi_ut_dump_allocations |
| 784 | * |
| 785 | * PARAMETERS: Component - Component(s) to dump info for. |
| 786 | * Module - Module to dump info for. NULL means all. |
| 787 | * |
| 788 | * RETURN: None |
| 789 | * |
| 790 | * DESCRIPTION: Print a list of all outstanding allocations. |
| 791 | * |
| 792 | ******************************************************************************/ |
| 793 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 794 | void acpi_ut_dump_allocations(u32 component, char *module) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 796 | struct acpi_debug_mem_block *element; |
| 797 | union acpi_descriptor *descriptor; |
| 798 | u32 num_outstanding = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 800 | ACPI_FUNCTION_TRACE("ut_dump_allocations"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | /* |
| 803 | * Walk the allocation list. |
| 804 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 805 | if (ACPI_FAILURE(acpi_ut_acquire_mutex(ACPI_MTX_MEMORY))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | return; |
| 807 | } |
| 808 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 809 | element = acpi_gbl_global_list->list_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | while (element) { |
| 811 | if ((element->component & component) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 812 | ((module == NULL) |
| 813 | || (0 == ACPI_STRCMP(module, element->module)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | /* Ignore allocated objects that are in a cache */ |
| 815 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 816 | descriptor = |
| 817 | ACPI_CAST_PTR(union acpi_descriptor, |
| 818 | &element->user_space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | if (descriptor->descriptor_id != ACPI_DESC_TYPE_CACHED) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 820 | acpi_os_printf("%p Len %04X %9.9s-%d [%s] ", |
| 821 | descriptor, element->size, |
| 822 | element->module, element->line, |
| 823 | acpi_ut_get_descriptor_name |
| 824 | (descriptor)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
| 826 | /* Most of the elements will be Operand objects. */ |
| 827 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 828 | switch (ACPI_GET_DESCRIPTOR_TYPE(descriptor)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | case ACPI_DESC_TYPE_OPERAND: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 830 | acpi_os_printf("%12.12s R%hd", |
| 831 | acpi_ut_get_type_name |
| 832 | (descriptor->object. |
| 833 | common.type), |
| 834 | descriptor->object. |
| 835 | common.reference_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | break; |
| 837 | |
| 838 | case ACPI_DESC_TYPE_PARSER: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 839 | acpi_os_printf("aml_opcode %04hX", |
| 840 | descriptor->op.asl. |
| 841 | aml_opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | break; |
| 843 | |
| 844 | case ACPI_DESC_TYPE_NAMED: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 845 | acpi_os_printf("%4.4s", |
| 846 | acpi_ut_get_node_name |
| 847 | (&descriptor->node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | break; |
| 849 | |
| 850 | default: |
| 851 | break; |
| 852 | } |
| 853 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 854 | acpi_os_printf("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | num_outstanding++; |
| 856 | } |
| 857 | } |
| 858 | element = element->next; |
| 859 | } |
| 860 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 861 | (void)acpi_ut_release_mutex(ACPI_MTX_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
| 863 | /* Print summary */ |
| 864 | |
| 865 | if (!num_outstanding) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 866 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 867 | "No outstanding allocations\n")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 868 | } else { |
| 869 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 870 | "%d(%X) Outstanding allocations\n", |
| 871 | num_outstanding, num_outstanding)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | return_VOID; |
| 875 | } |
| 876 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 877 | #endif /* #ifdef ACPI_DBG_TRACK_ALLOCATIONS */ |