]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-thread.c
Imported Upstream version 0.6.4.1
[mirror_spl-debian.git] / module / spl / spl-thread.c
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
715f6251 10 *
716154c5
BB
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Thread Implementation.
25\*****************************************************************************/
715f6251 26
f4b37741 27#include <sys/thread.h>
115aed0d 28#include <sys/kmem.h>
9fe45dc1 29#include <sys/tsd.h>
937879f1 30
f1ca4da6 31/*
32 * Thread interfaces
33 */
34typedef struct thread_priv_s {
35 unsigned long tp_magic; /* Magic */
a97df54e 36 int tp_name_size; /* Name size */
37 char *tp_name; /* Name (without _thread suffix) */
f1ca4da6 38 void (*tp_func)(void *); /* Registered function */
39 void *tp_args; /* Args to be passed to function */
40 size_t tp_len; /* Len to be passed to function */
41 int tp_state; /* State to start thread at */
42 pri_t tp_pri; /* Priority to start threat at */
f1ca4da6 43} thread_priv_t;
44
f1b59d26 45static int
f1ca4da6 46thread_generic_wrapper(void *arg)
47{
48 thread_priv_t *tp = (thread_priv_t *)arg;
49 void (*func)(void *);
50 void *args;
f1ca4da6 51
937879f1 52 ASSERT(tp->tp_magic == TP_MAGIC);
f1ca4da6 53 func = tp->tp_func;
54 args = tp->tp_args;
f1ca4da6 55 set_current_state(tp->tp_state);
44e406d7 56 set_user_nice((kthread_t *)current, PRIO_TO_NICE(tp->tp_pri));
a97df54e 57 kmem_free(tp->tp_name, tp->tp_name_size);
58 kmem_free(tp, sizeof(thread_priv_t));
f1ca4da6 59
f1ca4da6 60 if (func)
61 func(args);
62
63 return 0;
64}
65
66void
67__thread_exit(void)
68{
9fe45dc1 69 tsd_exit();
3d061e9d 70 complete_and_exit(NULL, 0);
937879f1 71 /* Unreachable */
f1ca4da6 72}
f1b59d26 73EXPORT_SYMBOL(__thread_exit);
f1ca4da6 74
75/* thread_create() may block forever if it cannot create a thread or
76 * allocate memory. This is preferable to returning a NULL which Solaris
77 * style callers likely never check for... since it can't fail. */
78kthread_t *
51f443a0 79__thread_create(caddr_t stk, size_t stksize, thread_func_t func,
ae4c36ad 80 const char *name, void *args, size_t len, proc_t *pp,
968eccd1 81 int state, pri_t pri)
f1ca4da6 82{
115aed0d 83 thread_priv_t *tp;
968eccd1 84 struct task_struct *tsk;
a97df54e 85 char *p;
f1ca4da6 86
87 /* Option pp is simply ignored */
88 /* Variable stack size unsupported */
937879f1 89 ASSERT(stk == NULL);
f1ca4da6 90
3050c931 91 tp = kmem_alloc(sizeof(thread_priv_t), KM_PUSHPAGE);
115aed0d 92 if (tp == NULL)
10946b02 93 return (NULL);
f1ca4da6 94
115aed0d 95 tp->tp_magic = TP_MAGIC;
a97df54e 96 tp->tp_name_size = strlen(name) + 1;
97
3050c931 98 tp->tp_name = kmem_alloc(tp->tp_name_size, KM_PUSHPAGE);
a97df54e 99 if (tp->tp_name == NULL) {
100 kmem_free(tp, sizeof(thread_priv_t));
10946b02 101 return (NULL);
a97df54e 102 }
103
104 strncpy(tp->tp_name, name, tp->tp_name_size);
105
106 /* Strip trailing "_thread" from passed name which will be the func
107 * name since the exposed API has no parameter for passing a name.
108 */
109 p = strstr(tp->tp_name, "_thread");
110 if (p)
111 p[0] = '\0';
112
115aed0d 113 tp->tp_func = func;
114 tp->tp_args = args;
115 tp->tp_len = len;
116 tp->tp_state = state;
117 tp->tp_pri = pri;
f1ca4da6 118
9e4fb5c2 119 tsk = spl_kthread_create(thread_generic_wrapper, (void *)tp,
d0bd694c 120 "%s", tp->tp_name);
10946b02
AX
121 if (IS_ERR(tsk))
122 return (NULL);
968eccd1 123
124 wake_up_process(tsk);
10946b02 125 return ((kthread_t *)tsk);
f1ca4da6 126}
f1b59d26 127EXPORT_SYMBOL(__thread_create);
9e4fb5c2
LG
128
129/*
130 * spl_kthread_create - Wrapper providing pre-3.13 semantics for
131 * kthread_create() in which it is not killable and less likely
132 * to return -ENOMEM.
133 */
134struct task_struct *
135spl_kthread_create(int (*func)(void *), void *data, const char namefmt[], ...)
136{
137 struct task_struct *tsk;
138 va_list args;
139 char name[TASK_COMM_LEN];
140
141 va_start(args, namefmt);
142 vsnprintf(name, sizeof(name), namefmt, args);
143 va_end(args);
144 do {
145 tsk = kthread_create(func, data, "%s", name);
146 if (IS_ERR(tsk)) {
147 if (signal_pending(current)) {
148 clear_thread_flag(TIF_SIGPENDING);
149 continue;
150 }
151 if (PTR_ERR(tsk) == -ENOMEM)
152 continue;
153 return (NULL);
154 } else
155 return (tsk);
156 } while (1);
157}
158EXPORT_SYMBOL(spl_kthread_create);