}
 NOKPROBE_SYMBOL(unwind);
 
-static bool dump_backtrace_entry(void *arg, unsigned long where)
-{
-       char *loglvl = arg;
-       printk("%s %pSb\n", loglvl, (void *)where);
-       return true;
-}
-
-void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk,
-                   const char *loglvl)
-{
-       pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
-
-       if (regs && user_mode(regs))
-               return;
-
-       if (!tsk)
-               tsk = current;
-
-       if (!try_get_task_stack(tsk))
-               return;
-
-       printk("%sCall trace:\n", loglvl);
-       arch_stack_walk(dump_backtrace_entry, (void *)loglvl, tsk, regs);
-
-       put_task_stack(tsk);
-}
-
-void show_stack(struct task_struct *tsk, unsigned long *sp, const char *loglvl)
-{
-       dump_backtrace(NULL, tsk, loglvl);
-       barrier();
-}
-
 /*
  * Per-cpu stacks are only accessible when unwinding the current task in a
  * non-preemptible context.
 
        unwind(&state, consume_entry, cookie);
 }
+
+static bool dump_backtrace_entry(void *arg, unsigned long where)
+{
+       char *loglvl = arg;
+       printk("%s %pSb\n", loglvl, (void *)where);
+       return true;
+}
+
+void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk,
+                   const char *loglvl)
+{
+       pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
+
+       if (regs && user_mode(regs))
+               return;
+
+       if (!tsk)
+               tsk = current;
+
+       if (!try_get_task_stack(tsk))
+               return;
+
+       printk("%sCall trace:\n", loglvl);
+       arch_stack_walk(dump_backtrace_entry, (void *)loglvl, tsk, regs);
+
+       put_task_stack(tsk);
+}
+
+void show_stack(struct task_struct *tsk, unsigned long *sp, const char *loglvl)
+{
+       dump_backtrace(NULL, tsk, loglvl);
+       barrier();
+}