2000-05-28 11:45:30 -04:00
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 2000 Doug Rabson
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*
|
2000-05-30 03:27:46 -04:00
|
|
|
* $FreeBSD$
|
2000-05-28 11:45:30 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _SYS_TASKQUEUE_H_
|
|
|
|
|
#define _SYS_TASKQUEUE_H_
|
|
|
|
|
|
2000-05-30 03:27:46 -04:00
|
|
|
#ifndef _KERNEL
|
|
|
|
|
#error "no user-servicable parts inside"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <sys/queue.h>
|
2004-01-23 15:44:26 -05:00
|
|
|
#include <sys/_task.h>
|
2000-05-28 11:45:30 -04:00
|
|
|
|
|
|
|
|
struct taskqueue;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* A notification callback function which is called from
|
2000-05-30 03:27:46 -04:00
|
|
|
* taskqueue_enqueue(). The context argument is given in the call to
|
|
|
|
|
* taskqueue_create(). This function would normally be used to allow the
|
|
|
|
|
* queue to arrange to run itself later (e.g., by scheduling a software
|
2000-05-28 11:45:30 -04:00
|
|
|
* interrupt or waking a kernel thread).
|
|
|
|
|
*/
|
|
|
|
|
typedef void (*taskqueue_enqueue_fn)(void *context);
|
|
|
|
|
|
2000-05-30 03:27:46 -04:00
|
|
|
struct taskqueue *taskqueue_create(const char *name, int mflags,
|
|
|
|
|
taskqueue_enqueue_fn enqueue,
|
|
|
|
|
void *context);
|
|
|
|
|
int taskqueue_enqueue(struct taskqueue *queue, struct task *task);
|
|
|
|
|
struct taskqueue *taskqueue_find(const char *name);
|
|
|
|
|
void taskqueue_free(struct taskqueue *queue);
|
|
|
|
|
void taskqueue_run(struct taskqueue *queue);
|
2000-05-28 11:45:30 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Initialise a task structure.
|
|
|
|
|
*/
|
2001-10-26 14:46:48 -04:00
|
|
|
#define TASK_INIT(task, priority, func, context) do { \
|
|
|
|
|
(task)->ta_pending = 0; \
|
|
|
|
|
(task)->ta_priority = (priority); \
|
|
|
|
|
(task)->ta_func = (func); \
|
|
|
|
|
(task)->ta_context = (context); \
|
|
|
|
|
} while (0)
|
2000-05-28 11:45:30 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Declare a reference to a taskqueue.
|
|
|
|
|
*/
|
|
|
|
|
#define TASKQUEUE_DECLARE(name) \
|
|
|
|
|
extern struct taskqueue *taskqueue_##name
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Define and initialise a taskqueue.
|
|
|
|
|
*/
|
2000-05-30 03:27:46 -04:00
|
|
|
#define TASKQUEUE_DEFINE(name, enqueue, context, init) \
|
2000-05-28 11:45:30 -04:00
|
|
|
\
|
|
|
|
|
struct taskqueue *taskqueue_##name; \
|
|
|
|
|
\
|
|
|
|
|
static void \
|
|
|
|
|
taskqueue_define_##name(void *arg) \
|
|
|
|
|
{ \
|
|
|
|
|
taskqueue_##name = \
|
2000-05-30 03:27:46 -04:00
|
|
|
taskqueue_create(#name, M_NOWAIT, (enqueue), (context)); \
|
2000-05-28 11:45:30 -04:00
|
|
|
init; \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
SYSINIT(taskqueue_##name, SI_SUB_CONFIGURE, SI_ORDER_SECOND, \
|
2000-05-30 03:27:46 -04:00
|
|
|
taskqueue_define_##name, NULL) \
|
|
|
|
|
\
|
|
|
|
|
struct __hack
|
2000-05-28 11:45:30 -04:00
|
|
|
|
|
|
|
|
/*
|
Move dynamic sysctl(8) variable creation for the cd(4) and da(4) drivers
out of cdregister() and daregister(), which are run from interrupt context.
The sysctl code does blocking mallocs (M_WAITOK), which causes problems
if malloc(9) actually needs to sleep.
The eventual fix for this issue will involve moving the CAM probe process
inside a kernel thread. For now, though, I have fixed the issue by moving
dynamic sysctl variable creation for these two drivers to a task queue
running in a kernel thread.
The existing task queues (taskqueue_swi and taskqueue_swi_giant) run in
software interrupt handlers, which wouldn't fix the problem at hand. So I
have created a new task queue, taskqueue_thread, that runs inside a kernel
thread. (It also runs outside of Giant -- clients must explicitly acquire
and release Giant in their taskqueue functions.)
scsi_cd.c: Remove sysctl variable creation code from cdregister(), and
move it to a new function, cdsysctlinit(). Queue
cdsysctlinit() to the taskqueue_thread taskqueue once we
have fully registered the cd(4) driver instance.
scsi_da.c: Remove sysctl variable creation code from daregister(), and
move it to move it to a new function, dasysctlinit().
Queue dasysctlinit() to the taskqueue_thread taskqueue once
we have fully registered the da(4) instance.
taskqueue.h: Declare the new taskqueue_thread taskqueue, update some
comments.
subr_taskqueue.c:
Create the new kernel thread taskqueue. This taskqueue
runs outside of Giant, so any functions queued to it would
need to explicitly acquire/release Giant if they need it.
cd.4: Update the cd(4) man page to talk about the minimum command
size sysctl/loader tunable. Also note that the changer
variables are available as loader tunables as well.
da.4: Update the da(4) man page to cover the retry_count,
default_timeout and minimum_cmd_size sysctl variables/loader
tunables. Remove references to /dev/r???, they aren't used
any longer.
cd.9: Update the cd(9) man page to describe the CD_Q_10_BYTE_ONLY
quirk.
taskqueue.9: Update the taskqueue(9) man page to describe the new thread
task queue, and the taskqueue_swi_giant queue.
MFC after: 3 days
2003-09-03 00:46:28 -04:00
|
|
|
* These queues are serviced by software interrupt handlers. To enqueue
|
|
|
|
|
* a task, call taskqueue_enqueue(taskqueue_swi, &task) or
|
|
|
|
|
* taskqueue_enqueue(taskqueue_swi_giant, &task).
|
2000-05-28 11:45:30 -04:00
|
|
|
*/
|
2003-02-25 22:15:42 -05:00
|
|
|
TASKQUEUE_DECLARE(swi_giant);
|
2000-05-28 11:45:30 -04:00
|
|
|
TASKQUEUE_DECLARE(swi);
|
|
|
|
|
|
Move dynamic sysctl(8) variable creation for the cd(4) and da(4) drivers
out of cdregister() and daregister(), which are run from interrupt context.
The sysctl code does blocking mallocs (M_WAITOK), which causes problems
if malloc(9) actually needs to sleep.
The eventual fix for this issue will involve moving the CAM probe process
inside a kernel thread. For now, though, I have fixed the issue by moving
dynamic sysctl variable creation for these two drivers to a task queue
running in a kernel thread.
The existing task queues (taskqueue_swi and taskqueue_swi_giant) run in
software interrupt handlers, which wouldn't fix the problem at hand. So I
have created a new task queue, taskqueue_thread, that runs inside a kernel
thread. (It also runs outside of Giant -- clients must explicitly acquire
and release Giant in their taskqueue functions.)
scsi_cd.c: Remove sysctl variable creation code from cdregister(), and
move it to a new function, cdsysctlinit(). Queue
cdsysctlinit() to the taskqueue_thread taskqueue once we
have fully registered the cd(4) driver instance.
scsi_da.c: Remove sysctl variable creation code from daregister(), and
move it to move it to a new function, dasysctlinit().
Queue dasysctlinit() to the taskqueue_thread taskqueue once
we have fully registered the da(4) instance.
taskqueue.h: Declare the new taskqueue_thread taskqueue, update some
comments.
subr_taskqueue.c:
Create the new kernel thread taskqueue. This taskqueue
runs outside of Giant, so any functions queued to it would
need to explicitly acquire/release Giant if they need it.
cd.4: Update the cd(4) man page to talk about the minimum command
size sysctl/loader tunable. Also note that the changer
variables are available as loader tunables as well.
da.4: Update the da(4) man page to cover the retry_count,
default_timeout and minimum_cmd_size sysctl variables/loader
tunables. Remove references to /dev/r???, they aren't used
any longer.
cd.9: Update the cd(9) man page to describe the CD_Q_10_BYTE_ONLY
quirk.
taskqueue.9: Update the taskqueue(9) man page to describe the new thread
task queue, and the taskqueue_swi_giant queue.
MFC after: 3 days
2003-09-03 00:46:28 -04:00
|
|
|
/*
|
|
|
|
|
* This queue is serviced by a kernel thread. To enqueue a task, call
|
|
|
|
|
* taskqueue_enqueue(taskqueue_thread, &task).
|
|
|
|
|
*/
|
|
|
|
|
TASKQUEUE_DECLARE(thread);
|
|
|
|
|
|
2003-09-05 19:09:22 -04:00
|
|
|
/*
|
|
|
|
|
* Queue for swi handlers dispatched from fast interrupt handlers.
|
|
|
|
|
* These are necessarily different from the above because the queue
|
|
|
|
|
* must be locked with spinlocks since sleep mutex's cannot be used
|
|
|
|
|
* from a fast interrupt handler context.
|
|
|
|
|
*/
|
|
|
|
|
TASKQUEUE_DECLARE(fast);
|
|
|
|
|
int taskqueue_enqueue_fast(struct taskqueue *queue, struct task *task);
|
|
|
|
|
|
2000-05-28 11:45:30 -04:00
|
|
|
#endif /* !_SYS_TASKQUEUE_H_ */
|