From 27e2af69da768a71882baad3e48ac2f6d5652215 Mon Sep 17 00:00:00 2001 From: fvdl Date: Thu, 6 Mar 2003 00:47:00 +0000 Subject: [PATCH] Call db_machine_init to set up the ddb ipi vector. --- sys/arch/x86_64/x86_64/machdep.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/arch/x86_64/x86_64/machdep.c b/sys/arch/x86_64/x86_64/machdep.c index 08cb1e9e847d..bee446d9d7ee 100644 --- a/sys/arch/x86_64/x86_64/machdep.c +++ b/sys/arch/x86_64/x86_64/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.30 2003/03/05 23:56:09 fvdl Exp $ */ +/* $NetBSD: machdep.c,v 1.31 2003/03/06 00:47:00 fvdl Exp $ */ /*- * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc. @@ -1682,6 +1682,8 @@ init_x86_64(first_avail) struct btinfo_symtab *symtab; vaddr_t tssym, tesym; + db_machine_init(); + symtab = lookup_bootinfo(BTINFO_SYMTAB); if (symtab) { tssym = (vaddr_t)symtab->ssym + KERNBASE;