Module Name:    src
Committed By:   ryo
Date:           Thu Oct  4 07:36:10 UTC 2018

Modified Files:
        src/sys/arch/aarch64/aarch64: cpu.c

Log Message:
remove XXX delay to attach cpus in order


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/aarch64/aarch64/cpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/aarch64/aarch64/cpu.c
diff -u src/sys/arch/aarch64/aarch64/cpu.c:1.10 src/sys/arch/aarch64/aarch64/cpu.c:1.11
--- src/sys/arch/aarch64/aarch64/cpu.c:1.10	Wed Oct  3 13:59:31 2018
+++ src/sys/arch/aarch64/aarch64/cpu.c	Thu Oct  4 07:36:10 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.10 2018/10/03 13:59:31 skrll Exp $ */
+/* $NetBSD: cpu.c,v 1.11 2018/10/04 07:36:10 ryo Exp $ */
 
 /*
  * Copyright (c) 2017 Ryo Shimizu <r...@nerv.org>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: cpu.c,v 1.10 2018/10/03 13:59:31 skrll Exp $");
+__KERNEL_RCSID(1, "$NetBSD: cpu.c,v 1.11 2018/10/04 07:36:10 ryo Exp $");
 
 #include "locators.h"
 #include "opt_arm_debug.h"
@@ -450,8 +450,6 @@ cpu_hatch(struct cpu_info *ci)
 {
 	KASSERT(curcpu() == ci);
 
-	delay(1000 * ci->ci_index);	/* XXX: to attach cpu* in order */
-
 	mutex_enter(&cpu_hatch_lock);
 
 	fpu_attach(ci);

Reply via email to