/******************************************************************************* * * FUNCTION: acpi_ut_trace_ptr * * PARAMETERS: line_number - Caller's line number * function_name - Caller's procedure name * module_name - Caller's module name * component_id - Caller's component ID * Pointer - Pointer to display * * RETURN: None * * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is * set in debug_level * ******************************************************************************/ void acpi_ut_trace_ptr(u32 line_number, const char *function_name, const char *module_name, u32 component_id, void *pointer) { acpi_gbl_nesting_level++; acpi_ut_track_stack_ptr(); acpi_debug_print(ACPI_LV_FUNCTIONS, line_number, function_name, module_name, component_id, "%s %p\n", acpi_gbl_fn_entry_str, pointer); }
void acpi_ut_trace_ptr ( u32 line_number, struct acpi_debug_print_info *dbg_info, void *pointer) { acpi_gbl_nesting_level++; acpi_ut_track_stack_ptr (); acpi_ut_debug_print (ACPI_LV_FUNCTIONS, line_number, dbg_info, "%s %p\n", acpi_gbl_fn_entry_str, pointer); }
void acpi_ut_trace ( u32 line_number, acpi_debug_print_info *dbg_info) { acpi_gbl_nesting_level++; acpi_ut_track_stack_ptr (); acpi_ut_debug_print (ACPI_LV_FUNCTIONS, line_number, dbg_info, "%s\n", acpi_gbl_fn_entry_str); }
/******************************************************************************* * * FUNCTION: acpi_ut_trace * * PARAMETERS: line_number - Caller's line number * function_name - Caller's procedure name * module_name - Caller's module name * component_id - Caller's component ID * * RETURN: None * * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is * set in debug_level * ******************************************************************************/ void acpi_ut_trace(u32 line_number, const char *function_name, const char *module_name, u32 component_id) { acpi_gbl_nesting_level++; acpi_ut_track_stack_ptr(); /* Check if enabled up-front for performance */ if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { acpi_debug_print(ACPI_LV_FUNCTIONS, line_number, function_name, module_name, component_id, "%s\n", acpi_gbl_fn_entry_str); } }