Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02dcdc3e authored by Bob Moore's avatar Bob Moore Committed by Rafael J. Wysocki
Browse files

ACPICA: Simplify configuration for "Max Loops" system parameter

ACPICA commit 857c510d70e18eecc275dd3087807a18bae8aa51

Allow for static configuration of this parameter. It is used
to abort out of infinite loops caused by non-response from
hardware.

Link: https://github.com/acpica/acpica/commit/857c510d


Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarLv Zheng <lv.zheng@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 7c312ad1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ acpi_status acpi_ut_init_globals(void)
	acpi_gbl_next_owner_id_offset = 0;
	acpi_gbl_debugger_configuration = DEBUGGER_THREADING;
	acpi_gbl_osi_mutex = NULL;
	acpi_gbl_max_loop_iterations = 0xFFFF;
	acpi_gbl_max_loop_iterations = ACPI_MAX_LOOP_COUNT;

	/* Hardware oriented */

+4 −0
Original line number Diff line number Diff line
@@ -144,6 +144,10 @@

#define ACPI_ADDRESS_RANGE_MAX          2

/* Maximum number of While() loops before abort */

#define ACPI_MAX_LOOP_COUNT             0xFFFF

/******************************************************************************
 *
 * ACPI Specification constants (Do not change unless the specification changes)