ACPICA: Remove extraneous parameter in table manager
[linux-2.6-block.git] / drivers / acpi / acpica / tbinstal.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: tbinstal - ACPI table installation and removal
4 *
5 *****************************************************************************/
6
7/*
75a44ce0 8 * Copyright (C) 2000 - 2008, Intel Corp.
1da177e4
LT
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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acnamesp.h"
47#include "actables.h"
1da177e4 48
1da177e4 49#define _COMPONENT ACPI_TABLES
4be44fcd 50ACPI_MODULE_NAME("tbinstal")
1da177e4 51
f3d2e786 52/******************************************************************************
1da177e4 53 *
f3d2e786 54 * FUNCTION: acpi_tb_verify_table
1da177e4 55 *
f3d2e786 56 * PARAMETERS: table_desc - table
1da177e4
LT
57 *
58 * RETURN: Status
59 *
f3d2e786 60 * DESCRIPTION: this function is called to verify and map table
1da177e4 61 *
f3d2e786
BM
62 *****************************************************************************/
63acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc)
1da177e4 64{
428f2112 65 acpi_status status = AE_OK;
1da177e4 66
f3d2e786 67 ACPI_FUNCTION_TRACE(tb_verify_table);
1da177e4 68
f3d2e786 69 /* Map the table if necessary */
44f6c012 70
f3d2e786 71 if (!table_desc->pointer) {
428f2112
AS
72 if ((table_desc->flags & ACPI_TABLE_ORIGIN_MASK) ==
73 ACPI_TABLE_ORIGIN_MAPPED) {
74 table_desc->pointer =
75 acpi_os_map_memory(table_desc->address,
76 table_desc->length);
77 }
f3d2e786
BM
78 if (!table_desc->pointer) {
79 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4 80 }
f3d2e786 81 }
1da177e4 82
f3d2e786 83 /* FACS is the odd table, has no standard ACPI header and no checksum */
52fc0b02 84
428f2112 85 if (!ACPI_COMPARE_NAME(&table_desc->signature, ACPI_SIG_FACS)) {
1da177e4 86
428f2112
AS
87 /* Always calculate checksum, ignore bad checksum if requested */
88
89 status =
90 acpi_tb_verify_checksum(table_desc->pointer,
91 table_desc->length);
92 }
1da177e4 93
c5fc42ac 94 return_ACPI_STATUS(status);
1da177e4
LT
95}
96
1da177e4
LT
97/*******************************************************************************
98 *
f3d2e786 99 * FUNCTION: acpi_tb_add_table
1da177e4 100 *
428f2112 101 * PARAMETERS: table_desc - Table descriptor
f3d2e786 102 * table_index - Where the table index is returned
1da177e4
LT
103 *
104 * RETURN: Status
105 *
f3d2e786 106 * DESCRIPTION: This function is called to add the ACPI table
1da177e4
LT
107 *
108 ******************************************************************************/
109
f3d2e786 110acpi_status
67a119f9 111acpi_tb_add_table(struct acpi_table_desc *table_desc, u32 *table_index)
1da177e4 112{
67a119f9 113 u32 i;
f3d2e786 114 acpi_status status = AE_OK;
1da177e4 115
f3d2e786 116 ACPI_FUNCTION_TRACE(tb_add_table);
1da177e4 117
428f2112
AS
118 if (!table_desc->pointer) {
119 status = acpi_tb_verify_table(table_desc);
120 if (ACPI_FAILURE(status) || !table_desc->pointer) {
121 return_ACPI_STATUS(status);
122 }
123 }
124
bc45b1d3
BM
125 /*
126 * Originally, we checked the table signature for "SSDT" or "PSDT" here.
127 * Next, we added support for OEMx tables, signature "OEM".
128 * Valid tables were encountered with a null signature, so we've just
129 * given up on validating the signature, since it seems to be a waste
130 * of code. The original code was removed (05/2008).
131 */
428f2112 132
f3d2e786 133 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
1da177e4 134
f3d2e786
BM
135 /* Check if table is already registered */
136
137 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
138 if (!acpi_gbl_root_table_list.tables[i].pointer) {
139 status =
140 acpi_tb_verify_table(&acpi_gbl_root_table_list.
141 tables[i]);
142 if (ACPI_FAILURE(status)
143 || !acpi_gbl_root_table_list.tables[i].pointer) {
144 continue;
145 }
146 }
147
a6f30539
BM
148 /*
149 * Check for a table match on the entire table length,
150 * not just the header.
151 */
152 if (table_desc->length !=
153 acpi_gbl_root_table_list.tables[i].length) {
154 continue;
155 }
e56f5617 156
428f2112
AS
157 if (ACPI_MEMCMP(table_desc->pointer,
158 acpi_gbl_root_table_list.tables[i].pointer,
a6f30539 159 acpi_gbl_root_table_list.tables[i].length)) {
f3d2e786
BM
160 continue;
161 }
162
e56f5617
BM
163 /*
164 * Note: the current mechanism does not unregister a table if it is
165 * dynamically unloaded. The related namespace entries are deleted,
166 * but the table remains in the root table list.
167 *
168 * The assumption here is that the number of different tables that
169 * will be loaded is actually small, and there is minimal overhead
170 * in just keeping the table in case it is needed again.
171 *
172 * If this assumption changes in the future (perhaps on large
173 * machines with many table load/unload operations), tables will
174 * need to be unregistered when they are unloaded, and slots in the
175 * root table list should be reused when empty.
176 */
177
178 /*
179 * Table is already registered.
180 * We can delete the table that was passed as a parameter.
181 */
428f2112 182 acpi_tb_delete_table(table_desc);
f3d2e786 183 *table_index = i;
e56f5617
BM
184
185 if (acpi_gbl_root_table_list.tables[i].
186 flags & ACPI_TABLE_IS_LOADED) {
187
188 /* Table is still loaded, this is an error */
189
190 status = AE_ALREADY_EXISTS;
191 goto release;
192 } else {
193 /* Table was unloaded, allow it to be reloaded */
194
195 table_desc->pointer =
196 acpi_gbl_root_table_list.tables[i].pointer;
197 table_desc->address =
198 acpi_gbl_root_table_list.tables[i].address;
199 status = AE_OK;
200 goto print_header;
201 }
1da177e4
LT
202 }
203
e56f5617
BM
204 /* Add the table to the global root table list */
205
428f2112
AS
206 status = acpi_tb_store_table(table_desc->address, table_desc->pointer,
207 table_desc->length, table_desc->flags,
208 table_index);
4be44fcd 209 if (ACPI_FAILURE(status)) {
f3d2e786 210 goto release;
0c9938cc
RM
211 }
212
e56f5617 213 print_header:
428f2112 214 acpi_tb_print_table_header(table_desc->address, table_desc->pointer);
1da177e4 215
f3d2e786 216 release:
4be44fcd
LB
217 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
218 return_ACPI_STATUS(status);
1da177e4
LT
219}
220
1da177e4
LT
221/*******************************************************************************
222 *
f3d2e786 223 * FUNCTION: acpi_tb_resize_root_table_list
1da177e4 224 *
f3d2e786 225 * PARAMETERS: None
1da177e4
LT
226 *
227 * RETURN: Status
228 *
f3d2e786 229 * DESCRIPTION: Expand the size of global table array
1da177e4
LT
230 *
231 ******************************************************************************/
232
f3d2e786 233acpi_status acpi_tb_resize_root_table_list(void)
1da177e4 234{
f3d2e786 235 struct acpi_table_desc *tables;
1da177e4 236
f3d2e786 237 ACPI_FUNCTION_TRACE(tb_resize_root_table_list);
1da177e4 238
f3d2e786 239 /* allow_resize flag is a parameter to acpi_initialize_tables */
1da177e4 240
c5fc42ac 241 if (!(acpi_gbl_root_table_list.flags & ACPI_ROOT_ALLOW_RESIZE)) {
f3d2e786
BM
242 ACPI_ERROR((AE_INFO,
243 "Resize of Root Table Array is not allowed"));
244 return_ACPI_STATUS(AE_SUPPORT);
1da177e4
LT
245 }
246
f3d2e786
BM
247 /* Increase the Table Array size */
248
67a119f9
BM
249 tables = ACPI_ALLOCATE_ZEROED(((acpi_size) acpi_gbl_root_table_list.
250 size + ACPI_ROOT_TABLE_SIZE_INCREMENT)
f3d2e786
BM
251 * sizeof(struct acpi_table_desc));
252 if (!tables) {
253 ACPI_ERROR((AE_INFO,
254 "Could not allocate new root table array"));
255 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
256 }
257
f3d2e786
BM
258 /* Copy and free the previous table array */
259
260 if (acpi_gbl_root_table_list.tables) {
261 ACPI_MEMCPY(tables, acpi_gbl_root_table_list.tables,
67a119f9 262 (acpi_size) acpi_gbl_root_table_list.size *
f3d2e786
BM
263 sizeof(struct acpi_table_desc));
264
c5fc42ac 265 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
f3d2e786
BM
266 ACPI_FREE(acpi_gbl_root_table_list.tables);
267 }
1da177e4
LT
268 }
269
f3d2e786
BM
270 acpi_gbl_root_table_list.tables = tables;
271 acpi_gbl_root_table_list.size += ACPI_ROOT_TABLE_SIZE_INCREMENT;
c5fc42ac 272 acpi_gbl_root_table_list.flags |= (u8) ACPI_ROOT_ORIGIN_ALLOCATED;
1da177e4 273
f3d2e786 274 return_ACPI_STATUS(AE_OK);
1da177e4
LT
275}
276
1da177e4
LT
277/*******************************************************************************
278 *
f3d2e786 279 * FUNCTION: acpi_tb_store_table
1da177e4 280 *
f3d2e786
BM
281 * PARAMETERS: Address - Table address
282 * Table - Table header
283 * Length - Table length
284 * Flags - flags
1da177e4 285 *
f3d2e786 286 * RETURN: Status and table index.
1da177e4 287 *
f3d2e786 288 * DESCRIPTION: Add an ACPI table to the global table list
1da177e4
LT
289 *
290 ******************************************************************************/
291
292acpi_status
f3d2e786
BM
293acpi_tb_store_table(acpi_physical_address address,
294 struct acpi_table_header *table,
67a119f9 295 u32 length, u8 flags, u32 *table_index)
1da177e4 296{
f3d2e786 297 acpi_status status = AE_OK;
1da177e4 298
f3d2e786 299 /* Ensure that there is room for the table in the Root Table List */
f9f4601f 300
f3d2e786
BM
301 if (acpi_gbl_root_table_list.count >= acpi_gbl_root_table_list.size) {
302 status = acpi_tb_resize_root_table_list();
303 if (ACPI_FAILURE(status)) {
304 return (status);
305 }
f9f4601f
RM
306 }
307
f3d2e786
BM
308 /* Initialize added table */
309
310 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
311 address = address;
312 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
313 pointer = table;
314 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].length =
315 length;
316 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].
317 owner_id = 0;
318 acpi_gbl_root_table_list.tables[acpi_gbl_root_table_list.count].flags =
319 flags;
320
321 ACPI_MOVE_32_TO_32(&
322 (acpi_gbl_root_table_list.
323 tables[acpi_gbl_root_table_list.count].signature),
324 table->signature);
325
326 *table_index = acpi_gbl_root_table_list.count;
327 acpi_gbl_root_table_list.count++;
328 return (status);
329}
1da177e4 330
f3d2e786
BM
331/*******************************************************************************
332 *
333 * FUNCTION: acpi_tb_delete_table
334 *
335 * PARAMETERS: table_index - Table index
336 *
337 * RETURN: None
338 *
339 * DESCRIPTION: Delete one internal ACPI table
340 *
341 ******************************************************************************/
1da177e4 342
428f2112 343void acpi_tb_delete_table(struct acpi_table_desc *table_desc)
f3d2e786 344{
f3d2e786 345 /* Table must be mapped or allocated */
f3d2e786
BM
346 if (!table_desc->pointer) {
347 return;
1da177e4 348 }
428f2112
AS
349 switch (table_desc->flags & ACPI_TABLE_ORIGIN_MASK) {
350 case ACPI_TABLE_ORIGIN_MAPPED:
351 acpi_os_unmap_memory(table_desc->pointer, table_desc->length);
352 break;
353 case ACPI_TABLE_ORIGIN_ALLOCATED:
f3d2e786 354 ACPI_FREE(table_desc->pointer);
428f2112
AS
355 break;
356 default:;
1da177e4
LT
357 }
358
f3d2e786 359 table_desc->pointer = NULL;
1da177e4
LT
360}
361
1da177e4
LT
362/*******************************************************************************
363 *
f3d2e786 364 * FUNCTION: acpi_tb_terminate
1da177e4 365 *
f3d2e786 366 * PARAMETERS: None
1da177e4 367 *
f3d2e786 368 * RETURN: None
1da177e4
LT
369 *
370 * DESCRIPTION: Delete all internal ACPI tables
371 *
372 ******************************************************************************/
373
f3d2e786 374void acpi_tb_terminate(void)
1da177e4 375{
67a119f9 376 u32 i;
f3d2e786
BM
377
378 ACPI_FUNCTION_TRACE(tb_terminate);
379
380 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
381
382 /* Delete the individual tables */
383
384 for (i = 0; i < acpi_gbl_root_table_list.count; ++i) {
428f2112 385 acpi_tb_delete_table(&acpi_gbl_root_table_list.tables[i]);
f3d2e786 386 }
1da177e4
LT
387
388 /*
f3d2e786
BM
389 * Delete the root table array if allocated locally. Array cannot be
390 * mapped, so we don't need to check for that flag.
1da177e4 391 */
c5fc42ac 392 if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {
f3d2e786 393 ACPI_FREE(acpi_gbl_root_table_list.tables);
1da177e4 394 }
f3d2e786
BM
395
396 acpi_gbl_root_table_list.tables = NULL;
397 acpi_gbl_root_table_list.flags = 0;
398 acpi_gbl_root_table_list.count = 0;
399
400 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "ACPI Tables freed\n"));
401 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
1da177e4
LT
402}
403
1da177e4
LT
404/*******************************************************************************
405 *
f3d2e786 406 * FUNCTION: acpi_tb_delete_namespace_by_owner
1da177e4 407 *
f3d2e786 408 * PARAMETERS: table_index - Table index
1da177e4 409 *
f3d2e786 410 * RETURN: None
1da177e4 411 *
f3d2e786 412 * DESCRIPTION: Delete all namespace objects created when this table was loaded.
1da177e4
LT
413 *
414 ******************************************************************************/
415
67a119f9 416void acpi_tb_delete_namespace_by_owner(u32 table_index)
1da177e4 417{
f3d2e786 418 acpi_owner_id owner_id;
1da177e4 419
f3d2e786
BM
420 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
421 if (table_index < acpi_gbl_root_table_list.count) {
422 owner_id =
423 acpi_gbl_root_table_list.tables[table_index].owner_id;
424 } else {
425 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
1da177e4
LT
426 return;
427 }
428
f3d2e786
BM
429 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
430 acpi_ns_delete_namespace_by_owner(owner_id);
431}
1da177e4 432
f3d2e786
BM
433/*******************************************************************************
434 *
435 * FUNCTION: acpi_tb_allocate_owner_id
436 *
437 * PARAMETERS: table_index - Table index
438 *
439 * RETURN: Status
440 *
441 * DESCRIPTION: Allocates owner_id in table_desc
442 *
443 ******************************************************************************/
1da177e4 444
67a119f9 445acpi_status acpi_tb_allocate_owner_id(u32 table_index)
f3d2e786
BM
446{
447 acpi_status status = AE_BAD_PARAMETER;
1da177e4 448
f3d2e786 449 ACPI_FUNCTION_TRACE(tb_allocate_owner_id);
1da177e4 450
f3d2e786
BM
451 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
452 if (table_index < acpi_gbl_root_table_list.count) {
453 status = acpi_ut_allocate_owner_id
454 (&(acpi_gbl_root_table_list.tables[table_index].owner_id));
1da177e4
LT
455 }
456
4be44fcd 457 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
f3d2e786 458 return_ACPI_STATUS(status);
1da177e4
LT
459}
460
1da177e4
LT
461/*******************************************************************************
462 *
f3d2e786 463 * FUNCTION: acpi_tb_release_owner_id
1da177e4 464 *
f3d2e786 465 * PARAMETERS: table_index - Table index
1da177e4 466 *
f3d2e786 467 * RETURN: Status
1da177e4 468 *
f3d2e786 469 * DESCRIPTION: Releases owner_id in table_desc
1da177e4
LT
470 *
471 ******************************************************************************/
472
67a119f9 473acpi_status acpi_tb_release_owner_id(u32 table_index)
1da177e4 474{
f3d2e786 475 acpi_status status = AE_BAD_PARAMETER;
1da177e4 476
f3d2e786 477 ACPI_FUNCTION_TRACE(tb_release_owner_id);
1da177e4 478
f3d2e786
BM
479 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
480 if (table_index < acpi_gbl_root_table_list.count) {
481 acpi_ut_release_owner_id(&
482 (acpi_gbl_root_table_list.
483 tables[table_index].owner_id));
484 status = AE_OK;
1da177e4
LT
485 }
486
f3d2e786
BM
487 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
488 return_ACPI_STATUS(status);
1da177e4
LT
489}
490
1da177e4
LT
491/*******************************************************************************
492 *
f3d2e786 493 * FUNCTION: acpi_tb_get_owner_id
1da177e4 494 *
f3d2e786
BM
495 * PARAMETERS: table_index - Table index
496 * owner_id - Where the table owner_id is returned
1da177e4 497 *
f3d2e786 498 * RETURN: Status
1da177e4 499 *
f3d2e786 500 * DESCRIPTION: returns owner_id for the ACPI table
1da177e4
LT
501 *
502 ******************************************************************************/
503
67a119f9 504acpi_status acpi_tb_get_owner_id(u32 table_index, acpi_owner_id *owner_id)
1da177e4 505{
f3d2e786 506 acpi_status status = AE_BAD_PARAMETER;
1da177e4 507
f3d2e786 508 ACPI_FUNCTION_TRACE(tb_get_owner_id);
1da177e4 509
f3d2e786
BM
510 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
511 if (table_index < acpi_gbl_root_table_list.count) {
512 *owner_id =
513 acpi_gbl_root_table_list.tables[table_index].owner_id;
514 status = AE_OK;
1da177e4
LT
515 }
516
f3d2e786
BM
517 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
518 return_ACPI_STATUS(status);
519}
1da177e4 520
f3d2e786
BM
521/*******************************************************************************
522 *
523 * FUNCTION: acpi_tb_is_table_loaded
524 *
525 * PARAMETERS: table_index - Table index
526 *
527 * RETURN: Table Loaded Flag
528 *
529 ******************************************************************************/
1da177e4 530
67a119f9 531u8 acpi_tb_is_table_loaded(u32 table_index)
f3d2e786
BM
532{
533 u8 is_loaded = FALSE;
1da177e4 534
f3d2e786
BM
535 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
536 if (table_index < acpi_gbl_root_table_list.count) {
537 is_loaded = (u8)
538 (acpi_gbl_root_table_list.tables[table_index].
c5fc42ac 539 flags & ACPI_TABLE_IS_LOADED);
1da177e4
LT
540 }
541
f3d2e786
BM
542 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
543 return (is_loaded);
544}
f6dd9221 545
f3d2e786
BM
546/*******************************************************************************
547 *
548 * FUNCTION: acpi_tb_set_table_loaded_flag
549 *
550 * PARAMETERS: table_index - Table index
551 * is_loaded - TRUE if table is loaded, FALSE otherwise
552 *
553 * RETURN: None
554 *
555 * DESCRIPTION: Sets the table loaded flag to either TRUE or FALSE.
556 *
557 ******************************************************************************/
1da177e4 558
67a119f9 559void acpi_tb_set_table_loaded_flag(u32 table_index, u8 is_loaded)
f3d2e786 560{
1da177e4 561
f3d2e786
BM
562 (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES);
563 if (table_index < acpi_gbl_root_table_list.count) {
564 if (is_loaded) {
565 acpi_gbl_root_table_list.tables[table_index].flags |=
c5fc42ac 566 ACPI_TABLE_IS_LOADED;
f3d2e786
BM
567 } else {
568 acpi_gbl_root_table_list.tables[table_index].flags &=
c5fc42ac 569 ~ACPI_TABLE_IS_LOADED;
f3d2e786
BM
570 }
571 }
1da177e4 572
f3d2e786 573 (void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
1da177e4 574}