From owner-freebsd-stable@freebsd.org Fri Oct 27 14:42:32 2017 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E5A4E470DA for ; Fri, 27 Oct 2017 14:42:32 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 036AE67E9C for ; Fri, 27 Oct 2017 14:42:32 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 00B2EE470D9; Fri, 27 Oct 2017 14:42:32 +0000 (UTC) Delivered-To: stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00576E470D7 for ; Fri, 27 Oct 2017 14:42:32 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85E1C67E9A; Fri, 27 Oct 2017 14:42:31 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id v9REgIjM008705 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 27 Oct 2017 17:42:19 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua v9REgIjM008705 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id v9REgIim008704; Fri, 27 Oct 2017 17:42:18 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 27 Oct 2017 17:42:18 +0300 From: Konstantin Belousov To: David Wolfskill , stable@freebsd.org, Bryan Drewery Subject: Re: buildworld fail in stable/11 @r325033 -- r325029? Message-ID: <20171027144218.GG2566@kib.kiev.ua> References: <20171027111254.GJ1159@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171027111254.GJ1159@albert.catwhisker.org> User-Agent: Mutt/1.9.1 (2017-09-22) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Oct 2017 14:42:32 -0000 On Fri, Oct 27, 2017 at 04:12:54AM -0700, David Wolfskill wrote: > This is observed on systems (both my laptop & my build machine) running > stable/11 @r325003, after updating sources to r325033: > > --- libprocstat.o --- > In file included from /usr/src/lib/libprocstat/libprocstat.c:69: > /usr/obj/usr/src/tmp/usr/include/sys/ptrace.h:148:19: error: field has incomplete type 'struct siginfo32' > struct siginfo32 pl_siginfo; /* siginfo for signal */ > ^ > /usr/obj/usr/src/tmp/usr/include/sys/ptrace.h:148:9: note: forward declaration of 'struct siginfo32' > struct siginfo32 pl_siginfo; /* siginfo for signal */ > ^ > > I don't know that r325029 is to blame, but that was the last commit > in that area (in the range r325003 - r325033). And there wwer not > very many commits to stable/11 in that range: Can you confirm that the following patch allows your system to build ? Index: lib/libprocstat/libprocstat.c =================================================================== --- lib/libprocstat/libprocstat.c (revision 325038) +++ lib/libprocstat/libprocstat.c (working copy) @@ -63,10 +63,10 @@ #include #include #include +#include #define _KERNEL #include #include -#include #include #include #include Index: . =================================================================== --- . (revision 325038) +++ . (working copy) Property changes on: . ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r316304