Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jul 2017 17:20:36 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r320744 - stable/11/sys/dev/acpica/Osd
Message-ID:  <201707061720.v66HKauI011906@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707061720.v66HKauI011906>