]> git.proxmox.com Git - mirror_spl-debian.git/blame - modules/spl/spl-thread.c
Go through and add a header with the proper UCRL number.
[mirror_spl-debian.git] / modules / spl / spl-thread.c
CommitLineData
715f6251 1/*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
f4b37741 27#include <sys/thread.h>
115aed0d 28#include <sys/kmem.h>
f1ca4da6 29
937879f1 30#ifdef DEBUG_SUBSYSTEM
31#undef DEBUG_SUBSYSTEM
32#endif
33
34#define DEBUG_SUBSYSTEM S_THREAD
35
f1ca4da6 36/*
37 * Thread interfaces
38 */
39typedef struct thread_priv_s {
40 unsigned long tp_magic; /* Magic */
a97df54e 41 int tp_name_size; /* Name size */
42 char *tp_name; /* Name (without _thread suffix) */
f1ca4da6 43 void (*tp_func)(void *); /* Registered function */
44 void *tp_args; /* Args to be passed to function */
45 size_t tp_len; /* Len to be passed to function */
46 int tp_state; /* State to start thread at */
47 pri_t tp_pri; /* Priority to start threat at */
f1ca4da6 48} thread_priv_t;
49
f1b59d26 50static int
f1ca4da6 51thread_generic_wrapper(void *arg)
52{
53 thread_priv_t *tp = (thread_priv_t *)arg;
54 void (*func)(void *);
55 void *args;
f1ca4da6 56
937879f1 57 ASSERT(tp->tp_magic == TP_MAGIC);
f1ca4da6 58 func = tp->tp_func;
59 args = tp->tp_args;
f1ca4da6 60 set_current_state(tp->tp_state);
115aed0d 61 set_user_nice((kthread_t *)get_current(), PRIO_TO_NICE(tp->tp_pri));
a97df54e 62 kmem_free(tp->tp_name, tp->tp_name_size);
63 kmem_free(tp, sizeof(thread_priv_t));
f1ca4da6 64
f1ca4da6 65 if (func)
66 func(args);
67
68 return 0;
69}
70
71void
72__thread_exit(void)
73{
937879f1 74 ENTRY;
75 EXIT;
968eccd1 76 do_exit(0);
937879f1 77 /* Unreachable */
f1ca4da6 78}
f1b59d26 79EXPORT_SYMBOL(__thread_exit);
f1ca4da6 80
81/* thread_create() may block forever if it cannot create a thread or
82 * allocate memory. This is preferable to returning a NULL which Solaris
83 * style callers likely never check for... since it can't fail. */
84kthread_t *
51f443a0 85__thread_create(caddr_t stk, size_t stksize, thread_func_t func,
968eccd1 86 const char *name, void *args, size_t len, int *pp,
87 int state, pri_t pri)
f1ca4da6 88{
115aed0d 89 thread_priv_t *tp;
f1ca4da6 90 DEFINE_WAIT(wait);
968eccd1 91 struct task_struct *tsk;
a97df54e 92 char *p;
937879f1 93 ENTRY;
f1ca4da6 94
95 /* Option pp is simply ignored */
96 /* Variable stack size unsupported */
937879f1 97 ASSERT(stk == NULL);
f1ca4da6 98
115aed0d 99 tp = kmem_alloc(sizeof(thread_priv_t), KM_SLEEP);
100 if (tp == NULL)
937879f1 101 RETURN(NULL);
f1ca4da6 102
115aed0d 103 tp->tp_magic = TP_MAGIC;
a97df54e 104 tp->tp_name_size = strlen(name) + 1;
105
106 tp->tp_name = kmem_alloc(tp->tp_name_size, KM_SLEEP);
107 if (tp->tp_name == NULL) {
108 kmem_free(tp, sizeof(thread_priv_t));
109 RETURN(NULL);
110 }
111
112 strncpy(tp->tp_name, name, tp->tp_name_size);
113
114 /* Strip trailing "_thread" from passed name which will be the func
115 * name since the exposed API has no parameter for passing a name.
116 */
117 p = strstr(tp->tp_name, "_thread");
118 if (p)
119 p[0] = '\0';
120
115aed0d 121 tp->tp_func = func;
122 tp->tp_args = args;
123 tp->tp_len = len;
124 tp->tp_state = state;
125 tp->tp_pri = pri;
f1ca4da6 126
a97df54e 127 tsk = kthread_create(thread_generic_wrapper, (void *)tp, tp->tp_name);
968eccd1 128 if (IS_ERR(tsk)) {
937879f1 129 CERROR("Failed to create thread: %ld\n", PTR_ERR(tsk));
130 RETURN(NULL);
968eccd1 131 }
132
133 wake_up_process(tsk);
937879f1 134 RETURN((kthread_t *)tsk);
f1ca4da6 135}
f1b59d26 136EXPORT_SYMBOL(__thread_create);