svn commit: r218081 - head/sys/powerpc/powerpc
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Sat Jan 29 23:26:28 UTC 2011
Author: nwhitehorn
Date: Sat Jan 29 23:26:28 2011
New Revision: 218081
URL: http://svn.freebsd.org/changeset/base/218081
Log:
Fix boot on SMP systems after r218075 by delaying CPU binding until a
SYSINIT.
Reviewed by: marcel
Modified:
head/sys/powerpc/powerpc/intr_machdep.c
Modified: head/sys/powerpc/powerpc/intr_machdep.c
==============================================================================
--- head/sys/powerpc/powerpc/intr_machdep.c Sat Jan 29 22:51:46 2011 (r218080)
+++ head/sys/powerpc/powerpc/intr_machdep.c Sat Jan 29 23:26:28 2011 (r218081)
@@ -426,9 +426,6 @@ powerpc_enable_intr(void)
i->pol != INTR_POLARITY_CONFORM)
PIC_CONFIG(i->pic, i->intline, i->trig, i->pol);
- if (i != NULL && i->pic == root_pic)
- PIC_BIND(i->pic, i->intline, i->cpu);
-
if (i->event != NULL)
PIC_ENABLE(i->pic, i->intline, vector);
}
More information about the svn-src-all
mailing list