utdelete.c 17.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: utdelete - object deletion and reference count utilities
 *
 ******************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2007, R. Byron Moore
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include <acpi/acinterp.h>
#include <acpi/acnamesp.h>
#include <acpi/acevents.h>
#include <acpi/amlcode.h>

#define _COMPONENT          ACPI_UTILITIES
L
Len Brown 已提交
51
ACPI_MODULE_NAME("utdelete")
L
Linus Torvalds 已提交
52

R
Robert Moore 已提交
53
/* Local prototypes */
L
Len Brown 已提交
54
static void acpi_ut_delete_internal_obj(union acpi_operand_object *object);
R
Robert Moore 已提交
55 56

static void
L
Len Brown 已提交
57
acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action);
L
Linus Torvalds 已提交
58 59 60 61 62

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_delete_internal_obj
 *
R
Robert Moore 已提交
63
 * PARAMETERS:  Object         - Object to be deleted
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71
 *
 * RETURN:      None
 *
 * DESCRIPTION: Low level object deletion, after reference counts have been
 *              updated (All reference counts, including sub-objects!)
 *
 ******************************************************************************/

L
Len Brown 已提交
72
static void acpi_ut_delete_internal_obj(union acpi_operand_object *object)
L
Linus Torvalds 已提交
73
{
L
Len Brown 已提交
74 75 76 77
	void *obj_pointer = NULL;
	union acpi_operand_object *handler_desc;
	union acpi_operand_object *second_desc;
	union acpi_operand_object *next_desc;
L
Linus Torvalds 已提交
78

B
Bob Moore 已提交
79
	ACPI_FUNCTION_TRACE_PTR(ut_delete_internal_obj, object);
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88

	if (!object) {
		return_VOID;
	}

	/*
	 * Must delete or free any pointers within the object that are not
	 * actual ACPI objects (for example, a raw buffer pointer).
	 */
L
Len Brown 已提交
89
	switch (ACPI_GET_OBJECT_TYPE(object)) {
L
Linus Torvalds 已提交
90 91
	case ACPI_TYPE_STRING:

L
Len Brown 已提交
92 93 94
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "**** String %p, ptr %p\n", object,
				  object->string.pointer));
L
Linus Torvalds 已提交
95 96 97 98

		/* Free the actual string buffer */

		if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
B
Bob Moore 已提交
99

L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107
			/* But only if it is NOT a pointer into an ACPI table */

			obj_pointer = object->string.pointer;
		}
		break;

	case ACPI_TYPE_BUFFER:

L
Len Brown 已提交
108 109 110
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "**** Buffer %p, ptr %p\n", object,
				  object->buffer.pointer));
L
Linus Torvalds 已提交
111 112 113 114

		/* Free the actual buffer */

		if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
B
Bob Moore 已提交
115

L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123
			/* But only if it is NOT a pointer into an ACPI table */

			obj_pointer = object->buffer.pointer;
		}
		break;

	case ACPI_TYPE_PACKAGE:

L
Len Brown 已提交
124 125 126
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  " **** Package of count %X\n",
				  object->package.count));
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140

		/*
		 * Elements of the package are not handled here, they are deleted
		 * separately
		 */

		/* Free the (variable length) element pointer array */

		obj_pointer = object->package.elements;
		break;

	case ACPI_TYPE_DEVICE:

		if (object->device.gpe_block) {
L
Len Brown 已提交
141 142
			(void)acpi_ev_delete_gpe_block(object->device.
						       gpe_block);
L
Linus Torvalds 已提交
143 144 145 146 147 148 149
		}

		/* Walk the handler list for this device */

		handler_desc = object->device.handler;
		while (handler_desc) {
			next_desc = handler_desc->address_space.next;
L
Len Brown 已提交
150
			acpi_ut_remove_reference(handler_desc);
L
Linus Torvalds 已提交
151 152 153 154 155 156
			handler_desc = next_desc;
		}
		break;

	case ACPI_TYPE_MUTEX:

L
Len Brown 已提交
157
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
B
Bob Moore 已提交
158 159 160
				  "***** Mutex %p, OS Mutex %p\n",
				  object, object->mutex.os_mutex));

161
		if (object == acpi_gbl_global_lock_mutex) {
162 163

			/* Global Lock has extra semaphore */
B
Bob Moore 已提交
164 165 166 167 168

			(void)
			    acpi_os_delete_semaphore
			    (acpi_gbl_global_lock_semaphore);
			acpi_gbl_global_lock_semaphore = NULL;
169 170 171 172

			acpi_os_delete_mutex(object->mutex.os_mutex);
			acpi_gbl_global_lock_mutex = NULL;
		} else {
173
			acpi_ex_unlink_mutex(object);
174
			acpi_os_delete_mutex(object->mutex.os_mutex);
B
Bob Moore 已提交
175
		}
