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 | /* |
Bob Moore | 4a90c7e | 2006-01-13 16:22:00 -0500 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 51 | * FUNCTION: acpi_ut_create_caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 53 | * PARAMETERS: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 55 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 57 | * DESCRIPTION: Create all local caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * |
| 59 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 60 | acpi_status acpi_ut_create_caches(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 62 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 64 | /* Object Caches, for frequently used objects */ |
| 65 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 66 | status = |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 67 | acpi_os_create_cache("Acpi-Namespace", |
| 68 | sizeof(struct acpi_namespace_node), |
| 69 | ACPI_MAX_NAMESPACE_CACHE_DEPTH, |
| 70 | &acpi_gbl_namespace_cache); |
| 71 | if (ACPI_FAILURE(status)) { |
| 72 | return (status); |
| 73 | } |
| 74 | |
| 75 | status = |
| 76 | acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 77 | ACPI_MAX_STATE_CACHE_DEPTH, |
| 78 | &acpi_gbl_state_cache); |
| 79 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 80 | return (status); |
| 81 | } |
| 82 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 83 | status = |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 84 | acpi_os_create_cache("Acpi-Parse", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 85 | sizeof(struct acpi_parse_obj_common), |
| 86 | ACPI_MAX_PARSE_CACHE_DEPTH, |
| 87 | &acpi_gbl_ps_node_cache); |
| 88 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 89 | return (status); |
| 90 | } |
| 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | status = |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 93 | acpi_os_create_cache("Acpi-ParseExt", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 94 | sizeof(struct acpi_parse_obj_named), |
| 95 | ACPI_MAX_EXTPARSE_CACHE_DEPTH, |
| 96 | &acpi_gbl_ps_node_ext_cache); |
| 97 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 98 | return (status); |
| 99 | } |
| 100 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | status = |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 102 | acpi_os_create_cache("Acpi-Operand", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | sizeof(union acpi_operand_object), |
| 104 | ACPI_MAX_OBJECT_CACHE_DEPTH, |
| 105 | &acpi_gbl_operand_cache); |
| 106 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 107 | return (status); |
| 108 | } |
| 109 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 110 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
| 111 | |
| 112 | /* Memory allocation lists */ |
| 113 | |
| 114 | status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list); |
| 115 | if (ACPI_FAILURE(status)) { |
| 116 | return (status); |
| 117 | } |
| 118 | |
| 119 | status = |
| 120 | acpi_ut_create_list("Acpi-Namespace", |
| 121 | sizeof(struct acpi_namespace_node), |
| 122 | &acpi_gbl_ns_node_list); |
| 123 | if (ACPI_FAILURE(status)) { |
| 124 | return (status); |
| 125 | } |
| 126 | #endif |
| 127 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 128 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 131 | /******************************************************************************* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 133 | * FUNCTION: acpi_ut_delete_caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 135 | * PARAMETERS: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 137 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | * |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 139 | * DESCRIPTION: Purge and delete all local caches |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | * |
| 141 | ******************************************************************************/ |
| 142 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 143 | acpi_status acpi_ut_delete_caches(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 146 | (void)acpi_os_delete_cache(acpi_gbl_namespace_cache); |
| 147 | acpi_gbl_namespace_cache = NULL; |
| 148 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 149 | (void)acpi_os_delete_cache(acpi_gbl_state_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 150 | acpi_gbl_state_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | (void)acpi_os_delete_cache(acpi_gbl_operand_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 153 | acpi_gbl_operand_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 156 | acpi_gbl_ps_node_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 159 | acpi_gbl_ps_node_ext_cache = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 161 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
| 162 | |
| 163 | /* Debug only - display leftover memory allocation, if any */ |
| 164 | |
| 165 | acpi_ut_dump_allocations(ACPI_UINT32_MAX, NULL); |
| 166 | |
| 167 | /* Free memory lists */ |
| 168 | |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 169 | ACPI_FREE(acpi_gbl_global_list); |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 170 | acpi_gbl_global_list = NULL; |
| 171 | |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 172 | ACPI_FREE(acpi_gbl_ns_node_list); |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 173 | acpi_gbl_ns_node_list = NULL; |
| 174 | #endif |
| 175 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 176 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | /******************************************************************************* |
| 180 | * |
| 181 | * FUNCTION: acpi_ut_validate_buffer |
| 182 | * |
| 183 | * PARAMETERS: Buffer - Buffer descriptor to be validated |
| 184 | * |
| 185 | * RETURN: Status |
| 186 | * |
| 187 | * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer |
| 188 | * |
| 189 | ******************************************************************************/ |
| 190 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 191 | acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
| 193 | |
| 194 | /* Obviously, the structure pointer must be valid */ |
| 195 | |
| 196 | if (!buffer) { |
| 197 | return (AE_BAD_PARAMETER); |
| 198 | } |
| 199 | |
| 200 | /* Special semantics for the length */ |
| 201 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 202 | if ((buffer->length == ACPI_NO_BUFFER) || |
| 203 | (buffer->length == ACPI_ALLOCATE_BUFFER) || |
| 204 | (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | return (AE_OK); |
| 206 | } |
| 207 | |
| 208 | /* Length is valid, the buffer pointer must be also */ |
| 209 | |
| 210 | if (!buffer->pointer) { |
| 211 | return (AE_BAD_PARAMETER); |
| 212 | } |
| 213 | |
| 214 | return (AE_OK); |
| 215 | } |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /******************************************************************************* |
| 218 | * |
| 219 | * FUNCTION: acpi_ut_initialize_buffer |
| 220 | * |
| 221 | * PARAMETERS: Buffer - Buffer to be validated |
| 222 | * required_length - Length needed |
| 223 | * |
| 224 | * RETURN: Status |
| 225 | * |
| 226 | * DESCRIPTION: Validate that the buffer is of the required length or |
| 227 | * allocate a new buffer. Returned buffer is always zeroed. |
| 228 | * |
| 229 | ******************************************************************************/ |
| 230 | |
| 231 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 232 | acpi_ut_initialize_buffer(struct acpi_buffer * buffer, |
| 233 | acpi_size required_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 235 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | switch (buffer->length) { |
| 238 | case ACPI_NO_BUFFER: |
| 239 | |
| 240 | /* Set the exception and returned the required length */ |
| 241 | |
| 242 | status = AE_BUFFER_OVERFLOW; |
| 243 | break; |
| 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | case ACPI_ALLOCATE_BUFFER: |
| 246 | |
| 247 | /* Allocate a new buffer */ |
| 248 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 249 | buffer->pointer = acpi_os_allocate(required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | if (!buffer->pointer) { |
| 251 | return (AE_NO_MEMORY); |
| 252 | } |
| 253 | |
| 254 | /* Clear the buffer */ |
| 255 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | ACPI_MEMSET(buffer->pointer, 0, required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | break; |
| 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | case ACPI_ALLOCATE_LOCAL_BUFFER: |
| 260 | |
| 261 | /* Allocate a new buffer with local interface to allow tracking */ |
| 262 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 263 | buffer->pointer = ACPI_ALLOCATE_ZEROED(required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | if (!buffer->pointer) { |
| 265 | return (AE_NO_MEMORY); |
| 266 | } |
| 267 | break; |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | default: |
| 270 | |
| 271 | /* Existing buffer: Validate the size of the buffer */ |
| 272 | |
| 273 | if (buffer->length < required_length) { |
| 274 | status = AE_BUFFER_OVERFLOW; |
| 275 | break; |
| 276 | } |
| 277 | |
| 278 | /* Clear the buffer */ |
| 279 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | ACPI_MEMSET(buffer->pointer, 0, required_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | break; |
| 282 | } |
| 283 | |
| 284 | buffer->length = required_length; |
| 285 | return (status); |
| 286 | } |
| 287 | |
Len Brown | e21c1ca | 2006-07-10 01:35:51 -0400 | [diff] [blame] | 288 | #ifdef NOT_USED_BY_LINUX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | /******************************************************************************* |
| 290 | * |
| 291 | * FUNCTION: acpi_ut_allocate |
| 292 | * |
| 293 | * PARAMETERS: Size - Size of the allocation |
| 294 | * Component - Component type of caller |
| 295 | * Module - Source file name of caller |
| 296 | * Line - Line number of caller |
| 297 | * |
| 298 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 299 | * |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 300 | * DESCRIPTION: Subsystem equivalent of malloc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | * |
| 302 | ******************************************************************************/ |
| 303 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 304 | 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] | 305 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | void *allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 308 | ACPI_FUNCTION_TRACE_U32(ut_allocate, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
| 310 | /* Check for an inadvertent size of zero bytes */ |
| 311 | |
| 312 | if (!size) { |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 313 | ACPI_WARNING((module, line, |
| 314 | "Attempt to allocate zero bytes, allocating 1 byte")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | size = 1; |
| 316 | } |
| 317 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | allocation = acpi_os_allocate(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | if (!allocation) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | /* Report allocation error */ |
| 322 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 323 | ACPI_WARNING((module, line, |
| 324 | "Could not allocate size %X", (u32) size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 326 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 329 | return_PTR(allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | /******************************************************************************* |
| 333 | * |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 334 | * FUNCTION: acpi_ut_allocate_zeroed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | * |
| 336 | * PARAMETERS: Size - Size of the allocation |
| 337 | * Component - Component type of caller |
| 338 | * Module - Source file name of caller |
| 339 | * Line - Line number of caller |
| 340 | * |
| 341 | * RETURN: Address of the allocated memory on success, NULL on failure. |
| 342 | * |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 343 | * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | * |
| 345 | ******************************************************************************/ |
| 346 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 347 | void *acpi_ut_allocate_zeroed(acpi_size size, |
| 348 | u32 component, char *module, u32 line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 350 | void *allocation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 352 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 354 | allocation = acpi_ut_allocate(size, component, module, line); |
| 355 | if (allocation) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 357 | /* Clear the memory block */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 359 | ACPI_MEMSET(allocation, 0, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 362 | return (allocation); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
Len Brown | e21c1ca | 2006-07-10 01:35:51 -0400 | [diff] [blame] | 364 | #endif |