From owner-svn-src-head@freebsd.org Wed Mar 28 12:58:21 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9491EF5A37A; Wed, 28 Mar 2018 12:58:21 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [IPv6:2a01:4f8:191:217b::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.bsd4all.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3212F68164; Wed, 28 Mar 2018 12:58:20 +0000 (UTC) (envelope-from herbert@gojira.at) Date: Wed, 28 Mar 2018 14:58:18 +0200 From: "Herbert J. Skuhra" To: "O. Hartmann" Cc: Cy Schubert , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , John Baldwin Subject: Re: svn commit: r331650 - in head/sys: amd64/amd64 amd64/ia32amd64/linux amd64/linux32 cddl/contrib/opensolaris/uts/intel/dtracecddl/dev/dtrace/amd64 cddl/dev/dtrace/i386 i386/i386 i386/linux x86/inc... Message-ID: <20180328125818.GA35772@mail.bsd4all.net> References: <20180328052050.8B3CD143@spqr.komquats.com> <20180328072327.4f45e3f0@freyja.zeit4.iv.bundesimmobilien.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180328072327.4f45e3f0@freyja.zeit4.iv.bundesimmobilien.de> User-Agent: Mutt/1.9.4 (2018-02-28) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2018 12:58:21 -0000 On Wed, Mar 28, 2018 at 07:23:27AM +0200, O. Hartmann wrote: > On Tue, 27 Mar 2018 23:20:53 -0600 > Cy Schubert wrote: > > > Have you disabled DDB in your kernel config? At the moment I am building non-GENERIC kernel with the below patch: Index: sys/amd64/amd64/machdep.c =================================================================== --- sys/amd64/amd64/machdep.c (revision 331667) +++ sys/amd64/amd64/machdep.c (working copy) @@ -108,6 +108,8 @@ #endif #include #include +#else +#include #endif #include -- Herbert