L
Linus Torvalds 已提交
176 177 178 179
		break;

	case ACPI_TYPE_EVENT:

L
Len Brown 已提交
180
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
B
Bob Moore 已提交
181 182
				  "***** Event %p, OS Semaphore %p\n",
				  object, object->event.os_semaphore));
L
Linus Torvalds 已提交
183

B
Bob Moore 已提交
184 185
		(void)acpi_os_delete_semaphore(object->event.os_semaphore);
		object->event.os_semaphore = NULL;
L
Linus Torvalds 已提交
186 187 188 189
		break;

	case ACPI_TYPE_METHOD:

L
Len Brown 已提交
190 191
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "***** Method %p\n", object));
L
Linus Torvalds 已提交
192

B
Bob Moore 已提交
193
		/* Delete the method mutex if it exists */
L
Linus Torvalds 已提交
194

B
Bob Moore 已提交
195 196 197 198 199
		if (object->method.mutex) {
			acpi_os_delete_mutex(object->method.mutex->mutex.
					     os_mutex);
			acpi_ut_delete_object_desc(object->method.mutex);
			object->method.mutex = NULL;
L
Linus Torvalds 已提交
200 201 202 203 204
		}
		break;

	case ACPI_TYPE_REGION:

L
Len Brown 已提交
205 206
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "***** Region %p\n", object));
L
Linus Torvalds 已提交
207

L
Len Brown 已提交
208
		second_desc = acpi_ns_get_secondary_object(object);
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216
		if (second_desc) {
			/*
			 * Free the region_context if and only if the handler is one of the
			 * default handlers -- and therefore, we created the context object
			 * locally, it was not created by an external caller.
			 */
			handler_desc = object->region.handler;
			if (handler_desc) {
B
Bob Moore 已提交
217
				if (handler_desc->address_space.handler_flags &
L
Len Brown 已提交
218
				    ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
B
Bob Moore 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232

					/* Deactivate region and free region context */

					if (handler_desc->address_space.setup) {
						(void)handler_desc->
						    address_space.setup(object,
									ACPI_REGION_DEACTIVATE,
									handler_desc->
									address_space.
									context,
									&second_desc->
									extra.
									region_context);
					}
L
Linus Torvalds 已提交
233 234
				}

L
Len Brown 已提交
235
				acpi_ut_remove_reference(handler_desc);
L
Linus Torvalds 已提交
236 237 238 239
			}

			/* Now we can free the Extra object */

L
Len Brown 已提交
240
			acpi_ut_delete_object_desc(second_desc);
L
Linus Torvalds 已提交
241 242 243 244 245
		}
		break;

	case ACPI_TYPE_BUFFER_FIELD:

L
Len Brown 已提交
246 247
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "***** Buffer Field %p\n", object));
L
Linus Torvalds 已提交
248

L
Len Brown 已提交
249
		second_desc = acpi_ns_get_secondary_object(object);
L
Linus Torvalds 已提交
250
		if (second_desc) {
L
Len Brown 已提交
251
			acpi_ut_delete_object_desc(second_desc);
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261
		}
		break;

	default:
		break;
	}

	/* Free any allocated memory (pointer within the object) found above */

	if (obj_pointer) {
L
Len Brown 已提交
262 263
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "Deleting Object Subptr %p\n", obj_pointer));
B
Bob Moore 已提交
264
		ACPI_FREE(obj_pointer);
L
Linus Torvalds 已提交
265 266 267 268
	}

	/* Now the object can be safely deleted */

L
Len Brown 已提交
269 270
	ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "Deleting Object %p [%s]\n",
			  object, acpi_ut_get_object_type_name(object)));
L
Linus Torvalds 已提交
271

L
Len Brown 已提交
272
	acpi_ut_delete_object_desc(object);
L
Linus Torvalds 已提交
273 274 275 276 277 278 279
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_delete_internal_object_list
 *
R
Robert Moore 已提交
280
 * PARAMETERS:  obj_list        - Pointer to the list to be deleted
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288
 *
 * RETURN:      None
 *
 * DESCRIPTION: This function deletes an internal object list, including both
 *              simple objects and package objects
 *
 ******************************************************************************/

