Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: psxface - Parser external interfaces |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
David E. Box | 82a8094 | 2015-02-05 15:20:45 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2015, 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> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 45 | #include "accommon.h" |
| 46 | #include "acparser.h" |
| 47 | #include "acdispat.h" |
| 48 | #include "acinterp.h" |
Lin Ming | 69ec87e | 2010-04-01 11:14:12 +0800 | [diff] [blame] | 49 | #include "actables.h" |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 50 | #include "acnamesp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #define _COMPONENT ACPI_PARSER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | ACPI_MODULE_NAME("psxface") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 55 | /* Local Prototypes */ |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 56 | static void |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 57 | acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /******************************************************************************* |
| 60 | * |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 61 | * FUNCTION: acpi_debug_trace |
| 62 | * |
| 63 | * PARAMETERS: method_name - Valid ACPI name string |
| 64 | * debug_level - Optional level mask. 0 to use default |
| 65 | * debug_layer - Optional layer mask. 0 to use default |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 66 | * flags - bit 1: one shot(1) or persistent(0) |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 67 | * |
| 68 | * RETURN: Status |
| 69 | * |
| 70 | * DESCRIPTION: External interface to enable debug tracing during control |
| 71 | * method execution |
| 72 | * |
| 73 | ******************************************************************************/ |
| 74 | |
| 75 | acpi_status |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 76 | acpi_debug_trace(const char *name, u32 debug_level, u32 debug_layer, u32 flags) |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 77 | { |
| 78 | acpi_status status; |
| 79 | |
| 80 | status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); |
| 81 | if (ACPI_FAILURE(status)) { |
| 82 | return (status); |
| 83 | } |
| 84 | |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 85 | acpi_gbl_trace_method_name = name; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 86 | acpi_gbl_trace_flags = flags; |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 87 | acpi_gbl_trace_dbg_level = debug_level; |
| 88 | acpi_gbl_trace_dbg_layer = debug_layer; |
| 89 | status = AE_OK; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 90 | |
| 91 | (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 92 | return (status); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /******************************************************************************* |
| 96 | * |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 97 | * FUNCTION: acpi_ps_execute_method |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 99 | * PARAMETERS: info - Method info block, contains: |
| 100 | * node - Method Node to execute |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 101 | * obj_desc - Method object |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 102 | * parameters - List of parameters to pass to the method, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * terminated by NULL. Params itself may be |
| 104 | * NULL if no parameters are being passed. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 105 | * return_object - Where to put method's return value (if |
| 106 | * any). If NULL, no value is returned. |
| 107 | * parameter_type - Type of Parameter list |
| 108 | * return_object - Where to put method's return value (if |
| 109 | * any). If NULL, no value is returned. |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 110 | * pass_number - Parse or execute pass |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * |
| 112 | * RETURN: Status |
| 113 | * |
| 114 | * DESCRIPTION: Execute a control method |
| 115 | * |
| 116 | ******************************************************************************/ |
| 117 | |
Lv Zheng | ab6c573 | 2015-07-23 12:52:59 +0800 | [diff] [blame] | 118 | acpi_status acpi_ps_execute_method(struct acpi_evaluate_info * info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | acpi_status status; |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 121 | union acpi_parse_object *op; |
| 122 | struct acpi_walk_state *walk_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 124 | ACPI_FUNCTION_TRACE(ps_execute_method); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Lin Ming | 729df0f | 2010-04-01 10:47:56 +0800 | [diff] [blame] | 126 | /* Quick validation of DSDT header */ |
| 127 | |
| 128 | acpi_tb_check_dsdt_header(); |
| 129 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 130 | /* Validate the Info and method Node */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Bob Moore | 29a241c | 2013-05-30 10:00:01 +0800 | [diff] [blame] | 132 | if (!info || !info->node) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | return_ACPI_STATUS(AE_NULL_ENTRY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* Init for new method, wait on concurrency semaphore */ |
| 137 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | status = |
Bob Moore | 29a241c | 2013-05-30 10:00:01 +0800 | [diff] [blame] | 139 | acpi_ds_begin_method_execution(info->node, info->obj_desc, NULL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 140 | if (ACPI_FAILURE(status)) { |
| 141 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 145 | * The caller "owns" the parameters, so give each one an extra reference |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 146 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 147 | acpi_ps_update_parameter_list(info, REF_INCREMENT); |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 148 | |
| 149 | /* |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 150 | * Execute the method. Performs parse simultaneously |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 151 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | ACPI_DEBUG_PRINT((ACPI_DB_PARSE, |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 153 | "**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n", |
Bob Moore | 29a241c | 2013-05-30 10:00:01 +0800 | [diff] [blame] | 154 | info->node->name.ascii, info->node, info->obj_desc)); |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 155 | |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 156 | /* Create and init a Root Node */ |
| 157 | |
Lv Zheng | 62eb935 | 2015-07-23 12:52:24 +0800 | [diff] [blame] | 158 | op = acpi_ps_create_scope_op(info->obj_desc->method.aml_start); |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 159 | if (!op) { |
| 160 | status = AE_NO_MEMORY; |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 161 | goto cleanup; |
| 162 | } |
| 163 | |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 164 | /* Create and initialize a new walk state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Bob Moore | ec3153f | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 166 | info->pass_number = ACPI_IMODE_EXECUTE; |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 167 | walk_state = |
| 168 | acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL, |
| 169 | NULL, NULL); |
| 170 | if (!walk_state) { |
| 171 | status = AE_NO_MEMORY; |
| 172 | goto cleanup; |
| 173 | } |
| 174 | |
Bob Moore | 29a241c | 2013-05-30 10:00:01 +0800 | [diff] [blame] | 175 | status = acpi_ds_init_aml_walk(walk_state, op, info->node, |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 176 | info->obj_desc->method.aml_start, |
| 177 | info->obj_desc->method.aml_length, info, |
| 178 | info->pass_number); |
| 179 | if (ACPI_FAILURE(status)) { |
| 180 | acpi_ds_delete_walk_state(walk_state); |
| 181 | goto cleanup; |
| 182 | } |
| 183 | |
Lin Ming | 2629484 | 2011-01-12 09:19:43 +0800 | [diff] [blame] | 184 | if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) { |
Lin Ming | 7f0c826 | 2009-08-13 14:03:15 +0800 | [diff] [blame] | 185 | walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL; |
| 186 | } |
| 187 | |
Bob Moore | a8fadc9 | 2008-11-13 09:45:35 +0800 | [diff] [blame] | 188 | /* Invoke an internal method if necessary */ |
| 189 | |
Lin Ming | 2629484 | 2011-01-12 09:19:43 +0800 | [diff] [blame] | 190 | if (info->obj_desc->method.info_flags & ACPI_METHOD_INTERNAL_ONLY) { |
Lin Ming | e31c32c | 2009-12-11 15:28:27 +0800 | [diff] [blame] | 191 | status = |
Lin Ming | 2629484 | 2011-01-12 09:19:43 +0800 | [diff] [blame] | 192 | info->obj_desc->method.dispatch.implementation(walk_state); |
Bob Moore | a8fadc9 | 2008-11-13 09:45:35 +0800 | [diff] [blame] | 193 | info->return_object = walk_state->return_desc; |
| 194 | |
| 195 | /* Cleanup states */ |
| 196 | |
| 197 | acpi_ds_scope_stack_clear(walk_state); |
| 198 | acpi_ps_cleanup_scope(&walk_state->parser_state); |
| 199 | acpi_ds_terminate_control_method(walk_state->method_desc, |
| 200 | walk_state); |
| 201 | acpi_ds_delete_walk_state(walk_state); |
| 202 | goto cleanup; |
| 203 | } |
| 204 | |
Lin Ming | 7a4b8131 | 2008-11-13 11:25:22 +0800 | [diff] [blame] | 205 | /* |
| 206 | * Start method evaluation with an implicit return of zero. |
| 207 | * This is done for Windows compatibility. |
| 208 | */ |
| 209 | if (acpi_gbl_enable_interpreter_slack) { |
| 210 | walk_state->implicit_return_obj = |
Bob Moore | dc95a27 | 2009-11-12 09:52:45 +0800 | [diff] [blame] | 211 | acpi_ut_create_integer_object((u64) 0); |
Lin Ming | 7a4b8131 | 2008-11-13 11:25:22 +0800 | [diff] [blame] | 212 | if (!walk_state->implicit_return_obj) { |
| 213 | status = AE_NO_MEMORY; |
| 214 | acpi_ds_delete_walk_state(walk_state); |
| 215 | goto cleanup; |
| 216 | } |
Lin Ming | 7a4b8131 | 2008-11-13 11:25:22 +0800 | [diff] [blame] | 217 | } |
| 218 | |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 219 | /* Parse the AML */ |
| 220 | |
| 221 | status = acpi_ps_parse_aml(walk_state); |
| 222 | |
| 223 | /* walk_state was deleted by parse_aml */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 225 | cleanup: |
Valery Podrezov | 9bc75cf | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 226 | acpi_ps_delete_parse_tree(op); |
| 227 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 228 | /* Take away the extra reference that we gave the parameters above */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | acpi_ps_update_parameter_list(info, REF_DECREMENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 232 | /* Exit now if error above */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | if (ACPI_FAILURE(status)) { |
| 235 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* |
| 239 | * If the method has returned an object, signal this to the caller with |
| 240 | * a control exception code |
| 241 | */ |
| 242 | if (info->return_object) { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 243 | ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Method returned ObjDesc=%p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | info->return_object)); |
| 245 | ACPI_DUMP_STACK_ENTRY(info->return_object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
| 247 | status = AE_CTRL_RETURN_VALUE; |
| 248 | } |
| 249 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 250 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 253 | /******************************************************************************* |
| 254 | * |
| 255 | * FUNCTION: acpi_ps_update_parameter_list |
| 256 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 257 | * PARAMETERS: info - See struct acpi_evaluate_info |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 258 | * (Used: parameter_type and Parameters) |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 259 | * action - Add or Remove reference |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 260 | * |
| 261 | * RETURN: Status |
| 262 | * |
| 263 | * DESCRIPTION: Update reference count on all method parameter objects |
| 264 | * |
| 265 | ******************************************************************************/ |
| 266 | |
| 267 | static void |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 268 | acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action) |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 269 | { |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 270 | u32 i; |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 271 | |
Bob Moore | c91d924 | 2008-06-10 12:38:10 +0800 | [diff] [blame] | 272 | if (info->parameters) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 273 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 274 | /* Update reference count for each parameter */ |
| 275 | |
| 276 | for (i = 0; info->parameters[i]; i++) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 277 | |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 278 | /* Ignore errors, just do them all */ |
| 279 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | (void)acpi_ut_update_object_reference(info-> |
| 281 | parameters[i], |
| 282 | action); |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 283 | } |
| 284 | } |
| 285 | } |