svn commit: r320744 - stable/11/sys/dev/acpica/Osd

Mark Johnston markj at FreeBSD.org
Thu Jul 6 17:20:37 UTC 2017


Author: markj
Date: Thu Jul  6 17:20:35 2017
New Revision: 320744
URL: https://svnweb.freebsd.org/changeset/base/320744

Log:
  MFC r320690:
  Defer ACPI taskqueue creation to SI_SUB_KICK_SCHEDULER.
  
  PR:	220277

Modified:
  stable/11/sys/dev/acpica/Osd/OsdSchedule.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/acpica/Osd/OsdSchedule.c
==============================================================================
--- stable/11/sys/dev/acpica/Osd/OsdSchedule.c	Thu Jul  6 17:03:22 2017	(r320743)
+++ stable/11/sys/dev/acpica/Osd/OsdSchedule.c	Thu Jul  6 17:20:35 2017	(r320744)
@@ -128,7 +128,7 @@ acpi_taskq_init(void *arg)
     acpi_taskq_started = 1;
 }
 
-SYSINIT(acpi_taskq, SI_SUB_CONFIGURE, SI_ORDER_SECOND, acpi_taskq_init, NULL);
+SYSINIT(acpi_taskq, SI_SUB_KICK_SCHEDULER, SI_ORDER_ANY, acpi_taskq_init, NULL);
 
 /*
  * Bounce through this wrapper function since ACPI-CA doesn't understand


More information about the svn-src-stable-11 mailing list