svn commit: r264878 - head/sys/dev/acpica

Steven Hartland smh at FreeBSD.org
Thu Apr 24 12:38:08 UTC 2014


Author: smh
Date: Thu Apr 24 12:38:07 2014
New Revision: 264878
URL: http://svnweb.freebsd.org/changeset/base/264878

Log:
  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

Modified:
  head/sys/dev/acpica/acpivar.h

Modified: head/sys/dev/acpica/acpivar.h
==============================================================================
--- head/sys/dev/acpica/acpivar.h	Thu Apr 24 11:28:23 2014	(r264877)
+++ head/sys/dev/acpica/acpivar.h	Thu Apr 24 12:38:07 2014	(r264878)
@@ -476,7 +476,7 @@ ACPI_HANDLE	acpi_GetReference(ACPI_HANDL
 
 /* 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. */


More information about the svn-src-head mailing list