L
Len Brown 已提交
289
void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list)
L
Linus Torvalds 已提交
290
{
L
Len Brown 已提交
291
	union acpi_operand_object **internal_obj;
L
Linus Torvalds 已提交
292

B
Bob Moore 已提交
293
	ACPI_FUNCTION_TRACE(ut_delete_internal_object_list);
L
Linus Torvalds 已提交
294 295 296 297

	/* Walk the null-terminated internal list */

	for (internal_obj = obj_list; *internal_obj; internal_obj++) {
L
Len Brown 已提交
298
		acpi_ut_remove_reference(*internal_obj);
L
Linus Torvalds 已提交
299 300 301 302
	}

	/* Free the combined parameter pointer list and object array */

B
Bob Moore 已提交
303
	ACPI_FREE(obj_list);
L
Linus Torvalds 已提交
304 305 306 307 308 309 310
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_update_ref_count
 *
R
Robert Moore 已提交
311
 * PARAMETERS:  Object          - Object whose ref count is to be updated
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320
 *              Action          - What to do
 *
 * RETURN:      New ref count
 *
 * DESCRIPTION: Modify the ref count and return it.
 *
 ******************************************************************************/

static void
L
Len Brown 已提交
321
acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
L
Linus Torvalds 已提交
322
{
L
Len Brown 已提交
323 324
	u16 count;
	u16 new_count;
L
Linus Torvalds 已提交
325

B
Bob Moore 已提交
326
	ACPI_FUNCTION_NAME(ut_update_ref_count);
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334 335

	if (!object) {
		return;
	}

	count = object->common.reference_count;
	new_count = count;

	/*
B
Bob Moore 已提交
336
	 * Perform the reference count action (increment, decrement, force delete)
L
Linus Torvalds 已提交
337 338 339 340 341 342 343
	 */
	switch (action) {
	case REF_INCREMENT:

		new_count++;
		object->common.reference_count = new_count;

L
Len Brown 已提交
344 345 346
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "Obj %p Refs=%X, [Incremented]\n",
				  object, new_count));
L
Linus Torvalds 已提交
347 348 349 350 351
		break;

	case REF_DECREMENT:

		if (count < 1) {
L
Len Brown 已提交
352 353 354
			ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
					  "Obj %p Refs=%X, can't decrement! (Set to 0)\n",
					  object, new_count));
L
Linus Torvalds 已提交
355 356

			new_count = 0;
L
Len Brown 已提交
357
		} else {
L
Linus Torvalds 已提交
358 359
			new_count--;

L
Len Brown 已提交
360 361 362
			ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
					  "Obj %p Refs=%X, [Decremented]\n",
					  object, new_count));
L
Linus Torvalds 已提交
363 364
		}

L
Len Brown 已提交
365 366 367 368
		if (ACPI_GET_OBJECT_TYPE(object) == ACPI_TYPE_METHOD) {
			ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
					  "Method Obj %p Refs=%X, [Decremented]\n",
					  object, new_count));
L
Linus Torvalds 已提交
369 370 371 372
		}

		object->common.reference_count = new_count;
		if (new_count == 0) {
L
Len Brown 已提交
373
			acpi_ut_delete_internal_obj(object);
L
Linus Torvalds 已提交
374 375 376 377 378
		}
		break;

	case REF_FORCE_DELETE:

L
Len Brown 已提交
379 380 381
		ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
				  "Obj %p Refs=%X, Force delete! (Set to 0)\n",
				  object, count));
L
Linus Torvalds 已提交
382 383 384

		new_count = 0;
		object->common.reference_count = new_count;
L
Len Brown 已提交
385
		acpi_ut_delete_internal_obj(object);
L
Linus Torvalds 已提交
386 387 388 389
		break;

	default:

B
Bob Moore 已提交
390
		ACPI_ERROR((AE_INFO, "Unknown action (%X)", action));
L
Linus Torvalds 已提交
391 392 393 394 395 396 397 398
		break;
	}

	/*
	 * Sanity check the reference count, for debug purposes only.
	 * (A deleted object will have a huge reference count)
	 */
	if (count > ACPI_MAX_REFERENCE_COUNT) {
B
Bob Moore 已提交
399
		ACPI_WARNING((AE_INFO,
B
Bob Moore 已提交
400 401
			      "Large Reference Count (%X) in object %p", count,
			      object));
L
Linus Torvalds 已提交
402 403 404 405 406 407 408
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_update_object_reference
 *
R
Robert Moore 已提交
409
 * PARAMETERS:  Object              - Increment ref count for this object
L
Linus Torvalds 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
 *                                    and all sub-objects
 *              Action              - Either REF_INCREMENT or REF_DECREMENT or
 *                                    REF_FORCE_DELETE
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Increment the object reference count
 *
 * Object references are incremented when:
 * 1) An object is attached to a Node (namespace object)
 * 2) An object is copied (all subobjects must be incremented)
 *
 * Object references are decremented when:
 * 1) An object is detached from an Node
 *
 ******************************************************************************/

