Increase ACPI_MAX_TASKS to be 4 x the number of CPU's as 2 x was still

insufficient on some machines

MFC after:	2 weeks
This commit is contained in:
Steven Hartland 2014-04-24 12:38:07 +00:00
parent c63d8c3b51
commit 802d215dc1

View File

@ -476,7 +476,7 @@ ACPI_HANDLE acpi_GetReference(ACPI_HANDLE scope, ACPI_OBJECT *obj);
/* Default maximum number of tasks to enqueue. */
#ifndef ACPI_MAX_TASKS
#define ACPI_MAX_TASKS MAX(32, MAXCPU * 2)
#define ACPI_MAX_TASKS MAX(32, MAXCPU * 4)
#endif
/* Default number of task queue threads to start. */