aboutsummaryrefslogtreecommitdiffstats
path: root/modules/spl/spl-thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/spl/spl-thread.c')
-rw-r--r--modules/spl/spl-thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/spl/spl-thread.c b/modules/spl/spl-thread.c
index a2c72f051..ad90e0720 100644
--- a/modules/spl/spl-thread.c
+++ b/modules/spl/spl-thread.c
@@ -90,7 +90,7 @@ __thread_create(caddr_t stk, size_t stksize, thread_func_t func,
/* Solaris says this must never fail so we try forever */
while ((pid = kernel_thread(thread_generic_wrapper, (void *)&tp, 0)) < 0)
- printk(KERN_ERR "Unable to create thread; pid = %ld\n", pid);
+ printk(KERN_ERR "spl: Error unable to create thread; pid = %ld\n", pid);
/* All signals are ignored due to sleeping TASK_UNINTERRUPTIBLE */
for (;;) {