summaryrefslogtreecommitdiffstats
path: root/sys/cddl
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2014-01-16 14:30:26 +0000
committeravg <avg@FreeBSD.org>2014-01-16 14:30:26 +0000
commit16f4d5cb308e45e3fe74758e164b70dfc0f56d64 (patch)
treea418f355a0b579fa85edd17c7c5bf4a522dc6ca2 /sys/cddl
parent564d281d6a95886bd7fbda5a4bf72e9b14c2832d (diff)
downloadFreeBSD-src-16f4d5cb308e45e3fe74758e164b70dfc0f56d64.zip
FreeBSD-src-16f4d5cb308e45e3fe74758e164b70dfc0f56d64.tar.gz
MFC r258628: opensolaris taskq: some cosmetic changes
Diffstat (limited to 'sys/cddl')
-rw-r--r--sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c6
-rw-r--r--sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h29
2 files changed, 16 insertions, 19 deletions
diff --git a/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c b/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c
index a74f795..f8f06d8 100644
--- a/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c
+++ b/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c
@@ -121,7 +121,7 @@ taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
mflag = M_WAITOK;
else
mflag = M_NOWAIT;
- /*
+ /*
* If TQ_FRONT is given, we want higher priority for this task, so it
* can go at the front of the queue.
*/
@@ -140,8 +140,6 @@ taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
return ((taskqid_t)(void *)task);
}
-#define TASKQ_MAGIC 0x74541c
-
static void
taskq_run_safe(void *arg, int pending __unused)
{
@@ -156,7 +154,7 @@ taskq_dispatch_safe(taskq_t *tq, task_func_t func, void *arg, u_int flags,
{
int prio;
- /*
+ /*
* If TQ_FRONT is given, we want higher priority for this task, so it
* can go at the front of the queue.
*/
diff --git a/sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h b/sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h
index fb3f76d..246e470 100644
--- a/sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h
+++ b/sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h
@@ -70,24 +70,23 @@ struct proc;
extern taskq_t *system_taskq;
-extern void taskq_init(void);
-extern void taskq_mp_init(void);
+void taskq_init(void);
+void taskq_mp_init(void);
-extern taskq_t *taskq_create(const char *, int, pri_t, int, int, uint_t);
-extern taskq_t *taskq_create_instance(const char *, int, int, pri_t, int,
- int, uint_t);
-extern taskq_t *taskq_create_proc(const char *, int, pri_t, int, int,
+taskq_t *taskq_create(const char *, int, pri_t, int, int, uint_t);
+taskq_t *taskq_create_instance(const char *, int, int, pri_t, int, int, uint_t);
+taskq_t *taskq_create_proc(const char *, int, pri_t, int, int,
struct proc *, uint_t);
-extern taskq_t *taskq_create_sysdc(const char *, int, int, int,
+taskq_t *taskq_create_sysdc(const char *, int, int, int,
struct proc *, uint_t, uint_t);
-extern taskqid_t taskq_dispatch(taskq_t *, task_func_t, void *, uint_t);
-extern void nulltask(void *);
-extern void taskq_destroy(taskq_t *);
-extern void taskq_wait(taskq_t *);
-extern void taskq_suspend(taskq_t *);
-extern int taskq_suspended(taskq_t *);
-extern void taskq_resume(taskq_t *);
-extern int taskq_member(taskq_t *, kthread_t *);
+taskqid_t taskq_dispatch(taskq_t *, task_func_t, void *, uint_t);
+void nulltask(void *);
+void taskq_destroy(taskq_t *);
+void taskq_wait(taskq_t *);
+void taskq_suspend(taskq_t *);
+int taskq_suspended(taskq_t *);
+void taskq_resume(taskq_t *);
+int taskq_member(taskq_t *, kthread_t *);
#endif /* _KERNEL */
OpenPOWER on IntegriCloud