svn commit: r265653 - stable/10/sys/dev/acpica

Steven Hartland smh at FreeBSD.org
Thu May 8 08:20:23 UTC 2014


Author: smh
Date: Thu May  8 08:20:23 2014
New Revision: 265653
URL: http://svnweb.freebsd.org/changeset/base/265653

Log:
  MFC r264878
  
  Increase ACPI_MAX_TASKS to be 4 x the number of CPU's as 2 x was still
  insufficient on some machines
  
  Sponsored by:	Multiplay

Modified:
  stable/10/sys/dev/acpica/acpivar.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/acpica/acpivar.h
==============================================================================
--- stable/10/sys/dev/acpica/acpivar.h	Thu May  8 08:18:48 2014	(r265652)
+++ stable/10/sys/dev/acpica/acpivar.h	Thu May  8 08:20:23 2014	(r265653)
@@ -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-all mailing list