diff options
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index dcca437..ee7222e 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.97 1999/04/13 03:24:47 tegge Exp $ + * $Id: mp_machdep.c,v 1.98 1999/04/28 01:03:21 luoqi Exp $ */ #include "opt_smp.h" @@ -2200,6 +2200,9 @@ ap_init() /* Init local apic for irq's */ apic_initialize(); + /* Set memory range attributes for this CPU to match the BSP */ + mem_range_AP_init(); + /* * Activate smp_invltlb, although strictly speaking, this isn't * quite correct yet. We should have a bitfield for cpus willing |