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