Module Name: src
Committed By: jruoho
Date: Wed Jun 22 09:28:08 UTC 2011
Modified Files:
src/sys/arch/x86/x86: cpu.c
Log Message:
Add small comment.
To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/sys/arch/x86/x86/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/x86/x86/cpu.c
diff -u src/sys/arch/x86/x86/cpu.c:1.88 src/sys/arch/x86/x86/cpu.c:1.89
--- src/sys/arch/x86/x86/cpu.c:1.88 Sun Jun 12 03:35:50 2011
+++ src/sys/arch/x86/x86/cpu.c Wed Jun 22 09:28:08 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.88 2011/06/12 03:35:50 rmind Exp $ */
+/* $NetBSD: cpu.c,v 1.89 2011/06/22 09:28:08 jruoho Exp $ */
/*-
* Copyright (c) 2000, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.88 2011/06/12 03:35:50 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.89 2011/06/22 09:28:08 jruoho Exp $");
#include "opt_ddb.h"
#include "opt_mpbios.h" /* for MPDEBUG */
@@ -448,6 +448,11 @@
);
}
+ /*
+ * Postpone the "cpufeaturebus" scan.
+ * It is safe to scan the pseudo-bus
+ * only after all CPUs have attached.
+ */
(void)config_defer(self, cpu_defer);
}