summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/conf
diff options
context:
space:
mode:
authormishra <none@none>2007-09-17 15:47:19 -0700
committermishra <none@none>2007-09-17 15:47:19 -0700
commit3aedfe0b5d40c671717b8bec3135984b90d27349 (patch)
treec950f509efeb1150a395d55a564cd17f09715f4c /usr/src/uts/common/conf
parent7dacfc4494f6d14358974ef2830b5cd8c66a84de (diff)
downloadillumos-joyent-3aedfe0b5d40c671717b8bec3135984b90d27349.tar.gz
6292092 callout should not be blocked by interrupts from executing realtime timeouts
6540436 kpreempt() needs a more reliable way to generate level1 intr
Diffstat (limited to 'usr/src/uts/common/conf')
-rw-r--r--usr/src/uts/common/conf/param.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/usr/src/uts/common/conf/param.c b/usr/src/uts/common/conf/param.c
index 724d04c0c1..c35d3e7012 100644
--- a/usr/src/uts/common/conf/param.c
+++ b/usr/src/uts/common/conf/param.c
@@ -224,14 +224,20 @@ void (*init_tbl[])(void) = {
};
+#if defined(__sparc)
+ extern void siron_mp_init();
+#endif
+
/*
* Any per cpu resources should be initialized via
* an entry in mp_init_tbl().
*/
-
void (*mp_init_tbl[])(void) = {
ftrace_init,
cyclic_mp_init,
+#if defined(__sparc)
+ siron_mp_init,
+#endif
0
};