acpi_status
B
Bob Moore 已提交
428
acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action)
L
Linus Torvalds 已提交
429
{
L
Len Brown 已提交
430 431 432 433 434
	acpi_status status = AE_OK;
	union acpi_generic_state *state_list = NULL;
	union acpi_operand_object *next_object = NULL;
	union acpi_generic_state *state;
	acpi_native_uint i;
L
Linus Torvalds 已提交
435

B
Bob Moore 已提交
436
	ACPI_FUNCTION_TRACE_PTR(ut_update_object_reference, object);
L
Linus Torvalds 已提交
437

438
	while (object) {
B
Bob Moore 已提交
439

440
		/* Make sure that this isn't a namespace handle */
L
Linus Torvalds 已提交
441

L
Len Brown 已提交
442 443 444 445
		if (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) {
			ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
					  "Object %p is NS handle\n", object));
			return_ACPI_STATUS(AE_OK);
446
		}
L
Linus Torvalds 已提交
447 448 449 450 451

		/*
		 * All sub-objects must have their reference count incremented also.
		 * Different object types have different subobjects.
		 */
L
Len Brown 已提交
452
		switch (ACPI_GET_OBJECT_TYPE(object)) {
L
Linus Torvalds 已提交
453
		case ACPI_TYPE_DEVICE:
B
Bob Moore 已提交
454 455 456
		case ACPI_TYPE_PROCESSOR:
		case ACPI_TYPE_POWER:
		case ACPI_TYPE_THERMAL:
L
Linus Torvalds 已提交
457

B
Bob Moore 已提交
458 459 460 461 462 463
			/* Update the notify objects for these types (if present) */

			acpi_ut_update_ref_count(object->common_notify.
						 system_notify, action);
			acpi_ut_update_ref_count(object->common_notify.
						 device_notify, action);
L
Linus Torvalds 已提交
464 465 466 467
			break;

		case ACPI_TYPE_PACKAGE:
			/*
468 469
			 * We must update all the sub-objects of the package,
			 * each of whom may have their own sub-objects.
L
Linus Torvalds 已提交
470 471 472 473 474 475 476
			 */
			for (i = 0; i < object->package.count; i++) {
				/*
				 * Push each element onto the stack for later processing.
				 * Note: There can be null elements within the package,
				 * these are simply ignored
				 */
L
Len Brown 已提交
477 478 479 480 481
				status =
				    acpi_ut_create_update_state_and_push
				    (object->package.elements[i], action,
				     &state_list);
				if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
482 483 484 485 486 487 488
					goto error_exit;
				}
			}
			break;

		case ACPI_TYPE_BUFFER_FIELD:

489
			next_object = object->buffer_field.buffer_obj;
L
Linus Torvalds 已提交
490 491 492 493
			break;

		case ACPI_TYPE_LOCAL_REGION_FIELD:

494 495
			next_object = object->field.region_obj;
			break;
L
Linus Torvalds 已提交
496 497 498

		case ACPI_TYPE_LOCAL_BANK_FIELD:

499
			next_object = object->bank_field.bank_obj;
L
Len Brown 已提交
500 501 502 503 504 505 506
			status =
			    acpi_ut_create_update_state_and_push(object->
								 bank_field.
								 region_obj,
								 action,
								 &state_list);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
507 508 509 510 511 512
				goto error_exit;
			}
			break;

		case ACPI_TYPE_LOCAL_INDEX_FIELD:

513
			next_object = object->index_field.index_obj;
L
Len Brown 已提交
514 515 516 517 518 519 520
			status =
			    acpi_ut_create_update_state_and_push(object->
								 index_field.
								 data_obj,
								 action,
								 &state_list);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
521 522 523 524 525 526
				goto error_exit;
			}
			break;

		case ACPI_TYPE_LOCAL_REFERENCE:
			/*
527 528 529
			 * The target of an Index (a package, string, or buffer) or a named
			 * reference must track changes to the ref count of the index or
			 * target object.
L
Linus Torvalds 已提交
530
			 */
531 532
			if ((object->reference.opcode == AML_INDEX_OP) ||
			    (object->reference.opcode == AML_INT_NAMEPATH_OP)) {
533
				next_object = object->reference.object;
L
Linus Torvalds 已提交
534 535 536 537 538
			}
			break;

		case ACPI_TYPE_REGION:
		default:
B
Bob Moore 已提交
539
			break;	/* No subobjects for all other types */
