[XFS] Don't update mtime on rename source
[linux-2.6/verdex.git] / drivers / acpi / utilities / utalloc.c
blobe7bf34a7b1d29aa6819ddbfe62403012ca48551e
1 /******************************************************************************
3 * Module Name: utalloc - local memory allocation routines
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2008, 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 <acpi/acdebug.h>
47 #define _COMPONENT ACPI_UTILITIES
48 ACPI_MODULE_NAME("utalloc")
50 /*******************************************************************************
52 * FUNCTION: acpi_ut_create_caches
54 * PARAMETERS: None
56 * RETURN: Status
58 * DESCRIPTION: Create all local caches
60 ******************************************************************************/
61 acpi_status acpi_ut_create_caches(void)
63 acpi_status status;
65 /* Object Caches, for frequently used objects */
67 status =
68 acpi_os_create_cache("Acpi-Namespace",
69 sizeof(struct acpi_namespace_node),
70 ACPI_MAX_NAMESPACE_CACHE_DEPTH,
71 &acpi_gbl_namespace_cache);
72 if (ACPI_FAILURE(status)) {
73 return (status);
76 status =
77 acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state),
78 ACPI_MAX_STATE_CACHE_DEPTH,
79 &acpi_gbl_state_cache);
80 if (ACPI_FAILURE(status)) {
81 return (status);
84 status =
85 acpi_os_create_cache("Acpi-Parse",
86 sizeof(struct acpi_parse_obj_common),
87 ACPI_MAX_PARSE_CACHE_DEPTH,
88 &acpi_gbl_ps_node_cache);
89 if (ACPI_FAILURE(status)) {
90 return (status);
93 status =
94 acpi_os_create_cache("Acpi-ParseExt",
95 sizeof(struct acpi_parse_obj_named),
96 ACPI_MAX_EXTPARSE_CACHE_DEPTH,
97 &acpi_gbl_ps_node_ext_cache);
98 if (ACPI_FAILURE(status)) {
99 return (status);
102 status =
103 acpi_os_create_cache("Acpi-Operand",
104 sizeof(union acpi_operand_object),
105 ACPI_MAX_OBJECT_CACHE_DEPTH,
106 &acpi_gbl_operand_cache);
107 if (ACPI_FAILURE(status)) {
108 return (status);
110 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
112 /* Memory allocation lists */
114 status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list);
115 if (ACPI_FAILURE(status)) {
116 return (status);
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);
126 #endif
128 return (AE_OK);
131 /*******************************************************************************
133 * FUNCTION: acpi_ut_delete_caches
135 * PARAMETERS: None
137 * RETURN: Status
139 * DESCRIPTION: Purge and delete all local caches
141 ******************************************************************************/
143 acpi_status acpi_ut_delete_caches(void)
145 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
146 char buffer[7];
148 if (acpi_gbl_display_final_mem_stats) {
149 ACPI_STRCPY(buffer, "MEMORY");
150 (void)acpi_db_display_statistics(buffer);
152 #endif
154 (void)acpi_os_delete_cache(acpi_gbl_namespace_cache);
155 acpi_gbl_namespace_cache = NULL;
157 (void)acpi_os_delete_cache(acpi_gbl_state_cache);
158 acpi_gbl_state_cache = NULL;
160 (void)acpi_os_delete_cache(acpi_gbl_operand_cache);
161 acpi_gbl_operand_cache = NULL;
163 (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache);
164 acpi_gbl_ps_node_cache = NULL;
166 (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache);
167 acpi_gbl_ps_node_ext_cache = NULL;
169 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
171 /* Debug only - display leftover memory allocation, if any */
173 acpi_ut_dump_allocations(ACPI_UINT32_MAX, NULL);
175 /* Free memory lists */
177 ACPI_FREE(acpi_gbl_global_list);
178 acpi_gbl_global_list = NULL;
180 ACPI_FREE(acpi_gbl_ns_node_list);
181 acpi_gbl_ns_node_list = NULL;
182 #endif
184 return (AE_OK);
187 /*******************************************************************************
189 * FUNCTION: acpi_ut_validate_buffer
191 * PARAMETERS: Buffer - Buffer descriptor to be validated
193 * RETURN: Status
195 * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer
197 ******************************************************************************/
199 acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer)
202 /* Obviously, the structure pointer must be valid */
204 if (!buffer) {
205 return (AE_BAD_PARAMETER);
208 /* Special semantics for the length */
210 if ((buffer->length == ACPI_NO_BUFFER) ||
211 (buffer->length == ACPI_ALLOCATE_BUFFER) ||
212 (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) {
213 return (AE_OK);
216 /* Length is valid, the buffer pointer must be also */
218 if (!buffer->pointer) {
219 return (AE_BAD_PARAMETER);
222 return (AE_OK);
225 /*******************************************************************************
227 * FUNCTION: acpi_ut_initialize_buffer
229 * PARAMETERS: Buffer - Buffer to be validated
230 * required_length - Length needed
232 * RETURN: Status
234 * DESCRIPTION: Validate that the buffer is of the required length or
235 * allocate a new buffer. Returned buffer is always zeroed.
237 ******************************************************************************/
239 acpi_status
240 acpi_ut_initialize_buffer(struct acpi_buffer * buffer,
241 acpi_size required_length)
243 acpi_status status = AE_OK;
245 if (!required_length) {
246 WARN_ON(1);
247 return AE_ERROR;
249 switch (buffer->length) {
250 case ACPI_NO_BUFFER:
252 /* Set the exception and returned the required length */
254 status = AE_BUFFER_OVERFLOW;
255 break;
257 case ACPI_ALLOCATE_BUFFER:
259 /* Allocate a new buffer */
261 buffer->pointer = acpi_os_allocate(required_length);
262 if (!buffer->pointer) {
263 return (AE_NO_MEMORY);
266 /* Clear the buffer */
268 ACPI_MEMSET(buffer->pointer, 0, required_length);
269 break;
271 case ACPI_ALLOCATE_LOCAL_BUFFER:
273 /* Allocate a new buffer with local interface to allow tracking */
275 buffer->pointer = ACPI_ALLOCATE_ZEROED(required_length);
276 if (!buffer->pointer) {
277 return (AE_NO_MEMORY);
279 break;
281 default:
283 /* Existing buffer: Validate the size of the buffer */
285 if (buffer->length < required_length) {
286 status = AE_BUFFER_OVERFLOW;
287 break;
290 /* Clear the buffer */
292 ACPI_MEMSET(buffer->pointer, 0, required_length);
293 break;
296 buffer->length = required_length;
297 return (status);
300 #ifdef NOT_USED_BY_LINUX
301 /*******************************************************************************
303 * FUNCTION: acpi_ut_allocate
305 * PARAMETERS: Size - Size of the allocation
306 * Component - Component type of caller
307 * Module - Source file name of caller
308 * Line - Line number of caller
310 * RETURN: Address of the allocated memory on success, NULL on failure.
312 * DESCRIPTION: Subsystem equivalent of malloc.
314 ******************************************************************************/
316 void *acpi_ut_allocate(acpi_size size,
317 u32 component, const char *module, u32 line)
319 void *allocation;
321 ACPI_FUNCTION_TRACE_U32(ut_allocate, size);
323 /* Check for an inadvertent size of zero bytes */
325 if (!size) {
326 ACPI_WARNING((module, line,
327 "Attempt to allocate zero bytes, allocating 1 byte"));
328 size = 1;
331 allocation = acpi_os_allocate(size);
332 if (!allocation) {
334 /* Report allocation error */
336 ACPI_WARNING((module, line,
337 "Could not allocate size %X", (u32) size));
339 return_PTR(NULL);
342 return_PTR(allocation);
345 /*******************************************************************************
347 * FUNCTION: acpi_ut_allocate_zeroed
349 * PARAMETERS: Size - Size of the allocation
350 * Component - Component type of caller
351 * Module - Source file name of caller
352 * Line - Line number of caller
354 * RETURN: Address of the allocated memory on success, NULL on failure.
356 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
358 ******************************************************************************/
360 void *acpi_ut_allocate_zeroed(acpi_size size,
361 u32 component, const char *module, u32 line)
363 void *allocation;
365 ACPI_FUNCTION_ENTRY();
367 allocation = acpi_ut_allocate(size, component, module, line);
368 if (allocation) {
370 /* Clear the memory block */
372 ACPI_MEMSET(allocation, 0, size);
375 return (allocation);
377 #endif