diff options
author | Bob Moore <robert.moore@intel.com> | 2006-05-12 17:12:00 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-14 02:34:48 -0400 |
commit | 958dd242b691f64ab4632b4903dbb1e16fee8269 (patch) | |
tree | ddf4932fb4e3023dd0d1914571f17f2e3b03978d /include/acpi/acdisasm.h | |
parent | b229cf92eee616c7cb5ad8cdb35a19b119f00bc8 (diff) |
ACPI: ACPICA 20060512
Replaced the acpi_os_queue_for_execution() with a new
interface named acpi_os_execute(). The major difference is
that the new interface does not have a Priority parameter,
this appeared to be useless and has been replaced by
a Type parameter. The Type tells the OS what type of
execution is being requested, such as global lock handler,
notify handler, GPE handler, etc. This allows the host
to queue and execute the request as appropriate for the
request type, possibly using different work queues and
different priorities for the various request types. This
enables fixes for multithreading deadlock problems such as
http://bugzilla.kernel.org/show_bug.cgi?id=5534
(Alexey Starikovskiy and Bob Moore)
Fixed a possible memory leak associated with the
support for the so-called "implicit return" ACPI
extension. Reported by FreeBSD (Fiodor Suietov)
http://bugzilla.kernel.org/show_bug.cgi?id=6514
Fixed a problem with the Load() operator where a table
load from an operation region could overwrite an internal
table buffer by up to 7 bytes and cause alignment faults
on IPF systems. (With assistance from Luming Yu)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/acdisasm.h')
-rw-r--r-- | include/acpi/acdisasm.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/acpi/acdisasm.h b/include/acpi/acdisasm.h index 6f2556582f05..9a7d6921f534 100644 --- a/include/acpi/acdisasm.h +++ b/include/acpi/acdisasm.h | |||
@@ -54,7 +54,11 @@ | |||
54 | 54 | ||
55 | struct acpi_external_list { | 55 | struct acpi_external_list { |
56 | char *path; | 56 | char *path; |
57 | char *internal_path; | ||
57 | struct acpi_external_list *next; | 58 | struct acpi_external_list *next; |
59 | u32 value; | ||
60 | u16 length; | ||
61 | u8 type; | ||
58 | }; | 62 | }; |
59 | 63 | ||
60 | extern struct acpi_external_list *acpi_gbl_external_list; | 64 | extern struct acpi_external_list *acpi_gbl_external_list; |
@@ -108,6 +112,8 @@ struct acpi_dmtable_data { | |||
108 | 112 | ||
109 | struct acpi_op_walk_info { | 113 | struct acpi_op_walk_info { |
110 | u32 level; | 114 | u32 level; |
115 | u32 last_level; | ||
116 | u32 count; | ||
111 | u32 bit_offset; | 117 | u32 bit_offset; |
112 | u32 flags; | 118 | u32 flags; |
113 | struct acpi_walk_state *walk_state; | 119 | struct acpi_walk_state *walk_state; |
@@ -390,7 +396,7 @@ acpi_dm_vendor_small_descriptor(union aml_resource *resource, | |||
390 | /* | 396 | /* |
391 | * dmutils | 397 | * dmutils |
392 | */ | 398 | */ |
393 | void acpi_dm_add_to_external_list(char *path); | 399 | void acpi_dm_add_to_external_list(char *path, u8 type, u32 value); |
394 | 400 | ||
395 | /* | 401 | /* |
396 | * dmrestag | 402 | * dmrestag |