L
Linus Torvalds 已提交
540 541 542
		}

		/*
B
Bob Moore 已提交
543
		 * Now we can update the count in the main object. This can only
L
Linus Torvalds 已提交
544 545 546
		 * happen after we update the sub-objects in case this causes the
		 * main object to be deleted.
		 */
L
Len Brown 已提交
547
		acpi_ut_update_ref_count(object, action);
548
		object = NULL;
L
Linus Torvalds 已提交
549 550 551

		/* Move on to the next object to be updated */

552 553 554
		if (next_object) {
			object = next_object;
			next_object = NULL;
L
Len Brown 已提交
555 556
		} else if (state_list) {
			state = acpi_ut_pop_generic_state(&state_list);
557
			object = state->update.object;
L
Len Brown 已提交
558
			acpi_ut_delete_generic_state(state);
559
		}
L
Linus Torvalds 已提交
560 561
	}

L
Len Brown 已提交
562
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
563

L
Len Brown 已提交
564
      error_exit:
L
Linus Torvalds 已提交
565

B
Bob Moore 已提交
566 567
	ACPI_EXCEPTION((AE_INFO, status,
			"Could not update object reference count"));
L
Linus Torvalds 已提交
568

L
Len Brown 已提交
569
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
570 571 572 573 574 575
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_add_reference
 *
R
Robert Moore 已提交
576 577
 * PARAMETERS:  Object          - Object whose reference count is to be
 *                                incremented
L
Linus Torvalds 已提交
578 579 580 581 582 583 584
 *
 * RETURN:      None
 *
 * DESCRIPTION: Add one reference to an ACPI object
 *
 ******************************************************************************/

L
Len Brown 已提交
585
void acpi_ut_add_reference(union acpi_operand_object *object)
L
Linus Torvalds 已提交
586 587
{

B
Bob Moore 已提交
588
	ACPI_FUNCTION_TRACE_PTR(ut_add_reference, object);
L
Linus Torvalds 已提交
589 590 591

	/* Ensure that we have a valid object */

L
Len Brown 已提交
592
	if (!acpi_ut_valid_internal_object(object)) {
L
Linus Torvalds 已提交
593 594 595
		return_VOID;
	}

L
Len Brown 已提交
596 597 598
	ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
			  "Obj %p Current Refs=%X [To Be Incremented]\n",
			  object, object->common.reference_count));
L
Linus Torvalds 已提交
599 600 601

	/* Increment the reference count */

L
Len Brown 已提交
602
	(void)acpi_ut_update_object_reference(object, REF_INCREMENT);
L
Linus Torvalds 已提交
603 604 605 606 607 608 609
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_remove_reference
 *
R
Robert Moore 已提交
610
 * PARAMETERS:  Object         - Object whose ref count will be decremented
L
Linus Torvalds 已提交
611 612 613 614 615 616 617
 *
 * RETURN:      None
 *
 * DESCRIPTION: Decrement the reference count of an ACPI internal object
 *
 ******************************************************************************/

L
Len Brown 已提交
618
void acpi_ut_remove_reference(union acpi_operand_object *object)
L
Linus Torvalds 已提交
619 620
{

B
Bob Moore 已提交
621
	ACPI_FUNCTION_TRACE_PTR(ut_remove_reference, object);
L
Linus Torvalds 已提交
622 623

	/*
B
Bob Moore 已提交
624 625
	 * Allow a NULL pointer to be passed in, just ignore it. This saves
	 * each caller from having to check. Also, ignore NS nodes.
L
Linus Torvalds 已提交
626 627 628
	 *
	 */
	if (!object ||
L
Len Brown 已提交
629
	    (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED)) {
L
Linus Torvalds 已提交
630 631 632 633 634
		return_VOID;
	}

	/* Ensure that we have a valid object */

L
Len Brown 已提交
635
	if (!acpi_ut_valid_internal_object(object)) {
L
Linus Torvalds 已提交
636 637 638
		return_VOID;
	}

L
Len Brown 已提交
639 640 641
	ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
			  "Obj %p Current Refs=%X [To Be Decremented]\n",
			  object, object->common.reference_count));
L
Linus Torvalds 已提交
642 643 644

	/*
	 * Decrement the reference count, and only actually delete the object
B
Bob Moore 已提交
645
	 * if the reference count becomes 0. (Must also decrement the ref count
L
Linus Torvalds 已提交
646 647
	 * of all subobjects!)
	 */
L
Len Brown 已提交
648
	(void)acpi_ut_update_object_reference(object, REF_DECREMENT);
L
Linus Torvalds 已提交
649 650
	return_VOID;
}