summaryrefslogtreecommitdiffstats
path: root/modules/spl
diff options
context:
space:
mode:
authorbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>2008-04-04 04:44:16 +0000
committerbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>2008-04-04 04:44:16 +0000
commit968eccd1d1cb7a43a7f05050d7b645da79966e6d (patch)
treec25ed40d99951a378924d7b8216afe20756f95ed /modules/spl
parent996faa68697ec79f37e44999b901f07d6c8f94a2 (diff)
Update the thread shim to use the current kernel threading API.
We need to use kthread_create() here for a few reasons. First off to old kernel_thread() API functioin will be going away. Secondly, and more importantly if I use kthread_create() we can then properly implement a thread_exit() function which terminates the kernel thread at any point with do_exit(). This fixes our cleanup bug which was caused by dropping a mutex twice after thread_exit() didn't really exit. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@66 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'modules/spl')
-rw-r--r--modules/spl/spl-thread.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/modules/spl/spl-thread.c b/modules/spl/spl-thread.c
index ad90e0720..1cfa369ba 100644
--- a/modules/spl/spl-thread.c
+++ b/modules/spl/spl-thread.c
@@ -21,11 +21,6 @@ thread_generic_wrapper(void *arg)
thread_priv_t *tp = (thread_priv_t *)arg;
void (*func)(void *);
void *args;
- char name[16];
-
- /* Use the truncated function name as thread name */
- snprintf(name, sizeof(name), "%s", "kthread");
- daemonize(name);
spin_lock(&tp->tp_lock);
BUG_ON(tp->tp_magic != TP_MAGIC);
@@ -51,6 +46,7 @@ thread_generic_wrapper(void *arg)
void
__thread_exit(void)
{
+ do_exit(0);
return;
}
EXPORT_SYMBOL(__thread_exit);
@@ -60,11 +56,12 @@ EXPORT_SYMBOL(__thread_exit);
* style callers likely never check for... since it can't fail. */
kthread_t *
__thread_create(caddr_t stk, size_t stksize, thread_func_t func,
- void *args, size_t len, int *pp, int state, pri_t pri)
+ const char *name, void *args, size_t len, int *pp,
+ int state, pri_t pri)
{
thread_priv_t tp;
DEFINE_WAIT(wait);
- long pid;
+ struct task_struct *tsk;
/* Option pp is simply ignored */
/* Variable stack size unsupported */
@@ -88,9 +85,13 @@ __thread_create(caddr_t stk, size_t stksize, thread_func_t func,
spin_lock(&tp.tp_lock);
- /* Solaris says this must never fail so we try forever */
- while ((pid = kernel_thread(thread_generic_wrapper, (void *)&tp, 0)) < 0)
- printk(KERN_ERR "spl: Error unable to create thread; pid = %ld\n", pid);
+ tsk = kthread_create(thread_generic_wrapper, (void *)&tp, "%s", name);
+ if (IS_ERR(tsk)) {
+ printk("spl: Failed to create thread: %ld\n", PTR_ERR(tsk));
+ return NULL;
+ }
+
+ wake_up_process(tsk);
/* All signals are ignored due to sleeping TASK_UNINTERRUPTIBLE */
for (;;) {
@@ -103,9 +104,7 @@ __thread_create(caddr_t stk, size_t stksize, thread_func_t func,
spin_lock(&tp.tp_lock);
}
- /* Verify the pid retunred matches the pid in the task struct */
- BUG_ON(pid != (tp.tp_task)->pid);
-
+ BUG_ON(tsk != tp.tp_task); /* Extra paranoia */
spin_unlock(&tp.tp_lock);
return (kthread_t *)tp.tp_task;