VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Richard Weinberger <richard@nod.at> 2018-06-15 16:42:56 +0200 committer: Richard Weinberger <richard@nod.at> 2018-10-29 22:23:11 +0100 commit: 7ff1e34bbdc15acab823b1ee4240e94623d50ee8 parent: 3033998bb8cd5a109c3171f4cde62665e3f5ce63
Commit Summary:
um: Give start_idle_thread() a return code
Diffstat:
1 file changed, 4 insertions, 0 deletions
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c
index c94c3bd70ccd..df4a985716eb 100644
--- a/arch/um/os-Linux/skas/process.c
+++ b/arch/um/os-Linux/skas/process.c
@@ -610,6 +610,11 @@ int start_idle_thread(void *stack, jmp_buf *switch_buf)
 		fatal_sigsegv();
 	}
 	longjmp(*switch_buf, 1);
+
+	/* unreachable */
+	printk(UM_KERN_ERR "impossible long jump!");
+	fatal_sigsegv();
+	return 0;
 }
 
 void initial_thread_cb_skas(void (*proc)(void *), void *arg)