svn commit: r265663 - stable/9/sys/dev/acpica

Steven Hartland smh at FreeBSD.org
Thu May 8 08:34:50 UTC 2014


Author: smh
Date: Thu May  8 08:34:49 2014
New Revision: 265663
URL: http://svnweb.freebsd.org/changeset/base/265663

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/9/sys/dev/acpica/acpivar.h
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/acpica/acpivar.h
==============================================================================
--- stable/9/sys/dev/acpica/acpivar.h	Thu May  8 08:33:32 2014	(r265662)
+++ stable/9/sys/dev/acpica/acpivar.h	Thu May  8 08:34:49 2014	(r265663)
@@ -478,7 +478,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