diff -rup linux-2.6.18-rc2.a/drivers/acpi/battery.c linux-2.6.18-rc2.b/drivers/acpi/battery.c --- linux-2.6.18-rc2.a/drivers/acpi/battery.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/battery.c 2006-07-29 19:27:44.000000000 +0400 @@ -118,6 +118,27 @@ struct acpi_battery { struct acpi_battery_info *info; }; +static void ptime(char *s, int start) +{ + static unsigned long long st_time = 0; + unsigned long long tc, tm, tu; + struct timeval tv; + + (void)do_gettimeofday(&tv); + tm = tv.tv_sec; + tm *= 1000000; + tu = tv.tv_usec; + tc = tm + tu; + if (start == 1) { + st_time = tc; + tc = 0; +// return; + } else { + tc -= st_time; + } + printk("ACPI SPY BATTERY: %llu: %s %d\n", tc, s, start); +} + /* -------------------------------------------------------------------------- Battery Management -------------------------------------------------------------------------- */ @@ -201,7 +222,9 @@ acpi_battery_get_status(struct acpi_batt /* Evalute _BST */ + ptime("_BST extract", 1); status = acpi_evaluate_object(battery->device->handle, "_BST", NULL, &buffer); + ptime("_BST extract", 2); if (ACPI_FAILURE(status)) { ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST")); return -ENODEV; @@ -757,6 +780,9 @@ static int __init acpi_battery_init(void { int result; + if(acpi_disabled) + return -ENODEV; + acpi_battery_dir = acpi_lock_battery_dir(); if (!acpi_battery_dir) return -ENODEV; diff -rup linux-2.6.18-rc2.a/drivers/acpi/dispatcher/dsmethod.c linux-2.6.18-rc2.b/drivers/acpi/dispatcher/dsmethod.c --- linux-2.6.18-rc2.a/drivers/acpi/dispatcher/dsmethod.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/dispatcher/dsmethod.c 2006-07-29 19:27:44.000000000 +0400 @@ -386,7 +386,7 @@ acpi_ds_call_control_method(struct acpi_ /* Begin AML parse (deletes next_walk_state) */ - status = acpi_ps_parse_aml(next_walk_state); + status = acpi_ps_parse_aml(next_walk_state, 0); acpi_ps_delete_parse_tree(op); if (ACPI_FAILURE(status)) { goto cleanup; diff -rup linux-2.6.18-rc2.a/drivers/acpi/dispatcher/dsopcode.c linux-2.6.18-rc2.b/drivers/acpi/dispatcher/dsopcode.c --- linux-2.6.18-rc2.a/drivers/acpi/dispatcher/dsopcode.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/dispatcher/dsopcode.c 2006-07-29 19:27:44.000000000 +0400 @@ -127,7 +127,7 @@ acpi_ds_execute_arguments(struct acpi_na /* Pass1: Parse the entire declaration */ - status = acpi_ps_parse_aml(walk_state); + status = acpi_ps_parse_aml(walk_state, 0); if (ACPI_FAILURE(status)) { goto cleanup; } @@ -166,7 +166,7 @@ acpi_ds_execute_arguments(struct acpi_na /* Mark this execution as a deferred opcode */ walk_state->deferred_node = node; - status = acpi_ps_parse_aml(walk_state); + status = acpi_ps_parse_aml(walk_state, 0); cleanup: acpi_ps_delete_parse_tree(op); diff -rup linux-2.6.18-rc2.a/drivers/acpi/namespace/nseval.c linux-2.6.18-rc2.b/drivers/acpi/namespace/nseval.c --- linux-2.6.18-rc2.a/drivers/acpi/namespace/nseval.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/namespace/nseval.c 2006-07-29 19:27:44.000000000 +0400 @@ -49,6 +49,32 @@ #define _COMPONENT ACPI_NAMESPACE ACPI_MODULE_NAME("nseval") + +static void ptime(acpi_string pathname, char *s, int start) +{ + static unsigned long long st_time = 0; + unsigned long long tc, tm, tu; + struct timeval tv; + + if (!pathname || strcmp(pathname, "_BST") != 0) + return; + + (void)do_gettimeofday(&tv); + tm = tv.tv_sec; + tm *= 1000000; + tu = tv.tv_usec; + tc = tm + tu; + if (start == 1) { + st_time = tc; + tc = 0; +// return; + } else { + tc -= st_time; + } + printk("ACPI SPY NSEVAL: %llu: %s %d\n", tc, s, start); +} + + /******************************************************************************* * * FUNCTION: acpi_ns_evaluate @@ -159,7 +185,9 @@ acpi_status acpi_ns_evaluate(struct acpi return_ACPI_STATUS(status); } +ptime(info->pathname, "acpi_ps_execute_method", 1); status = acpi_ps_execute_method(info); +ptime(info->pathname, "acpi_ps_execute_method", 2); acpi_ex_exit_interpreter(); } else { /* diff -rup linux-2.6.18-rc2.a/drivers/acpi/namespace/nsparse.c linux-2.6.18-rc2.b/drivers/acpi/namespace/nsparse.c --- linux-2.6.18-rc2.a/drivers/acpi/namespace/nsparse.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/namespace/nsparse.c 2006-07-29 19:27:44.000000000 +0400 @@ -99,7 +99,7 @@ acpi_ns_one_complete_parse(u8 pass_numbe ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "*PARSE* pass %d parse\n", pass_number)); - status = acpi_ps_parse_aml(walk_state); + status = acpi_ps_parse_aml(walk_state, 0); acpi_ps_delete_parse_tree(parse_root); return_ACPI_STATUS(status); diff -rup linux-2.6.18-rc2.a/drivers/acpi/namespace/nsxfeval.c linux-2.6.18-rc2.b/drivers/acpi/namespace/nsxfeval.c --- linux-2.6.18-rc2.a/drivers/acpi/namespace/nsxfeval.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/namespace/nsxfeval.c 2006-07-29 19:27:44.000000000 +0400 @@ -46,6 +46,31 @@ #include #include +static void ptime(acpi_string pathname, char *s, int start) +{ + static unsigned long long st_time = 0; + unsigned long long tc, tm, tu; + struct timeval tv; + + if (!pathname || strcmp(pathname, "_BST") != 0) + return; + + (void)do_gettimeofday(&tv); + tm = tv.tv_sec; + tm *= 1000000; + tu = tv.tv_usec; + tc = tm + tu; + if (start == 1) { + st_time = tc; + tc = 0; +// return; + } else { + tc -= st_time; + } + printk("ACPI SPY NSXFEVAL: %llu: %s %d\n", tc, s, start); +} + + #define _COMPONENT ACPI_NAMESPACE ACPI_MODULE_NAME("nsxfeval") @@ -258,8 +283,9 @@ acpi_evaluate_object(acpi_handle handle, status = AE_BAD_PARAMETER; } else { /* We have a namespace a node and a possible relative path */ - + ptime(pathname, "acpi_ns_evaluate", 1); status = acpi_ns_evaluate(info); + ptime(pathname, "acpi_ns_evaluate", 2); } /* diff -rup linux-2.6.18-rc2.a/drivers/acpi/parser/psparse.c linux-2.6.18-rc2.b/drivers/acpi/parser/psparse.c --- linux-2.6.18-rc2.a/drivers/acpi/parser/psparse.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/parser/psparse.c 2006-07-29 19:27:44.000000000 +0400 @@ -60,6 +60,31 @@ #define _COMPONENT ACPI_PARSER ACPI_MODULE_NAME("psparse") + +static void ptime(acpi_string pathname, char *s, int start) +{ + static unsigned long long st_time = 0; + unsigned long long tc, tcd, tm, tu; + struct timeval tv; + + if (!pathname || strcmp(pathname, "_BST") != 0) + return; + + (void)do_gettimeofday(&tv); + tm = tv.tv_sec; + tm *= 1000000; + tu = tv.tv_usec; + tc = tcd = tm + tu; + if (start == 1) { + st_time = tcd; + tc = 0; + } else { + tc -= st_time; + st_time = tcd; + } + printk("ACPI SPY PSPARSE %s: %llu: %s %d\n", pathname, tc, s, start); +} + /******************************************************************************* * * FUNCTION: acpi_ps_get_opcode_size @@ -446,12 +471,13 @@ acpi_ps_next_parse_state(struct acpi_wal * ******************************************************************************/ -acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state) +acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state, acpi_string pathname) { acpi_status status; struct acpi_thread_state *thread; struct acpi_thread_state *prev_walk_list = acpi_gbl_current_walk_list; struct acpi_walk_state *previous_walk_state; +ptime(pathname, "acpi_ps_parse_aml", 1); ACPI_FUNCTION_TRACE(ps_parse_aml); @@ -494,14 +520,18 @@ acpi_status acpi_ps_parse_aml(struct acp ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "State=%p\n", walk_state)); status = AE_OK; +ptime(pathname, "acpi_ps_parse_aml", 2); while (walk_state) { + if (ACPI_SUCCESS(status)) { /* * The parse_loop executes AML until the method terminates * or calls another method. */ +ptime(pathname, "acpi_ps_parse_aml", 3); status = acpi_ps_parse_loop(walk_state); } +ptime(pathname, "acpi_ps_parse_aml", 4); ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Completed one call to walk loop, %s State=%p\n", @@ -512,9 +542,11 @@ acpi_status acpi_ps_parse_aml(struct acp * A method call was detected. * Transfer control to the called control method */ +ptime(pathname, "acpi_ps_parse_aml", 5); status = acpi_ds_call_control_method(thread, walk_state, NULL); +ptime(pathname, "acpi_ps_parse_aml", 6); if (ACPI_FAILURE(status)) { status = acpi_ds_method_error(status, walk_state); @@ -524,7 +556,9 @@ acpi_status acpi_ps_parse_aml(struct acp * If the transfer to the new method method call worked, a new walk * state was created -- get it */ +ptime(pathname, "acpi_ps_parse_aml", 7); walk_state = acpi_ds_get_current_walk_state(thread); +ptime(pathname, "acpi_ps_parse_aml", 8); continue; } else if (status == AE_CTRL_TERMINATE) { status = AE_OK; @@ -538,6 +572,7 @@ acpi_status acpi_ps_parse_aml(struct acp /* Check for possible multi-thread reentrancy problem */ +ptime(pathname, "acpi_ps_parse_aml", 9); if ((status == AE_ALREADY_EXISTS) && (!walk_state->method_desc->method.mutex)) { /* @@ -554,31 +589,40 @@ acpi_status acpi_ps_parse_aml(struct acp walk_state->method_desc->method.sync_level = 0; } } +ptime(pathname, "acpi_ps_parse_aml", 10); /* We are done with this walk, move on to the parent if any */ +ptime(pathname, "acpi_ps_parse_aml", 11); walk_state = acpi_ds_pop_walk_state(thread); +ptime(pathname, "acpi_ps_parse_aml", 12); /* Reset the current scope to the beginning of scope stack */ +ptime(pathname, "acpi_ps_parse_aml", 13); acpi_ds_scope_stack_clear(walk_state); +ptime(pathname, "acpi_ps_parse_aml", 14); /* * If we just returned from the execution of a control method or if we * encountered an error during the method parse phase, there's lots of * cleanup to do */ +ptime(pathname, "acpi_ps_parse_aml", 15); if (((walk_state->parse_flags & ACPI_PARSE_MODE_MASK) == ACPI_PARSE_EXECUTE) || (ACPI_FAILURE(status))) { acpi_ds_terminate_control_method(walk_state-> method_desc, walk_state); } +ptime(pathname, "acpi_ps_parse_aml", 16); /* Delete this walk state and all linked control states */ +ptime(pathname, "acpi_ps_parse_aml", 17); acpi_ps_cleanup_scope(&walk_state->parser_state); previous_walk_state = walk_state; +ptime(pathname, "acpi_ps_parse_aml", 18); ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "ReturnValue=%p, ImplicitValue=%p State=%p\n", @@ -587,7 +631,9 @@ acpi_status acpi_ps_parse_aml(struct acp /* Check if we have restarted a preempted walk */ +ptime(pathname, "acpi_ps_parse_aml", 19); walk_state = acpi_ds_get_current_walk_state(thread); +ptime(pathname, "acpi_ps_parse_aml", 20); if (walk_state) { if (ACPI_SUCCESS(status)) { /* @@ -596,23 +642,29 @@ acpi_status acpi_ps_parse_aml(struct acp * The object is deleted */ if (!previous_walk_state->return_desc) { +ptime(pathname, "acpi_ps_parse_aml", 21); status = acpi_ds_restart_control_method (walk_state, previous_walk_state-> implicit_return_obj); +ptime(pathname, "acpi_ps_parse_aml", 22); } else { /* * We have a valid return value, delete any implicit * return value. */ +ptime(pathname, "acpi_ps_parse_aml", 23); acpi_ds_clear_implicit_return (previous_walk_state); +ptime(pathname, "acpi_ps_parse_aml", 24); +ptime(pathname, "acpi_ps_parse_aml", 25); status = acpi_ds_restart_control_method (walk_state, previous_walk_state->return_desc); +ptime(pathname, "acpi_ps_parse_aml", 26); } if (ACPI_SUCCESS(status)) { walk_state->walk_type |= @@ -621,8 +673,10 @@ acpi_status acpi_ps_parse_aml(struct acp } else { /* On error, delete any return object */ +ptime(pathname, "acpi_ps_parse_aml", 27); acpi_ut_remove_reference(previous_walk_state-> return_desc); +ptime(pathname, "acpi_ps_parse_aml", 28); } } @@ -631,6 +685,7 @@ acpi_status acpi_ps_parse_aml(struct acp * value (if any) */ else if (previous_walk_state->caller_return_desc) { +ptime(pathname, "acpi_ps_parse_aml", 29); if (previous_walk_state->implicit_return_obj) { *(previous_walk_state->caller_return_desc) = previous_walk_state->implicit_return_obj; @@ -645,26 +700,34 @@ acpi_status acpi_ps_parse_aml(struct acp /* Caller doesn't want it, must delete it */ +ptime(pathname, "acpi_ps_parse_aml", 30); acpi_ut_remove_reference(previous_walk_state-> return_desc); +ptime(pathname, "acpi_ps_parse_aml", 31); } if (previous_walk_state->implicit_return_obj) { /* Caller doesn't want it, must delete it */ +ptime(pathname, "acpi_ps_parse_aml", 32); acpi_ut_remove_reference(previous_walk_state-> implicit_return_obj); +ptime(pathname, "acpi_ps_parse_aml", 33); } } acpi_ds_delete_walk_state(previous_walk_state); } +ptime(pathname, "acpi_ps_parse_aml", 34); /* Normal exit */ acpi_ex_release_all_mutexes(thread); +ptime(pathname, "acpi_ps_parse_aml", 35); acpi_ut_delete_generic_state(ACPI_CAST_PTR (union acpi_generic_state, thread)); +ptime(pathname, "acpi_ps_parse_aml", 36); acpi_gbl_current_walk_list = prev_walk_list; +ptime(pathname, "acpi_ps_parse_aml", 37); return_ACPI_STATUS(status); } diff -rup linux-2.6.18-rc2.a/drivers/acpi/parser/psxface.c linux-2.6.18-rc2.b/drivers/acpi/parser/psxface.c --- linux-2.6.18-rc2.a/drivers/acpi/parser/psxface.c 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/drivers/acpi/parser/psxface.c 2006-07-29 19:27:44.000000000 +0400 @@ -59,6 +59,30 @@ static acpi_status acpi_ps_execute_pass( static void acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action); + +static void ptime(acpi_string pathname, char *s, int start) +{ + static unsigned long long st_time = 0; + unsigned long long tc, tm, tu; + struct timeval tv; + + if (!pathname || strcmp(pathname, "_BST") != 0) + return; + + (void)do_gettimeofday(&tv); + tm = tv.tv_sec; + tm *= 1000000; + tu = tv.tv_usec; + tc = tm + tu; + if (start == 1) { + st_time = tc; + tc = 0; + } else { + tc -= st_time; + } + printk("ACPI SPY PSXFACE: %llu: %s %d\n", tc, s, start); +} + /******************************************************************************* * * FUNCTION: acpi_debug_trace @@ -381,7 +405,9 @@ static acpi_status acpi_ps_execute_pass( /* Parse the AML */ - status = acpi_ps_parse_aml(walk_state); +ptime(info->pathname, "acpi_ps_parse_aml", 1); + status = acpi_ps_parse_aml(walk_state, info->pathname); +ptime(info->pathname, "acpi_ps_parse_aml", 2); /* Walk state was deleted by parse_aml */ diff -rup linux-2.6.18-rc2.a/include/acpi/acparser.h linux-2.6.18-rc2.b/include/acpi/acparser.h --- linux-2.6.18-rc2.a/include/acpi/acparser.h 2006-07-29 19:27:44.000000000 +0400 +++ linux-2.6.18-rc2.b/include/acpi/acparser.h 2006-07-29 19:27:44.000000000 +0400 @@ -112,7 +112,7 @@ char *acpi_ps_get_opcode_name(u16 opcode /* * psparse - top level parsing routines */ -acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state); +acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state, acpi_string pathname); u32 acpi_ps_get_opcode_size(u32 opcode);