| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* | 
|  | 2 | * | 
|  | 3 | * Module Name: utdelete - object deletion and reference count utilities | 
|  | 4 | * | 
|  | 5 | ******************************************************************************/ | 
|  | 6 |  | 
|  | 7 | /* | 
| Len Brown | 75a44ce | 2008-04-23 23:00:13 -0400 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2008, 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> | 
|  | 45 | #include <acpi/acinterp.h> | 
|  | 46 | #include <acpi/acnamesp.h> | 
|  | 47 | #include <acpi/acevents.h> | 
|  | 48 | #include <acpi/amlcode.h> | 
|  | 49 |  | 
|  | 50 | #define _COMPONENT          ACPI_UTILITIES | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | ACPI_MODULE_NAME("utdelete") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 53 | /* Local prototypes */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 54 | static void acpi_ut_delete_internal_obj(union acpi_operand_object *object); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 55 |  | 
|  | 56 | static void | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
|  | 59 | /******************************************************************************* | 
|  | 60 | * | 
|  | 61 | * FUNCTION:    acpi_ut_delete_internal_obj | 
|  | 62 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 63 | * PARAMETERS:  Object         - Object to be deleted | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | * | 
|  | 65 | * RETURN:      None | 
|  | 66 | * | 
|  | 67 | * DESCRIPTION: Low level object deletion, after reference counts have been | 
|  | 68 | *              updated (All reference counts, including sub-objects!) | 
|  | 69 | * | 
|  | 70 | ******************************************************************************/ | 
|  | 71 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 72 | static void acpi_ut_delete_internal_obj(union acpi_operand_object *object) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 74 | void *obj_pointer = NULL; | 
|  | 75 | union acpi_operand_object *handler_desc; | 
|  | 76 | union acpi_operand_object *second_desc; | 
|  | 77 | union acpi_operand_object *next_desc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 79 | ACPI_FUNCTION_TRACE_PTR(ut_delete_internal_obj, object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 |  | 
|  | 81 | if (!object) { | 
|  | 82 | return_VOID; | 
|  | 83 | } | 
|  | 84 |  | 
|  | 85 | /* | 
|  | 86 | * Must delete or free any pointers within the object that are not | 
|  | 87 | * actual ACPI objects (for example, a raw buffer pointer). | 
|  | 88 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 89 | switch (ACPI_GET_OBJECT_TYPE(object)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | case ACPI_TYPE_STRING: | 
|  | 91 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 93 | "**** String %p, ptr %p\n", object, | 
|  | 94 | object->string.pointer)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 |  | 
|  | 96 | /* Free the actual string buffer */ | 
|  | 97 |  | 
|  | 98 | if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 99 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | /* But only if it is NOT a pointer into an ACPI table */ | 
|  | 101 |  | 
|  | 102 | obj_pointer = object->string.pointer; | 
|  | 103 | } | 
|  | 104 | break; | 
|  | 105 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | case ACPI_TYPE_BUFFER: | 
|  | 107 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 108 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 109 | "**** Buffer %p, ptr %p\n", object, | 
|  | 110 | object->buffer.pointer)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
|  | 112 | /* Free the actual buffer */ | 
|  | 113 |  | 
|  | 114 | if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* But only if it is NOT a pointer into an ACPI table */ | 
|  | 117 |  | 
|  | 118 | obj_pointer = object->buffer.pointer; | 
|  | 119 | } | 
|  | 120 | break; | 
|  | 121 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | case ACPI_TYPE_PACKAGE: | 
|  | 123 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 125 | " **** Package of count %X\n", | 
|  | 126 | object->package.count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 |  | 
|  | 128 | /* | 
|  | 129 | * Elements of the package are not handled here, they are deleted | 
|  | 130 | * separately | 
|  | 131 | */ | 
|  | 132 |  | 
|  | 133 | /* Free the (variable length) element pointer array */ | 
|  | 134 |  | 
|  | 135 | obj_pointer = object->package.elements; | 
|  | 136 | break; | 
|  | 137 |  | 
| Bob Moore | 2843ae7 | 2008-07-04 10:41:41 +0800 | [diff] [blame] | 138 | /* | 
|  | 139 | * These objects have a possible list of notify handlers. | 
|  | 140 | * Device object also may have a GPE block. | 
|  | 141 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | case ACPI_TYPE_DEVICE: | 
|  | 143 |  | 
|  | 144 | if (object->device.gpe_block) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 145 | (void)acpi_ev_delete_gpe_block(object->device. | 
|  | 146 | gpe_block); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } | 
|  | 148 |  | 
| Bob Moore | 2843ae7 | 2008-07-04 10:41:41 +0800 | [diff] [blame] | 149 | /*lint -fallthrough */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 |  | 
| Bob Moore | 2843ae7 | 2008-07-04 10:41:41 +0800 | [diff] [blame] | 151 | case ACPI_TYPE_PROCESSOR: | 
|  | 152 | case ACPI_TYPE_THERMAL: | 
|  | 153 |  | 
|  | 154 | /* Walk the notify handler list for this object */ | 
|  | 155 |  | 
|  | 156 | handler_desc = object->common_notify.handler; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | while (handler_desc) { | 
|  | 158 | next_desc = handler_desc->address_space.next; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | acpi_ut_remove_reference(handler_desc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | handler_desc = next_desc; | 
|  | 161 | } | 
|  | 162 | break; | 
|  | 163 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | case ACPI_TYPE_MUTEX: | 
|  | 165 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 166 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 167 | "***** Mutex %p, OS Mutex %p\n", | 
|  | 168 | object, object->mutex.os_mutex)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 |  | 
| Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 170 | if (object == acpi_gbl_global_lock_mutex) { | 
| Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 171 |  | 
|  | 172 | /* Global Lock has extra semaphore */ | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 173 |  | 
|  | 174 | (void) | 
|  | 175 | acpi_os_delete_semaphore | 
|  | 176 | (acpi_gbl_global_lock_semaphore); | 
|  | 177 | acpi_gbl_global_lock_semaphore = NULL; | 
| Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 178 |  | 
|  | 179 | acpi_os_delete_mutex(object->mutex.os_mutex); | 
|  | 180 | acpi_gbl_global_lock_mutex = NULL; | 
|  | 181 | } else { | 
| Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 182 | acpi_ex_unlink_mutex(object); | 
| Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 183 | acpi_os_delete_mutex(object->mutex.os_mutex); | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 184 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | break; | 
|  | 186 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | case ACPI_TYPE_EVENT: | 
|  | 188 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 190 | "***** Event %p, OS Semaphore %p\n", | 
|  | 191 | object, object->event.os_semaphore)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 193 | (void)acpi_os_delete_semaphore(object->event.os_semaphore); | 
|  | 194 | object->event.os_semaphore = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | break; | 
|  | 196 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | case ACPI_TYPE_METHOD: | 
|  | 198 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 200 | "***** Method %p\n", object)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 202 | /* Delete the method mutex if it exists */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 204 | if (object->method.mutex) { | 
|  | 205 | acpi_os_delete_mutex(object->method.mutex->mutex. | 
|  | 206 | os_mutex); | 
|  | 207 | acpi_ut_delete_object_desc(object->method.mutex); | 
|  | 208 | object->method.mutex = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } | 
|  | 210 | break; | 
|  | 211 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | case ACPI_TYPE_REGION: | 
|  | 213 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 214 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 215 | "***** Region %p\n", object)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 217 | second_desc = acpi_ns_get_secondary_object(object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | if (second_desc) { | 
|  | 219 | /* | 
|  | 220 | * Free the region_context if and only if the handler is one of the | 
|  | 221 | * default handlers -- and therefore, we created the context object | 
|  | 222 | * locally, it was not created by an external caller. | 
|  | 223 | */ | 
|  | 224 | handler_desc = object->region.handler; | 
|  | 225 | if (handler_desc) { | 
| Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 226 | if (handler_desc->address_space.handler_flags & | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) { | 
| Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 228 |  | 
|  | 229 | /* Deactivate region and free region context */ | 
|  | 230 |  | 
|  | 231 | if (handler_desc->address_space.setup) { | 
|  | 232 | (void)handler_desc-> | 
|  | 233 | address_space.setup(object, | 
|  | 234 | ACPI_REGION_DEACTIVATE, | 
|  | 235 | handler_desc-> | 
|  | 236 | address_space. | 
|  | 237 | context, | 
|  | 238 | &second_desc-> | 
|  | 239 | extra. | 
|  | 240 | region_context); | 
|  | 241 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } | 
|  | 243 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | acpi_ut_remove_reference(handler_desc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
|  | 247 | /* Now we can free the Extra object */ | 
|  | 248 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 249 | acpi_ut_delete_object_desc(second_desc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } | 
|  | 251 | break; | 
|  | 252 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | case ACPI_TYPE_BUFFER_FIELD: | 
|  | 254 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 256 | "***** Buffer Field %p\n", object)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | second_desc = acpi_ns_get_secondary_object(object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | if (second_desc) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 260 | acpi_ut_delete_object_desc(second_desc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } | 
|  | 262 | break; | 
|  | 263 |  | 
| Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 264 | case ACPI_TYPE_LOCAL_BANK_FIELD: | 
|  | 265 |  | 
|  | 266 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 267 | "***** Bank Field %p\n", object)); | 
|  | 268 |  | 
|  | 269 | second_desc = acpi_ns_get_secondary_object(object); | 
|  | 270 | if (second_desc) { | 
|  | 271 | acpi_ut_delete_object_desc(second_desc); | 
|  | 272 | } | 
|  | 273 | break; | 
|  | 274 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | default: | 
|  | 276 | break; | 
|  | 277 | } | 
|  | 278 |  | 
|  | 279 | /* Free any allocated memory (pointer within the object) found above */ | 
|  | 280 |  | 
|  | 281 | if (obj_pointer) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 282 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 283 | "Deleting Object Subptr %p\n", obj_pointer)); | 
| Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 284 | ACPI_FREE(obj_pointer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } | 
|  | 286 |  | 
|  | 287 | /* Now the object can be safely deleted */ | 
|  | 288 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 289 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "Deleting Object %p [%s]\n", | 
|  | 290 | object, acpi_ut_get_object_type_name(object))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 292 | acpi_ut_delete_object_desc(object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return_VOID; | 
|  | 294 | } | 
|  | 295 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | /******************************************************************************* | 
|  | 297 | * | 
|  | 298 | * FUNCTION:    acpi_ut_delete_internal_object_list | 
|  | 299 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 300 | * PARAMETERS:  obj_list        - Pointer to the list to be deleted | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | * | 
|  | 302 | * RETURN:      None | 
|  | 303 | * | 
|  | 304 | * DESCRIPTION: This function deletes an internal object list, including both | 
|  | 305 | *              simple objects and package objects | 
|  | 306 | * | 
|  | 307 | ******************************************************************************/ | 
|  | 308 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 309 | void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 311 | union acpi_operand_object **internal_obj; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 313 | ACPI_FUNCTION_TRACE(ut_delete_internal_object_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 |  | 
|  | 315 | /* Walk the null-terminated internal list */ | 
|  | 316 |  | 
|  | 317 | for (internal_obj = obj_list; *internal_obj; internal_obj++) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | acpi_ut_remove_reference(*internal_obj); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } | 
|  | 320 |  | 
|  | 321 | /* Free the combined parameter pointer list and object array */ | 
|  | 322 |  | 
| Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 323 | ACPI_FREE(obj_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | return_VOID; | 
|  | 325 | } | 
|  | 326 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | /******************************************************************************* | 
|  | 328 | * | 
|  | 329 | * FUNCTION:    acpi_ut_update_ref_count | 
|  | 330 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 331 | * PARAMETERS:  Object          - Object whose ref count is to be updated | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | *              Action          - What to do | 
|  | 333 | * | 
|  | 334 | * RETURN:      New ref count | 
|  | 335 | * | 
|  | 336 | * DESCRIPTION: Modify the ref count and return it. | 
|  | 337 | * | 
|  | 338 | ******************************************************************************/ | 
|  | 339 |  | 
|  | 340 | static void | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 343 | u16 count; | 
|  | 344 | u16 new_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 346 | ACPI_FUNCTION_NAME(ut_update_ref_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 |  | 
|  | 348 | if (!object) { | 
|  | 349 | return; | 
|  | 350 | } | 
|  | 351 |  | 
|  | 352 | count = object->common.reference_count; | 
|  | 353 | new_count = count; | 
|  | 354 |  | 
|  | 355 | /* | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 356 | * Perform the reference count action (increment, decrement, force delete) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | */ | 
|  | 358 | switch (action) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | case REF_INCREMENT: | 
|  | 360 |  | 
|  | 361 | new_count++; | 
|  | 362 | object->common.reference_count = new_count; | 
|  | 363 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 365 | "Obj %p Refs=%X, [Incremented]\n", | 
|  | 366 | object, new_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | break; | 
|  | 368 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | case REF_DECREMENT: | 
|  | 370 |  | 
|  | 371 | if (count < 1) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 372 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 373 | "Obj %p Refs=%X, can't decrement! (Set to 0)\n", | 
|  | 374 | object, new_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 |  | 
|  | 376 | new_count = 0; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 377 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | new_count--; | 
|  | 379 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 380 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 381 | "Obj %p Refs=%X, [Decremented]\n", | 
|  | 382 | object, new_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } | 
|  | 384 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 385 | if (ACPI_GET_OBJECT_TYPE(object) == ACPI_TYPE_METHOD) { | 
|  | 386 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 387 | "Method Obj %p Refs=%X, [Decremented]\n", | 
|  | 388 | object, new_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } | 
|  | 390 |  | 
|  | 391 | object->common.reference_count = new_count; | 
|  | 392 | if (new_count == 0) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 393 | acpi_ut_delete_internal_obj(object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | break; | 
|  | 396 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | case REF_FORCE_DELETE: | 
|  | 398 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 399 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 400 | "Obj %p Refs=%X, Force delete! (Set to 0)\n", | 
|  | 401 | object, count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 |  | 
|  | 403 | new_count = 0; | 
|  | 404 | object->common.reference_count = new_count; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 405 | acpi_ut_delete_internal_obj(object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | break; | 
|  | 407 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | default: | 
|  | 409 |  | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 410 | ACPI_ERROR((AE_INFO, "Unknown action (%X)", action)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | break; | 
|  | 412 | } | 
|  | 413 |  | 
|  | 414 | /* | 
|  | 415 | * Sanity check the reference count, for debug purposes only. | 
|  | 416 | * (A deleted object will have a huge reference count) | 
|  | 417 | */ | 
|  | 418 | if (count > ACPI_MAX_REFERENCE_COUNT) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 419 | ACPI_WARNING((AE_INFO, | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 420 | "Large Reference Count (%X) in object %p", count, | 
|  | 421 | object)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } | 
|  | 424 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | /******************************************************************************* | 
|  | 426 | * | 
|  | 427 | * FUNCTION:    acpi_ut_update_object_reference | 
|  | 428 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 429 | * PARAMETERS:  Object              - Increment ref count for this object | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | *                                    and all sub-objects | 
|  | 431 | *              Action              - Either REF_INCREMENT or REF_DECREMENT or | 
|  | 432 | *                                    REF_FORCE_DELETE | 
|  | 433 | * | 
|  | 434 | * RETURN:      Status | 
|  | 435 | * | 
|  | 436 | * DESCRIPTION: Increment the object reference count | 
|  | 437 | * | 
|  | 438 | * Object references are incremented when: | 
|  | 439 | * 1) An object is attached to a Node (namespace object) | 
|  | 440 | * 2) An object is copied (all subobjects must be incremented) | 
|  | 441 | * | 
|  | 442 | * Object references are decremented when: | 
|  | 443 | * 1) An object is detached from an Node | 
|  | 444 | * | 
|  | 445 | ******************************************************************************/ | 
|  | 446 |  | 
|  | 447 | acpi_status | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 448 | acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | acpi_status status = AE_OK; | 
|  | 451 | union acpi_generic_state *state_list = NULL; | 
|  | 452 | union acpi_operand_object *next_object = NULL; | 
|  | 453 | union acpi_generic_state *state; | 
| Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 454 | u32 i; | 
| David Shaohua Li | 4c3ffbd | 2005-07-14 00:00:00 -0400 | [diff] [blame] | 455 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 456 | ACPI_FUNCTION_TRACE_PTR(ut_update_object_reference, object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 458 | while (object) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 459 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 460 | /* Make sure that this isn't a namespace handle */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 462 | if (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) { | 
|  | 463 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 464 | "Object %p is NS handle\n", object)); | 
|  | 465 | return_ACPI_STATUS(AE_OK); | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 466 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 |  | 
|  | 468 | /* | 
|  | 469 | * All sub-objects must have their reference count incremented also. | 
|  | 470 | * Different object types have different subobjects. | 
|  | 471 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 472 | switch (ACPI_GET_OBJECT_TYPE(object)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | case ACPI_TYPE_DEVICE: | 
| Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 474 | case ACPI_TYPE_PROCESSOR: | 
|  | 475 | case ACPI_TYPE_POWER: | 
|  | 476 | case ACPI_TYPE_THERMAL: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 |  | 
| Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 478 | /* Update the notify objects for these types (if present) */ | 
|  | 479 |  | 
|  | 480 | acpi_ut_update_ref_count(object->common_notify. | 
|  | 481 | system_notify, action); | 
|  | 482 | acpi_ut_update_ref_count(object->common_notify. | 
|  | 483 | device_notify, action); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | break; | 
|  | 485 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | case ACPI_TYPE_PACKAGE: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | /* | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 488 | * We must update all the sub-objects of the package, | 
|  | 489 | * each of whom may have their own sub-objects. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | */ | 
|  | 491 | for (i = 0; i < object->package.count; i++) { | 
|  | 492 | /* | 
|  | 493 | * Push each element onto the stack for later processing. | 
|  | 494 | * Note: There can be null elements within the package, | 
|  | 495 | * these are simply ignored | 
|  | 496 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 497 | status = | 
|  | 498 | acpi_ut_create_update_state_and_push | 
|  | 499 | (object->package.elements[i], action, | 
|  | 500 | &state_list); | 
|  | 501 | if (ACPI_FAILURE(status)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | goto error_exit; | 
|  | 503 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } | 
|  | 505 | break; | 
|  | 506 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | case ACPI_TYPE_BUFFER_FIELD: | 
|  | 508 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 509 | next_object = object->buffer_field.buffer_obj; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | break; | 
|  | 511 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | case ACPI_TYPE_LOCAL_REGION_FIELD: | 
|  | 513 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 514 | next_object = object->field.region_obj; | 
|  | 515 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 |  | 
|  | 517 | case ACPI_TYPE_LOCAL_BANK_FIELD: | 
|  | 518 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 519 | next_object = object->bank_field.bank_obj; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 520 | status = | 
|  | 521 | acpi_ut_create_update_state_and_push(object-> | 
|  | 522 | bank_field. | 
|  | 523 | region_obj, | 
|  | 524 | action, | 
|  | 525 | &state_list); | 
|  | 526 | if (ACPI_FAILURE(status)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | goto error_exit; | 
|  | 528 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | break; | 
|  | 530 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | case ACPI_TYPE_LOCAL_INDEX_FIELD: | 
|  | 532 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 533 | next_object = object->index_field.index_obj; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | status = | 
|  | 535 | acpi_ut_create_update_state_and_push(object-> | 
|  | 536 | index_field. | 
|  | 537 | data_obj, | 
|  | 538 | action, | 
|  | 539 | &state_list); | 
|  | 540 | if (ACPI_FAILURE(status)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | goto error_exit; | 
|  | 542 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | break; | 
|  | 544 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | case ACPI_TYPE_LOCAL_REFERENCE: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | /* | 
| Bob Moore | 9e41d93 | 2008-04-10 19:06:39 +0400 | [diff] [blame] | 547 | * The target of an Index (a package, string, or buffer) or a named | 
|  | 548 | * reference must track changes to the ref count of the index or | 
|  | 549 | * target object. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | */ | 
| Bob Moore | 9e41d93 | 2008-04-10 19:06:39 +0400 | [diff] [blame] | 551 | if ((object->reference.opcode == AML_INDEX_OP) || | 
|  | 552 | (object->reference.opcode == AML_INT_NAMEPATH_OP)) { | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 553 | next_object = object->reference.object; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } | 
|  | 555 | break; | 
|  | 556 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | case ACPI_TYPE_REGION: | 
|  | 558 | default: | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 559 | break;	/* No subobjects for all other types */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } | 
|  | 561 |  | 
|  | 562 | /* | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 563 | * Now we can update the count in the main object. This can only | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | * happen after we update the sub-objects in case this causes the | 
|  | 565 | * main object to be deleted. | 
|  | 566 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 567 | acpi_ut_update_ref_count(object, action); | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 568 | object = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 |  | 
|  | 570 | /* Move on to the next object to be updated */ | 
|  | 571 |  | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 572 | if (next_object) { | 
|  | 573 | object = next_object; | 
|  | 574 | next_object = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 575 | } else if (state_list) { | 
|  | 576 | state = acpi_ut_pop_generic_state(&state_list); | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 577 | object = state->update.object; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 578 | acpi_ut_delete_generic_state(state); | 
| Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame] | 579 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } | 
|  | 581 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 582 | return_ACPI_STATUS(AE_OK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 584 | error_exit: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 |  | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 586 | ACPI_EXCEPTION((AE_INFO, status, | 
|  | 587 | "Could not update object reference count")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 589 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } | 
|  | 591 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | /******************************************************************************* | 
|  | 593 | * | 
|  | 594 | * FUNCTION:    acpi_ut_add_reference | 
|  | 595 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 596 | * PARAMETERS:  Object          - Object whose reference count is to be | 
|  | 597 | *                                incremented | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | * | 
|  | 599 | * RETURN:      None | 
|  | 600 | * | 
|  | 601 | * DESCRIPTION: Add one reference to an ACPI object | 
|  | 602 | * | 
|  | 603 | ******************************************************************************/ | 
|  | 604 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 605 | void acpi_ut_add_reference(union acpi_operand_object *object) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | { | 
|  | 607 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 608 | ACPI_FUNCTION_TRACE_PTR(ut_add_reference, object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 |  | 
|  | 610 | /* Ensure that we have a valid object */ | 
|  | 611 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 612 | if (!acpi_ut_valid_internal_object(object)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | return_VOID; | 
|  | 614 | } | 
|  | 615 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 616 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 617 | "Obj %p Current Refs=%X [To Be Incremented]\n", | 
|  | 618 | object, object->common.reference_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 |  | 
|  | 620 | /* Increment the reference count */ | 
|  | 621 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 622 | (void)acpi_ut_update_object_reference(object, REF_INCREMENT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | return_VOID; | 
|  | 624 | } | 
|  | 625 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | /******************************************************************************* | 
|  | 627 | * | 
|  | 628 | * FUNCTION:    acpi_ut_remove_reference | 
|  | 629 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 630 | * PARAMETERS:  Object         - Object whose ref count will be decremented | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * | 
|  | 632 | * RETURN:      None | 
|  | 633 | * | 
|  | 634 | * DESCRIPTION: Decrement the reference count of an ACPI internal object | 
|  | 635 | * | 
|  | 636 | ******************************************************************************/ | 
|  | 637 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 638 | void acpi_ut_remove_reference(union acpi_operand_object *object) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | { | 
|  | 640 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 641 | ACPI_FUNCTION_TRACE_PTR(ut_remove_reference, object); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 |  | 
|  | 643 | /* | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 644 | * Allow a NULL pointer to be passed in, just ignore it. This saves | 
|  | 645 | * each caller from having to check. Also, ignore NS nodes. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | * | 
|  | 647 | */ | 
|  | 648 | if (!object || | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 649 | (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | return_VOID; | 
|  | 651 | } | 
|  | 652 |  | 
|  | 653 | /* Ensure that we have a valid object */ | 
|  | 654 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 655 | if (!acpi_ut_valid_internal_object(object)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | return_VOID; | 
|  | 657 | } | 
|  | 658 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 659 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, | 
|  | 660 | "Obj %p Current Refs=%X [To Be Decremented]\n", | 
|  | 661 | object, object->common.reference_count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 |  | 
|  | 663 | /* | 
|  | 664 | * Decrement the reference count, and only actually delete the object | 
| Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 665 | * if the reference count becomes 0. (Must also decrement the ref count | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | * of all subobjects!) | 
|  | 667 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 668 | (void)acpi_ut_update_object_reference(object, REF_DECREMENT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | return_VOID; | 
|  | 670 | } |