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. */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to