Btrfs - use %pU to print fsid
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / acpica / utalloc.c
blob0a697351cf6974474852370b843880ee3872ab7d
1 /******************************************************************************
3 * Module Name: utalloc - local memory allocation routines
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2011, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include "accommon.h"
46 #include "acdebug.h"
48 #define _COMPONENT ACPI_UTILITIES
49 ACPI_MODULE_NAME("utalloc")
51 /*******************************************************************************
53 * FUNCTION: acpi_ut_create_caches
55 * PARAMETERS: None
57 * RETURN: Status
59 * DESCRIPTION: Create all local caches
61 ******************************************************************************/
62 acpi_status acpi_ut_create_caches(void)
64 acpi_status status;
66 /* Object Caches, for frequently used objects */
68 status =
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);
77 status =
78 acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state),
79 ACPI_MAX_STATE_CACHE_DEPTH,
80 &acpi_gbl_state_cache);
81 if (ACPI_FAILURE(status)) {
82 return (status);
85 status =
86 acpi_os_create_cache("Acpi-Parse",
87 sizeof(struct acpi_parse_obj_common),
88 ACPI_MAX_PARSE_CACHE_DEPTH,
89 &acpi_gbl_ps_node_cache);
90 if (ACPI_FAILURE(status)) {
91 return (status);
94 status =
95 acpi_os_create_cache("Acpi-ParseExt",
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)) {
100 return (status);
103 status =
104 acpi_os_create_cache("Acpi-Operand",
105 sizeof(union acpi_operand_object),
106 ACPI_MAX_OBJECT_CACHE_DEPTH,
107 &acpi_gbl_operand_cache);
108 if (ACPI_FAILURE(status)) {
109 return (status);
111 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
113 /* Memory allocation lists */
115 status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list);
116 if (ACPI_FAILURE(status)) {
117 return (status);
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);
127 #endif
129 return (AE_OK);
132 /*******************************************************************************
134 * FUNCTION: acpi_ut_delete_caches
136 * PARAMETERS: None
138 * RETURN: Status
140 * DESCRIPTION: Purge and delete all local caches
142 ******************************************************************************/
144 acpi_status acpi_ut_delete_caches(void)
146 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
147 char buffer[7];
149 if (acpi_gbl_display_final_mem_stats) {
150 ACPI_STRCPY(buffer, "MEMORY");
151 (void)acpi_db_display_statistics(buffer);
153 #endif
155 (void)acpi_os_delete_cache(acpi_gbl_namespace_cache);
156 acpi_gbl_namespace_cache = NULL;
158 (void)acpi_os_delete_cache(acpi_gbl_state_cache);
159 acpi_gbl_state_cache = NULL;
161 (void)acpi_os_delete_cache(acpi_gbl_operand_cache);
162 acpi_gbl_operand_cache = NULL;
164 (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache);
165 acpi_gbl_ps_node_cache = NULL;
167 (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache);
168 acpi_gbl_ps_node_ext_cache = NULL;
170 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
172 /* Debug only - display leftover memory allocation, if any */
174 acpi_ut_dump_allocations(ACPI_UINT32_MAX, NULL);
176 /* Free memory lists */
178 ACPI_FREE(acpi_gbl_global_list);
179 acpi_gbl_global_list = NULL;
181 ACPI_FREE(acpi_gbl_ns_node_list);
182 acpi_gbl_ns_node_list = NULL;
183 #endif
185 return (AE_OK);
188 /*******************************************************************************
190 * FUNCTION: acpi_ut_validate_buffer
192 * PARAMETERS: Buffer - Buffer descriptor to be validated
194 * RETURN: Status
196 * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer
198 ******************************************************************************/
200 acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer)
203 /* Obviously, the structure pointer must be valid */
205 if (!buffer) {
206 return (AE_BAD_PARAMETER);
209 /* Special semantics for the length */
211 if ((buffer->length == ACPI_NO_BUFFER) ||
212 (buffer->length == ACPI_ALLOCATE_BUFFER) ||
213 (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) {
214 return (AE_OK);
217 /* Length is valid, the buffer pointer must be also */
219 if (!buffer->pointer) {
220 return (AE_BAD_PARAMETER);
223 return (AE_OK);
226 /*******************************************************************************
228 * FUNCTION: acpi_ut_initialize_buffer
230 * PARAMETERS: Buffer - Buffer to be validated
231 * required_length - Length needed
233 * RETURN: Status
235 * DESCRIPTION: Validate that the buffer is of the required length or
236 * allocate a new buffer. Returned buffer is always zeroed.
238 ******************************************************************************/
240 acpi_status
241 acpi_ut_initialize_buffer(struct acpi_buffer * buffer,
242 acpi_size required_length)
244 acpi_size input_buffer_length;
246 /* Parameter validation */
248 if (!buffer || !required_length) {
249 return (AE_BAD_PARAMETER);
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.
256 input_buffer_length = buffer->length;
257 buffer->length = required_length;
260 * The input buffer length contains the actual buffer length, or the type
261 * of buffer to be allocated by this routine.
263 switch (input_buffer_length) {
264 case ACPI_NO_BUFFER:
266 /* Return the exception (and the required buffer length) */
268 return (AE_BUFFER_OVERFLOW);
270 case ACPI_ALLOCATE_BUFFER:
272 /* Allocate a new buffer */
274 buffer->pointer = acpi_os_allocate(required_length);
275 break;
277 case ACPI_ALLOCATE_LOCAL_BUFFER:
279 /* Allocate a new buffer with local interface to allow tracking */
281 buffer->pointer = ACPI_ALLOCATE(required_length);
282 break;
284 default:
286 /* Existing buffer: Validate the size of the buffer */
288 if (input_buffer_length < required_length) {
289 return (AE_BUFFER_OVERFLOW);
291 break;
294 /* Validate allocation from above or input buffer pointer */
296 if (!buffer->pointer) {
297 return (AE_NO_MEMORY);
300 /* Have a valid buffer, clear it */
302 ACPI_MEMSET(buffer->pointer, 0, required_length);
303 return (AE_OK);
306 #ifdef NOT_USED_BY_LINUX
307 /*******************************************************************************
309 * FUNCTION: acpi_ut_allocate
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
316 * RETURN: Address of the allocated memory on success, NULL on failure.
318 * DESCRIPTION: Subsystem equivalent of malloc.
320 ******************************************************************************/
322 void *acpi_ut_allocate(acpi_size size,
323 u32 component, const char *module, u32 line)
325 void *allocation;
327 ACPI_FUNCTION_TRACE_U32(ut_allocate, size);
329 /* Check for an inadvertent size of zero bytes */
331 if (!size) {
332 ACPI_WARNING((module, line,
333 "Attempt to allocate zero bytes, allocating 1 byte"));
334 size = 1;
337 allocation = acpi_os_allocate(size);
338 if (!allocation) {
340 /* Report allocation error */
342 ACPI_WARNING((module, line,
343 "Could not allocate size %u", (u32) size));
345 return_PTR(NULL);
348 return_PTR(allocation);
351 /*******************************************************************************
353 * FUNCTION: acpi_ut_allocate_zeroed
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
360 * RETURN: Address of the allocated memory on success, NULL on failure.
362 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
364 ******************************************************************************/
366 void *acpi_ut_allocate_zeroed(acpi_size size,
367 u32 component, const char *module, u32 line)
369 void *allocation;
371 ACPI_FUNCTION_ENTRY();
373 allocation = acpi_ut_allocate(size, component, module, line);
374 if (allocation) {
376 /* Clear the memory block */
378 ACPI_MEMSET(allocation, 0, size);
381 return (allocation);
383 #endif