]> granicus.if.org Git - zfs/commitdiff
Support post-3.13 kthread_create() semantics.
authorTim Chase <tim@chase2k.com>
Wed, 26 Mar 2014 13:29:24 +0000 (08:29 -0500)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 8 Apr 2014 19:44:42 +0000 (12:44 -0700)
Provide spl_kthread_create() as a wrapper to the kernel's kthread_create()
to provide pre-3.13 semantics.  Re-try if the call is interrupted or if it
would have returned -ENOMEM.  Otherwise return NULL.

Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Signed-off-by: Tim Chase <tim@chase2k.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #339

include/sys/thread.h
module/spl/spl-debug.c
module/spl/spl-taskq.c
module/spl/spl-thread.c
module/splat/splat-condvar.c
module/splat/splat-rwlock.c

index 864a74bba99d2199d498aff56cfd0f153aec2354..f6c197255dfef6688bcf57767abd0011962608a6 100644 (file)
@@ -60,4 +60,32 @@ extern kthread_t *__thread_create(caddr_t stk, size_t  stksize,
                                   int state, pri_t pri);
 extern void __thread_exit(void);
 
+/*
+ * spl_kthread_create - Wrapper providing pre-3.13 semantics for
+ * kthread_create() in which it is not killable and less likely
+ * to return -ENOMEM.
+ */
+static inline struct task_struct *
+spl_kthread_create(int (*func)(void *), void *data, const char namefmt[], ...)
+{
+       struct task_struct *tsk;
+       va_list args;
+
+       va_start(args, namefmt);
+       do {
+               tsk = kthread_create_on_node(func, data,
+                       -1, namefmt, args);
+               if (IS_ERR(tsk)) {
+                       if (signal_pending(current)) {
+                               clear_thread_flag(TIF_SIGPENDING);
+                               continue;
+                       }
+                       if (PTR_ERR(tsk) == -ENOMEM)
+                               continue;
+                       return (NULL);
+               } else
+                       return (tsk);
+       } while (1);
+}
+
 #endif  /* _SPL_THREAD_H */
index d450368b1038084646e6068a375f2bc9990e9eee..93c3f31b8a2604327584be855eaec0977a0c3ba6 100644 (file)
@@ -38,6 +38,7 @@
 #include <linux/file_compat.h>
 #include <linux/swap.h>
 #include <sys/sysmacros.h>
+#include <sys/thread.h>
 #include <spl-debug.h>
 #include <spl-trace.h>
 #include <spl-ctl.h>
