Author: kib
Date: Mon Dec 12 09:43:48 2016
New Revision: 309882
URL: https://svnweb.freebsd.org/changeset/base/309882
Log:
MFC r309550:
Rename fast taskqueues used by DMAR.
Modified:
stable/11/sys/x86/iommu/intel_fault.c
stable/11/sys/x86/iommu/intel_qi.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/x86/iommu/intel_fault.c
==============================================================================
--- stable/11/sys/x86/iommu/intel_fault.c Mon Dec 12 07:03:10 2016
(r309881)
+++ stable/11/sys/x86/iommu/intel_fault.c Mon Dec 12 09:43:48 2016
(r309882)
@@ -271,7 +271,7 @@ dmar_init_fault_log(struct dmar_unit *un
M_DEVBUF, M_WAITOK | M_ZERO);
TASK_INIT(&unit->fault_task, 0, dmar_fault_task, unit);
- unit->fault_taskqueue = taskqueue_create_fast("dmar", M_WAITOK,
+ unit->fault_taskqueue = taskqueue_create_fast("dmarff", M_WAITOK,
taskqueue_thread_enqueue, &unit->fault_taskqueue);
taskqueue_start_threads(&unit->fault_taskqueue, 1, PI_AV,
"dmar%d fault taskq", unit->unit);
Modified: stable/11/sys/x86/iommu/intel_qi.c
==============================================================================
--- stable/11/sys/x86/iommu/intel_qi.c Mon Dec 12 07:03:10 2016
(r309881)
+++ stable/11/sys/x86/iommu/intel_qi.c Mon Dec 12 09:43:48 2016
(r309882)
@@ -378,7 +378,7 @@ dmar_init_qi(struct dmar_unit *unit)
TAILQ_INIT(&unit->tlb_flush_entries);
TASK_INIT(&unit->qi_task, 0, dmar_qi_task, unit);
- unit->qi_taskqueue = taskqueue_create_fast("dmar", M_WAITOK,
+ unit->qi_taskqueue = taskqueue_create_fast("dmarqf", M_WAITOK,
taskqueue_thread_enqueue, &unit->qi_taskqueue);
taskqueue_start_threads(&unit->qi_taskqueue, 1, PI_AV,
"dmar%d qi taskq", unit->unit);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"