2008-05-26 08:38:26 +04:00
|
|
|
/*
|
|
|
|
* This file is part of the SPL: Solaris Porting Layer.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Lawrence Livermore National Security, LLC.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory
|
|
|
|
* Written by:
|
|
|
|
* Brian Behlendorf <behlendorf1@llnl.gov>,
|
|
|
|
* Herb Wartens <wartens2@llnl.gov>,
|
|
|
|
* Jim Garlick <garlick@llnl.gov>
|
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
#include "splat-internal.h"
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
#define SPLAT_SUBSYSTEM_THREAD 0x0600
|
|
|
|
#define SPLAT_THREAD_NAME "thread"
|
|
|
|
#define SPLAT_THREAD_DESC "Kernel Thread Tests"
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
#define SPLAT_THREAD_TEST1_ID 0x0601
|
|
|
|
#define SPLAT_THREAD_TEST1_NAME "create"
|
2008-04-11 21:03:57 +04:00
|
|
|
#define SPLAT_THREAD_TEST1_DESC "Validate thread creation"
|
|
|
|
|
|
|
|
#define SPLAT_THREAD_TEST2_ID 0x0602
|
|
|
|
#define SPLAT_THREAD_TEST2_NAME "exit"
|
|
|
|
#define SPLAT_THREAD_TEST2_DESC "Validate thread exit"
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
#define SPLAT_THREAD_TEST_MAGIC 0x4488CC00UL
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
typedef struct thread_priv {
|
|
|
|
unsigned long tp_magic;
|
|
|
|
struct file *tp_file;
|
|
|
|
spinlock_t tp_lock;
|
|
|
|
wait_queue_head_t tp_waitq;
|
|
|
|
int tp_rc;
|
|
|
|
} thread_priv_t;
|
|
|
|
|
2008-04-11 21:03:57 +04:00
|
|
|
static int
|
|
|
|
splat_thread_rc(thread_priv_t *tp, int rc)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
spin_lock(&tp->tp_lock);
|
|
|
|
ret = (tp->tp_rc == rc);
|
|
|
|
spin_unlock(&tp->tp_lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
static void
|
2008-04-11 21:03:57 +04:00
|
|
|
splat_thread_work1(void *priv)
|
2008-02-26 23:36:04 +03:00
|
|
|
{
|
|
|
|
thread_priv_t *tp = (thread_priv_t *)priv;
|
|
|
|
|
|
|
|
spin_lock(&tp->tp_lock);
|
2008-02-28 02:42:31 +03:00
|
|
|
ASSERT(tp->tp_magic == SPLAT_THREAD_TEST_MAGIC);
|
2008-02-26 23:36:04 +03:00
|
|
|
tp->tp_rc = 1;
|
|
|
|
spin_unlock(&tp->tp_lock);
|
|
|
|
|
2008-04-11 21:03:57 +04:00
|
|
|
wake_up(&tp->tp_waitq);
|
2008-02-26 23:36:04 +03:00
|
|
|
thread_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_thread_test1(struct file *file, void *arg)
|
2008-02-26 23:36:04 +03:00
|
|
|
{
|
|
|
|
thread_priv_t tp;
|
|
|
|
kthread_t *thr;
|
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
tp.tp_magic = SPLAT_THREAD_TEST_MAGIC;
|
2008-02-26 23:36:04 +03:00
|
|
|
tp.tp_file = file;
|
|
|
|
spin_lock_init(&tp.tp_lock);
|
|
|
|
init_waitqueue_head(&tp.tp_waitq);
|
|
|
|
tp.tp_rc = 0;
|
|
|
|
|
2008-04-11 21:03:57 +04:00
|
|
|
thr = (kthread_t *)thread_create(NULL, 0, splat_thread_work1, &tp, 0,
|
2008-03-07 02:12:55 +03:00
|
|
|
&p0, TS_RUN, minclsyspri);
|
2008-04-11 21:03:57 +04:00
|
|
|
/* Must never fail under Solaris, but we check anyway since this
|
|
|
|
* can happen in the linux SPL, we may want to change this behavior */
|
|
|
|
if (thr == NULL)
|
|
|
|
return -ESRCH;
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-04-11 21:03:57 +04:00
|
|
|
/* Sleep until the thread sets tp.tp_rc == 1 */
|
|
|
|
wait_event(tp.tp_waitq, splat_thread_rc(&tp, 1));
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_vprint(file, SPLAT_THREAD_TEST1_NAME, "%s",
|
2008-04-11 21:03:57 +04:00
|
|
|
"Thread successfully started properly\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
splat_thread_work2(void *priv)
|
|
|
|
{
|
|
|
|
thread_priv_t *tp = (thread_priv_t *)priv;
|
|
|
|
|
|
|
|
spin_lock(&tp->tp_lock);
|
|
|
|
ASSERT(tp->tp_magic == SPLAT_THREAD_TEST_MAGIC);
|
|
|
|
tp->tp_rc = 1;
|
|
|
|
spin_unlock(&tp->tp_lock);
|
|
|
|
|
|
|
|
wake_up(&tp->tp_waitq);
|
|
|
|
thread_exit();
|
|
|
|
|
|
|
|
/* The following code is unreachable when thread_exit() is
|
|
|
|
* working properly, which is exactly what we're testing */
|
|
|
|
spin_lock(&tp->tp_lock);
|
|
|
|
tp->tp_rc = 2;
|
|
|
|
spin_unlock(&tp->tp_lock);
|
|
|
|
|
|
|
|
wake_up(&tp->tp_waitq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
splat_thread_test2(struct file *file, void *arg)
|
|
|
|
{
|
|
|
|
thread_priv_t tp;
|
|
|
|
kthread_t *thr;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
tp.tp_magic = SPLAT_THREAD_TEST_MAGIC;
|
|
|
|
tp.tp_file = file;
|
|
|
|
spin_lock_init(&tp.tp_lock);
|
|
|
|
init_waitqueue_head(&tp.tp_waitq);
|
|
|
|
tp.tp_rc = 0;
|
|
|
|
|
|
|
|
thr = (kthread_t *)thread_create(NULL, 0, splat_thread_work2, &tp, 0,
|
|
|
|
&p0, TS_RUN, minclsyspri);
|
|
|
|
/* Must never fail under Solaris, but we check anyway since this
|
|
|
|
* can happen in the linux SPL, we may want to change this behavior */
|
|
|
|
if (thr == NULL)
|
|
|
|
return -ESRCH;
|
|
|
|
|
|
|
|
/* Sleep until the thread sets tp.tp_rc == 1 */
|
|
|
|
wait_event(tp.tp_waitq, splat_thread_rc(&tp, 1));
|
|
|
|
|
|
|
|
/* Sleep until the thread sets tp.tp_rc == 2, or until we hit
|
|
|
|
* the timeout. If thread exit is working properly we should
|
|
|
|
* hit the timeout and never see to.tp_rc == 2. */
|
|
|
|
rc = wait_event_timeout(tp.tp_waitq, splat_thread_rc(&tp, 2), HZ / 10);
|
|
|
|
if (rc > 0) {
|
|
|
|
rc = -EINVAL;
|
|
|
|
splat_vprint(file, SPLAT_THREAD_TEST2_NAME, "%s",
|
|
|
|
"Thread did not exit properly at thread_exit()\n");
|
|
|
|
} else {
|
|
|
|
splat_vprint(file, SPLAT_THREAD_TEST2_NAME, "%s",
|
|
|
|
"Thread successfully exited at thread_exit()\n");
|
|
|
|
}
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_subsystem_t *
|
|
|
|
splat_thread_init(void)
|
2008-02-26 23:36:04 +03:00
|
|
|
{
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_subsystem_t *sub;
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
sub = kmalloc(sizeof(*sub), GFP_KERNEL);
|
|
|
|
if (sub == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memset(sub, 0, sizeof(*sub));
|
2008-02-28 02:42:31 +03:00
|
|
|
strncpy(sub->desc.name, SPLAT_THREAD_NAME, SPLAT_NAME_SIZE);
|
|
|
|
strncpy(sub->desc.desc, SPLAT_THREAD_DESC, SPLAT_DESC_SIZE);
|
2008-02-26 23:36:04 +03:00
|
|
|
INIT_LIST_HEAD(&sub->subsystem_list);
|
|
|
|
INIT_LIST_HEAD(&sub->test_list);
|
|
|
|
spin_lock_init(&sub->test_lock);
|
2008-02-28 02:42:31 +03:00
|
|
|
sub->desc.id = SPLAT_SUBSYSTEM_THREAD;
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-02-28 02:42:31 +03:00
|
|
|
SPLAT_TEST_INIT(sub, SPLAT_THREAD_TEST1_NAME, SPLAT_THREAD_TEST1_DESC,
|
|
|
|
SPLAT_THREAD_TEST1_ID, splat_thread_test1);
|
2008-04-11 21:03:57 +04:00
|
|
|
SPLAT_TEST_INIT(sub, SPLAT_THREAD_TEST2_NAME, SPLAT_THREAD_TEST2_DESC,
|
|
|
|
SPLAT_THREAD_TEST2_ID, splat_thread_test2);
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_thread_fini(splat_subsystem_t *sub)
|
2008-02-26 23:36:04 +03:00
|
|
|
{
|
|
|
|
ASSERT(sub);
|
2008-04-11 21:03:57 +04:00
|
|
|
SPLAT_TEST_FINI(sub, SPLAT_THREAD_TEST2_ID);
|
2008-02-28 02:42:31 +03:00
|
|
|
SPLAT_TEST_FINI(sub, SPLAT_THREAD_TEST1_ID);
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
kfree(sub);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2008-02-28 02:42:31 +03:00
|
|
|
splat_thread_id(void) {
|
|
|
|
return SPLAT_SUBSYSTEM_THREAD;
|
2008-02-26 23:36:04 +03:00
|
|
|
}
|