summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/Osd
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2009-06-10 22:54:20 +0000
committerjkim <jkim@FreeBSD.org>2009-06-10 22:54:20 +0000
commit1ff58b569863e1539ec3fd6e87588b27d7f0d181 (patch)
tree1c23983b1e6edd074c8effcf9253affcfca5b01f /sys/dev/acpica/Osd
parent2bb27cf8108ac15cd291fdb8a42b1ff2481085be (diff)
downloadFreeBSD-src-1ff58b569863e1539ec3fd6e87588b27d7f0d181.zip
FreeBSD-src-1ff58b569863e1539ec3fd6e87588b27d7f0d181.tar.gz
Catch up with r193750 (OsdSynch.c locking changes):
- Preallocate some memory for ACPI tasks early enough. We cannot use malloc(9) any more because spin mutex may be held here. The reserved memory can be tuned via debug.acpi.max_tasks tunable or ACPI_MAX_TASKS in kernel configuration. The default is 32 tasks. - Implement a custom taskqueue_fast to wrap the new memory allocation. This implementation is not the fastest in the world but we are being conservative here.
Diffstat (limited to 'sys/dev/acpica/Osd')
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c108
1 files changed, 92 insertions, 16 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index fa91ed8..180c362 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -1,6 +1,7 @@
/*-
* Copyright (c) 2000 Michael Smith
* Copyright (c) 2000 BSDi
+ * Copyright (c) 2007-2009 Jung-uk Kim <jkim@FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -52,6 +53,12 @@ __FBSDID("$FreeBSD$");
ACPI_MODULE_NAME("SCHEDULE")
/*
+ * Allow the user to tune the maximum number of tasks we may enqueue.
+ */
+static int acpi_max_tasks = ACPI_MAX_TASKS;
+TUNABLE_INT("debug.acpi.max_tasks", &acpi_max_tasks);
+
+/*
* Allow the user to tune the number of task threads we start. It seems
* some systems have problems with increased parallelism.
*/
@@ -64,11 +71,54 @@ struct acpi_task_ctx {
struct task at_task;
ACPI_OSD_EXEC_CALLBACK at_function;
void *at_context;
+ int at_flag;
+#define ACPI_TASK_USED 1
+#define ACPI_TASK_ENQUEUED 2
};
-TASKQUEUE_DEFINE(acpi, taskqueue_thread_enqueue, &taskqueue_acpi,
- taskqueue_start_threads(&taskqueue_acpi, acpi_max_threads, PWAIT,
- "acpi_task"));
+struct taskqueue *acpi_taskq;
+static struct acpi_task_ctx *acpi_tasks;
+static int acpi_task_count;
+static int acpi_taskq_started;
+
+/*
+ * Preallocate some memory for tasks early enough.
+ * malloc(9) cannot be used with spin lock held.
+ */
+static void
+acpi_task_init(void *arg)
+{
+
+ acpi_tasks = malloc(sizeof(*acpi_tasks) * acpi_max_tasks, M_ACPITASK,
+ M_WAITOK | M_ZERO);
+}
+
+SYSINIT(acpi_tasks, SI_SUB_DRIVERS, SI_ORDER_FIRST, acpi_task_init, NULL);
+
+/*
+ * Initialize ACPI task queue.
+ */
+static void
+acpi_taskq_init(void *arg)
+{
+ int i;
+
+ acpi_taskq = taskqueue_create_fast("acpi_task", M_NOWAIT,
+ &taskqueue_thread_enqueue, &acpi_taskq);
+ taskqueue_start_threads(&acpi_taskq, acpi_max_threads, PWAIT, "acpi_task");
+ if (acpi_task_count > 0) {
+ if (bootverbose)
+ printf("AcpiOsExecute: enqueue %d pending tasks\n",
+ acpi_task_count);
+ for (i = 0; i < acpi_max_tasks; i++)
+ if (atomic_cmpset_acq_int(&acpi_tasks[i].at_flag, ACPI_TASK_USED,
+ ACPI_TASK_USED | ACPI_TASK_ENQUEUED))
+ taskqueue_enqueue(acpi_taskq, &acpi_tasks[i].at_task);
+ }
+ acpi_taskq_started = 1;
+}
+
+SYSINIT(acpi_taskq, SI_SUB_CONFIGURE, SI_ORDER_SECOND, acpi_taskq_init, NULL);
/*
* Bounce through this wrapper function since ACPI-CA doesn't understand
@@ -81,7 +131,44 @@ acpi_task_execute(void *context, int pending)
at = (struct acpi_task_ctx *)context;
at->at_function(at->at_context);
- free(at, M_ACPITASK);
+ atomic_clear_int(&at->at_flag, ACPI_TASK_USED | ACPI_TASK_ENQUEUED);
+ acpi_task_count--;
+}
+
+static ACPI_STATUS
+acpi_task_enqueue(int priority, ACPI_OSD_EXEC_CALLBACK Function, void *Context)
+{
+ struct acpi_task_ctx *at;
+ int i;
+
+ for (at = NULL, i = 0; i < acpi_max_tasks; i++)
+ if (atomic_cmpset_acq_int(&acpi_tasks[i].at_flag, 0, ACPI_TASK_USED)) {
+ at = &acpi_tasks[i];
+ acpi_task_count++;
+ break;
+ }
+ if (at == NULL) {
+ printf("AcpiOsExecute: failed to enqueue task, consider increasing "
+ "the debug.acpi.max_tasks tunable\n");
+ return (AE_NO_MEMORY);
+ }
+
+ TASK_INIT(&at->at_task, priority, acpi_task_execute, at);
+ at->at_function = Function;
+ at->at_context = Context;
+
+ /*
+ * If the task queue is ready, enqueue it now.
+ */
+ if (acpi_taskq_started) {
+ atomic_set_int(&at->at_flag, ACPI_TASK_ENQUEUED);
+ taskqueue_enqueue(acpi_taskq, &at->at_task);
+ return (AE_OK);
+ }
+ if (bootverbose)
+ printf("AcpiOsExecute: task queue not started\n");
+
+ return (AE_OK);
}
/*
@@ -92,7 +179,6 @@ ACPI_STATUS
AcpiOsExecute(ACPI_EXECUTE_TYPE Type, ACPI_OSD_EXEC_CALLBACK Function,
void *Context)
{
- struct acpi_task_ctx *at;
int pri;
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
@@ -100,12 +186,6 @@ AcpiOsExecute(ACPI_EXECUTE_TYPE Type, ACPI_OSD_EXEC_CALLBACK Function,
if (Function == NULL)
return_ACPI_STATUS (AE_BAD_PARAMETER);
- at = malloc(sizeof(*at), M_ACPITASK, M_NOWAIT);
- if (at == NULL)
- return_ACPI_STATUS (AE_NO_MEMORY);
-
- at->at_function = Function;
- at->at_context = Context;
switch (Type) {
case OSL_GPE_HANDLER:
case OSL_NOTIFY_HANDLER:
@@ -126,14 +206,10 @@ AcpiOsExecute(ACPI_EXECUTE_TYPE Type, ACPI_OSD_EXEC_CALLBACK Function,
pri = 0;
break;
default:
- free(at, M_ACPITASK);
return_ACPI_STATUS (AE_BAD_PARAMETER);
}
- TASK_INIT(&at->at_task, pri, acpi_task_execute, at);
- taskqueue_enqueue(taskqueue_acpi, &at->at_task);
-
- return_ACPI_STATUS (AE_OK);
+ return_ACPI_STATUS (acpi_task_enqueue(pri, Function, Context));
}
void
OpenPOWER on IntegriCloud