@@ -415,7 +416,7 @@ spl_debug_dumplog(int flags)
                 spl_debug_dumplog_internal(&dp);
         } else {
 
-                tsk = kthread_create(spl_debug_dumplog_thread,(void *)&dp,"spl_debug");
+                tsk = spl_kthread_create(spl_debug_dumplog_thread,(void *)&dp,"spl_debug");
                 if (tsk == NULL)
                         return -ENOMEM;
 
index 3605a0f3b8ddd14647906836328100adc4b385ea..48feb1d220eb12d41d990ab00d9b224d90955eed 100644 (file)
@@ -839,7 +839,7 @@ taskq_create(const char *name, int nthreads, pri_t pri,
                tqt->tqt_tq = tq;
                tqt->tqt_id = 0;
 
-               tqt->tqt_thread = kthread_create(taskq_thread, tqt,
+               tqt->tqt_thread = spl_kthread_create(taskq_thread, tqt,
                    "%s/%d", name, i);
                if (tqt->tqt_thread) {
                        list_add(&tqt->tqt_thread_list, &tq->tq_thread_list);
index 6b3bec509372f086ca1482304e9d60eb04fcf4a9..b0fa4d7956f9d3676ebb685497a124b111c0539e 100644 (file)
@@ -126,7 +126,7 @@ __thread_create(caddr_t stk, size_t  stksize, thread_func_t func,
        tp->tp_state = state;
        tp->tp_pri   = pri;
 
-       tsk = kthread_create(thread_generic_wrapper, (void *)tp,
+       tsk = spl_kthread_create(thread_generic_wrapper, (void *)tp,
                             "%s", tp->tp_name);
        if (IS_ERR(tsk)) {
                SERROR("Failed to create thread: %ld\n", PTR_ERR(tsk));
index 1ddde39bbf3f70153af93d61acdb78f2c203905d..3ee2ffc9e7a7b590ecc7288519f0e8b6b1cca7f9 100644 (file)
@@ -108,7 +108,7 @@ splat_condvar_test1(struct file *file, void *arg)
                ct[i].ct_cvp = &cv;
                ct[i].ct_name = SPLAT_CONDVAR_TEST1_NAME;
                ct[i].ct_rc = 0;
-               ct[i].ct_thread = kthread_create(splat_condvar_test12_thread,
+               ct[i].ct_thread = spl_kthread_create(splat_condvar_test12_thread,
                    &ct[i], "%s/%d", SPLAT_CONDVAR_TEST_NAME, i);
 
                if (!IS_ERR(ct[i].ct_thread)) {
@@ -173,7 +173,7 @@ splat_condvar_test2(struct file *file, void *arg)
                ct[i].ct_cvp = &cv;
                ct[i].ct_name = SPLAT_CONDVAR_TEST2_NAME;
                ct[i].ct_rc = 0;
-               ct[i].ct_thread = kthread_create(splat_condvar_test12_thread,
+               ct[i].ct_thread = spl_kthread_create(splat_condvar_test12_thread,
                    &ct[i], "%s/%d", SPLAT_CONDVAR_TEST_NAME, i);
 
                if (!IS_ERR(ct[i].ct_thread)) {
@@ -254,7 +254,7 @@ splat_condvar_test3(struct file *file, void *arg)
                ct[i].ct_cvp = &cv;
                ct[i].ct_name = SPLAT_CONDVAR_TEST3_NAME;
                ct[i].ct_rc = 0;
-               ct[i].ct_thread = kthread_create(splat_condvar_test34_thread,
+               ct[i].ct_thread = spl_kthread_create(splat_condvar_test34_thread,
                    &ct[i], "%s/%d", SPLAT_CONDVAR_TEST_NAME, i);
 
                if (!IS_ERR(ct[i].ct_thread)) {
@@ -324,7 +324,7 @@ splat_condvar_test4(struct file *file, void *arg)
                ct[i].ct_cvp = &cv;
                ct[i].ct_name = SPLAT_CONDVAR_TEST3_NAME;
                ct[i].ct_rc = 0;
-               ct[i].ct_thread = kthread_create(splat_condvar_test34_thread,
+               ct[i].ct_thread = spl_kthread_create(splat_condvar_test34_thread,
                    &ct[i], "%s/%d", SPLAT_CONDVAR_TEST_NAME, i);
 
                if (!IS_ERR(ct[i].ct_thread)) {
index a865fb3108c8e47cbfb3369719abea499cc9bee1..6faf7d24e227f4aa1532d56c19d924e779f98f35 100644 (file)
@@ -215,10 +215,10 @@ splat_rwlock_test1(struct file *file, void *arg)
 
                /* The first thread will be the writer */
                if (i == 0)
-                       rwt[i].rwt_thread = kthread_create(splat_rwlock_wr_thr,
+                       rwt[i].rwt_thread = spl_kthread_create(splat_rwlock_wr_thr,
                            &rwt[i], "%s/%d", SPLAT_RWLOCK_TEST_NAME, i);
                else
-                       rwt[i].rwt_thread = kthread_create(splat_rwlock_rd_thr,
+                       rwt[i].rwt_thread = spl_kthread_create(splat_rwlock_rd_thr,
                            &rwt[i], "%s/%d", SPLAT_RWLOCK_TEST_NAME, i);
 
                if (!IS_ERR(rwt[i].rwt_thread)) {