Date: Wed, 28 Mar 2018 16:24:56 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r331681 - in head/sys: amd64/amd64 i386/i386 Message-ID: <201803281624.w2SGOuqu056373@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Wed Mar 28 16:24:56 2018 New Revision: 331681 URL: https://svnweb.freebsd.org/changeset/base/331681 Log: Fix kernel builds without options DDB after r331650. Reported by: cy Modified: head/sys/amd64/amd64/machdep.c head/sys/i386/i386/machdep.c Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Wed Mar 28 14:44:45 2018 (r331680) +++ head/sys/amd64/amd64/machdep.c Wed Mar 28 16:24:56 2018 (r331681) @@ -127,6 +127,7 @@ __FBSDID("$FreeBSD$"); #include <machine/reg.h> #include <machine/sigframe.h> #include <machine/specialreg.h> +#include <machine/trap.h> #include <machine/tss.h> #ifdef SMP #include <machine/smp.h> Modified: head/sys/i386/i386/machdep.c ============================================================================== --- head/sys/i386/i386/machdep.c Wed Mar 28 14:44:45 2018 (r331680) +++ head/sys/i386/i386/machdep.c Wed Mar 28 16:24:56 2018 (r331681) @@ -129,6 +129,7 @@ __FBSDID("$FreeBSD$"); #include <machine/reg.h> #include <machine/sigframe.h> #include <machine/specialreg.h> +#include <machine/trap.h> #include <machine/vm86.h> #include <x86/init.h> #ifdef PERFMON
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803281624.w2SGOuqu056373>