mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Since the interpreter slack mode is a tunable now, enable a local hack only
when it is set. Note the default behaviour does not change by this change.
This commit is contained in:
parent
e0999e592b
commit
24081291d2
1 changed files with 9 additions and 6 deletions
|
|
@ -474,13 +474,16 @@ AcpiEnterSleepState (
|
|||
return_ACPI_STATUS (Status);
|
||||
}
|
||||
|
||||
/*
|
||||
* Some BIOSs don't set WAK_STS at all. Give up waiting after
|
||||
* 1000 retries if it still isn't set.
|
||||
*/
|
||||
if (Retry-- == 0)
|
||||
if (AcpiGbl_EnableInterpreterSlack)
|
||||
{
|
||||
break;
|
||||
/*
|
||||
* Some BIOSs don't set WAK_STS at all. Give up waiting after
|
||||
* 1000 retries if it still isn't set.
|
||||
*/
|
||||
if (Retry-- == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Spin until we wake */
|
||||
|
|
|
|||
Loading…
Reference in a new issue