From owner-freebsd-stable@freebsd.org Sun Nov 29 05:17:22 2015 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 7E5B0A3B801 for ; Sun, 29 Nov 2015 05:17:22 +0000 (UTC) (envelope-from mi+thun@aldan.algebra.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6279A190F for ; Sun, 29 Nov 2015 05:17:22 +0000 (UTC) (envelope-from mi+thun@aldan.algebra.com) Received: by mailman.ysv.freebsd.org (Postfix) id 5FCC4A3B7FF; Sun, 29 Nov 2015 05:17:22 +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 5E212A3B7FE; Sun, 29 Nov 2015 05:17:22 +0000 (UTC) (envelope-from mi+thun@aldan.algebra.com) Received: from vms173007pub.verizon.net (vms173007pub.verizon.net [206.46.173.7]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D95D190E; Sun, 29 Nov 2015 05:17:21 +0000 (UTC) (envelope-from mi+thun@aldan.algebra.com) MIME-version: 1.0 Received: from [192.168.1.8] ([100.1.236.52]) by vms173007.mailsrvcs.net (Oracle Communications Messaging Server 7.0.5.32.0 64bit (built Jul 16 2014)) with ESMTPA id <0NYK00LRR9BZXL50@vms173007.mailsrvcs.net>; Sat, 28 Nov 2015 23:16:52 -0600 (CST) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=MtGvkDue c=1 sm=1 tr=0 a=UorMnhrCY2jH/mPejITChw==:117 a=LaogzpLLAAAA:8 a=oR5dmqMzAAAA:8 a=qtqOOiqGOCEA:10 a=r77TgQKjGQsHNAKrUKIA:9 a=_aNIyrnYADYoUgAxp2cA:9 a=QEXdDO2ut3YA:10 a=llZLzHQZhQd3dyS0dCMA:9 a=G0KNu4EsI3M_aVGU:21 a=_W_S_7VecoQA:10 Subject: Re: cp from NFS to ZFS hung in "fifoor" To: Jilles Tjoelker References: <5659CB64.5020105@aldan.algebra.com> <20151128224101.GA8470@stack.nl> Cc: stable@freebsd.org, freebsd-fs From: "Mikhail T." X-Enigmail-Draft-Status: N1110 Message-id: <565A8A3E.205@aldan.algebra.com> Date: Sun, 29 Nov 2015 00:16:46 -0500 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 In-reply-to: <20151128224101.GA8470@stack.nl> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 05:17:22 -0000 On 28.11.2015 17:41, Jilles Tjoelker wrote: > Although cp -R will normally copy a fifo by calling mkfifo at the destination, it may open one if a regular file is replaced with a fifo between the time it reads the directory and it copies that file. The sole fifo under /home here was mi/.licq/licq_fifo, created in 2003. I echoed something into it (on the NFS-client side) and the cp-process resumed. I then performed a simple test: 1. Create a fifo in an NFS-exported directory and try to copy it with the -R flag mi@narawntapu:/cache/src (792) mkfifo /green/tmp/test mi@narawntapu:/cache/src (793) cp -Rpn /green/tmp/test /tmp/ mi@narawntapu:/cache/src (794) ls -l /tmp/test prw-r--r-- 1 mi wheel 0 29 лис 00:05 /tmp/test The above worked fine. 2. Now, when I try to do the same thing via an NFS mount, I get the same hang in fifoor: root@aldan:ports/x11/kde4 (475) cp -Rpn /green/tmp/test /tmp/ load: 0.42 cmd: cp 38299 [fifoor] 1.15r 0.00u 0.00s 0% 1868k So, the good news is, this is not ZFS' fault. The bad news is, there is still a bug... Unless, of course, this is some known "feature" of the NFS... Compare, for example, how stat(1) describes the same named pipe from both machines: Local FS: 92 74636334 prw-r--r-- 1 mi wheel 0 0 "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" 16384 0 0 /green/tmp/test NFS-client: 973143811 74636334 ?rw-r--r-- 1 mi wheel 4294967295 0 "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Dec 31 18:59:59 1969" 16384 0 0 /green/tmp/test That question-mark in the node-type (instead of the "p") is, I guess, what confuses cp into trying to read from it instead of creating a fifo. Should I file a PR? Thank you! -mi From owner-freebsd-stable@freebsd.org Sun Nov 29 12:01:05 2015 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 4B872A3C26A for ; Sun, 29 Nov 2015 12:01:05 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3705C15A5 for ; Sun, 29 Nov 2015 12:01:05 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: by mailman.ysv.freebsd.org (Postfix) id 33547A3C269; Sun, 29 Nov 2015 12:01:05 +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 32D6BA3C267; Sun, 29 Nov 2015 12:01:05 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) (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 E342915A1; Sun, 29 Nov 2015 12:01:04 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1a30f0-000NEn-3C; Sun, 29 Nov 2015 15:00:54 +0300 Date: Sun, 29 Nov 2015 15:00:54 +0300 From: Slawa Olhovchenkov To: "Mikhail T." Cc: stable@freebsd.org, freebsd-fs Subject: Re: cp from NFS to ZFS hung in "fifoor" Message-ID: <20151129120053.GA70867@zxy.spb.ru> References: <5659CB64.5020105@aldan.algebra.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5659CB64.5020105@aldan.algebra.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 12:01:05 -0000 On Sat, Nov 28, 2015 at 10:42:28AM -0500, Mikhail T. wrote: > I was copying /home from an old server (narawntapu) to a new one > (aldan). The narawntapu:/home is mounted on aldan as /mnt with flags > ro,intr. On narawntapu /home was simply located on an SSD, but on aldan > I created a ZFS filesystem for it. > > The copying was started thus: > > root@aldan:/home (435) cp -Rpn /mnt/* . > > for a while this was proceeding at a decent clip with cp making > newnfsreq-uests: > > load: 0.78 cmd: cp 38711 [newnfsreq] 802.84r 1.57u 140.63s 20% 10768k > /mnt/mi/.kde/share/apps/kmail/dimap/.42838394.directory/sent/cur/1219621413.32392.hd8cl:2,S > -> > ./mi/.kde/share/apps/kmail/dimap/.42838394.directory/sent/cur/1219621413.32392.hd8cl:2,S > 100% > load: 1.23 cmd: cp 38711 [newnfsreq] 874.19r 1.66u 154.74s 17% 4576k > /mnt/mi/.kde/share/apps/kmail/dimap/.42838394.directory/ML/cur/1219595347.32392.rMDFf:2,S > -> > ./mi/.kde/share/apps/kmail/dimap/.42838394.directory/ML/cur/1219595347.32392.rMDFf:2,S > 100% > > ZFS on the destination compressing and writing stuff out and the traffic > between the two ranging from 30 to 50Mb/s (according to systat), but > then something happened and the cp-process is now hung: > > load: 0.55 cmd: cp 38711 [fifoor] 1107.67r 2.09u 194.12s 0% 3300k > load: 0.50 cmd: cp 38711 [fifoor] 1112.66r 2.09u 194.12s 0% 3300k > load: 0.22 cmd: cp 38711 [fifoor] 1642.37r 2.09u 194.12s 0% 3300k > # grep -r fifoor /usr/src/ /usr/src/sys/fs/fifofs/fifo_vnops.c: PDROP | PCATCH | PSOCK, "fifoor", 0); May be cp try copy fifo's content, by incorrectly detect special file? From owner-freebsd-stable@freebsd.org Sun Nov 29 14:38:34 2015 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 08D51A3B704 for ; Sun, 29 Nov 2015 14:38:34 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D38E319BA for ; Sun, 29 Nov 2015 14:38:33 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: by mailman.ysv.freebsd.org (Postfix) id D14A9A3B702; Sun, 29 Nov 2015 14:38:33 +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 D0CFDA3B6FF; Sun, 29 Nov 2015 14:38:33 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-annu.net.uoguelph.ca (esa-annu.mail.uoguelph.ca [131.104.91.36]) by mx1.freebsd.org (Postfix) with ESMTP id 595E919B9; Sun, 29 Nov 2015 14:38:32 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) IronPort-PHdr: 9a23:SFuJZx+tc1q/Ef9uRHKM819IXTAuvvDOBiVQ1KB92+scTK2v8tzYMVDF4r011RmSDdidu6wP1beempujcFJDyK7JiGoFfp1IWk1NouQttCtkPvS4D1bmJuXhdS0wEZcKflZk+3amLRodQ56mNBXsq3G/pQQfBg/4fVIsYL+lR8iC0Y/piqibwN76XUZhvHKFe7R8LRG7/036l/I9ps9cEJs30QbDuXBSeu5blitCLFOXmAvgtI/rpMYwuwwZgf8q9tZBXKPmZOx4COUAVHV1e1wysYfOtBrDRAqLrkdaGC1ClxsLHwjY6jnzWpv4tG3zsuVw0jOTe8bxSOZndy6l6vJRSRTrwAIOPD09/WSf3tZ1halYpB+kjwF4zJPZZJmVcvF3KPCONegGTHZMC54CHxdKBZmxOs5WV7IM X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2CtBAC4DFtW/61jaINdhA5vBr4wgWYXCoUkSgKBUxIBAQEBAQEBAYEJgi2CBwEBAQMBAQEBICsgCwULAgEGAhgCAg0ZAgInAQkmAgQIBwQBGQMEiAUIDYoanTWPYQEBAQEBAQEDAQEBAQEBAQEBFgSBAYVThH6EOwEBBReDHIFEBY4YiD+FKoJygjCER4dojyyDcAIoCDOEIiA0B4QpOoEHAQEB X-IronPort-AV: E=Sophos;i="5.20,360,1444708800"; d="scan'208";a="254710208" Received: from nipigon.cs.uoguelph.ca (HELO zcs1.mail.uoguelph.ca) ([131.104.99.173]) by esa-annu.net.uoguelph.ca with ESMTP; 29 Nov 2015 09:38:25 -0500 Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id 8682515F5DA; Sun, 29 Nov 2015 09:38:25 -0500 (EST) Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 7baFwx5osivg; Sun, 29 Nov 2015 09:38:24 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id CBD4715F5E2; Sun, 29 Nov 2015 09:38:24 -0500 (EST) X-Virus-Scanned: amavisd-new at zcs1.mail.uoguelph.ca Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id FpwMkyJ4A2TL; Sun, 29 Nov 2015 09:38:24 -0500 (EST) Received: from zcs1.mail.uoguelph.ca (zcs1.mail.uoguelph.ca [172.17.95.18]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id AEA1915F5DA; Sun, 29 Nov 2015 09:38:24 -0500 (EST) Date: Sun, 29 Nov 2015 09:38:24 -0500 (EST) From: Rick Macklem To: "Mikhail T." Cc: Jilles Tjoelker , freebsd-fs , stable@freebsd.org Message-ID: <1842140450.110568454.1448807904673.JavaMail.zimbra@uoguelph.ca> In-Reply-To: <565A8A3E.205@aldan.algebra.com> References: <5659CB64.5020105@aldan.algebra.com> <20151128224101.GA8470@stack.nl> <565A8A3E.205@aldan.algebra.com> Subject: Re: cp from NFS to ZFS hung in "fifoor" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [172.17.95.11] X-Mailer: Zimbra 8.0.9_GA_6191 (ZimbraWebClient - FF34 (Win)/8.0.9_GA_6191) Thread-Topic: cp from NFS to ZFS hung in "fifoor" Thread-Index: H0MseaRTtkV1zweh2mlLoyUENH+T+A== X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 14:38:34 -0000 Mikhail T. wrote: > On 28.11.2015 17:41, Jilles Tjoelker wrote: > > Although cp -R will normally copy a fifo by calling mkfifo at the > > destination, it may open one if a regular file is replaced with a fifo > > between the time it reads the directory and it copies that file. >=20 > The sole fifo under /home here was mi/.licq/licq_fifo, created in 2003. > I echoed something into it (on the NFS-client side) and the cp-process > resumed. >=20 > I then performed a simple test: >=20 > 1. Create a fifo in an NFS-exported directory and try to copy it with > the -R flag > mi@narawntapu:/cache/src (792) mkfifo /green/tmp/test > mi@narawntapu:/cache/src (793) cp -Rpn /green/tmp/test /tmp/ > mi@narawntapu:/cache/src (794) ls -l /tmp/test > prw-r--r-- 1 mi wheel 0 29 =D0=BB=D0=B8=D1=81 00:05 /tmp/test > The above worked fine. > 2. Now, when I try to do the same thing via an NFS mount, I get the > same hang in fifoor: > root@aldan:ports/x11/kde4 (475) cp -Rpn /green/tmp/test /tmp/ > load: 0.42 cmd: cp 38299 [fifoor] 1.15r 0.00u 0.00s 0% 1868k >=20 > So, the good news is, this is not ZFS' fault. The bad news is, there is > still a bug... Unless, of course, this is some known "feature" of the > NFS... Compare, for example, how stat(1) describes the same named pipe > from both machines: >=20 > Local FS: > 92 74636334 prw-r--r-- 1 mi wheel 0 0 "Nov 29 00:05:51 2015" "Nov 29 > 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" 16384 0 > 0 /green/tmp/test > NFS-client: > 973143811 74636334 ?rw-r--r-- 1 mi wheel 4294967295 0 "Nov 29 > 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Dec 31 > 18:59:59 1969" 16384 0 0 /green/tmp/test >=20 I just tried a trivial test (using a fairly old FreeBSD9 and a pretty recen= t FreeBSD-head) and wasn't able to reproduce the problem. For my tests, "ls -l" in the NFS client showed "p" and the "cp -R" worked. I only have UFS file systems and tested with those. I can only think of a couple of explanations: 1 - ZFS didn't fill the v_type in as FIFO. The NFS server uses the v_type field to determine it is a fifo and not the high order bits of va_mode (the S_IFMT bits). I don't have ZFS to test with. 2 - You somehow used an NFSv2 mount. (NFSv2 didn't have support for FIFOs, if I recall correctly.) You can check your mount options, including which version is in use via "nfsstat -m" unless you have a pretty old system. If you have a UFS file system on the NFS server, maybe you could try export= ing that and run a test, to see if it happens for a UFS export? rick > That question-mark in the node-type (instead of the "p") is, I guess, > what confuses cp into trying to read from it instead of creating a fifo. > Should I file a PR? Thank you! >=20 > -mi >=20 > _______________________________________________ > freebsd-stable@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" From owner-freebsd-stable@freebsd.org Sun Nov 29 14:42:12 2015 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 D79F8A3B870 for ; Sun, 29 Nov 2015 14:42:12 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AD0D11D49 for ; Sun, 29 Nov 2015 14:42:12 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: by mailman.ysv.freebsd.org (Postfix) id AAAADA3B86E; Sun, 29 Nov 2015 14:42:12 +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 AA1F0A3B86D; Sun, 29 Nov 2015 14:42:12 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-annu.net.uoguelph.ca (esa-annu.mail.uoguelph.ca [131.104.91.36]) by mx1.freebsd.org (Postfix) with ESMTP id 4F13A1D48; Sun, 29 Nov 2015 14:42:11 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) IronPort-PHdr: 9a23:OTjwGRAnx5Zc451YC6NKUyQJP3N1i/DPJgcQr6AfoPdwSP7zpsbcNUDSrc9gkEXOFd2CrakU1qyG7eu+BCQp2tWojjMrSNR0TRgLiMEbzUQLIfWuLgnFFsPsdDEwB89YVVVorDmROElRH9viNRWJ+iXhpQAbFhi3DwdpPOO9QteU1JTqkbDssMOOKyxzxxODIppKZC2sqgvQssREyaBDEY0WjiXzn31TZu5NznlpL1/A1zz158O34YIxu38I46Fp34d6XK77Z6U1S6BDRHRjajhtpZ6jiR6WBy6O5XsVU2FerlwCS1zA7VLmXor3miL+uuN7niCeMsD8V7lyUjOnufRFUhjt3R0GPD1x1Wjcich9ieoPuheorB97zov8fYaaKfd6ZqObdtpMFjkJZdpYSyEUWtD0VIAIFedUeL8A94Q= X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2CtBADSDVtW/61jaINdhA5vBr4wgWYXCoUkSgKBUxIBAQEBAQEBAYEJgi2CBwEBAQMBAQEBICsgCwULAgEGAhgCAg0ZAgInAQkmAgQIBwQBGQMEiAUIDYoanTWPYgEBAQEBAQEBAQEBAQEBAQEBAQEWBIEBhVOEfoQqEAIBBReDHIFEBY4YiD+FKoUihEeHaJMcAigJMoQiIDQHhGOBBwEBAQ X-IronPort-AV: E=Sophos;i="5.20,360,1444708800"; d="scan'208";a="254710439" Received: from nipigon.cs.uoguelph.ca (HELO zcs1.mail.uoguelph.ca) ([131.104.99.173]) by esa-annu.net.uoguelph.ca with ESMTP; 29 Nov 2015 09:42:10 -0500 Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id EDEB015F5DA; Sun, 29 Nov 2015 09:42:10 -0500 (EST) Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 5kHnMLmVOY0J; Sun, 29 Nov 2015 09:42:10 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id 5827915F5E2; Sun, 29 Nov 2015 09:42:10 -0500 (EST) X-Virus-Scanned: amavisd-new at zcs1.mail.uoguelph.ca Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id Xnp6FVnS__2K; Sun, 29 Nov 2015 09:42:10 -0500 (EST) Received: from zcs1.mail.uoguelph.ca (zcs1.mail.uoguelph.ca [172.17.95.18]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id 3C42315F5DA; Sun, 29 Nov 2015 09:42:10 -0500 (EST) Date: Sun, 29 Nov 2015 09:42:10 -0500 (EST) From: Rick Macklem To: "Mikhail T." Cc: Jilles Tjoelker , freebsd-fs , stable@freebsd.org Message-ID: <238719022.110571050.1448808130235.JavaMail.zimbra@uoguelph.ca> In-Reply-To: <565A8A3E.205@aldan.algebra.com> References: <5659CB64.5020105@aldan.algebra.com> <20151128224101.GA8470@stack.nl> <565A8A3E.205@aldan.algebra.com> Subject: Re: cp from NFS to ZFS hung in "fifoor" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [172.17.95.12] X-Mailer: Zimbra 8.0.9_GA_6191 (ZimbraWebClient - FF34 (Win)/8.0.9_GA_6191) Thread-Topic: cp from NFS to ZFS hung in "fifoor" Thread-Index: 8ZJqDBnTyNfmHqhwLsgVGKIAsVMS3A== X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 14:42:12 -0000 Mikhail T. wrote: > On 28.11.2015 17:41, Jilles Tjoelker wrote: > > Although cp -R will normally copy a fifo by calling mkfifo at the > > destination, it may open one if a regular file is replaced with a fifo > > between the time it reads the directory and it copies that file. >=20 > The sole fifo under /home here was mi/.licq/licq_fifo, created in 2003. > I echoed something into it (on the NFS-client side) and the cp-process > resumed. >=20 > I then performed a simple test: >=20 > 1. Create a fifo in an NFS-exported directory and try to copy it with > the -R flag > mi@narawntapu:/cache/src (792) mkfifo /green/tmp/test > mi@narawntapu:/cache/src (793) cp -Rpn /green/tmp/test /tmp/ > mi@narawntapu:/cache/src (794) ls -l /tmp/test > prw-r--r-- 1 mi wheel 0 29 =D0=BB=D0=B8=D1=81 00:05 /tmp/test > The above worked fine. > 2. Now, when I try to do the same thing via an NFS mount, I get the > same hang in fifoor: > root@aldan:ports/x11/kde4 (475) cp -Rpn /green/tmp/test /tmp/ > load: 0.42 cmd: cp 38299 [fifoor] 1.15r 0.00u 0.00s 0% 1868k >=20 > So, the good news is, this is not ZFS' fault. The bad news is, there is > still a bug... Unless, of course, this is some known "feature" of the > NFS... Compare, for example, how stat(1) describes the same named pipe > from both machines: >=20 > Local FS: > 92 74636334 prw-r--r-- 1 mi wheel 0 0 "Nov 29 00:05:51 2015" "Nov 29 > 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" 16384 0 > 0 /green/tmp/test > NFS-client: > 973143811 74636334 ?rw-r--r-- 1 mi wheel 4294967295 0 "Nov 29 > 00:05:51 2015" "Nov 29 00:05:51 2015" "Nov 29 00:05:51 2015" "Dec 31 > 18:59:59 1969" 16384 0 0 /green/tmp/test >=20 The other thing you could do is capture packets for the "ls -l" from the NF= S client: tcpdump -s 0 -w fifo.pcap host run on the client while doing the "ls -l" should be sufficient. (Doing it j= ust after mounting will avoid any attribute cache hit.) You could then look at the fifo.pcap in wireshark (or email it to me as an attachment and I can look) and see if the file type attribute is FIFO. (If it isn't, then the NFS server is broken somehow.) rick > That question-mark in the node-type (instead of the "p") is, I guess, > what confuses cp into trying to read from it instead of creating a fifo. > Should I file a PR? Thank you! >=20 > -mi >=20 > _______________________________________________ > freebsd-stable@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" From owner-freebsd-stable@freebsd.org Sun Nov 29 15:40:55 2015 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 B7511A3C81B for ; Sun, 29 Nov 2015 15:40:55 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 9BCD71B02; Sun, 29 Nov 2015 15:40:55 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 7D1AA1822; Sun, 29 Nov 2015 15:40:55 +0000 (UTC) Date: Sun, 29 Nov 2015 15:40:54 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: kib@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1554356157.245.1448811655483.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1850 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 15:40:55 -0000 FreeBSD_stable_10 - Build #1850 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1850/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1850/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1850/cons= ole Change summaries: 291454 by kib: MFC r289895: Reduce the amount of calls to VOP_BMAP() made from the local vnode pager. MFC r291157, r291158: Include the pages before/after the requested page, that fit into the reqblock, into the calculation of the size of run of pages. Tested by:=09pho The end of the build log: [...truncated 116652 lines...] --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/cdboot (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/sys/boot/i386= /cdboot/../common -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot/i386/cd= boot/cdboot.S --- tests.depend__D --- echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/gptboot (depend) --- tests.depend__D --- --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/gptboot/../../../i386/includ= e machine =3D=3D=3D> sys/boot/i386/kgzldr (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DKZIP -std=3Dgnu99 /builds/FreeBSD_sta= ble_10/sys/boot/i386/kgzldr/boot.c /builds/FreeBSD_stable_10/sys/boot/i386/= kgzldr/../../../kern/inflate.c /builds/FreeBSD_stable_10/sys/boot/i386/kgzl= dr/lib.c --- tests.depend__D --- echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- usr.bin.depend__D --- echo chpass: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libcrypt.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp= /usr/lib/libypclnt.a >> .depend --- depend_subdir_cksum --- =3D=3D=3D> usr.bin/cksum (depend) --- tests.depend__D --- --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/libi386 (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/cksum/cksum.c /builds/FreeBSD_stable_10/usr.bin/cksum/crc.c /build= s/FreeBSD_stable_10/usr.bin/cksum/print.c /builds/FreeBSD_stable_10/usr.bin= /cksum/sum1.c /builds/FreeBSD_stable_10/usr.bin/cksum/sum2.c /builds/FreeBS= D_stable_10/usr.bin/cksum/crc32.c --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/libi386/../../../i386/includ= e machine --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DLOADER_NFS_SUPPORT -DCOMPORT=3D0x3f8 -D= COMSPEED=3D9600 -DSMBIOS_SERIAL_NUMBERS -DTERM_EMU -Dalloca=3D__builtin_all= oca -I/builds/FreeBSD_stable_10/sys/boot/i386/libi386/../../common -I/build= s/FreeBSD_stable_10/sys/boot/i386/libi386/../common -I/builds/FreeBSD_stabl= e_10/sys/boot/i386/libi386/../btx/lib -I/builds/FreeBSD_stable_10/sys/boot/= i386/libi386/../../../contrib/dev/acpica/include -I/builds/FreeBSD_stable_1= 0/sys/boot/i386/libi386/../../.. -I. -I/builds/FreeBSD_stable_10/sys/boot/i= 386/libi386/../../../../lib/libstand/ -std=3Dgnu99 /builds/FreeBSD_stable= _10/sys/boot/i386/libi386/biosacpi.c /builds/FreeBSD_stable_10/sys/boot/i38= 6/libi386/bioscd.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/biosdisk= .c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/biosmem.c /builds/FreeBS= D_stable_10/sys/boot/i386/libi386/biospnp.c /builds/FreeBSD_stable_10/sys/b= oot/i386/libi386/biospci.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/= biossmap.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/bootinfo.c /buil= ds/FreeBSD_stable_10/sys/boot/i386/libi386/bootinfo32.c /builds/FreeBSD_sta= ble_10/sys/boot/i386/libi386/bootinfo64.c /builds/FreeBSD_stable_10/sys/boo= t/i386/libi386/comconsole.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386= /devicename.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/elf32_freebsd= .c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/elf64_freebsd.c /builds/= FreeBSD_stable_10/sys/boot/i386/libi386/i386_copy.c /builds/FreeBSD_stable_= 10/sys/boot/i386/libi386/i386_module.c /builds/FreeBSD_stable_10/sys/boot/i= 386/libi386/nullconsole.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/p= xe.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/smbios.c /builds/FreeB= SD_stable_10/sys/boot/i386/libi386/time.c /builds/FreeBSD_stable_10/sys/boo= t/i386/libi386/vidconsole.c /builds/FreeBSD_stable_10/sys/boot/i386/libi386= /amd64_tramp.S /builds/FreeBSD_stable_10/sys/boot/i386/libi386/spinconsole.= c /builds/FreeBSD_stable_10/sys/boot/i386/libi386/../../zfs/devicename_stub= s.c --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- echo cksum: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a >> .depend --- depend_subdir_clang --- =3D=3D=3D> usr.bin/clang (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- usr.bin.depend__D --- --- depend_subdir_clang --- =3D=3D=3D> usr.bin/clang/clang (depend) --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c --- usr.bin.depend__D --- --- DiagnosticDriverKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DDriver -I /builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inclu= de/clang/Basic -d DiagnosticDriverKinds.inc.d -o DiagnosticDriverKinds.inc= .h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tool= s/clang/include/clang/Basic/Diagnostic.td --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- usr.bin.depend__D --- --- DiagnosticFrontendKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DFrontend -I /builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inc= lude/clang/Basic -d DiagnosticFrontendKinds.inc.d -o DiagnosticFrontendKin= ds.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llv= m/tools/clang/include/clang/Basic/Diagnostic.td --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- usr.bin.depend__D --- --- DiagnosticLexKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DLex -I /builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/include/= clang/Basic -d DiagnosticLexKinds.inc.d -o DiagnosticLexKinds.inc.h /build= s/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/i= nclude/clang/Basic/Diagnostic.td --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c --- usr.bin.depend__D --- --- DiagnosticSemaKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DSema -I /builds/Free= BSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/include= /clang/Basic -d DiagnosticSemaKinds.inc.d -o DiagnosticSemaKinds.inc.h /bu= ilds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clan= g/include/clang/Basic/Diagnostic.td --- tests.depend__D --- echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c --- usr.bin.depend__D --- --- CC1AsOptions.inc.h --- tblgen -gen-opt-parser-defs -I /builds/FreeBSD_stable_10/usr.bin/clang/cla= ng/../../../contrib/llvm/include -I /builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/tools/clang/include/clang/Driver -d CC1AsOpti= ons.inc.d -o CC1AsOptions.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/cl= ang/../../../contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td --- DiagnosticCommonKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DCommon -I /builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inclu= de/clang/Basic -d DiagnosticCommonKinds.inc.d -o DiagnosticCommonKinds.inc= .h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tool= s/clang/include/clang/Basic/Diagnostic.td --- tests.depend__D --- echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/libfirewire (depend) --- usr.bin.depend__D --- --- Options.inc.h --- tblgen -gen-opt-parser-defs -I /builds/FreeBSD_stable_10/usr.bin/clang/cla= ng/../../../contrib/llvm/include -I /builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/tools/clang/include/clang/Driver -d Options.i= nc.d -o Options.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../= ../contrib/llvm/tools/clang/include/clang/Driver/Options.td --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/../../../i386/in= clude machine --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -D_BOOT -I/builds/FreeBSD_stable_10/sys/b= oot/i386/libfirewire/../../common -I/builds/FreeBSD_stable_10/sys/boot/i386= /libfirewire/../../.. -I. -I/builds/FreeBSD_stable_10/sys/boot/i386/libfire= wire/../../../../lib/libstand -I/builds/FreeBSD_stable_10/sys/boot/i386/lib= firewire/../btx/lib -I/builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/.= ./libi386 -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot/i386/libfirewir= e/firewire.c /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/fwohci.c /= builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/dconsole.c /builds/FreeB= SD_stable_10/sys/boot/i386/libfirewire/../../../dev/dcons/dcons.c /builds/F= reeBSD_stable_10/sys/boot/i386/libfirewire/../../../dev/firewire/fwcrom.c --- tests.depend__D --- =3D=3D=3D> tests/sys/kern/acct (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/include -I/builds/FreeBSD_stable_10/usr.bin/cl= ang/clang/../../../contrib/llvm/tools/clang/include -I/builds/FreeBSD_stabl= e_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/tools/driver -I.= -I/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/../.= ./lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS = -D__STDC_CONSTANT_MACROS -DNDEBUG -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_REWRI= TER -DCLANG_ENABLE_STATIC_ANALYZER -DLLVM_DEFAULT_TARGET_TRIPLE=3D\"x86_64-= unknown-freebsd10.2\" -DLLVM_HOST_TRIPLE=3D\"x86_64-unknown-freebsd10.2\" -= DDEFAULT_SYSROOT=3D\"\" /builds/FreeBSD_stable_10/usr.bin/clang/clan= g/../../../contrib/llvm/tools/clang/tools/driver/cc1_main.cpp /builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/tools/dr= iver/cc1as_main.cpp /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../= contrib/llvm/tools/clang/tools/driver/driver.cpp=20 --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sys.depend__D --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 1 error make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot 1 error make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sys 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sys *** [sys.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo clang: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/c= lang/clang/../../../lib/clang/libclangfrontendtool/libclangfrontendtool.a /= builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/.= ./../../lib/clang/libclangfrontend/libclangfrontend.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bclangdriver/libclangdriver.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/usr.bin/clang/clang/../../../lib/clang/libclangserialization/libc= langserialization.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libclangcodegen/libclangcodegen.a /b= uilds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/..= /../../lib/clang/libclangparse/libclangparse.a /builds/FreeBSD_stable_10/ob= j/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangs= ema/libclangsema.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libclangstaticanalyzerfrontend/libcla= ngstaticanalyzerfrontend.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_sta= ble_10/usr.bin/clang/clang/../../../lib/clang/libclangstaticanalyzerchecker= s/libclangstaticanalyzercheckers.a /builds/FreeBSD_stable_10/obj/builds/Fre= eBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangstaticanalyze= rcore/libclangstaticanalyzercore.a /builds/FreeBSD_stable_10/obj/builds/Fre= eBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangarcmigrate/li= bclangarcmigrate.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libclangrewritefrontend/libclangrewri= tefrontend.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin= /clang/clang/../../../lib/clang/libclangrewritecore/libclangrewritecore.a /= builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/.= ./../../lib/clang/libclanganalysis/libclanganalysis.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bclangedit/libclangedit.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stab= le_10/usr.bin/clang/clang/../../../lib/clang/libclangast/libclangast.a /bui= lds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../.= ./../lib/clang/libclangbasic/libclangbasic.a /builds/FreeBSD_stable_10/obj/= builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclanglex= /libclanglex.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.b= in/clang/clang/../../../lib/clang/libllvmoption/libllvmoption.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmlinker/libllvmlinker.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmirreader/li= bllvmirreader.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.= bin/clang/clang/../../../lib/clang/libllvmipo/libllvmipo.a /builds/FreeBSD_= stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cla= ng/libllvmvectorize/libllvmvectorize.a /builds/FreeBSD_stable_10/obj/builds= /FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvminstrument= ation/libllvminstrumentation.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD= _stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmbitwriter/libllvmb= itwriter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/c= lang/clang/../../../lib/clang/libllvmbitreader/libllvmbitreader.a /builds/F= reeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../= lib/clang/libllvmasmparser/libllvmasmparser.a /builds/FreeBSD_stable_10/obj= /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarm= disassembler/libllvmarmdisassembler.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarmcodegen/= libllvmarmcodegen.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmarmasmparser/libllvmarmasmpar= ser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/= clang/../../../lib/clang/libllvmarmdesc/libllvmarmdesc.a /builds/FreeBSD_st= able_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang= /libllvmarminfo/libllvmarminfo.a /builds/FreeBSD_stable_10/obj/builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarminstprinter/l= ibllvmarminstprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_= 10/usr.bin/clang/clang/../../../lib/clang/libllvmmipsdisassembler/libllvmmi= psdisassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr= .bin/clang/clang/../../../lib/clang/libllvmmipscodegen/libllvmmipscodegen.a= /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang= /../../../lib/clang/libllvmmipsasmparser/libllvmmipsasmparser.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmmipsdesc/libllvmmipsdesc.a /builds/FreeBSD_stable_10/obj/bui= lds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmmipsinf= o/libllvmmipsinfo.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmmipsinstprinter/libllvmmipsin= stprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/= clang/clang/../../../lib/clang/libllvmpowerpccodegen/libllvmpowerpccodegen.= a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clan= g/../../../lib/clang/libllvmpowerpcasmparser/libllvmpowerpcasmparser.a /bui= lds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../.= ./../lib/clang/libllvmpowerpcdesc/libllvmpowerpcdesc.a /builds/FreeBSD_stab= le_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/l= ibllvmpowerpcinfo/libllvmpowerpcinfo.a /builds/FreeBSD_stable_10/obj/builds= /FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmpowerpcins= tprinter/libllvmpowerpcinstprinter.a /builds/FreeBSD_stable_10/obj/builds/F= reeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparcdisasse= mbler/libllvmsparcdisassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparccodegen/lib= llvmsparccodegen.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libllvmsparcasmparser/libllvmsparcasm= parser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/cla= ng/clang/../../../lib/clang/libllvmsparcdesc/libllvmsparcdesc.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmsparcinfo/libllvmsparcinfo.a /builds/FreeBSD_stable_10/obj/b= uilds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparc= instprinter/libllvmsparcinstprinter.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86disassem= bler/libllvmx86disassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86asmparser/libllv= mx86asmparser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.= bin/clang/clang/../../../lib/clang/libllvmx86codegen/libllvmx86codegen.a /b= uilds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/..= /../../lib/clang/libllvmselectiondag/libllvmselectiondag.a /builds/FreeBSD_= stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cla= ng/libllvmasmprinter/libllvmasmprinter.a /builds/FreeBSD_stable_10/obj/buil= ds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmmcparser= /libllvmmcparser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libllvmcodegen/libllvmcodegen.a /buil= ds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../..= /../lib/clang/libllvmobjcarcopts/libllvmobjcarcopts.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bllvmscalaropts/libllvmscalaropts.a /builds/FreeBSD_stable_10/obj/builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvminstcombine/l= ibllvminstcombine.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmtransformutils/libllvmtransfo= rmutils.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/cl= ang/clang/../../../lib/clang/libllvmipa/libllvmipa.a /builds/FreeBSD_stable= _10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/lib= llvmanalysis/libllvmanalysis.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD= _stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86desc/libllvmx86= desc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../lib/clang/libllvmx86info/libllvmx86info.a /builds/FreeBSD_s= table_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clan= g/libllvmtarget/libllvmtarget.a /builds/FreeBSD_stable_10/obj/builds/FreeBS= D_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86instprinter/li= bllvmx86instprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/usr.bin/clang/clang/../../../lib/clang/libllvmmc/libllvmmc.a /builds/Free= BSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib= /clang/libllvmobject/libllvmobject.a /builds/FreeBSD_stable_10/obj/builds/F= reeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86utils/lib= llvmx86utils.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.b= in/clang/clang/../../../lib/clang/libllvmcore/libllvmcore.a /builds/FreeBSD= _stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cl= ang/libllvmsupport/libllvmsupport.a /builds/FreeBSD_stable_10/obj/builds/Fr= eeBSD_stable_10/tmp/usr/lib/libncurses.a >> .depend echo clang: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc++.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang/clang *** [depend_subdir_clang] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang *** [depend_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Sun Nov 29 17:11:31 2015 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 512D9A3C476 for ; Sun, 29 Nov 2015 17:11:31 +0000 (UTC) (envelope-from filippomore@yahoo.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2833319A1 for ; Sun, 29 Nov 2015 17:11:31 +0000 (UTC) (envelope-from filippomore@yahoo.com) Received: by mailman.ysv.freebsd.org (Postfix) id 25640A3C475; Sun, 29 Nov 2015 17:11:31 +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 0B2B0A3C474 for ; Sun, 29 Nov 2015 17:11:31 +0000 (UTC) (envelope-from filippomore@yahoo.com) Received: from nm37-vm9.bullet.mail.gq1.yahoo.com (nm37-vm9.bullet.mail.gq1.yahoo.com [98.136.217.45]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D122C199C for ; Sun, 29 Nov 2015 17:11:30 +0000 (UTC) (envelope-from filippomore@yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1448816878; bh=u9yGjubz8u81UrZVmsSc9A5zCY7a1Qrls3geZ2y2PbI=; h=Date:From:Reply-To:To:Subject:References:From:Subject; b=DurwRpXASRIBAutX6tC8HJMQcRjNYjSPAeyzhe4UKAtg48lWJM5Ij79nYl/9NBVhsR79GHwQV/OpWuAoS69j4rgRGlGDWWFWLcTmsTG/a5kichwllBManRf2NQ+JhOaJgq5yN1JOQisJjj75shyQvqmCLBfJacCJJUumLzvX+cVP4eVvBfeiOCaFZT906RDQ3XRD1jBHoS/UNZF91TxzMbF5nL6uY5p5pD/nClnYOc1j05ERaDm98Dh89Z1Gkq04WLYobgrv+ZSDC7wOvtdEx/m3CCpeaDRcVcOIlnZJWeF/q5hDossz5mA9DX75fyn2AmOL7nnxLJqGD/osFnZQeg== Received: from [127.0.0.1] by nm37.bullet.mail.gq1.yahoo.com with NNFMP; 29 Nov 2015 17:07:58 -0000 Received: from [216.39.60.183] by nm37.bullet.mail.gq1.yahoo.com with NNFMP; 29 Nov 2015 17:04:57 -0000 Received: from [98.139.215.141] by tm19.bullet.mail.gq1.yahoo.com with NNFMP; 29 Nov 2015 17:04:56 -0000 Received: from [98.139.212.238] by tm12.bullet.mail.bf1.yahoo.com with NNFMP; 29 Nov 2015 17:04:56 -0000 Received: from [127.0.0.1] by omp1047.mail.bf1.yahoo.com with NNFMP; 29 Nov 2015 17:04:56 -0000 X-Yahoo-Newman-Property: ymail-4 X-Yahoo-Newman-Id: 576228.98535.bm@omp1047.mail.bf1.yahoo.com X-YMail-OSG: tHysedgVM1mDrwC.TJQT83ZqRrru23jpX_xE7H4FupKscxFsbjBcXvM7iLVATGQ mYXQFXfXyuWUD7wBm5lhRfRV2uakbm.k1XCTkA5RlNZyVqaFp6SNVhu1UwM.Xk9DhAgz8P9Yzr0r a_nyGaDLgFsUl3PBJsou.Tk7Hu.Rnis_h3f6mpm_3wRf2QLhEktuNPNHjwlRd6gpXxZPS2LhHyUr fF3tCy55Y21GK6UM83.kX6pA2oj_upIGI4jM6Zj5OIFEaytM3urqGCuhRSbDkrZtjfIjm65s6BDH vc5Pj5yuKV4An4XE4P9iyHOGxQDtXTBAsyQ8YzDfPAgeGurajQekqfXjwECPvTsDBQvjyaw_13Ky 0DmDt2D2vMhQF2drSZOQ_p95K5sgc243nSWQTaS0CmqL0j.ebVir02L_7whpf1pKAF06lUxewjM. cBTObRIrP9igwI9CRHqoXFgeTdUTqGaQZ9pKFyCk1jTrHl8qNUpL8AaQ2J.z.E.lxxfs5Ahb820u fCrgVEDkHWN8TYpVYJy0- Received: by 76.13.26.156; Sun, 29 Nov 2015 17:04:56 +0000 Date: Sun, 29 Nov 2015 17:04:53 +0000 (UTC) From: Filippo Moretti Reply-To: Filippo Moretti To: FreeBSD Stable ML Message-ID: <1153354520.12196216.1448816693632.JavaMail.yahoo@mail.yahoo.com> Subject: PAE Kernel does not boot MIME-Version: 1.0 References: <1153354520.12196216.1448816693632.JavaMail.yahoo.ref@mail.yahoo.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 17:11:31 -0000 I compiled a PAE kernel but it does not boot:it stops in trying to mount th= e root partitionthese are some info from dmesg:Copyright (c) 1992-2015 The = FreeBSD Project.Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 199= 2, 1993, 1994=C2=A0 =C2=A0 =C2=A0 =C2=A0 The Regents of the University of C= alifornia. All rights reserved.FreeBSD is a registered trademark of The Fre= eBSD Foundation.FreeBSD 10.2-STABLE #30 r291096: Fri Nov 20 21:09:23 CET 20= 15=C2=A0 =C2=A0 root@sting:/usr/obj/usr/src/sys/STING_VT i386FreeBSD clang = version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512VT(vga): resoluti= on 640x480CPU: Intel(R) Pentium(R) 4 CPU 3.20GHz (3200.05-MHz 686-class CPU= )=C2=A0 Origin=3D"GenuineIntel" =C2=A0Id=3D0xf41 =C2=A0Family=3D0xf =C2=A0M= odel=3D0x4 =C2=A0Stepping=3D1=C2=A0 Features=3D0xbfebfbff=C2=A0 Features2=3D0x441d=C2=A0 AMD Features=3D0x100000=C2=A0 TSC: P-state invar= iantreal memory =C2=A0=3D 4294967296 (4096 MB)avail memory =3D 3016163328 (= 2876 MB)Event timer "LAPIC" quality 400ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUsFreeBSD/SMP: 1 packag= e(s) x 1 core(s) x 2 HTT threads=C2=A0cpu0 (BSP): APIC ID: =C2=A00=C2=A0cpu= 1 (AP/HT): APIC ID: =C2=A01 It looks like that PAE should be supportedsincerelyFilippo From owner-freebsd-stable@freebsd.org Sun Nov 29 18:36:44 2015 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 D07B6A22A16 for ; Sun, 29 Nov 2015 18:36:44 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id C06931215; Sun, 29 Nov 2015 18:36:44 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id AD8A41896; Sun, 29 Nov 2015 18:36:44 +0000 (UTC) Date: Sun, 29 Nov 2015 18:36:42 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mav@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <874778474.255.1448822204669.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1554356157.245.1448811655483.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1554356157.245.1448811655483.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1851 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 18:36:44 -0000 FreeBSD_stable_10 - Build #1851 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1851/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1851/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1851/cons= ole Change summaries: 291456 by mav: MFC r290855: Increase reset assertion time from 10 to 100us. On my own tests I see no effect from this change, but I also can't reproduce the reported problem in general. PR:=09=09127391 PR:=09=09204554 Submitted by:=09satz@iranger.com The end of the build log: [...truncated 118396 lines...] --- depend_subdir_compile_et --- echo compile_et: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp= /usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libroken.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/compile_et/../../kerberos5/lib/libvers/libvers.a >> .depend --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- usr.sbin.depend__D --- --- aslcompiler.y --- m4 -P -I/builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/compiler/aslparser.y > aslcompiler.y --- dtparserlex.c --- lex -i -s -PDtParser -odtparserlex.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/dtparser.l --- tests.depend__D --- --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- usr.bin.depend__D --- --- depend_subdir_cpio --- =3D=3D=3D> usr.bin/cpio (depend) --- usr.sbin.depend__D --- --- dtparserparse.c --- yacc -d -pDtParser -odtparserparse.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/dtparser.y --- usr.bin.depend__D --- --- depend_subdir_compress --- echo compress: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend --- etc.depend__D --- --- usr.sbin.depend__D --- --- prparserlex.c --- lex -i -s -PPrParser -oprparserlex.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/prparser.l --- etc.depend__D --- =3D=3D=3D> etc (depend) --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- usr.bin.depend__D --- --- depend_subdir_cpio --- --- _sub.depend --- =3D=3D=3D> usr.bin/cpio/tests (depend) --- usr.sbin.depend__D --- --- prparserparse.c --- yacc -d -pPrParser -oprparserparse.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/prparser.y --- aslcompilerparse.c --- yacc -d -pAslCompiler -oaslcompilerparse.c aslcompiler.y --- tests.depend__D --- --- .depend.fifo_open --- --- etc.depend__D --- --- _sub.depend --- --- tests.depend__D --- rm -f .depend.fifo_open --- etc.depend__D --- =3D=3D=3D> etc/newsyslog.conf.d (depend) --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c --- usr.bin.depend__D --- (cd /builds/FreeBSD_stable_10/usr.bin/cpio/tests && make -f /builds/FreeBSD= _stable_10/usr.bin/cpio/tests/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG= =3Dbsdcpio_test DEPENDFILE=3D.depend.bsdcpio_test .MAKE.DEPENDFILE=3D.depe= nd.bsdcpio_test depend) --- etc.depend__D --- =3D=3D=3D> etc/sendmail (depend) --- tests.depend__D --- echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- --- list.h --- --- usr.sbin.depend__D --- yacc: 89 shift/reduce conflicts. --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- usr.sbin.depend__D --- --- dtparser.y.h --- ln -f dtparserparse.h dtparser.y.h --- depend_subdir_amd --- =3D=3D=3D> usr.sbin/amd (depend) --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c --- usr.sbin.depend__D --- --- depend_subdir_include --- =3D=3D=3D> usr.sbin/amd/include (depend) --- config_local.h --- --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper --- usr.sbin.depend__D --- sh /builds/FreeBSD_stable_10/usr.sbin/amd/include/newvers.sh /builds/FreeBS= D_stable_10/usr.sbin/amd/include/../../../sys/conf/newvers.sh > config_loca= l.h --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- usr.sbin.depend__D --- --- depend_subdir_libamu --- =3D=3D=3D> usr.sbin/amd/libamu (depend) --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- usr.bin.depend__D --- --- .depend.bsdcpio_test --- rm -f .depend.bsdcpio_test CC=3D'cc ' mkdep -f .depend.bsdcpio_test -a -DPLATFORM_CONFIG_H=3D\"/bui= lds/FreeBSD_stable_10/lib/libarchive/config_freebsd.h\" -I/builds/FreeBSD_s= table_10/lib/libarchive -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD_stab= le_10/usr.bin/cpio/tests -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD_sta= ble_10/usr.bin/cpio/tests -I/builds/FreeBSD_stable_10/contrib/libarchive/cp= io -I/builds/FreeBSD_stable_10/contrib/libarchive/libarchive_fe -I/builds/F= reeBSD_stable_10/contrib/libarchive/test_utils -std=3Dgnu99 /builds/FreeB= SD_stable_10/contrib/libarchive/cpio/cmdline.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/libarchive_fe/err.c /builds/FreeBSD_stable_10/contrib/liba= rchive/cpio/test/test_0.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio= /test/test_basic.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/t= est_cmdline.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_e= xtract_cpio_Z.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test= _extract_cpio_bz2.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/= test_extract_cpio_grz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/t= est/test_extract_cpio_gz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpi= o/test/test_extract_cpio_lrz.c /builds/FreeBSD_stable_10/contrib/libarchive= /cpio/test/test_extract_cpio_lz.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_extract_cpio_lzma.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_extract_cpio_lzo.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_extract_cpio_xz.c /builds/FreeBSD_stable_10/con= trib/libarchive/cpio/test/test_format_newc.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_gcpio_compat.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_option_0.c /builds/FreeBSD_stable_10/contrib/= libarchive/cpio/test/test_option_B_upper.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_option_C_upper.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_option_J_upper.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_L_upper.c /builds/FreeBSD_stable_10/= contrib/libarchive/cpio/test/test_option_Z_upper.c /builds/FreeBSD_stable_1= 0/contrib/libarchive/cpio/test/test_option_a.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_b64encode.c /builds/FreeBSD_stable_1= 0/contrib/libarchive/cpio/test/test_option_c.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_d.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_option_f.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_option_grzip.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_option_help.c /builds/FreeBSD_stable_10/contrib/lib= archive/cpio/test/test_option_l.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_option_lrzip.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_option_lzma.c /builds/FreeBSD_stable_10/contrib/libarchi= ve/cpio/test/test_option_lzop.c /builds/FreeBSD_stable_10/contrib/libarchiv= e/cpio/test/test_option_m.c /builds/FreeBSD_stable_10/contrib/libarchive/cp= io/test/test_option_t.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/t= est/test_option_u.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/= test_option_uuencode.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/te= st/test_option_version.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/= test/test_option_xz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/tes= t/test_option_y.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/te= st_option_z.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_o= wner_parse.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_pa= ssthrough_dotdot.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/t= est_passthrough_reverse.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio= /test/main.c /builds/FreeBSD_stable_10/contrib/libarchive/test_utils/test_u= tils.c --- usr.sbin.depend__D --- --- nfs_prot_x.c --- --- depend_subdir_acpi --- --- prparser.y.h --- --- depend_subdir_amd --- RPCGEN_CPP=3Dcpp\ rpcgen -c -C -DWANT_NFS3 /builds/FreeBSD_stable_10/obj/b= uilds/FreeBSD_stable_10/tmp/usr/include/rpcsvc/nfs_prot.x -o nfs_prot_x.c --- depend_subdir_acpi --- ln -f prparserparse.h prparser.y.h --- aslcompiler.y.h --- ln -f aslcompilerparse.h aslcompiler.y.h --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test --- usr.sbin.depend__D --- --- .depend --- rm -f .depend --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- usr.sbin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -DACPI_ASL_COMPILER -I. -I/builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys -std=3Dgnu99 /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/adfile.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/common/adisasm.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/common/adwalk.c /builds/FreeBSD_stable_10/usr.sbin/ac= pi/iasl/../../../sys/contrib/dev/acpica/common/ahids.c /builds/FreeBSD_stab= le_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/ahpredef.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/common/ahtable.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/common/ahuuids.c /builds/FreeBSD_stable_10/usr.sbin/ac= pi/iasl/../../../sys/contrib/dev/acpica/common/cmfsize.c /builds/FreeBSD_st= able_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/dmextern.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/common/dmrestag.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/common/dmtable.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/common/dmtbdump.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/dmtbi= nfo.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev= /acpica/common/getopt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../= ../sys/contrib/dev/acpica/compiler/aslanalyze.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslascii.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= piler/aslbtypes.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/compiler/aslcodegen.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslcompile.c aslcompil= erlex.c aslcompilerparse.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../= ../../sys/contrib/dev/acpica/compiler/aslerror.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslfileio.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= ompiler/aslfiles.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/compiler/aslfold.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslhex.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/asll= ength.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler/asllisting.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/compiler/asllistsup.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslload.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/compiler/asllookup.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../..= /../sys/contrib/dev/acpica/compiler/aslmain.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslmap.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compile= r/aslmapenter.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/compiler/aslmapoutput.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslmaputils.c /builds/= FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compil= er/aslmessages.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/= contrib/dev/acpica/compiler/aslmethod.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslnamesp.c /builds/Free= BSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/a= sloffset.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contri= b/dev/acpica/compiler/aslopcodes.c /builds/FreeBSD_stable_10/usr.sbin/acpi/= iasl/../../../sys/contrib/dev/acpica/compiler/asloperands.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslo= pt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/asloptions.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/compiler/aslpredef.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslprepkg.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/compiler/aslprintf.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../.= ./sys/contrib/dev/acpica/compiler/aslprune.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslresource.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= piler/aslrestype1.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/compiler/aslrestype1i.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslrestype2.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/co= mpiler/aslrestype2d.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/compiler/aslrestype2e.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslrestype2q.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /compiler/aslrestype2s.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../..= /../sys/contrib/dev/acpica/compiler/aslrestype2w.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslstartup.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/compiler/aslstubs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/compiler/asltransform.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/asltree.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/comp= iler/aslutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/compiler/asluuid.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/aslwalks.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslxr= ef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/dtcompile.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/..= /../../sys/contrib/dev/acpica/compiler/dtexpress.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtfield.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= ompiler/dtio.c dtparserlex.c dtparserparse.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtsubtable.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/comp= iler/dttable.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/co= ntrib/dev/acpica/compiler/dttemplate.c /builds/FreeBSD_stable_10/usr.sbin/a= cpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtutils.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/prex= press.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler/prmacros.c prparserlex.c prparserparse.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/prsc= an.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/prutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../.= ./../sys/contrib/dev/acpica/components/debugger/dbfileio.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dis= assembler/dmbuffer.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/disassembler/dmcstyle.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disa= ssembler/dmdeferred.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/disassembler/dmnames.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disa= ssembler/dmopcode.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/components/disassembler/dmresrc.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disass= embler/dmresrcl.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/disassembler/dmresrcl2.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disass= embler/dmresrcs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/disassembler/dmutils.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disassem= bler/dmwalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/con= trib/dev/acpica/components/dispatcher/dsargs.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsco= ntrol.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/dispatcher/dsfield.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsobject.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/components/dispatcher/dsopcode.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsutils.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/co= mponents/dispatcher/dswexec.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/= ../../../sys/contrib/dev/acpica/components/dispatcher/dswload.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/component= s/dispatcher/dswload2.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../= ../sys/contrib/dev/acpica/components/dispatcher/dswscope.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dis= patcher/dswstate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/components/executer/exconvrt.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/e= xcreate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib= /dev/acpica/components/executer/exdump.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exmisc.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= omponents/executer/exmutex.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/components/executer/exnames.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/e= xecuter/exoparg1.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/components/executer/exoparg2.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/e= xoparg3.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib= /dev/acpica/components/executer/exoparg6.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exprep.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /components/executer/exresnte.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/executer/exresolv.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/componen= ts/executer/exresop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/executer/exstore.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer= /exstoren.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contr= ib/dev/acpica/components/executer/exstorob.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exsystem= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/ac= pica/components/executer/exutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/= iasl/../../../sys/contrib/dev/acpica/components/parser/psargs.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/component= s/parser/psloop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/parser/psobject.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/parser/psopco= de.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/components/parser/psopinfo.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /iasl/../../../sys/contrib/dev/acpica/components/parser/psparse.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compone= nts/parser/psscope.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/parser/pstree.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/parser/psuti= ls.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/components/parser/pswalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/i= asl/../../../sys/contrib/dev/acpica/components/namespace/nsaccess.c /builds= /FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compo= nents/namespace/nsalloc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../.= ./../sys/contrib/dev/acpica/components/namespace/nsdump.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/name= space/nsnames.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/components/namespace/nsobject.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/namespace/ns= parse.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/namespace/nssearch.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/components/namespace/nsutils.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/components/namespace/nswalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/tables/tbdata.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/t= ables/tbfadt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/co= ntrib/dev/acpica/components/tables/tbinstal.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/tables/tbprint.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/components/tables/tbutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl= /../../../sys/contrib/dev/acpica/components/tables/tbxface.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/u= tilities/utaddress.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/utilities/utalloc.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilitie= s/utbuffer.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/cont= rib/dev/acpica/components/utilities/utcache.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utcopy= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/ac= pica/components/utilities/utdebug.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /iasl/../../../sys/contrib/dev/acpica/components/utilities/utdecode.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= ponents/utilities/utdelete.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/components/utilities/uterror.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/= utilities/utexcep.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/components/utilities/utfileio.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilitie= s/utglobal.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/cont= rib/dev/acpica/components/utilities/uthex.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utinit.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/components/utilities/utlock.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ia= sl/../../../sys/contrib/dev/acpica/components/utilities/utmath.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/componen= ts/utilities/utmisc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/utilities/utmutex.c /builds/FreeBSD_stab= le_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utiliti= es/utobject.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/con= trib/dev/acpica/components/utilities/utownerid.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utp= redef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/utilities/utprint.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utresrc.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /components/utilities/utstate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/utilities/utstring.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compone= nts/utilities/utuuid.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../.= ./sys/contrib/dev/acpica/components/utilities/utxface.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilit= ies/utxferror.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/os_specific/service_layers/oslibcfs.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/os_specific/servi= ce_layers/osunixxf.c --- depend_subdir_amd --- --- xdr_func_%undef.c --- unifdef -DHAVE_XDR_ATTRSTAT -DHAVE_XDR_CREATEARGS -DHAVE_XDR_DIRLIST -DHAVE= _XDR_DIROPARGS -DHAVE_XDR_DIROPOKRES -DHAVE_XDR_DIROPRES -DHAVE_XDR_DIRPATH= -DHAVE_XDR_ENTRY -DHAVE_XDR_EXPORTNODE -DHAVE_XDR_EXPORTS -DHAVE_XDR_FATTR= -DHAVE_XDR_FHANDLE -DHAVE_XDR_FHSTATUS -DHAVE_XDR_FILENAME -DHAVE_XDR_FTYP= E -DHAVE_XDR_GROUPNODE -DHAVE_XDR_GROUPS -DHAVE_XDR_LINKARGS -DHAVE_XDR_MOU= NTBODY -DHAVE_XDR_MOUNTLIST -DHAVE_XDR_NAME -DHAVE_XDR_NFS_FH -DHAVE_XDR_NF= SCOOKIE -DHAVE_XDR_NFSPATH -DHAVE_XDR_NFSSTAT -DHAVE_XDR_NFSTIME -DHAVE_XDR= _POINTER -DHAVE_XDR_READARGS -DHAVE_XDR_READDIRARGS -DHAVE_XDR_READDIRRES -= DHAVE_XDR_READLINKRES -DHAVE_XDR_READOKRES -DHAVE_XDR_READRES -DHAVE_XDR_RE= NAMEARGS -DHAVE_XDR_SATTR -DHAVE_XDR_SATTRARGS -DHAVE_XDR_STATFSOKRES -DHAV= E_XDR_STATFSRES -DHAVE_XDR_SYMLINKARGS -DHAVE_XDR_WRITEARGS < /builds/FreeB= SD_stable_10/usr.sbin/amd/libamu/../../../contrib/amd/libamu/xdr_func.c > x= dr_func_%undef.c --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/usr.sbin/amd/= libamu/../../../contrib/amd/libamu -I/builds/FreeBSD_stable_10/obj/builds/F= reeBSD_stable_10/tmp/usr/include/rpcsvc -I. -I/builds/FreeBSD_stable_10/usr= .sbin/amd/libamu -I/builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../include= -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.sbin/amd/liba= mu/../include -I/builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../cont= rib/amd/include -I/builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../co= ntrib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"amd64\" -DHOST_ARCH=3D\"amd64\" -s= td=3Dgnu99 /builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../contrib= /amd/libamu/hasmntopt.c /builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../..= /../contrib/amd/libamu/misc_rpc.c /builds/FreeBSD_stable_10/usr.sbin/amd/li= bamu/../../../contrib/amd/libamu/mount_fs.c /builds/FreeBSD_stable_10/usr.s= bin/amd/libamu/../../../contrib/amd/libamu/mtab.c /builds/FreeBSD_stable_10= /usr.sbin/amd/libamu/../../../contrib/amd/libamu/nfs_prot_xdr.c /builds/Fre= eBSD_stable_10/usr.sbin/amd/libamu/../../../contrib/amd/libamu/strutil.c /b= uilds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../contrib/amd/libamu/wir= e.c /builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../contrib/amd/liba= mu/xutil.c /builds/FreeBSD_stable_10/usr.sbin/amd/libamu/../../../contrib/a= md/conf/transp/transp_sockets.c /builds/FreeBSD_stable_10/usr.sbin/amd/liba= mu/../../../contrib/amd/conf/mtab/mtab_bsd.c /builds/FreeBSD_stable_10/usr.= sbin/amd/libamu/../../../contrib/amd/conf/umount/umount_bsd44.c nfs_prot_x.= c xdr_func_%undef.c --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo bsdcpio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libarchive.a >> .depend.bsdcpio_test A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests *** [bsdcpio_test.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests 1 error make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio *** [depend_subdir_cpio] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd/libamu *** [depend_subdir_libamu] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd *** [depend_subdir_amd] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin --- depend_subdir_acpi --- echo iasl: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 2 errors make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 3 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Mon Nov 30 12:40:36 2015 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 B3746A2457C for ; Mon, 30 Nov 2015 12:40:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A2CB5164C; Mon, 30 Nov 2015 12:40:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 02D7C1B50; Mon, 30 Nov 2015 12:40:37 +0000 (UTC) Date: Mon, 30 Nov 2015 12:40:35 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: smh@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1422321910.299.1448887236966.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <874778474.255.1448822204669.JavaMail.jenkins@jenkins-9.freebsd.org> References: <874778474.255.1448822204669.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1852 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 12:40:36 -0000 FreeBSD_stable_10 - Build #1852 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1852/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1852/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1852/cons= ole Change summaries: 291480 by smh: MFC r291207: Fix dumpon compatibility with dumpdev kenv Sponsored by:=09Multiplay The end of the build log: [...truncated 116282 lines...] --- tests.depend__D --- =3D=3D=3D> tests/sys/pjdfstest/tests/unlink (depend) --- usr.sbin.depend__D --- echo accton: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a >> .depend --- depend_subdir_acpi --- =3D=3D=3D> usr.sbin/acpi (depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/bmake/tests/sysmk/t2/2/1 (depend) --- usr.sbin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.sbin/acpi/acpiconf (depend) --- tests.depend__D --- =3D=3D=3D> tests/sys/acl (depend) --- usr.bin.depend__D --- =3D=3D=3D> usr.bin/bmake/tests/variables (depend) --- tests.depend__D --- =3D=3D=3D> tests/sys/aio (depend) --- usr.sbin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/usr.sbin/acpi= /acpiconf/../../../sys -std=3Dgnu99 /builds/FreeBSD_stable_10/usr.sbin/ac= pi/acpiconf/acpiconf.c --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/bmake/tests/variables/modifier_M (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_test= DEPENDFILE=3D.depend.aio_test .MAKE.DEPENDFILE=3D.depend.aio_test depen= d) --- usr.bin.depend__D --- =3D=3D=3D> usr.bin/bmake/tests/variables/modifier_t (depend) --- tests.depend__D --- --- .depend.aio_test --- rm -f .depend.aio_test CC=3D'cc ' mkdep -f .depend.aio_test -a -I/builds/FreeBSD_stable_10/test= s -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_test.c --- usr.bin.depend__D --- =3D=3D=3D> usr.bin/bmake/tests/variables/opt_V (depend) --- usr.sbin.depend__D --- echo acpiconf: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend =3D=3D=3D> usr.sbin/acpi/acpidb (depend) --- usr.bin.depend__D --- =3D=3D=3D> usr.bin/bmake/tests/variables/t0 (depend) --- tests.depend__D --- echo aio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/private/libatf-c.a >> .depend.aio_test --- usr.bin.depend__D --- --- .depend --- --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_kque= ue_test DEPENDFILE=3D.depend.aio_kqueue_test .MAKE.DEPENDFILE=3D.depend.ai= o_kqueue_test depend) --- usr.bin.depend__D --- rm -f .depend --- usr.sbin.depend__D --- --- .depend --- --- usr.bin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -DNO_PWD_OVERRIDE -I/builds/FreeBSD_stabl= e_10/usr.bin/bmake -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE -DHAVE_= CONFIG_H -DHAVE_CONFIG_H -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE -= DHAVE_CONFIG_H -D_PATH_DEFSYSPATH=3D\"/usr/share/mk\" -I. -I/builds/FreeBSD= _stable_10/contrib/bmake -DMAKE_NATIVE -std=3Dgnu99 /builds/FreeBSD_stabl= e_10/contrib/bmake/arch.c /builds/FreeBSD_stable_10/contrib/bmake/buf.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/compat.c /builds/FreeBSD_stable_10/con= trib/bmake/cond.c /builds/FreeBSD_stable_10/contrib/bmake/dir.c /builds/Fre= eBSD_stable_10/contrib/bmake/for.c /builds/FreeBSD_stable_10/contrib/bmake/= hash.c /builds/FreeBSD_stable_10/contrib/bmake/job.c /builds/FreeBSD_stable= _10/contrib/bmake/main.c /builds/FreeBSD_stable_10/contrib/bmake/make.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/make_malloc.c /builds/FreeBSD_stable_1= 0/contrib/bmake/meta.c /builds/FreeBSD_stable_10/contrib/bmake/parse.c /bui= lds/FreeBSD_stable_10/contrib/bmake/str.c /builds/FreeBSD_s--- usr.sbin.dep= end__D --- rm -f .depend --- usr.bin.depend__D --- table_10/contrib/bmake/strlist.c /builds/FreeBSD_stable_10/contrib/bmake/su= ff.c /builds/FreeBSD_stable_10/contrib/bmake/targ.c /builds/FreeBSD_stable_= 10/contrib/bmake/trace.c /builds/FreeBSD_stable_10/contrib/bmake/util.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/var.c /builds/FreeBSD_stable_10/contri= b/bmake/lst.lib/lstAppend.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib= /lstAtEnd.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstAtFront.c /b= uilds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstClose.c /builds/FreeBSD_st= able_10/contrib/bmake/lst.lib/lstConcat.c /builds/FreeBSD_stable_10/contrib= /bmake/lst.lib/lstDatum.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/l= stDeQueue.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstDestroy.c /b= uilds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstDupl.c /builds/FreeBSD_sta= ble_10/contrib/bmake/lst.lib/lstEnQueue.c /builds/FreeBSD_stable_10/contrib= /bmake/lst.lib/lstFind.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/ls= tFindFrom.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstFirst.c /bui= lds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstForEach.c /builds/FreeBSD_st= able_10/contrib/bmake/lst.lib/lstForEachFrom.c /builds/FreeBSD_stable_10/co= ntrib/bmake/lst.lib/lstInit.c /builds/FreeBSD_stable_10/contrib/bmake/lst.l= ib/lstInsert.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstIsAtEnd.c= /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstIsEmpty.c /builds/FreeB= SD_stable_10/contrib/bmake/lst.lib/lstLast.c /builds/FreeBSD_stable_10/cont= rib/bmake/lst.lib/lstMember.c /builds/FreeBSD_stable_10/contrib/bmake/lst.l= ib/lstNext.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstOpen.c /bui= lds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstPrev.c /builds/FreeBSD_stabl= e_10/contrib/bmake/lst.lib/lstRemove.c /builds/FreeBSD_stable_10/contrib/bm= ake/lst.lib/lstReplace.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/ls= tSucc.c /builds/FreeBSD_stable_10/contrib/bmake/stresep.c --- usr.sbin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -DACPI_EXEC_APP -I/builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys -std=3Dgnu99 /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/acpidb.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ac= pidb/../../../sys/contrib/dev/acpica/common/acgetline.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/common/ahids.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acp= ica/common/ahuuids.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../.= ./sys/contrib/dev/acpica/common/cmfsize.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/acpidb/../../../sys/contrib/dev/acpica/components/debugger/dbcmds.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acp= ica/components/debugger/dbconvert.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /acpidb/../../../sys/contrib/dev/acpica/components/debugger/dbdisply.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/= components/debugger/dbexec.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb= /../../../sys/contrib/dev/acpica/components/debugger/dbfileio.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/compone= nts/debugger/dbhistry.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../.= ./../sys/contrib/dev/acpica/components/debugger/dbinput.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/de= bugger/dbmethod.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../s= ys/contrib/dev/acpica/components/debugger/dbnames.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/debugger= /dbstats.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/cont= rib/dev/acpica/components/debugger/dbtest.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/debugger/dbutils= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/= acpica/components/debugger/dbxface.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/acpidb/../../../sys/contrib/dev/acpica/components/disassembler/dmbuffer.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/ac= pica/components/disassembler/dmcstyle.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/acpidb/../../../sys/contrib/dev/acpica/components/disassembler/dmdefer= red.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/d= ev/acpica/components/disassembler/dmnames.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/disassembler/dmo= bject.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/components/disassembler/dmopcode.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/disassembler/= dmresrc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contr= ib/dev/acpica/components/disassembler/dmresrcl.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/disassemble= r/dmresrcl2.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/c= ontrib/dev/acpica/components/disassembler/dmresrcs.c /builds/FreeBSD_stable= _10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/disasse= mbler/dmutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys= /contrib/dev/acpica/components/disassembler/dmwalk.c /builds/FreeBSD_stable= _10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatc= her/dsargs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/co= ntrib/dev/acpica/components/dispatcher/dscontrol.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatche= r/dsfield.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/con= trib/dev/acpica/components/dispatcher/dsinit.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatcher/ds= method.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contri= b/dev/acpica/components/dispatcher/dsmthdat.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatcher/dso= bject.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/components/dispatcher/dsopcode.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatcher/dsut= ils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/d= ev/acpica/components/dispatcher/dswexec.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatcher/dswload= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/= acpica/components/dispatcher/dswload2.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/acpidb/../../../sys/contrib/dev/acpica/components/dispatcher/dswscope.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/a= cpica/components/dispatcher/dswstate.c /builds/FreeBSD_stable_10/usr.sbin/a= cpi/acpidb/../../../sys/contrib/dev/acpica/components/events/evevent.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/= components/events/evglock.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/= ../../../sys/contrib/dev/acpica/components/events/evgpe.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/ev= ents/evgpeblk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys= /contrib/dev/acpica/components/events/evgpeinit.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/events/evg= peutil.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contri= b/dev/acpica/components/events/evhandler.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/events/evmisc.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpi= ca/components/events/evregion.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acp= idb/../../../sys/contrib/dev/acpica/components/events/evrgnini.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/compon= ents/events/evsci.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../..= /sys/contrib/dev/acpica/components/events/evxface.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/events/e= vxfevnt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contr= ib/dev/acpica/components/events/evxfregn.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/executer/exconfig= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/= acpica/components/executer/exconvrt.c /builds/FreeBSD_stable_10/usr.sbin/ac= pi/acpidb/../../../sys/contrib/dev/acpica/components/executer/excreate.c /b= uilds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpic= a/components/executer/exdebug.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acp= idb/../../../sys/contrib/dev/acpica/components/executer/exdump.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/compon= ents/executer/exfield.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../.= ./../sys/contrib/dev/acpica/components/executer/exfldio.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/ex= ecuter/exmisc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys= /contrib/dev/acpica/components/executer/exmutex.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/executer/e= xnames.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contri= b/dev/acpica/components/executer/exoparg1.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/executer/exoparg= 2.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev= /acpica/components/executer/exoparg3.c /builds/FreeBSD_stable_10/usr.sbin/a= cpi/acpidb/../../../sys/contrib/dev/acpica/components/executer/exoparg6.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpi= ca/components/executer/exprep.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acp= idb/../../../sys/contrib/dev/acpica/components/executer/exregion.c /builds/= FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/comp= onents/executer/exresnte.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/.= ./../../sys/contrib/dev/acpica/components/executer/exresolv.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/component= s/executer/exresop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../.= ./sys/contrib/dev/acpica/components/executer/exstore.c /builds/FreeBSD_stab= le_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/execu= ter/exstoren.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/= contrib/dev/acpica/components/executer/exstorob.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/executer/e= xsystem.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contr= ib/dev/acpica/components/executer/exutils.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/hardware/hwacpi.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/a= cpica/components/hardware/hwesleep.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/acpidb/../../../sys/contrib/dev/acpica/components/hardware/hwgpe.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/co= mponents/hardware/hwpci.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/..= /../../sys/contrib/dev/acpica/components/hardware/hwregs.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/h= ardware/hwsleep.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../s= ys/contrib/dev/acpica/components/hardware/hwvalid.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/hardware= /hwxface.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/cont= rib/dev/acpica/components/hardware/hwxfsleep.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/namespace/nsa= ccess.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/components/namespace/nsalloc.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/namespace/nsargum= ents.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/= dev/acpica/components/namespace/nsconvert.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/namespace/nsdump= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/= acpica/components/namespace/nseval.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/acpidb/../../../sys/contrib/dev/acpica/components/namespace/nsinit.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/= components/namespace/nsload.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpid= b/../../../sys/contrib/dev/acpica/components/namespace/nsnames.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/compon= ents/namespace/nsobject.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/..= /../../sys/contrib/dev/acpica/components/namespace/nsparse.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components= /namespace/nspredef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../= ../sys/contrib/dev/acpica/components/namespace/nsprepkg.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/na= mespace/nsrepair.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../= sys/contrib/dev/acpica/components/namespace/nsrepair2.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/name= space/nssearch.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sy= s/contrib/dev/acpica/components/namespace/nsutils.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/namespac= e/nswalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/cont= rib/dev/acpica/components/namespace/nsxfeval.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/namespace/nsx= fname.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/components/namespace/nsxfobj.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/parser/psargs.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpi= ca/components/parser/psloop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpid= b/../../../sys/contrib/dev/acpica/components/parser/psobject.c /builds/Free= BSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/componen= ts/parser/psopcode.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../.= ./sys/contrib/dev/acpica/components/parser/psopinfo.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/parser= /psparse.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/cont= rib/dev/acpica/components/parser/psscope.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/parser/pstree.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpi= ca/components/parser/psutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpi= db/../../../sys/contrib/dev/acpica/components/parser/pswalk.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/component= s/parser/psxface.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../= sys/contrib/dev/acpica/components/resources/rsaddr.c /builds/FreeBSD_stable= _10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/resourc= es/rscalc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/con= trib/dev/acpica/components/resources/rscreate.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/resources/rs= dump.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/= dev/acpica/components/resources/rsdumpinfo.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/resources/rsinf= o.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev= /acpica/components/resources/rsio.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /acpidb/../../../sys/contrib/dev/acpica/components/resources/rsirq.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/co= mponents/resources/rslist.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/= ../../../sys/contrib/dev/acpica/components/resources/rsmemory.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/compone= nts/resources/rsmisc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../..= /../sys/contrib/dev/acpica/components/resources/rsserial.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/r= esources/rsutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../= sys/contrib/dev/acpica/components/resources/rsxface.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/tables= /tbdata.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contr= ib/dev/acpica/components/tables/tbfadt.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/acpidb/../../../sys/contrib/dev/acpica/components/tables/tbfind.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica= /components/tables/tbinstal.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpid= b/../../../sys/contrib/dev/acpica/components/tables/tbprint.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/component= s/tables/tbutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../= sys/contrib/dev/acpica/components/tables/tbxface.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/tables/tb= xfload.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contri= b/dev/acpica/components/utilities/utaddress.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilities/utal= loc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/d= ev/acpica/components/utilities/utbuffer.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilities/utcache.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/a= cpica/components/utilities/utcopy.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /acpidb/../../../sys/contrib/dev/acpica/components/utilities/utdebug.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/= components/utilities/utdecode.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acp= idb/../../../sys/contrib/dev/acpica/components/utilities/utdelete.c /builds= /FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/com= ponents/utilities/uterror.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/= ../../../sys/contrib/dev/acpica/components/utilities/uteval.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/component= s/utilities/utexcep.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../= ../sys/contrib/dev/acpica/components/utilities/utfileio.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/ut= ilities/utglobal.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../= sys/contrib/dev/acpica/components/utilities/uthex.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilitie= s/utids.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contr= ib/dev/acpica/components/utilities/utinit.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilities/utlock= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/= acpica/components/utilities/utmath.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/acpidb/../../../sys/contrib/dev/acpica/components/utilities/utmisc.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/= components/utilities/utmutex.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpi= db/../../../sys/contrib/dev/acpica/components/utilities/utobject.c /builds/= FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/comp= onents/utilities/utosi.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../= ../../sys/contrib/dev/acpica/components/utilities/utownerid.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/component= s/utilities/utpredef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../..= /../sys/contrib/dev/acpica/components/utilities/utprint.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/ut= ilities/utresrc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../s= ys/contrib/dev/acpica/components/utilities/utstate.c /builds/FreeBSD_stable= _10/usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utiliti= es/utstring.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/c= ontrib/dev/acpica/components/utilities/uttrack.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilities/u= tuuid.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/components/utilities/utxface.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/acpidb/../../../sys/contrib/dev/acpica/components/utilities/utxferr= or.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib/de= v/acpica/components/utilities/utxfinit.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/acpidb/../../../sys/contrib/dev/acpica/os_specific/service_layers/osl= ibcfs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb/../../../sys/contrib= /dev/acpica/os_specific/service_layers/osunixxf.c --- tests.depend__D --- --- .depend.aio_kqueue_test --- rm -f .depend.aio_kqueue_test CC=3D'cc ' mkdep -f .depend.aio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_kqueue_= test.c echo aio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.aio_kqueue_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dlio_kque= ue_test DEPENDFILE=3D.depend.lio_kqueue_test .MAKE.DEPENDFILE=3D.depend.li= o_kqueue_test depend) --- .depend.lio_kqueue_test --- rm -f .depend.lio_kqueue_test CC=3D'cc ' mkdep -f .depend.lio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/lio_kqueue_= test.c echo lio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.lio_kqueue_test =3D=3D=3D> tests/sys/fifo (depend) (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_c= reate DEPENDFILE=3D.depend.fifo_create .MAKE.DEPENDFILE=3D.depend.fifo_cre= ate depend) --- .depend.fifo_create --- rm -f .depend.fifo_create CC=3D'cc ' mkdep -f .depend.fifo_create -a -std=3Dgnu99 /builds/FreeB= SD_stable_10/tests/sys/fifo/fifo_create.c echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- sys.depend__D --- echo userboot.so: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sy= s/boot/userboot/userboot/../ficl/libficl.a /builds/FreeBSD_stable_10/obj/bu= ilds/FreeBSD_stable_10/sys/boot/userboot/userboot/../zfs/libzfsboot.a /buil= ds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/userboot/userboo= t/../libstand/libstand.a >> .depend =3D=3D=3D> sys/boot/ficl32 (depend) --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/ficl32/../../i386/include machine --- softcore.c --- (cd /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/softwords; cat softco= re.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr ifbrack.fr | awk -f so= ftcore.awk -v datestamp=3D"`LC_ALL=3DC date`") > softcore.c --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I. -I/builds/FreeBSD_stable_10/sys/boot/= ficl32/../ficl -I/builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/i386 -I/= builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/../common -std=3Dgnu99 /= builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/dict.c /builds/FreeBSD_sta= ble_10/sys/boot/ficl32/../ficl/ficl.c /builds/FreeBSD_stable_10/sys/boot/fi= cl32/../ficl/fileaccess.c /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl= /float.c /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/loader.c /builds= /FreeBSD_stable_10/sys/boot/ficl32/../ficl/math64.c /builds/FreeBSD_stable_= 10/sys/boot/ficl32/../ficl/prefix.c /builds/FreeBSD_stable_10/sys/boot/ficl= 32/../ficl/search.c /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/stack= .c /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/tools.c /builds/FreeBS= D_stable_10/sys/boot/ficl32/../ficl/vm.c /builds/FreeBSD_stable_10/sys/boot= /ficl32/../ficl/words.c /builds/FreeBSD_stable_10/sys/boot/ficl32/../ficl/i= 386/sysdep.c softcore.c --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test --- sys.depend__D --- =3D=3D=3D> sys/boot/ficl (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- sys.depend__D --- --- softcore.c --- (cd /builds/FreeBSD_stable_10/sys/boot/ficl/softwords; cat softcore.fr jhlo= cal.fr marker.fr freebsd.fr ficllocal.fr ifbrack.fr | awk -f softcore.awk= -v datestamp=3D"`LC_ALL=3DC date`") > softcore.c --- tests.depend__D --- --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- sys.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/sys/boot/ficl= -I/builds/FreeBSD_stable_10/sys/boot/ficl/amd64 -I/builds/FreeBSD_stable_1= 0/sys/boot/ficl/../common -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot= /ficl/dict.c /builds/FreeBSD_stable_10/sys/boot/ficl/ficl.c /builds/FreeBSD= _stable_10/sys/boot/ficl/fileaccess.c /builds/FreeBSD_stable_10/sys/boot/fi= cl/float.c /builds/FreeBSD_stable_10/sys/boot/ficl/loader.c /builds/FreeBSD= _stable_10/sys/boot/ficl/math64.c /builds/FreeBSD_stable_10/sys/boot/ficl/p= refix.c /builds/FreeBSD_stable_10/sys/boot/ficl/search.c /builds/FreeBSD_st= able_10/sys/boot/ficl/stack.c /builds/FreeBSD_stable_10/sys/boot/ficl/tools= .c /builds/FreeBSD_stable_10/sys/boot/ficl/vm.c /builds/FreeBSD_stable_10/s= ys/boot/ficl/words.c /builds/FreeBSD_stable_10/sys/boot/ficl/amd64/sysdep.c= softcore.c --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sys.depend__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/ficl *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot 1 error make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sys 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sys *** [sys.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo make: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/bmake *** [depend_subdir_bmake] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Mon Nov 30 15:36:52 2015 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 CF982A3D3FD for ; Mon, 30 Nov 2015 15:36:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id BE2991094; Mon, 30 Nov 2015 15:36:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 30C281BC3; Mon, 30 Nov 2015 15:36:52 +0000 (UTC) Date: Mon, 30 Nov 2015 15:36:49 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: rmacklem@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <657574842.307.1448897811165.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1422321910.299.1448887236966.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1422321910.299.1448887236966.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1853 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 15:36:53 -0000 FreeBSD_stable_10 - Build #1853 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1853/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1853/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1853/cons= ole Change summaries: 291489 by rmacklem: MFC: r290959 When the smbfs iod thread (smb_iod_thread()) is shutting down, smb_iod_dest= roy() would call smb_iod_request(). This call could return as soon as the wakeup(evp) in smb_iod_main() call is done and then could destroy the mutexes. This caused a race with the rest of smb_iod_main()s use of these mutexes. A crash reported on freebsd-stable@ by Christian Kratzer was diagnosed as a use of one of these mutexes after it was destroyed. This patch moves destruction of the mutexes from smb_iod_destroy() to the end of smb_iod_thread(), so that they aren't destroyed before the thread is done with them. Christian comfirmed that the patch stopped the crashes from happening. The end of the build log: [...truncated 117958 lines...] --- usr.sbin.depend__D --- --- aslcompilerlex.c --- lex -i -s -PAslCompiler -oaslcompilerlex.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslcompiler.l --- tests.depend__D --- =3D=3D=3D> tests/sys/aio (depend) (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_test= DEPENDFILE=3D.depend.aio_test .MAKE.DEPENDFILE=3D.depend.aio_test depen= d) --- .depend.aio_test --- rm -f .depend.aio_test CC=3D'cc ' mkdep -f .depend.aio_test -a -I/builds/FreeBSD_stable_10/test= s -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_test.c echo aio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/private/libatf-c.a >> .depend.aio_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_kque= ue_test DEPENDFILE=3D.depend.aio_kqueue_test .MAKE.DEPENDFILE=3D.depend.ai= o_kqueue_test depend) --- .depend.aio_kqueue_test --- rm -f .depend.aio_kqueue_test CC=3D'cc ' mkdep -f .depend.aio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_kqueue_= test.c --- usr.sbin.depend__D --- --- aslcompiler.y --- m4 -P -I/builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/compiler/aslparser.y > aslcompiler.y --- dtparserlex.c --- lex -i -s -PDtParser -odtparserlex.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/dtparser.l --- dtparserparse.c --- yacc -d -pDtParser -odtparserparse.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/dtparser.y --- tests.depend__D --- echo aio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.aio_kqueue_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dlio_kque= ue_test DEPENDFILE=3D.depend.lio_kqueue_test .MAKE.DEPENDFILE=3D.depend.li= o_kqueue_test depend) --- usr.sbin.depend__D --- --- prparserlex.c --- lex -i -s -PPrParser -oprparserlex.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/prparser.l --- prparserparse.c --- yacc -d -pPrParser -oprparserparse.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/prparser.y --- tests.depend__D --- --- .depend.lio_kqueue_test --- rm -f .depend.lio_kqueue_test CC=3D'cc ' mkdep -f .depend.lio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/lio_kqueue_= test.c --- usr.sbin.depend__D --- --- aslcompilerparse.c --- yacc -d -pAslCompiler -oaslcompilerparse.c aslcompiler.y --- tests.depend__D --- echo lio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.lio_kqueue_test =3D=3D=3D> tests/sys/fifo (depend) (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_c= reate DEPENDFILE=3D.depend.fifo_create .MAKE.DEPENDFILE=3D.depend.fifo_cre= ate depend) --- usr.sbin.depend__D --- yacc: 89 shift/reduce conflicts. --- tests.depend__D --- --- .depend.fifo_create --- rm -f .depend.fifo_create CC=3D'cc ' mkdep -f .depend.fifo_create -a -std=3Dgnu99 /builds/FreeB= SD_stable_10/tests/sys/fifo/fifo_create.c echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- usr.sbin.depend__D --- --- dtparser.y.h --- ln -f dtparserparse.h dtparser.y.h --- prparser.y.h --- ln -f prparserparse.h prparser.y.h --- aslcompiler.y.h --- ln -f aslcompilerparse.h aslcompiler.y.h --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DACPI_ASL_COMPILER -I. -I/builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys -std=3Dgnu99 /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/adfile.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/common/adisasm.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/common/adwalk.c /builds/FreeBSD_stable_10/usr.sbin/ac= pi/iasl/../../../sys/contrib/dev/acpica/common/ahids.c /builds/FreeBSD_stab= le_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/ahpredef.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/common/ahtable.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/common/ahuuids.c /builds/FreeBSD_stable_10/usr.sbin/ac= pi/iasl/../../../sys/contrib/dev/acpica/common/cmfsize.c /builds/FreeBSD_st= able_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/dmextern.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/common/dmrestag.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/common/dmtable.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/common/dmtbdump.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/common/dmtbi= nfo.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev= /acpica/common/getopt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../= ../sys/contrib/dev/acpica/compiler/aslanalyze.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslascii.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= piler/aslbtypes.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/compiler/aslcodegen.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslcompile.c aslcompil= erlex.c aslcompilerparse.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../= ../../sys/contrib/dev/acpica/compiler/aslerror.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslfileio.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= ompiler/aslfiles.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/compiler/aslfold.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslhex.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/asll= ength.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler/asllisting.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/compiler/asllistsup.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslload.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/compiler/asllookup.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../..= /../sys/contrib/dev/acpica/compiler/aslmain.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslmap.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compile= r/aslmapenter.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/compiler/aslmapoutput.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslmaputils.c /builds/= FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compil= er/aslmessages.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/= contrib/dev/acpica/compiler/aslmethod.c /builds/FreeBSD_stable_10/usr.sbin/= acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslnamesp.c /builds/Free= BSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/a= sloffset.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contri= b/dev/acpica/compiler/aslopcodes.c /builds/FreeBSD_stable_10/usr.sbin/acpi/= iasl/../../../sys/contrib/dev/acpica/compiler/asloperands.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslo= pt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/asloptions.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/compiler/aslpredef.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslprepkg.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/compiler/aslprintf.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../.= ./sys/contrib/dev/acpica/compiler/aslprune.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslresource.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= piler/aslrestype1.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/compiler/aslrestype1i.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslrestype2.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/co= mpiler/aslrestype2d.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/compiler/aslrestype2e.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslrestype2q.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /compiler/aslrestype2s.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../..= /../sys/contrib/dev/acpica/compiler/aslrestype2w.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslstartup.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/compiler/aslstubs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/compiler/asltransform.c /builds/FreeBSD_stable_10/u= sr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/asltree.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/comp= iler/aslutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/compiler/asluuid.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/compiler/aslwalks.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/aslxr= ef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/dtcompile.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/..= /../../sys/contrib/dev/acpica/compiler/dtexpress.c /builds/FreeBSD_stable_1= 0/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtfield.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= ompiler/dtio.c dtparserlex.c dtparserparse.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtsubtable.c /build= s/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/comp= iler/dttable.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/co= ntrib/dev/acpica/compiler/dttemplate.c /builds/FreeBSD_stable_10/usr.sbin/a= cpi/iasl/../../../sys/contrib/dev/acpica/compiler/dtutils.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/prex= press.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/compiler/prmacros.c prparserlex.c prparserparse.c /builds/FreeBSD= _stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compiler/prsc= an.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/compiler/prutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../.= ./../sys/contrib/dev/acpica/components/debugger/dbfileio.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dis= assembler/dmbuffer.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/disassembler/dmcstyle.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disa= ssembler/dmdeferred.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/disassembler/dmnames.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disa= ssembler/dmopcode.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/components/disassembler/dmresrc.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disass= embler/dmresrcl.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/disassembler/dmresrcl2.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disass= embler/dmresrcs.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/disassembler/dmutils.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/disassem= bler/dmwalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/con= trib/dev/acpica/components/dispatcher/dsargs.c /builds/FreeBSD_stable_10/us= r.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsco= ntrol.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/dispatcher/dsfield.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsobject.= c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acp= ica/components/dispatcher/dsopcode.c /builds/FreeBSD_stable_10/usr.sbin/acp= i/iasl/../../../sys/contrib/dev/acpica/components/dispatcher/dsutils.c /bui= lds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/co= mponents/dispatcher/dswexec.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/= ../../../sys/contrib/dev/acpica/components/dispatcher/dswload.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/component= s/dispatcher/dswload2.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../= ../sys/contrib/dev/acpica/components/dispatcher/dswscope.c /builds/FreeBSD_= stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/dis= patcher/dswstate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/components/executer/exconvrt.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/e= xcreate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib= /dev/acpica/components/executer/exdump.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exmisc.c /bu= ilds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/c= omponents/executer/exmutex.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/components/executer/exnames.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/e= xecuter/exoparg1.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sy= s/contrib/dev/acpica/components/executer/exoparg2.c /builds/FreeBSD_stable_= 10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/e= xoparg3.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib= /dev/acpica/components/executer/exoparg6.c /builds/FreeBSD_stable_10/usr.sb= in/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exprep.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /components/executer/exresnte.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/executer/exresolv.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/componen= ts/executer/exresop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/executer/exstore.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer= /exstoren.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contr= ib/dev/acpica/components/executer/exstorob.c /builds/FreeBSD_stable_10/usr.= sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/executer/exsystem= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/ac= pica/components/executer/exutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/= iasl/../../../sys/contrib/dev/acpica/components/parser/psargs.c /builds/Fre= eBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/component= s/parser/psloop.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys= /contrib/dev/acpica/components/parser/psobject.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/parser/psopco= de.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/components/parser/psopinfo.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /iasl/../../../sys/contrib/dev/acpica/components/parser/psparse.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compone= nts/parser/psscope.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/parser/pstree.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/parser/psuti= ls.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/= acpica/components/parser/pswalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/i= asl/../../../sys/contrib/dev/acpica/components/namespace/nsaccess.c /builds= /FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compo= nents/namespace/nsalloc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../.= ./../sys/contrib/dev/acpica/components/namespace/nsdump.c /builds/FreeBSD_s= table_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/name= space/nsnames.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/components/namespace/nsobject.c /builds/FreeBSD_stable_10= /usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/namespace/ns= parse.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/namespace/nssearch.c /builds/FreeBSD_stable_10/usr.sbi= n/acpi/iasl/../../../sys/contrib/dev/acpica/components/namespace/nsutils.c = /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpic= a/components/namespace/nswalk.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/tables/tbdata.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/t= ables/tbfadt.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/co= ntrib/dev/acpica/components/tables/tbinstal.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/tables/tbprint.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/components/tables/tbutils.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl= /../../../sys/contrib/dev/acpica/components/tables/tbxface.c /builds/FreeBS= D_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/u= tilities/utaddress.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../= sys/contrib/dev/acpica/components/utilities/utalloc.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilitie= s/utbuffer.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/cont= rib/dev/acpica/components/utilities/utcache.c /builds/FreeBSD_stable_10/usr= .sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utcopy= .c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/ac= pica/components/utilities/utdebug.c /builds/FreeBSD_stable_10/usr.sbin/acpi= /iasl/../../../sys/contrib/dev/acpica/components/utilities/utdecode.c /buil= ds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/com= ponents/utilities/utdelete.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/.= ./../../sys/contrib/dev/acpica/components/utilities/uterror.c /builds/FreeB= SD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/= utilities/utexcep.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../s= ys/contrib/dev/acpica/components/utilities/utfileio.c /builds/FreeBSD_stabl= e_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilitie= s/utglobal.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/cont= rib/dev/acpica/components/utilities/uthex.c /builds/FreeBSD_stable_10/usr.s= bin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utinit.c= /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpi= ca/components/utilities/utlock.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ia= sl/../../../sys/contrib/dev/acpica/components/utilities/utmath.c /builds/Fr= eeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/componen= ts/utilities/utmisc.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../..= /sys/contrib/dev/acpica/components/utilities/utmutex.c /builds/FreeBSD_stab= le_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utiliti= es/utobject.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/con= trib/dev/acpica/components/utilities/utownerid.c /builds/FreeBSD_stable_10/= usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utp= redef.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/d= ev/acpica/components/utilities/utprint.c /builds/FreeBSD_stable_10/usr.sbin= /acpi/iasl/../../../sys/contrib/dev/acpica/components/utilities/utresrc.c /= builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica= /components/utilities/utstate.c /builds/FreeBSD_stable_10/usr.sbin/acpi/ias= l/../../../sys/contrib/dev/acpica/components/utilities/utstring.c /builds/F= reeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/compone= nts/utilities/utuuid.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../.= ./sys/contrib/dev/acpica/components/utilities/utxface.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/components/utilit= ies/utxferror.c /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl/../../../sys/c= ontrib/dev/acpica/os_specific/service_layers/oslibcfs.c /builds/FreeBSD_sta= ble_10/usr.sbin/acpi/iasl/../../../sys/contrib/dev/acpica/os_specific/servi= ce_layers/osunixxf.c --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- usr.bin.depend__D --- echo tblgen: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/= clang/tblgen/../../../lib/clang/libllvmtablegen/libllvmtablegen.a /builds/F= reeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/tblgen/../../..= /lib/clang/libllvmsupport/libllvmsupport.a /builds/FreeBSD_stable_10/obj/bu= ilds/FreeBSD_stable_10/tmp/usr/lib/libncurses.a >> .depend echo tblgen: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc++.a >> .depend --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test --- usr.bin.depend__D --- --- depend_subdir_cmp --- =3D=3D=3D> usr.bin/cmp (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/cmp/tests (depend) --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/cmp/cmp.c /builds/FreeBSD_stable_10/usr.bin/cmp/link.c /builds/Fre= eBSD_stable_10/usr.bin/cmp/misc.c /builds/FreeBSD_stable_10/usr.bin/cmp/reg= ular.c /builds/FreeBSD_stable_10/usr.bin/cmp/special.c --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) --- usr.sbin.depend__D --- --- depend_subdir_amd --- --- depend_subdir_amd --- =3D=3D=3D> usr.sbin/amd/amd (depend) --- usr.bin.depend__D --- echo cmp: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend --- depend_subdir_col --- =3D=3D=3D> usr.bin/col (depend) --- tests.depend__D --- =3D=3D=3D> tests/sys/kern/acct (depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/col/tests (depend) --- usr.sbin.depend__D --- --- mount_xdr.c --- RPCGEN_CPP=3Dcpp\ rpcgen -c -DWANT_NFS3 /builds/FreeBSD_stable_10/obj/buil= ds/FreeBSD_stable_10/tmp/usr/include/rpcsvc/mount.x -o mount_xdr.c --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) --- usr.sbin.depend__D --- --- conf_parse.c --- yacc -d -o conf_parse.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../..= /contrib/amd/amd/conf_parse.y --- usr.bin.depend__D --- --- .depend --- --- tests.depend__D --- make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct --- usr.bin.depend__D --- rm -f .depend --- tests.depend__D --- *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys --- usr.bin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/col/col.c --- tests.depend__D --- *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd/amd *** [depend_subdir_amd] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd *** [depend_subdir_amd] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin --- usr.bin.depend__D --- echo col: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/col *** [depend_subdir_col] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- --- depend_subdir_acpi --- echo iasl: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/iasl *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 2 errors make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 3 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Mon Nov 30 21:23:36 2015 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 450C0A3DC6D; Mon, 30 Nov 2015 21:23:36 +0000 (UTC) (envelope-from dudu.meyer@gmail.com) Received: from mail-ob0-x22d.google.com (mail-ob0-x22d.google.com [IPv6:2607:f8b0:4003:c01::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0D57A128A; Mon, 30 Nov 2015 21:23:36 +0000 (UTC) (envelope-from dudu.meyer@gmail.com) Received: by obbnk6 with SMTP id nk6so138396413obb.2; Mon, 30 Nov 2015 13:23:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=B3m4+Q//6CS2fMcR17SUi5XsGVb1E6tcC1MbYNOYsZc=; b=kc1GzlZXrH1tHedARr6StZWfApr86RwnDy1Ajw9VoCZ0jUQPWxcyGfKmY7K8II4n3K BPNnNybldIqg7hETqmrhFoGNpYHKz/URvcDU0Ja4ci1FzUHIYHYZSvjtzNS//jT4K/Ug iIF0RMJA1ZP83g84YviazOT8MHU5DzOai6mKdIqtTXeQYTs3cJTRmkHwMVQ8h6iEeeW7 IwRvLUOfuumq3sbbh0z5ncZAwPQG+5e2BMRpEMmUXGV7CdxIFoOT0fnpFC/s7GreDZEx F7Qn3V+4u/4vCYakP2q5j5Ji4qzqwRmagtYUNs7fhqKctpoZnKqUnwoqb1/9/IusfeyW PB9g== MIME-Version: 1.0 X-Received: by 10.60.92.138 with SMTP id cm10mr44848386oeb.64.1448918615468; Mon, 30 Nov 2015 13:23:35 -0800 (PST) Received: by 10.182.116.167 with HTTP; Mon, 30 Nov 2015 13:23:35 -0800 (PST) In-Reply-To: References: Date: Mon, 30 Nov 2015 19:23:35 -0200 Message-ID: Subject: Re: Netmap vale + bridge on -STABLE From: Eduardo Meyer To: freebsd-stable@freebsd.org, "freebsd-net@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:23:36 -0000 OK, I am running current now. If I run: tcpdump -ni vale0:2 -w /tmp/2 & tcpdump -ni vale0:1 -w /tmp/1 & pkt-gen -i vale0:0 -f tx I get half of all generated traffic on /tmp/2 and the other half of /tmp/1. I guess this is the expected behavior, different from what I expected. Is that the expected behavior? Is there a way to create a VALE port that will mirror the traffic? Or is there a way to run the pcap enabled application (tcpdump in this case) in netmap mode (pcap netmap) without removing the packets from the ring? Say, I want to be table to run: pkt-gen -i vale0:0 -f tx pkt-gen -i vale0:1 -f rx tcpdump -ni vale0:2 -w /tmp/1 and have a copy of all traffic on /tmp/1. In the above tests, if I run: pkt-gen -i vale0:0 -f tx pkt-gen -i vale0:1 -f rx tcpdump -ni vale0:1 -w /tmp/1 tcpdump will remove as many packets as it can from the ring, and rx rates will drop to 0 or close to it (the ramaining rate is what tcpdump can not process) thank you On Fri, Nov 27, 2015 at 3:50 PM, Eduardo Meyer wrote: > Hello, > > I am trying to achieve a netmap based bridge which will allow me to > capture packets from it, say, I want to bridge ix0 + ix1 and be able to > tcpdump it (in fact I want to run other applications which are netmap > aware). > > Should it work on -STABLE? Because as far as I remember I could make it > work in the past, and some other people[1] had some success doing it too > (at least the vale + wire bridge part) > > What I get is an error while opening ix0 connected to vale: > > # ./vale-ctl > 257.967371 bdg_ctl [148] bridge:0 port:0 vale0:fnm0 > 257.967399 bdg_ctl [148] bridge:0 port:1 vale0:ids0 > 257.967407 bdg_ctl [148] bridge:0 port:2 vale0:ix0 > 257.967414 bdg_ctl [148] bridge:1 port:0 vale1:fnm1 > 257.967419 bdg_ctl [148] bridge:1 port:1 vale1:ids1 > 257.967428 bdg_ctl [148] bridge:1 port:2 vale1:ix1 > > # ./bridge -i netmap:ix0 -i netmap:ix1 > ./bridge built Nov 26 2015 19:18:34 > 268.504787 nm_open [839] NIOCREGIF failed: Device busy ix0 > 268.504800 main [233] cannot open netmap:ix0 > Exit 1 > > How can I achieve it? Is it ok to expect to have another netmap capable > software (say like suricata) to use this other vale connected port? Or will > both software (bridge and suricata) concurrently copy and remove packets > from netmap rings and therefore mess up the whole thing? > > [1] > https://lists.openinfosecfoundation.org/pipermail/oisf-users/2015-October/005310.html > > > -- > =========== > Eduardo Meyer > pessoal: dudu.meyer@gmail.com > profissional: ddm.farmaciap@saude.gov.br > -- =========== Eduardo Meyer pessoal: dudu.meyer@gmail.com profissional: ddm.farmaciap@saude.gov.br From owner-freebsd-stable@freebsd.org Tue Dec 1 00:40:36 2015 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 9F3F9A3A59F for ; Tue, 1 Dec 2015 00:40:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 877331BE7; Tue, 1 Dec 2015 00:40:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 771F31D2B; Tue, 1 Dec 2015 00:40:35 +0000 (UTC) Date: Tue, 1 Dec 2015 00:40:33 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mav@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1184733229.325.1448930434740.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <657574842.307.1448897811165.JavaMail.jenkins@jenkins-9.freebsd.org> References: <657574842.307.1448897811165.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1854 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 00:40:36 -0000 FreeBSD_stable_10 - Build #1854 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1854/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1854/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1854/console Change summaries: 291543 by mav: MFC r291143: Update Qlogic 23XX firmware from 3.03.26 to 3.03.28 291542 by mav: MFC r291132: Update firmware for QLogic 22xx from 2.02.06 to 2.02.08. 291541 by mav: MFC r289755: Remove residual verbosity. firmware_register() already reports errors. 291532 by mav: MFC r291365, r291369: One more round of port scanner rewrite. - Make scan aborted by event restart immediately and infinitely. - Improve handling of some loop events from firmware. - Remove loop down timer, adding its functionality to scanner thread. - Some more unification and simplification. 291531 by mav: MFC r291265: Rename ASYNC_LIP_F8 to ASYNC_LIP_NOS_OLS_RECV. New name better repsents its meaning for modern chips. 291530 by mav: MFC r291221: Remove "disable" hint, which duplicates system-wide "disabled". 291529 by mav: MFC r291209: Fix target mode support for Qlogic 2200 FC adapters. Now target mode works for all supported FC adapters except ancient 2100, which is not tested. 291528 by mav: MFC r291188: Rip off target mode support for parallel SCSI QLogic adapters. Hacks to enable target mode there complicated code, while didn't really work. And for outdated hardware fixing it is not really interesting. Initiator mode tested with Qlogic 1080 adapter is still working fine. 291526 by mav: MFC r290138, r290139: Some updates to isp(4) manual page. 291524 by mav: MFC r275374: Document ISP 2532 support and hint.isp.0.vports tunable. 291523 by mav: MFC r291163: Explicitly call SEND CHANGE REQUEST for pre-24xx chips in target mode. While later firmware always registers for RSCN requests, older one does it only in initiator mode. But in target mode there RSCN can be the only way to detect gone intiator. 291522 by mav: MFC r291162: Generate fake ISPASYNC_CHANGE_PDB on fake login on pre-24xx. This makes port scanner fix absent port ID for added initiator. 291521 by mav: MFC r291161: Gracefully stop firmware before resetting chip when changing role. 291520 by mav: MFC r291160: Add some more asynchronous event status codes. 291519 by mav: MFC r291159: Add more mailbox command codes. 291518 by mav: MFC r291147: Increase maximal value of vports tunable to 254. I am not sure this value is really viable yet, but that is what chips officially support in NPIV mode (in loop mode maximum is 125). 291517 by mav: MFC r291144: Fix target mode with fabric for pre-24xx chips. For those chips we are not receiving login events, adding initiators based on ATIO requests. But there is no port ID in that structure, so in fabric mode we have to explicitly fetch it from firmware to be able to do normal scan after that. 291516 by mav: MFC r291099: Some cosmetics for ancient cards. 291515 by mav: MFC r291092: Optimize SNS_GID_FT request scratch memory usage. Now with present 4K of scratch we can fetch up to 508 ports (16 more). 291514 by mav: MFC r291080: Another round of port scanner rewrite. This change simplifies and unifies port adding/updating for loop and fabric scanners. It also fixes problems with scanning restarts due to concurrent port databases changes. It also fixes many cosmetic issues. 291513 by mav: MFC r291014: Simplify fabric tasting code. Except cosmetic changes this removes fabric ports from our port database. It is always firmware duty to manage them, so driver don't need to worry. 291512 by mav: MFC r291013: Remove some confusions between loopid and nphdl. Modern cards in most cases operate abstract port handles, that have no any relation to real loop IDs. Leave loopid used only where it really goes about local loop IDs. While there, fix few more cases where LUNs were still printed in decimal. 291511 by mav: MFC r291000: Register our FC4 Features in SNS. 291510 by mav: MFC r290993, r290994: Unify and cleanup FC ports scan. 291509 by mav: MFC r290981: Off-by-one correctiont to r290980. 291508 by mav: MFC r290980: Make firmware handle virtual ports SNS logins for us. 291507 by mav: MFC r290978: Add real initial support for RQSTYPE_RPT_ID_ACQ. 291506 by mav: MFC r290830: Fix/improve CRN tracking. 291505 by mav: MFC r290507: Rework r290504. 291504 by mav: MFC r290506: Specify VP when sending a marker. 291503 by mav: MFC r290504: Make ISP_SLEEP() really sleep instead of spinning. While there, simplify the wait logic. 291502 by mav: MFC r290160: Remove some unneeded code. 291501 by mav: MFC r290159: Remove reset delays for which I see neither explanation nor need. 291500 by mav: MFC r290147: Fix and improve error masking and reporting. 291499 by mav: MFC r290118: Change the way how target mode is enabled on 23xx chips. Without docs I am not completely sure about this, but on my tests new method works better then previous, at least with our latest firmware. 291498 by mav: MFC r290104: Improve/fix loop scanning routine. For the most of chips (except anscient ones) port handlers have no relation to port IDs. In such situation old code scanning first 125 handlers was quite naive. Instead of doing that, send to chip single request to get full list of port handlers available on specific virtual port and scan only them. Old code had problems with case of several virtual ports enabled, when port handlers allocated from global address space could easily go above 125. This change was successfully tested on 23xx, 24xx and 25xx chips in loop mode with 4 virtual initiator ports, each seing 50 virtual target ports. 291497 by mav: MFC r289138: Remove legacy CHS geometry from dmesg and unify capacity outputs. 291496 by mav: MFC r291383: Fix panic when trying to sort unsupported command in OOA queue. Handle unsupported commands as not conflicting/blocking. The end of the build log: [...truncated 116070 lines...] --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC='cc ' mkdep -f .depend.fifo_misc -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/fifo/fifo_misc.c --- usr.bin.depend__D --- echo bzip2: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libbz2.a >> .depend --- depend_subdir_bzip2recover --- ===> usr.bin/bzip2recover (depend) --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend.fifo_misc --- usr.bin.depend__D --- --- .depend --- --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_stable_10/tests/sys/fifo/Makefile _RECURSING_PROGS= SUBDIR= PROG=fifo_open DEPENDFILE=.depend.fifo_open .MAKE.DEPENDFILE=.depend.fifo_open depend) --- usr.bin.depend__D --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/usr.bin/bzip2recover/../../contrib/bzip2/bzip2recover.c --- tests.depend__D --- --- .depend.fifo_open --- rm -f .depend.fifo_open CC='cc ' mkdep -f .depend.fifo_open -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/fifo/fifo_open.c --- sbin.depend__D --- echo rtsol: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- usr.bin.depend__D --- echo bzip2recover: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- sbin.depend__D --- --- depend_subdir_savecore --- ===> sbin/savecore (depend) --- usr.bin.depend__D --- --- depend_subdir_c89 --- ===> usr.bin/c89 (depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/sbin/savecore/savecore.c --- tests.depend__D --- echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend.fifo_open ===> tests/sys/file (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/usr.bin/c89/c89.c --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=flock_helper DEPENDFILE=.depend.flock_helper .MAKE.DEPENDFILE=.depend.flock_helper depend) --- usr.bin.depend__D --- echo c89: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- tests.depend__D --- --- .depend.flock_helper --- --- usr.bin.depend__D --- --- depend_subdir_c99 --- --- tests.depend__D --- rm -f .depend.flock_helper --- usr.bin.depend__D --- ===> usr.bin/c99 (depend) --- tests.depend__D --- CC='cc ' mkdep -f .depend.flock_helper -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/flock_helper.c --- sbin.depend__D --- echo savecore: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libz.a >> .depend --- depend_subdir_setkey --- ===> sbin/setkey (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/usr.bin/c99/c99.c --- sbin.depend__D --- --- parse.c --- yacc -d /builds/FreeBSD_stable_10/sbin/setkey/parse.y --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=ftruncate_test DEPENDFILE=.depend.ftruncate_test .MAKE.DEPENDFILE=.depend.ftruncate_test depend) --- sbin.depend__D --- cp y.tab.c parse.c --- usr.bin.depend__D --- echo c99: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- sbin.depend__D --- --- token.c --- lex -otoken.c /builds/FreeBSD_stable_10/sbin/setkey/token.l --- usr.bin.depend__D --- --- depend_subdir_calendar --- ===> usr.bin/calendar (depend) --- tests.depend__D --- --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC='cc ' mkdep -f .depend.ftruncate_test -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/ftruncate_test.c --- usr.bin.depend__D --- --- _sub.depend --- ===> usr.bin/calendar/tests (depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/sbin/setkey -I/builds/FreeBSD_stable_10/sbin/setkey/../../lib/libipsec -I/builds/FreeBSD_stable_10/sbin/setkey/../../lib/libipsec -I/builds/FreeBSD_stable_10/sbin/setkey/../../sys/netipsec -DIPSEC_DEBUG -DYY_NO_UNPUT -DINET6 -I. -std=gnu99 /builds/FreeBSD_stable_10/sbin/setkey/setkey.c parse.c token.c /builds/FreeBSD_stable_10/sbin/setkey/../../lib/libipsec/pfkey.c /builds/FreeBSD_stable_10/sbin/setkey/../../lib/libipsec/pfkey_dump.c /builds/FreeBSD_stable_10/sbin/setkey/../../sys/netipsec/key_debug.c /builds/FreeBSD_stable_10/sbin/setkey/../../lib/libipsec/ipsec_strerror.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/usr.bin/calendar/calendar.c /builds/FreeBSD_stable_10/usr.bin/calendar/locale.c /builds/FreeBSD_stable_10/usr.bin/calendar/events.c /builds/FreeBSD_stable_10/usr.bin/calendar/dates.c /builds/FreeBSD_stable_10/usr.bin/calendar/parsedata.c /builds/FreeBSD_stable_10/usr.bin/calendar/io.c /builds/FreeBSD_stable_10/usr.bin/calendar/day.c /builds/FreeBSD_stable_10/usr.bin/calendar/ostern.c /builds/FreeBSD_stable_10/usr.bin/calendar/paskha.c /builds/FreeBSD_stable_10/usr.bin/calendar/pom.c /builds/FreeBSD_stable_10/usr.bin/calendar/sunpos.c --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=newfileops_on_fork_test DEPENDFILE=.depend.newfileops_on_fork_test .MAKE.DEPENDFILE=.depend.newfileops_on_fork_test depend) --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC='cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=closefrom_test DEPENDFILE=.depend.closefrom_test .MAKE.DEPENDFILE=.depend.closefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC='cc ' mkdep -f .depend.closefrom_test -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/closefrom_test.c echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=dup_test DEPENDFILE=.depend.dup_test .MAKE.DEPENDFILE=.depend.dup_test depend) --- .depend.dup_test --- rm -f .depend.dup_test CC='cc ' mkdep -f .depend.dup_test -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_stable_10/tests/sys/file/Makefile _RECURSING_PROGS= SUBDIR= PROG=fcntlflags_test DEPENDFILE=.depend.fcntlflags_test .MAKE.DEPENDFILE=.depend.fcntlflags_test depend) --- sbin.depend__D --- echo setkey: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libl.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/liby.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libipsec.a >> .depend --- depend_subdir_shutdown --- ===> sbin/shutdown (depend) --- tests.depend__D --- --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC='cc ' mkdep -f .depend.fcntlflags_test -a -std=gnu99 /builds/FreeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/sbin/shutdown/shutdown.c --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend.fcntlflags_test --- sbin.depend__D --- echo shutdown: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- tests.depend__D --- ===> tests/sys/kern (depend) --- sbin.depend__D --- --- depend_subdir_spppcontrol --- ===> sbin/spppcontrol (depend) --- .depend --- rm -f .depend --- tests.depend__D --- ===> tests/sys/kern/acct (depend) --- sbin.depend__D --- CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/sbin/spppcontrol/spppcontrol.c --- usr.bin.depend__D --- echo calendar: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libm.a >> .depend --- depend_subdir_cap_mkdb --- ===> usr.bin/cap_mkdb (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBSD_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS= SUBDIR= PROG=acct_test DEPENDFILE=.depend.acct_test .MAKE.DEPENDFILE=.depend.acct_test depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 /builds/FreeBSD_stable_10/usr.bin/cap_mkdb/cap_mkdb.c --- tests.depend__D --- make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests --- sbin.depend__D --- echo spppcontrol: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend --- tests.depend__D --- *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sbin.depend__D --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/sbin/spppcontrol *** [depend_subdir_spppcontrol] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sbin *** [sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo cap_mkdb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/cap_mkdb *** [depend_subdir_cap_mkdb] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Tue Dec 1 04:51:24 2015 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 CC3CBA3DBBA for ; Tue, 1 Dec 2015 04:51:24 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id BDE581825; Tue, 1 Dec 2015 04:51:24 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id ADEE51DD0; Tue, 1 Dec 2015 04:51:24 +0000 (UTC) Date: Tue, 1 Dec 2015 04:51:20 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: smh@FreeBSD.org, rmacklem@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <493507678.330.1448945483904.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1184733229.325.1448930434740.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1184733229.325.1448930434740.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1855 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 04:51:24 -0000 FreeBSD_stable_10 - Build #1855 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1855/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1855/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1855/console Change summaries: 291551 by rmacklem: MFC: r290970 mnt_stat.f_iosize (which is used to set bo_bsize) must be set to the largest size of buffer cache block or the mapping of the buffer is bogus. When a mount with rsize=4096,wsize=4096 was done, f_iosize would be set to 4096. This resulted in corrupted directory data, since the buffer cache block size for directories is NFS_DIRBLKSIZ (8192). This patch fixes the code so that it always sets f_iosize to at least NFS_DIRBLKSIZ. 291548 by smh: MFC r291004: Fix early kernel dump via dumpdev env Sponsored by: Multiplay 291547 by smh: MFC r288153: Use kenv 'dumpdev' in the same way as etc/rc.d/dumpon Sponsored by: Multiplay From owner-freebsd-stable@freebsd.org Tue Dec 1 21:40:51 2015 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 4AF8AA3EF99 for ; Tue, 1 Dec 2015 21:40:51 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3C30218B6; Tue, 1 Dec 2015 21:40:51 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 9CA5ECC; Tue, 1 Dec 2015 21:40:51 +0000 (UTC) Date: Tue, 1 Dec 2015 21:40:49 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: ngie@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1989611376.348.1449006051532.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1857 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 21:40:51 -0000 FreeBSD_stable_10 - Build #1857 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1857/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1857/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1857/cons= ole Change summaries: 291604 by ngie: MFC r269902,r270101: r269902: Convert bin/sh/tests to ATF The new code uses a "test discovery mechanism" to determine what tests are available for execution The test shell can be specified via: kyua test -v test_suites.FreeBSD.bin.sh.test_shell=3D/path/to/test/sh Sponsored by: EMC / Isilon Storage Division Approved by: jmmv (mentor) Reviewed by: jilles (maintainer) r270101 (by jilles): sh: Don't hardcode relative paths in the tests stderr files. These paths have had to be adjusted to changes in the testsuite runner several times, so modify the tests to remove the need for such adjustment. A cp in functional_test.sh is now unneeded, but this matters little in performance. 291603 by ngie: MFC r285118: r285118 (by jmmv): Add missing shebang Plain test programs are not preprocessed by the build system (as opposed to ATF test cases, which automatically gain a shebang pointing at atf-sh), so we must take care of providing the shebang ourselves. I'm not sure why this was not causing problems with Kyua 0.11, but the upcoming 0.12 release chokes on this particular issue. 291602 by ngie: MFC r285140: r285140 (by oshogbo): Add fdclose(3) function. This function is equivalent to fclose(3) function except that it does not close the underlying file descriptor. fdclose(3) is step forward to make FILE structure private. Reviewed by:=09wblock, jilles, jhb, pjd Approved by:=09pjd (mentor) Differential Revision:=09https://reviews.freebsd.org/D2697 The end of the build log: [...truncated 116894 lines...] echo aio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/private/libatf-c.a >> .depend.aio_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_kque= ue_test DEPENDFILE=3D.depend.aio_kqueue_test .MAKE.DEPENDFILE=3D.depend.ai= o_kqueue_test depend) --- .depend.aio_kqueue_test --- rm -f .depend.aio_kqueue_test CC=3D'cc ' mkdep -f .depend.aio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_kqueue_= test.c echo aio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.aio_kqueue_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dlio_kque= ue_test DEPENDFILE=3D.depend.lio_kqueue_test .MAKE.DEPENDFILE=3D.depend.li= o_kqueue_test depend) --- .depend.lio_kqueue_test --- rm -f .depend.lio_kqueue_test CC=3D'cc ' mkdep -f .depend.lio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/lio_kqueue_= test.c --- usr.bin.depend__D --- echo chkey: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/librpcsvc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libmp.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libcrypto.a >> .depend --- depend_subdir_chpass --- =3D=3D=3D> usr.bin/chpass (depend) --- tests.depend__D --- echo lio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.lio_kqueue_test =3D=3D=3D> tests/sys/fifo (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DYP -I/builds/FreeBSD_stable_10/usr.bin/= chpass/../../usr.sbin/pwd_mkdb -I/builds/FreeBSD_stable_10/usr.bin/chpass/.= ./../lib/libc/gen -I. -std=3Dgnu99 /builds/FreeBSD_stable_10/usr.bin/chpa= ss/chpass.c /builds/FreeBSD_stable_10/usr.bin/chpass/edit.c /builds/FreeBSD= _stable_10/usr.bin/chpass/field.c /builds/FreeBSD_stable_10/usr.bin/chpass/= ../../lib/libc/gen/pw_scan.c /builds/FreeBSD_stable_10/usr.bin/chpass/table= .c /builds/FreeBSD_stable_10/usr.bin/chpass/util.c --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_c= reate DEPENDFILE=3D.depend.fifo_create .MAKE.DEPENDFILE=3D.depend.fifo_cre= ate depend) --- .depend.fifo_create --- rm -f .depend.fifo_create CC=3D'cc ' mkdep -f .depend.fifo_create -a -std=3Dgnu99 /builds/FreeB= SD_stable_10/tests/sys/fifo/fifo_create.c echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c --- usr.bin.depend__D --- echo chpass: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libcrypt.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp= /usr/lib/libypclnt.a >> .depend --- depend_subdir_cksum --- =3D=3D=3D> usr.bin/cksum (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/cksum/cksum.c /builds/FreeBSD_stable_10/usr.bin/cksum/crc.c /build= s/FreeBSD_stable_10/usr.bin/cksum/print.c /builds/FreeBSD_stable_10/usr.bin= /cksum/sum1.c /builds/FreeBSD_stable_10/usr.bin/cksum/sum2.c /builds/FreeBS= D_stable_10/usr.bin/cksum/crc32.c --- tests.depend__D --- echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c --- usr.bin.depend__D --- echo cksum: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a >> .depend --- depend_subdir_clang --- =3D=3D=3D> usr.bin/clang (depend) --- depend_subdir_clang --- =3D=3D=3D> usr.bin/clang/clang (depend) --- tests.depend__D --- echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- --- DiagnosticDriverKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DDriver -I /builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inclu= de/clang/Basic -d DiagnosticDriverKinds.inc.d -o DiagnosticDriverKinds.inc= .h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tool= s/clang/include/clang/Basic/Diagnostic.td --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper --- usr.bin.depend__D --- --- DiagnosticFrontendKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DFrontend -I /builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inc= lude/clang/Basic -d DiagnosticFrontendKinds.inc.d -o DiagnosticFrontendKin= ds.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llv= m/tools/clang/include/clang/Basic/Diagnostic.td --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- usr.bin.depend__D --- --- DiagnosticLexKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DLex -I /builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/include/= clang/Basic -d DiagnosticLexKinds.inc.d -o DiagnosticLexKinds.inc.h /build= s/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/i= nclude/clang/Basic/Diagnostic.td --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- usr.bin.depend__D --- --- DiagnosticSemaKinds.inc.h --- clang-tblgen -gen-clang-diags-defs -clang-component=3DSema -I /builds/Free= BSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/include= /clang/Basic -d DiagnosticSemaKinds.inc.d -o DiagnosticSemaKinds.inc.h /bu= ilds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clan= g/include/clang/Basic/Diagnostic.td --- tests.depend__D --- --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- usr.bin.depend__D --- --- CC1AsOptions.inc.h --- tblgen -gen-opt-parser-defs -I /builds/FreeBSD_stable_10/usr.bin/clang/cla= ng/../../../contrib/llvm/include -I /builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/tools/clang/include/clang/Driver -d CC1AsOpti= ons.inc.d -o CC1AsOptions.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/cl= ang/../../../contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td --- tests.depend__D --- --- .depend.dup_test --- rm -f .depend.dup_test --- usr.bin.depend__D --- --- DiagnosticCommonKinds.inc.h --- --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c --- usr.bin.depend__D --- clang-tblgen -gen-clang-diags-defs -clang-component=3DCommon -I /builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/inclu= de/clang/Basic -d DiagnosticCommonKinds.inc.d -o DiagnosticCommonKinds.inc= .h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tool= s/clang/include/clang/Basic/Diagnostic.td --- usr.sbin.depend__D --- --- depend_subdir_amd --- =3D=3D=3D> usr.sbin/amd/amd (depend) --- tests.depend__D --- echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- usr.sbin.depend__D --- --- mount_xdr.c --- RPCGEN_CPP=3Dcpp\ rpcgen -c -DWANT_NFS3 /builds/FreeBSD_stable_10/obj/buil= ds/FreeBSD_stable_10/tmp/usr/include/rpcsvc/mount.x -o mount_xdr.c --- tests.depend__D --- --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- usr.sbin.depend__D --- --- conf_parse.c --- --- usr.bin.depend__D --- --- Options.inc.h --- --- usr.sbin.depend__D --- yacc -d -o conf_parse.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../..= /contrib/amd/amd/conf_parse.y --- usr.bin.depend__D --- tblgen -gen-opt-parser-defs -I /builds/FreeBSD_stable_10/usr.bin/clang/cla= ng/../../../contrib/llvm/include -I /builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/tools/clang/include/clang/Driver -d Options.i= nc.d -o Options.inc.h /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../= ../contrib/llvm/tools/clang/include/clang/Driver/Options.td --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) --- usr.sbin.depend__D --- --- conf_tok.c --- lex -oconf_tok.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contr= ib/amd/amd/conf_tok.l --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/usr.sbin/amd/= amd/../../../contrib/amd/amd -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD= _stable_10/tmp/usr/include/rpcsvc -I. -I/builds/FreeBSD_stable_10/usr.sbin/= amd/amd -I/builds/FreeBSD_stable_10/usr.sbin/amd/amd/../include -I/builds/F= reeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.sbin/amd/amd/../include -= I/builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/include -I= /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd -DHAVE_CONF= IG_H -DHOST_CPU=3D\"amd64\" -DHOST_ARCH=3D\"amd64\" -std=3Dgnu99 conf_par= se.c conf_tok.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib= /amd/amd/am_ops.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contr= ib/amd/amd/amd.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contri= b/amd/amd/amfs_auto.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../c= ontrib/amd/amd/amfs_direct.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../= ../../contrib/amd/amd/amfs_error.c /builds/FreeBSD_stable_10/usr.sbin/amd/a= md/../../../contrib/amd/amd/amfs_generic.c /builds/FreeBSD_stable_10/usr.sb= in/amd/amd/../../../contrib/amd/amd/amfs_host.c /builds/FreeBSD_stable_10/u= sr.sbin/amd/amd/../../../contrib/amd/amd/amfs_link.c /builds/FreeBSD_stable= _10/usr.sbin/amd/amd/../../../contrib/amd/amd/amfs_linkx.c /builds/FreeBSD_= stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/amfs_nfsl.c /builds/Fre= eBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/amfs_nfsx.c /build= s/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/amfs_program.= c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/amfs_= root.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/= amfs_toplvl.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/a= md/amd/amfs_union.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../con= trib/amd/amd/amq_subr.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../..= /contrib/amd/amd/amq_svc.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../..= /../contrib/amd/amd/autil.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../.= ./../contrib/amd/amd/clock.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../= ../../contrib/amd/amd/conf.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../= ../../contrib/amd/amd/get_args.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd= /../../../contrib/amd/amd/info_exec.c /builds/FreeBSD_stable_10/usr.sbin/am= d/amd/../../../contrib/amd/amd/info_file.c /builds/FreeBSD_stable_10/usr.sb= in/amd/amd/../../../contrib/amd/amd/info_ndbm.c /builds/FreeBSD_stable_10/u= sr.sbin/amd/amd/../../../contrib/amd/amd/info_passwd.c /builds/FreeBSD_stab= le_10/usr.sbin/amd/amd/../../../contrib/amd/amd/info_union.c /builds/FreeBS= D_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/map.c /builds/FreeBSD= _stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/mapc.c /builds/FreeBSD= _stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/mntfs.c /builds/FreeBS= D_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/nfs_prot_svc.c /build= s/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/nfs_start.c /= builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/nfs_subr= .c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/ops_= cdfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/= ops_mfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/a= md/ops_nfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/am= d/amd/ops_nfs3.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contri= b/amd/amd/ops_nullfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../= contrib/amd/amd/ops_pcfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../..= /../contrib/amd/amd/ops_tfs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/..= /../../contrib/amd/amd/ops_ufs.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd= /../../../contrib/amd/amd/ops_umapfs.c /builds/FreeBSD_stable_10/usr.sbin/a= md/amd/../../../contrib/amd/amd/ops_unionfs.c /builds/FreeBSD_stable_10/usr= .sbin/amd/amd/../../../contrib/amd/amd/opts.c /builds/FreeBSD_stable_10/usr= .sbin/amd/amd/../../../contrib/amd/amd/readdir.c /builds/FreeBSD_stable_10/= usr.sbin/amd/amd/../../../contrib/amd/amd/restart.c /builds/FreeBSD_stable_= 10/usr.sbin/amd/amd/../../../contrib/amd/amd/rpc_fwd.c /builds/FreeBSD_stab= le_10/usr.sbin/amd/amd/../../../contrib/amd/amd/sched.c /builds/FreeBSD_sta= ble_10/usr.sbin/amd/amd/../../../contrib/amd/amd/srvr_amfs_auto.c /builds/F= reeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/srvr_nfs.c mount= _xdr.c /builds/FreeBSD_stable_10/usr.sbin/amd/amd/../../../contrib/amd/amd/= info_nis.c --- tests.depend__D --- =3D=3D=3D> tests/sys/kern/acct (depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../contrib/llvm/include -I/builds/FreeBSD_stable_10/usr.bin/cl= ang/clang/../../../contrib/llvm/tools/clang/include -I/builds/FreeBSD_stabl= e_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/tools/driver -I.= -I/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/../.= ./lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS = -D__STDC_CONSTANT_MACROS -DNDEBUG -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_REWRI= TER -DCLANG_ENABLE_STATIC_ANALYZER -DLLVM_DEFAULT_TARGET_TRIPLE=3D\"x86_64-= unknown-freebsd10.2\" -DLLVM_HOST_TRIPLE=3D\"x86_64-unknown-freebsd10.2\" -= DDEFAULT_SYSROOT=3D\"\" /builds/FreeBSD_stable_10/usr.bin/clang/clan= g/../../../contrib/llvm/tools/clang/tools/driver/cc1_main.cpp /builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../contrib/llvm/tools/clang/tools/dr= iver/cc1as_main.cpp /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../= contrib/llvm/tools/clang/tools/driver/driver.cpp=20 --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo clang: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/c= lang/clang/../../../lib/clang/libclangfrontendtool/libclangfrontendtool.a /= builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/.= ./../../lib/clang/libclangfrontend/libclangfrontend.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bclangdriver/libclangdriver.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/usr.bin/clang/clang/../../../lib/clang/libclangserialization/libc= langserialization.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libclangcodegen/libclangcodegen.a /b= uilds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/..= /../../lib/clang/libclangparse/libclangparse.a /builds/FreeBSD_stable_10/ob= j/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangs= ema/libclangsema.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libclangstaticanalyzerfrontend/libcla= ngstaticanalyzerfrontend.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_sta= ble_10/usr.bin/clang/clang/../../../lib/clang/libclangstaticanalyzerchecker= s/libclangstaticanalyzercheckers.a /builds/FreeBSD_stable_10/obj/builds/Fre= eBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangstaticanalyze= rcore/libclangstaticanalyzercore.a /builds/FreeBSD_stable_10/obj/builds/Fre= eBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclangarcmigrate/li= bclangarcmigrate.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libclangrewritefrontend/libclangrewri= tefrontend.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin= /clang/clang/../../../lib/clang/libclangrewritecore/libclangrewritecore.a /= builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/.= ./../../lib/clang/libclanganalysis/libclanganalysis.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bclangedit/libclangedit.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stab= le_10/usr.bin/clang/clang/../../../lib/clang/libclangast/libclangast.a /bui= lds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../.= ./../lib/clang/libclangbasic/libclangbasic.a /builds/FreeBSD_stable_10/obj/= builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libclanglex= /libclanglex.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.b= in/clang/clang/../../../lib/clang/libllvmoption/libllvmoption.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmlinker/libllvmlinker.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmirreader/li= bllvmirreader.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.= bin/clang/clang/../../../lib/clang/libllvmipo/libllvmipo.a /builds/FreeBSD_= stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cla= ng/libllvmvectorize/libllvmvectorize.a /builds/FreeBSD_stable_10/obj/builds= /FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvminstrument= ation/libllvminstrumentation.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD= _stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmbitwriter/libllvmb= itwriter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/c= lang/clang/../../../lib/clang/libllvmbitreader/libllvmbitreader.a /builds/F= reeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../= lib/clang/libllvmasmparser/libllvmasmparser.a /builds/FreeBSD_stable_10/obj= /builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarm= disassembler/libllvmarmdisassembler.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarmcodegen/= libllvmarmcodegen.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmarmasmparser/libllvmarmasmpar= ser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/= clang/../../../lib/clang/libllvmarmdesc/libllvmarmdesc.a /builds/FreeBSD_st= able_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang= /libllvmarminfo/libllvmarminfo.a /builds/FreeBSD_stable_10/obj/builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmarminstprinter/l= ibllvmarminstprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_= 10/usr.bin/clang/clang/../../../lib/clang/libllvmmipsdisassembler/libllvmmi= psdisassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr= .bin/clang/clang/../../../lib/clang/libllvmmipscodegen/libllvmmipscodegen.a= /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang= /../../../lib/clang/libllvmmipsasmparser/libllvmmipsasmparser.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmmipsdesc/libllvmmipsdesc.a /builds/FreeBSD_stable_10/obj/bui= lds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmmipsinf= o/libllvmmipsinfo.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmmipsinstprinter/libllvmmipsin= stprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/= clang/clang/../../../lib/clang/libllvmpowerpccodegen/libllvmpowerpccodegen.= a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clan= g/../../../lib/clang/libllvmpowerpcasmparser/libllvmpowerpcasmparser.a /bui= lds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../.= ./../lib/clang/libllvmpowerpcdesc/libllvmpowerpcdesc.a /builds/FreeBSD_stab= le_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/l= ibllvmpowerpcinfo/libllvmpowerpcinfo.a /builds/FreeBSD_stable_10/obj/builds= /FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmpowerpcins= tprinter/libllvmpowerpcinstprinter.a /builds/FreeBSD_stable_10/obj/builds/F= reeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparcdisasse= mbler/libllvmsparcdisassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeB= SD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparccodegen/lib= llvmsparccodegen.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libllvmsparcasmparser/libllvmsparcasm= parser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/cla= ng/clang/../../../lib/clang/libllvmsparcdesc/libllvmsparcdesc.a /builds/Fre= eBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../li= b/clang/libllvmsparcinfo/libllvmsparcinfo.a /builds/FreeBSD_stable_10/obj/b= uilds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmsparc= instprinter/libllvmsparcinstprinter.a /builds/FreeBSD_stable_10/obj/builds/= FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86disassem= bler/libllvmx86disassembler.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86asmparser/libllv= mx86asmparser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.= bin/clang/clang/../../../lib/clang/libllvmx86codegen/libllvmx86codegen.a /b= uilds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/..= /../../lib/clang/libllvmselectiondag/libllvmselectiondag.a /builds/FreeBSD_= stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cla= ng/libllvmasmprinter/libllvmasmprinter.a /builds/FreeBSD_stable_10/obj/buil= ds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmmcparser= /libllvmmcparser.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/clang/clang/../../../lib/clang/libllvmcodegen/libllvmcodegen.a /buil= ds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../..= /../lib/clang/libllvmobjcarcopts/libllvmobjcarcopts.a /builds/FreeBSD_stabl= e_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/li= bllvmscalaropts/libllvmscalaropts.a /builds/FreeBSD_stable_10/obj/builds/Fr= eeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvminstcombine/l= ibllvminstcombine.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= usr.bin/clang/clang/../../../lib/clang/libllvmtransformutils/libllvmtransfo= rmutils.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/cl= ang/clang/../../../lib/clang/libllvmipa/libllvmipa.a /builds/FreeBSD_stable= _10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/lib= llvmanalysis/libllvmanalysis.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD= _stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86desc/libllvmx86= desc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang= /clang/../../../lib/clang/libllvmx86info/libllvmx86info.a /builds/FreeBSD_s= table_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/clan= g/libllvmtarget/libllvmtarget.a /builds/FreeBSD_stable_10/obj/builds/FreeBS= D_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86instprinter/li= bllvmx86instprinter.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/usr.bin/clang/clang/../../../lib/clang/libllvmmc/libllvmmc.a /builds/Free= BSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib= /clang/libllvmobject/libllvmobject.a /builds/FreeBSD_stable_10/obj/builds/F= reeBSD_stable_10/usr.bin/clang/clang/../../../lib/clang/libllvmx86utils/lib= llvmx86utils.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.b= in/clang/clang/../../../lib/clang/libllvmcore/libllvmcore.a /builds/FreeBSD= _stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/clang/../../../lib/cl= ang/libllvmsupport/libllvmsupport.a /builds/FreeBSD_stable_10/obj/builds/Fr= eeBSD_stable_10/tmp/usr/lib/libncurses.a >> .depend echo clang: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc++.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang/clang *** [depend_subdir_clang] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang *** [depend_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo amd: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.sbin/am= d/amd/../libamu/libamu.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stabl= e_10/tmp/usr/lib/libwrap.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd/amd *** [depend_subdir_amd] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/amd *** [depend_subdir_amd] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin --- depend_subdir_acpi --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 2 errors make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 3 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Wed Dec 2 12:10:42 2015 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 4BCF9A3F5C8; Wed, 2 Dec 2015 12:10:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3B29D1C85; Wed, 2 Dec 2015 12:10:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id B06D136A; Wed, 2 Dec 2015 12:10:41 +0000 (UTC) Date: Wed, 2 Dec 2015 12:10:38 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: royger@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1402894502.356.1449058240753.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_STABLE_10-i386 - Build #688 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_STABLE_10-i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 12:10:42 -0000 FreeBSD_STABLE_10-i386 - Build #688 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/688/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/688/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/688/console Change summaries: 291645 by royger: MFC r291023: xen/intr: properly dispose event channels on resume Sponsored by: Citrix Systems R&D 291644 by royger: MFC r291022: x86/intr: allow mutex recursion in intr_remove_handler Sponsored by: Citrix Systems R&D The end of the build log: [...truncated 188442 lines...] ctfconvert -L VERSION -g mv.o --- ioctl.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hptmv/ioctl.c --- hptproc.o --- ctfconvert -L VERSION -g hptproc.o --- hv_net_vsc.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/netvsc/hv_net_vsc.c --- if.o --- ctfconvert -L VERSION -g if.o --- hv_netvsc_drv_freebsd.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c --- ioctl.o --- ctfconvert -L VERSION -g ioctl.o --- gui_lib.o --- ctfconvert -L VERSION -g gui_lib.o --- hv_rndis_filter.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/netvsc/hv_rndis_filter.c --- hv_storvsc_drv_freebsd.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c --- hv_net_vsc.o --- ctfconvert -L VERSION -g hv_net_vsc.o --- hv_kvp.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/utilities/hv_kvp.c --- hv_rndis_filter.o --- ctfconvert -L VERSION -g hv_rndis_filter.o --- hv_util.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/utilities/hv_util.c --- hv_netvsc_drv_freebsd.o --- ctfconvert -L VERSION -g hv_netvsc_drv_freebsd.o --- hv_channel.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_channel.c --- hv_util.o --- ctfconvert -L VERSION -g hv_util.o --- hv_channel_mgmt.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_channel_mgmt.c --- hv_storvsc_drv_freebsd.o --- ctfconvert -L VERSION -g hv_storvsc_drv_freebsd.o --- hv_kvp.o --- ctfconvert -L VERSION -g hv_kvp.o --- hv_connection.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_connection.c --- hv_hv.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_hv.c --- hv_channel.o --- ctfconvert -L VERSION -g hv_channel.o --- hv_ring_buffer.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_ring_buffer.c --- hv_channel_mgmt.o --- ctfconvert -L VERSION -g hv_channel_mgmt.o --- hv_vmbus_drv_freebsd.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c --- hv_hv.o --- ctfconvert -L VERSION -g hv_hv.o --- nvme_ctrlr_cmd.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/nvme/nvme_ctrlr_cmd.c --- hv_ring_buffer.o --- ctfconvert -L VERSION -g hv_ring_buffer.o --- hv_connection.o --- ctfconvert -L VERSION -g hv_connection.o --- nvme_ns_cmd.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/nvme/nvme_ns_cmd.c --- nvme_sysctl.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/nvme/nvme_sysctl.c --- hv_vmbus_drv_freebsd.o --- ctfconvert -L VERSION -g hv_vmbus_drv_freebsd.o --- nvme_test.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/nvme/nvme_test.c --- nvme_ns_cmd.o --- ctfconvert -L VERSION -g nvme_ns_cmd.o --- uart_cpu_x86.o --- --- nvme_ctrlr_cmd.o --- ctfconvert -L VERSION -g nvme_ctrlr_cmd.o --- uart_cpu_x86.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/uart/uart_cpu_x86.c --- isci_controller.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_controller.c --- nvme_sysctl.o --- ctfconvert -L VERSION -g nvme_sysctl.o --- isci_domain.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_domain.c --- uart_cpu_x86.o --- ctfconvert -L VERSION -g uart_cpu_x86.o --- isci_io_request.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_io_request.c --- isci_domain.o --- ctfconvert -L VERSION -g isci_domain.o --- isci_logger.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_logger.c --- nvme_test.o --- ctfconvert -L VERSION -g nvme_test.o --- isci_oem_parameters.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_oem_parameters.c --- isci_controller.o --- ctfconvert -L VERSION -g isci_controller.o --- isci_remote_device.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_remote_device.c --- isci_io_request.o --- ctfconvert -L VERSION -g isci_io_request.o --- isci_logger.o --- ctfconvert -L VERSION -g isci_logger.o --- isci_sysctl.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_sysctl.c --- isci_task_request.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_task_request.c --- isci_oem_parameters.o --- ctfconvert -L VERSION -g isci_oem_parameters.o --- isci_timer.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/isci/isci_timer.c --- isci_remote_device.o --- ctfconvert -L VERSION -g isci_remote_device.o --- if_vtnet.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/virtio/network/if_vtnet.c --- isci_task_request.o --- ctfconvert -L VERSION -g isci_task_request.o --- virtio_blk.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/virtio/block/virtio_blk.c --- isci_sysctl.o --- ctfconvert -L VERSION -g isci_sysctl.o --- virtio_balloon.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/virtio/balloon/virtio_balloon.c --- isci_timer.o --- ctfconvert -L VERSION -g isci_timer.o --- virtio_scsi.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/dev/virtio/scsi/virtio_scsi.c --- virtio_balloon.o --- ctfconvert -L VERSION -g virtio_balloon.o --- machdep.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/i386/i386/machdep.c --- virtio_blk.o --- ctfconvert -L VERSION -g virtio_blk.o --- mp_machdep.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/i386/i386/mp_machdep.c --- virtio_scsi.o --- ctfconvert -L VERSION -g virtio_scsi.o --- pmap.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/i386/i386/pmap.c --- mp_machdep.o --- ctfconvert -L VERSION -g mp_machdep.o --- trap.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/i386/i386/trap.c --- if_vtnet.o --- ctfconvert -L VERSION -g if_vtnet.o --- kern_clocksource.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/kern/kern_clocksource.c --- machdep.o --- ctfconvert -L VERSION -g machdep.o --- OsdEnvironment.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/acpica/OsdEnvironment.c ctfconvert -L VERSION -g OsdEnvironment.o --- elcr.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/isa/elcr.c --- trap.o --- ctfconvert -L VERSION -g trap.o WARNING: trap.c: enum pmc_event has too many values: 1760 > 1023 --- busdma_bounce.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/busdma_bounce.c --- elcr.o --- ctfconvert -L VERSION -g elcr.o --- busdma_machdep.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/busdma_machdep.c ctfconvert -L VERSION -g busdma_machdep.o --- identcpu.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/identcpu.c --- kern_clocksource.o --- ctfconvert -L VERSION -g kern_clocksource.o --- intr_machdep.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/intr_machdep.c --- busdma_bounce.o --- ctfconvert -L VERSION -g busdma_bounce.o --- legacy.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/legacy.c --- intr_machdep.o --- ctfconvert -L VERSION -g intr_machdep.o --- local_apic.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/local_apic.c --- legacy.o --- ctfconvert -L VERSION -g legacy.o --- mca.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/x86/mca.c --- identcpu.o --- ctfconvert -L VERSION -g identcpu.o --- xen_intr.o --- cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwarf-2 -Werror /usr/src/sys/x86/xen/xen_intr.c /usr/src/sys/x86/xen/xen_intr.c:714:31: error: no member named 'xi_cookie' in 'struct xenisrc'; did you mean 'xi_close'? intr_remove_handler(isrc->xi_cookie); ^~~~~~~~~ xi_close /usr/src/sys/x86/xen/xen_intr.c:115:9: note: 'xi_close' declared here u_int xi_close:1; /* close on unbind? */ ^ /usr/src/sys/x86/xen/xen_intr.c:714:25: error: incompatible integer to pointer conversion passing 'u_int' (aka 'unsigned int') to parameter of type 'void *' [-Werror,-Wint-conversion] intr_remove_handler(isrc->xi_cookie); ^~~~~~~~~~~~~~~ ./machine/intr_machdep.h:168:31: note: passing argument to parameter 'cookie' here int intr_remove_handler(void *cookie); ^ /usr/src/sys/x86/xen/xen_intr.c:717:11: error: no member named 'xi_cookie' in 'struct xenisrc'; did you mean 'xi_close'? isrc->xi_cookie = NULL; ^~~~~~~~~ xi_close /usr/src/sys/x86/xen/xen_intr.c:115:9: note: 'xi_close' declared here u_int xi_close:1; /* close on unbind? */ ^ /usr/src/sys/x86/xen/xen_intr.c:717:21: error: incompatible pointer to integer conversion assigning to 'u_int' (aka 'unsigned int') from 'void *' [-Werror,-Wint-conversion] isrc->xi_cookie = NULL; ^ ~~~~ 4 errors generated. *** [xen_intr.o] Error code 1 make[2]: stopped in /usr/obj/usr/src/sys/GENERIC --- local_apic.o --- ctfconvert -L VERSION -g local_apic.o --- mca.o --- ctfconvert -L VERSION -g mca.o --- pmap.o --- ctfconvert -L VERSION -g pmap.o 1 error make[2]: stopped in /usr/obj/usr/src/sys/GENERIC *** [buildkernel] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildkernel] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE [PostBuildScript] - Execution post build scripts. [FreeBSD_STABLE_10-i386] $ /bin/sh -xe /tmp/hudson1911734850283266403.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_STABLE_10-i386' + echo 'clean up jail FreeBSD_STABLE_10-i386' clean up jail FreeBSD_STABLE_10-i386 + sudo jail -r FreeBSD_STABLE_10-i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::105:1 -alias + sudo umount FreeBSD_STABLE_10-i386/usr/src + sudo umount FreeBSD_STABLE_10-i386/dev + sudo rm -fr FreeBSD_STABLE_10-i386 + true + sudo chflags -R noschg FreeBSD_STABLE_10-i386 + sudo rm -fr FreeBSD_STABLE_10-i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Wed Dec 2 12:40:02 2015 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 CAACDA3FBC6 for ; Wed, 2 Dec 2015 12:40:02 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A796B1C59; Wed, 2 Dec 2015 12:40:02 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 9997A372; Wed, 2 Dec 2015 12:40:02 +0000 (UTC) Date: Wed, 2 Dec 2015 12:40:01 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: royger@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1452960547.358.1449060002590.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1989611376.348.1449006051532.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1989611376.348.1449006051532.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1858 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 12:40:03 -0000 FreeBSD_stable_10 - Build #1858 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1858/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1858/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1858/cons= ole Change summaries: 291645 by royger: MFC r291023: xen/intr: properly dispose event channels on resume Sponsored by:=09=09Citrix Systems R&D 291644 by royger: MFC r291022: x86/intr: allow mutex recursion in intr_remove_handler Sponsored by:=09=09Citrix Systems R&D The end of the build log: [...truncated 115920 lines...] --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DNO_PWD_OVERRIDE -I/builds/FreeBSD_stabl= e_10/usr.bin/bmake -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE -DHAVE_= CONFIG_H -DHAVE_CONFIG_H -DBMAKE_PATH_MAX=3D1024 -DUSE_META -DMAKE_NATIVE -= DHAVE_CONFIG_H -D_PATH_DEFSYSPATH=3D\"/usr/share/mk\" -I. -I/builds/FreeBSD= _stable_10/contrib/bmake -DMAKE_NATIVE -std=3Dgnu99 /builds/FreeBSD_stabl= e_10/contrib/bmake/arch.c /builds/FreeBSD_stable_10/contrib/bmake/buf.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/compat.c /builds/FreeBSD_stable_10/con= trib/bmake/cond.c /builds/FreeBSD_stable_10/contrib/bmake/dir.c /builds/Fre= eBSD_stable_10/contrib/bmake/for.c /builds/FreeBSD_stable_10/contrib/bmake/= hash.c /builds/FreeBSD_stable_10/contrib/bmake/job.c /builds/FreeBSD_stable= _10/contrib/bmake/main.c /builds/FreeBSD_stable_10/contrib/bmake/make.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/make_malloc.c /builds/FreeBSD_stable_1= 0/contrib/bmake/meta.c /builds/FreeBSD_stable_10/contrib/bmake/parse.c /bui= lds/FreeBSD_stable_10/contrib/bmake/str.c /builds/FreeBSD_stable_10/contrib= /bmake/strlist.c /builds/FreeBSD_stable_10/contrib/bmake/suff.c /builds/Fre= eBSD_stable_10/contrib/bmake/targ.c /builds/FreeBSD_stable_10/contrib/bmake= /trace.c /builds/FreeBSD_stable_10/contrib/bmake/util.c /builds/FreeBSD_sta= ble_10/contrib/bmake/var.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/= lstAppend.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstAtEnd.c /bui= lds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstAtFront.c /builds/FreeBSD_st= able_10/contrib/bmake/lst.lib/lstClose.c /builds/FreeBSD_stable_10/contrib/= bmake/lst.lib/lstConcat.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/l= stDatum.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstDeQueue.c /bui= lds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstDestroy.c /builds/FreeBSD_st= able_10/contrib/bmake/lst.lib/lstDupl.c /builds/FreeBSD_stable_10/contrib/b= make/lst.lib/lstEnQueue.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/l= stFind.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstFindFrom.c /bui= lds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstFirst.c /builds/FreeBSD_stab= le_10/contrib/bmake/lst.lib/lstForEach.c /builds/FreeBSD_stable_10/contrib/= bmake/lst.lib/lstForEachFrom.c /builds/FreeBSD_stable_10/contrib/bmake/lst.= lib/lstInit.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstInsert.c /= builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstIsAtEnd.c /builds/FreeBSD= _stable_10/contrib/bmake/lst.lib/lstIsEmpty.c /builds/FreeBSD_stable_10/con= trib/bmake/lst.lib/lstLast.c /builds/FreeBSD_stable_10/contrib/bmake/lst.li= b/lstMember.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstNext.c /bu= ilds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstOpen.c /builds/FreeBSD_stab= le_10/contrib/bmake/lst.lib/lstPrev.c /builds/FreeBSD_stable_10/contrib/bma= ke/lst.lib/lstRemove.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstR= eplace.c /builds/FreeBSD_stable_10/contrib/bmake/lst.lib/lstSucc.c /builds/= FreeBSD_stable_10/contrib/bmake/stresep.c --- tests.depend__D --- echo aio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.aio_kqueue_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dlio_kque= ue_test DEPENDFILE=3D.depend.lio_kqueue_test .MAKE.DEPENDFILE=3D.depend.li= o_kqueue_test depend) --- lib.depend__D --- --- depend_subdir_libarchive --- echo libarchive_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libarchive.a >> .depend.libarchive_test --- etc.depend__D --- =3D=3D=3D> etc (depend) --- tests.depend__D --- --- .depend.lio_kqueue_test --- rm -f .depend.lio_kqueue_test CC=3D'cc ' mkdep -f .depend.lio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/lio_kqueue_= test.c --- etc.depend__D --- --- _sub.depend --- =3D=3D=3D> etc/newsyslog.conf.d (depend) =3D=3D=3D> etc/sendmail (depend) --- tests.depend__D --- echo lio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.lio_kqueue_test =3D=3D=3D> tests/sys/fifo (depend) --- usr.bin.depend__D --- --- depend_subdir_brandelf --- =3D=3D=3D> usr.bin/brandelf (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_c= reate DEPENDFILE=3D.depend.fifo_create .MAKE.DEPENDFILE=3D.depend.fifo_cre= ate depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/brandelf/brandelf.c --- tests.depend__D --- --- .depend.fifo_create --- rm -f .depend.fifo_create CC=3D'cc ' mkdep -f .depend.fifo_create -a -std=3Dgnu99 /builds/FreeB= SD_stable_10/tests/sys/fifo/fifo_create.c --- usr.bin.depend__D --- echo brandelf: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend --- depend_subdir_bsdiff --- =3D=3D=3D> usr.bin/bsdiff (depend) --- tests.depend__D --- echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/bsdiff/bsdiff (depend) --- tests.depend__D --- --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/bsdiff/bsdiff/bsdiff.c --- tests.depend__D --- echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- usr.bin.depend__D --- echo bsdiff: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libbz2.a >> .depend =3D=3D=3D> usr.bin/bsdiff/bspatch (depend) --- tests.depend__D --- --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/bsdiff/bspatch/bspatch.c echo bspatch: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libbz2.a >> .depend --- depend_subdir_bzip2 --- =3D=3D=3D> usr.bin/bzip2 (depend) --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -D_FILE_OFFSET_BITS=3D64 -std=3Dgnu99 /= builds/FreeBSD_stable_10/usr.bin/bzip2/../../contrib/bzip2/bzip2.c --- tests.depend__D --- --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- echo bzip2: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libbz2.a >> .depend --- depend_subdir_bzip2recover --- =3D=3D=3D> usr.bin/bzip2recover (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/bzip2recover/../../contrib/bzip2/bzip2recover.c --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- usr.bin.depend__D --- echo bzip2recover: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a >> .depend --- depend_subdir_c89 --- =3D=3D=3D> usr.bin/c89 (depend) --- tests.depend__D --- --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/c89/c89.c --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- usr.bin.depend__D --- echo c89: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend --- depend_subdir_c99 --- =3D=3D=3D> usr.bin/c99 (depend) --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/c99/c99.c echo c99: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend --- depend_subdir_calendar --- =3D=3D=3D> usr.bin/calendar (depend) --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/calendar/tests (depend) --- tests.depend__D --- --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/calendar/calendar.c /builds/FreeBSD_stable_10/usr.bin/calendar/loc= ale.c /builds/FreeBSD_stable_10/usr.bin/calendar/events.c /builds/FreeBSD_s= table_10/usr.bin/calendar/dates.c /builds/FreeBSD_stable_10/usr.bin/calenda= r/parsedata.c /builds/FreeBSD_stable_10/usr.bin/calendar/io.c /builds/FreeB= SD_stable_10/usr.bin/calendar/day.c /builds/FreeBSD_stable_10/usr.bin/calen= dar/ostern.c /builds/FreeBSD_stable_10/usr.bin/calendar/paskha.c /builds/Fr= eeBSD_stable_10/usr.bin/calendar/pom.c /builds/FreeBSD_stable_10/usr.bin/ca= lendar/sunpos.c --- tests.depend__D --- echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo calendar: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libm.a >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/calendar *** [depend_subdir_calendar] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin --- depend_subdir_bmake --- echo make: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/bmake *** [depend_subdir_bmake] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 2 errors make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 3 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Wed Dec 2 14:13:56 2015 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 59EEBA3F32A; Wed, 2 Dec 2015 14:13:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 4ABAE1D77; Wed, 2 Dec 2015 14:13:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 2AA603EB; Wed, 2 Dec 2015 14:13:55 +0000 (UTC) Date: Wed, 2 Dec 2015 14:13:53 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: royger@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <828475588.360.1449065635370.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1402894502.356.1449058240753.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1402894502.356.1449058240753.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_STABLE_10-i386 - Build #689 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_STABLE_10-i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 14:13:56 -0000 FreeBSD_STABLE_10-i386 - Build #689 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/689/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/689/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/689/console Change summaries: 291647 by royger: Revert MFC of r291023: Due to the delta between HEAD and stable/10 event channel code, this fix is not needed on stable/10 and was also causing build issues. Revert it. From owner-freebsd-stable@freebsd.org Wed Dec 2 15:37:13 2015 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 5E54EA3E432 for ; Wed, 2 Dec 2015 15:37:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 4E526199B; Wed, 2 Dec 2015 15:37:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 186CA41B; Wed, 2 Dec 2015 15:37:13 +0000 (UTC) Date: Wed, 2 Dec 2015 15:37:01 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: royger@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <321144087.362.1449070632560.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1452960547.358.1449060002590.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1452960547.358.1449060002590.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1859 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 15:37:13 -0000 FreeBSD_stable_10 - Build #1859 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1859/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1859/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1859/cons= ole Change summaries: 291647 by royger: Revert MFC of r291023: Due to the delta between HEAD and stable/10 event channel code, this fix is not needed on stable/10 and was also causing build issues. Revert it. The end of the build log: [...truncated 118132 lines...] CC=3D'cc ' mkdep -f .depend -a -D_BOOT -I/builds/FreeBSD_stable_10/sys/b= oot/i386/libfirewire/../../common -I/builds/FreeBSD_stable_10/sys/boot/i386= /libfirewire/../../.. -I. -I/builds/FreeBSD_stable_10/sys/boot/i386/libfire= wire/../../../../lib/libstand -I/builds/FreeBSD_stable_10/sys/boot/i386/lib= firewire/../btx/lib -I/builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/.= ./libi386 -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot/i386/libfirewir= e/firewire.c /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/fwohci.c /= builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/dconsole.c /builds/FreeB= SD_stable_10/sys/boot/i386/libfirewire/../../../dev/dcons/dcons.c /builds/F= reeBSD_stable_10/sys/boot/i386/libfirewire/../../../dev/firewire/fwcrom.c --- tests.depend__D --- =3D=3D=3D> tests/sys/pjdfstest/tests/mknod (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/open (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/rename (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/rmdir (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/symlink (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/truncate (depend) =3D=3D=3D> tests/sys/pjdfstest/tests/unlink (depend) --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/loader (depend) --- tests.depend__D --- =3D=3D=3D> tests/sys/acl (depend) --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../../i386/include= machine --- vers.c --- sh /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/newvers.sh /= builds/FreeBSD_stable_10/sys/boot/i386/loader/../loader/version "bootstrap= loader" x86 --- tests.depend__D --- =3D=3D=3D> tests/sys/aio (depend) --- sys.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/buil= ds/FreeBSD_stable_10/sys/boot/i386/loader/../../ficl -I/builds/FreeBSD_stab= le_10/sys/boot/i386/loader/../../ficl/i386 -DLOADER_GZIP_SUPPORT -DLOADER_D= ISK_SUPPORT -DLOADER_GPT_SUPPORT -DLOADER_MBR_SUPPORT -I/builds/FreeBSD_sta= ble_10/sys/boot/i386/loader/../../common -I. -I/builds/FreeBSD_stable_10/sy= s/boot/i386/loader/.. -I/builds/FreeBSD_stable_10/sys/boot/i386/loader/../b= tx/lib -DLOADER_PREFER_AMD64 -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/b= oot/i386/loader/main.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/conf.= c vers.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/boot.c= /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/commands.c /bu= ilds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/console.c /builds/= FreeBSD_stable_10/sys/boot/i386/loader/../../common/devopen.c /builds/FreeB= SD_stable_10/sys/boot/i386/loader/../../common/interp.c /builds/FreeBSD_sta= ble_10/sys/boot/i386/loader/../../common/interp_backslash.c /builds/FreeBSD= _stable_10/sys/boot/i386/loader/../../common/interp_parse.c /builds/FreeBSD= _stable_10/sys/boot/i386/loader/../../common/ls.c /builds/FreeBSD_stable_10= /sys/boot/i386/loader/../../common/misc.c /builds/FreeBSD_stable_10/sys/boo= t/i386/loader/../../common/module.c /builds/FreeBSD_stable_10/sys/boot/i386= /loader/../../common/panic.c /builds/FreeBSD_stable_10/sys/boot/i386/loader= /../../common/load_elf32.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/.= ./../common/load_elf32_obj.c /builds/FreeBSD_stable_10/sys/boot/i386/loader= /../../common/reloc_elf32.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/= ../../common/load_elf64.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/..= /../common/load_elf64_obj.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/= ../../common/reloc_elf64.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/.= ./../common/disk.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../com= mon/part.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/crc3= 2.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/bcache.c /b= uilds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/isapnp.c /builds/= FreeBSD_stable_10/sys/boot/i386/loader/../../common/pnp.c /builds/FreeBSD_s= table_10/sys/boot/i386/loader/../../common/interp_forth.c --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_test= DEPENDFILE=3D.depend.aio_test .MAKE.DEPENDFILE=3D.depend.aio_test depen= d) --- .depend.aio_test --- rm -f .depend.aio_test CC=3D'cc ' mkdep -f .depend.aio_test -a -I/builds/FreeBSD_stable_10/test= s -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_test.c echo aio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libutil.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/private/libatf-c.a >> .depend.aio_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Daio_kque= ue_test DEPENDFILE=3D.depend.aio_kqueue_test .MAKE.DEPENDFILE=3D.depend.ai= o_kqueue_test depend) --- .depend.aio_kqueue_test --- rm -f .depend.aio_kqueue_test CC=3D'cc ' mkdep -f .depend.aio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/aio_kqueue_= test.c echo aio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.aio_kqueue_test (cd /builds/FreeBSD_stable_10/tests/sys/aio && make -f /builds/FreeBSD_stab= le_10/tests/sys/aio/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dlio_kque= ue_test DEPENDFILE=3D.depend.lio_kqueue_test .MAKE.DEPENDFILE=3D.depend.li= o_kqueue_test depend) --- .depend.lio_kqueue_test --- rm -f .depend.lio_kqueue_test CC=3D'cc ' mkdep -f .depend.lio_kqueue_test -a -I/builds/FreeBSD_stable_= 10/tests -std=3Dgnu99 /builds/FreeBSD_stable_10/tests/sys/aio/lio_kqueue_= test.c echo lio_kqueue_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.lio_kqueue_test =3D=3D=3D> tests/sys/fifo (depend) (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_c= reate DEPENDFILE=3D.depend.fifo_create .MAKE.DEPENDFILE=3D.depend.fifo_cre= ate depend) --- .depend.fifo_create --- rm -f .depend.fifo_create CC=3D'cc ' mkdep -f .depend.fifo_create -a -std=3Dgnu99 /builds/FreeB= SD_stable_10/tests/sys/fifo/fifo_create.c echo fifo_create: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libc.a >> .depend.fifo_create (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- sys.depend__D --- echo loader.sym: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys= /boot/i386/loader/../../ficl32/libficl.a /builds/FreeBSD_stable_10/obj/bu= ilds/FreeBSD_stable_10/sys/boot/i386/loader/../libi386/libi386.a /builds/Fr= eeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/loader/../../lib= stand32/libstand.a >> .depend --- tests.depend__D --- --- .depend.flock_helper --- --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/pxeldr (depend) --- tests.depend__D --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c --- sys.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I/builds/FreeBSD_stable_10/sys/boot/i386= /pxeldr/../common -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot/i386/px= eldr/pxeldr.S --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/zfsboot (depend) --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/zfsboot/../../../i386/includ= e machine --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DBOOTPROG=3D\"zfsboot\" -DBOOT2 -DSIOPRT= =3D0x3f8 -DSIOFMT=3D0x3 -DSIOSPD=3D9600 -I/builds/FreeBSD_stable_10/sys/boo= t/i386/zfsboot/../../common -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsbo= ot/../common -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsboot/../../zfs -I= /builds/FreeBSD_stable_10/sys/boot/i386/zfsboot/../../../cddl/boot/zfs -I/b= uilds/FreeBSD_stable_10/sys/boot/i386/zfsboot/../btx/lib -I. -I/builds/Free= BSD_stable_10/sys/boot/i386/zfsboot/../boot2 -std=3Dgnu99 /builds/FreeBSD= _stable_10/sys/boot/i386/zfsboot/zfsboot.c --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/gptzfsboot (depend) --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/gptzfsboot/../../../i386/inc= lude machine =3D=3D=3D> sys/boot/i386/zfsloader (depend) --- tests.depend__D --- --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../../i386/incl= ude machine --- vers.c --- sh /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../common/newvers.s= h /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../loader/version "ZFS= enabled bootstrap loader" x86 --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DLOADER_ZFS_SUPPORT -DLOADER_NFS_SUPPORT= -DBOOT_FORTH -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../fic= l -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../ficl/i386 -DLOA= DER_GZIP_SUPPORT -DLOADER_DISK_SUPPORT -DLOADER_GPT_SUPPORT -DLOADER_MBR_SU= PPORT -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../common -I. = -I/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/.. -I/builds/FreeBSD_st= able_10/sys/boot/i386/zfsloader/../btx/lib -DLOADER_PREFER_AMD64 -std=3Dgnu= 99 /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../loader/main.c /bu= ilds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../loader/conf.c vers.c /bui= lds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../common/boot.c /builds/F= reeBSD_stable_10/sys/boot/i386/zfsloader/../../common/commands.c /builds/Fr= eeBSD_stable_10/sys/boot/i386/zfsloader/../../common/console.c /builds/Free= BSD_stable_10/sys/boot/i386/zfsloader/../../common/devopen.c /builds/FreeBS= D_stable_10/sys/boot/i386/zfsloader/../../common/interp.c /builds/FreeBSD_s= table_10/sys/boot/i386/zfsloader/../../common/interp_backslash.c /builds/Fr= eeBSD_stable_10/sys/boot/i386/zfsloader/../../common/interp_parse.c /builds= /FreeBSD_stable_10/sys/boot/i386/zfsloader/../../common/ls.c /builds/FreeBS= D_stable_10/sys/boot/i386/zfsloader/../../common/misc.c /builds/FreeBSD_sta= ble_10/sys/boot/i386/zfsloader/../../common/module.c /builds/FreeBSD_stable= _10/sys/boot/i386/zfsloader/../../common/panic.c /builds/FreeBSD_stable_10/= sys/boot/i386/zfsloader/../../common/load_elf32.c /builds/FreeBSD_stable_10= /sys/boot/i386/zfsloader/../../common/load_elf32_obj.c /builds/FreeBSD_stab= le_10/sys/boot/i386/zfsloader/../../common/reloc_elf32.c /builds/FreeBSD_st= able_10/sys/boot/i386/zfsloader/../../common/load_elf64.c /builds/FreeBSD_s= table_10/sys/boot/i386/zfsloader/../../common/load_elf64_obj.c /builds/Free= BSD_stable_10/sys/boot/i386/zfsloader/../../common/reloc_elf64.c /builds/Fr= eeBSD_stable_10/sys/boot/i386/zfsloader/../../common/disk.c /builds/FreeBSD= _stable_10/sys/boot/i386/zfsloader/../../common/part.c /builds/FreeBSD_stab= le_10/sys/boot/i386/zfsloader/../../common/crc32.c /builds/FreeBSD_stable_1= 0/sys/boot/i386/zfsloader/../../common/bcache.c /builds/FreeBSD_stable_10/s= ys/boot/i386/zfsloader/../../common/isapnp.c /builds/FreeBSD_stable_10/sys/= boot/i386/zfsloader/../../common/pnp.c /builds/FreeBSD_stable_10/sys/boot/i= 386/zfsloader/../../common/interp_forth.c --- tests.depend__D --- echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sys.depend__D --- echo zfsloader.sym: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= sys/boot/i386/zfsloader/../../ficl32/libficl.a /builds/FreeBSD_stable_10/o= bj/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader/../../zfs/libzfsboot.a = /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/zfsloa= der/../libi386/libi386.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stabl= e_10/sys/boot/i386/zfsloader/../../libstand32/libstand.a >> .depend A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 1 error make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot 1 error make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sys 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sys *** [sys.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo tblgen: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/= clang/tblgen/../../../lib/clang/libllvmtablegen/libllvmtablegen.a /builds/F= reeBSD_stable_10/obj/builds/FreeBSD_stable_10/usr.bin/clang/tblgen/../../..= /lib/clang/libllvmsupport/libllvmsupport.a /builds/FreeBSD_stable_10/obj/bu= ilds/FreeBSD_stable_10/tmp/usr/lib/libncurses.a >> .depend echo tblgen: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc++.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang/tblgen *** [depend_subdir_tblgen] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/clang *** [depend_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Wed Dec 2 19:29:37 2015 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 A9E1DA3E7A5 for ; Wed, 2 Dec 2015 19:29:37 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 9A5BE1251; Wed, 2 Dec 2015 19:29:37 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 59EAC501; Wed, 2 Dec 2015 19:29:37 +0000 (UTC) Date: Wed, 2 Dec 2015 19:29:31 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: fabient@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1427676947.364.1449084575695.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <321144087.362.1449070632560.JavaMail.jenkins@jenkins-9.freebsd.org> References: <321144087.362.1449070632560.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1860 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 19:29:37 -0000 FreeBSD_stable_10 - Build #1860 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1860/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1860/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1860/console Change summaries: 291652 by fabient: MFC r291301: The r241129 description was wrong that the scenario is possible only for read locks on pcbs. The same race can happen with write lock semantics as well. The race scenario: - Two threads (1 and 2) locate pcb with writer semantics (INPLOOKUP_WLOCKPCB) and do in_pcbref() on it. - 1 and 2 both drop the inp hash lock. - Another thread (3) grabs the inp hash lock. Then it runs in_pcbfree(), which wlocks the pcb. They must happen faster than 1 or 2 come INP_WLOCK()! - 1 and 2 congest in INP_WLOCK(). - 3 does in_pcbremlists(), drops hash lock, and runs in_pcbrele_wlocked(), which doesn't free the pcb due to two references on it. Then it unlocks the pcb. - 1 (or 2) gets wlock on the pcb, runs in_pcbrele_wlocked(), which doesn't report inp as freed, due to 2 (or 1) still helding extra reference on it. The thread tries to do smth with a disconnected pcb and crashes. Submitted by: emeric.poupon@stormshield.eu Reviewed by: glebius@ Sponsored by: Stormshield Tested by: Cassiano Peixoto, Stormshield From owner-freebsd-stable@freebsd.org Thu Dec 3 00:40:40 2015 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 BAB0CA3E741 for ; Thu, 3 Dec 2015 00:40:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A50DC1DFD; Thu, 3 Dec 2015 00:40:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8F4345D1; Thu, 3 Dec 2015 00:40:39 +0000 (UTC) Date: Thu, 3 Dec 2015 00:40:35 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: rmacklem@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <1537731010.369.1449103238565.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1861 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 00:40:40 -0000 FreeBSD_stable_10 - Build #1861 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1861/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1861/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1861/cons= ole Change summaries: 291655 by rmacklem: MFC: r291035 The problem report was for a crash that happened when smbfs was trying to do a mount. Given the backtrace, it appears that the crash occurred when smb_vc_create() failed and then called smb_vc_put() with vcp->vc_iod =3D=3D NULL. smb_vc_put() subsequently called smb_vc_disconnect() with vcp->vc_iod =3D=3D NULL, causing the crash. This patch adds a check for vcp->vc_iod !=3D NULL in smb_vc_disconnect() to avoid the crash. It also fixes the case in smb_vc_create() where kproc_create() fails so that it destroys the mutexes and sets vcp->vc_iod =3D=3D NULL before free()'ing the iod structure. The end of the build log: [...truncated 116527 lines...] CC=3D'cc ' mkdep -f .depend -a -D_FILE_OFFSET_BITS=3D64 -std=3Dgnu99 /= builds/FreeBSD_stable_10/usr.bin/bzip2/../../contrib/bzip2/bzip2.c echo bzip2: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libbz2.a >> .depend --- depend_subdir_bzip2recover --- =3D=3D=3D> usr.bin/bzip2recover (depend) --- tests.depend__D --- echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/bzip2recover/../../contrib/bzip2/bzip2recover.c --- tests.depend__D --- --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- usr.bin.depend__D --- echo bzip2recover: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a >> .depend --- depend_subdir_c89 --- =3D=3D=3D> usr.bin/c89 (depend) --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc --- usr.bin.depend__D --- --- .depend --- rm -f .depend --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- usr.bin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/c89/c89.c --- tests.depend__D --- --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c --- usr.bin.depend__D --- echo c89: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend --- depend_subdir_c99 --- =3D=3D=3D> usr.bin/c99 (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/c99/c99.c --- tests.depend__D --- echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- echo c99: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libc.a >> .depend --- depend_subdir_calendar --- =3D=3D=3D> usr.bin/calendar (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/calendar/tests (depend) --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/calendar/calendar.c /builds/FreeBSD_stable_10/usr.bin/calendar/loc= ale.c /builds/FreeBSD_stable_10/usr.bin/calendar/events.c /builds/FreeBSD_s= table_10/usr.bin/calendar/dates.c /builds/FreeBSD_stable_10/usr.bin/calenda= r/parsedata.c /builds/FreeBSD_stable_10/usr.bin/calendar/io.c /builds/FreeB= SD_stable_10/usr.bin/calendar/day.c /builds/FreeBSD_stable_10/usr.bin/calen= dar/ostern.c /builds/FreeBSD_stable_10/usr.bin/calendar/paskha.c /builds/Fr= eeBSD_stable_10/usr.bin/calendar/pom.c /builds/FreeBSD_stable_10/usr.bin/ca= lendar/sunpos.c --- tests.depend__D --- echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/libfirewire (depend) --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/../../../i386/in= clude machine --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -D_BOOT -I/builds/FreeBSD_stable_10/sys/b= oot/i386/libfirewire/../../common -I/builds/FreeBSD_stable_10/sys/boot/i386= /libfirewire/../../.. -I. -I/builds/FreeBSD_stable_10/sys/boot/i386/libfire= wire/../../../../lib/libstand -I/builds/FreeBSD_stable_10/sys/boot/i386/lib= firewire/../btx/lib -I/builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/.= ./libi386 -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/boot/i386/libfirewir= e/firewire.c /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/fwohci.c /= builds/FreeBSD_stable_10/sys/boot/i386/libfirewire/dconsole.c /builds/FreeB= SD_stable_10/sys/boot/i386/libfirewire/../../../dev/dcons/dcons.c /builds/F= reeBSD_stable_10/sys/boot/i386/libfirewire/../../../dev/firewire/fwcrom.c --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c --- sys.depend__D --- =3D=3D=3D> sys/boot/i386/loader (depend) --- tests.depend__D --- echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- sys.depend__D --- --- machine --- ln -sf /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../../i386/include= machine --- vers.c --- sh /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/newvers.sh /= builds/FreeBSD_stable_10/sys/boot/i386/loader/../loader/version "bootstrap= loader" x86 --- tests.depend__D --- --- .depend.dup_test --- --- sys.depend__D --- --- .depend --- --- tests.depend__D --- rm -f .depend.dup_test --- sys.depend__D --- rm -f .depend --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c --- sys.depend__D --- CC=3D'cc ' mkdep -f .depend -a -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/buil= ds/FreeBSD_stable_10/sys/boot/i386/loader/../../ficl -I/builds/FreeBSD_stab= le_10/sys/boot/i386/loader/../../ficl/i386 -DLOADER_GZIP_SUPPORT -DLOADER_D= ISK_SUPPORT -DLOADER_GPT_SUPPORT -DLOADER_MBR_SUPPORT -I/builds/FreeBSD_sta= ble_10/sys/boot/i386/loader/../../common -I. -I/builds/FreeBSD_stable_10/sy= s/boot/i386/loader/.. -I/builds/FreeBSD_stable_10/sys/boot/i386/loader/../b= tx/lib -DLOADER_PREFER_AMD64 -std=3Dgnu99 /builds/FreeBSD_stable_10/sys/b= oot/i386/loader/main.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/conf.= c vers.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/boot.c= /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/commands.c /bu= ilds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/console.c /builds/= FreeBSD_stable_10/sys/boot/i386/loader/../../common/devopen.c /builds/FreeB= SD_stable_10/sys/boot/i386/loader/../../common/interp.c /builds/FreeBSD_sta= ble_10/sys/boot/i386/loader/../../common/interp_backslash.c /builds/FreeBSD= _stable_10/sys/boot/i386/loader/../../common/interp_parse.c /builds/FreeBSD= _stable_10/sys/boot/i386/loader/../../common/ls.c /builds/FreeBSD_stable_10= /sys/boot/i386/loader/../../common/misc.c /builds/FreeBSD_stable_10/sys/boo= t/i386/loader/../../common/module.c /builds/FreeBSD_stable_10/sys/boot/i386= /loader/../../common/panic.c /builds/FreeBSD_stable_10/sys/boot/i386/loader= /../../common/load_elf32.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/.= ./../common/load_elf32_obj.c /builds/FreeBSD_stable_10/sys/boot/i386/loader= /../../common/reloc_elf32.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/= ../../common/load_elf64.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/..= /../common/load_elf64_obj.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/= ../../common/reloc_elf64.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/.= ./../common/disk.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../com= mon/part.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/crc3= 2.c /builds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/bcache.c /b= uilds/FreeBSD_stable_10/sys/boot/i386/loader/../../common/isapnp.c /builds/= FreeBSD_stable_10/sys/boot/i386/loader/../../common/pnp.c /builds/FreeBSD_s= table_10/sys/boot/i386/loader/../../common/interp_forth.c --- usr.bin.depend__D --- echo calendar: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libm.a >> .depend --- depend_subdir_cap_mkdb --- =3D=3D=3D> usr.bin/cap_mkdb (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/cap_mkdb/cap_mkdb.c --- tests.depend__D --- echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- usr.bin.depend__D --- echo cap_mkdb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend --- depend_subdir_catman --- =3D=3D=3D> usr.bin/catman (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/catman/catman.c --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) --- usr.bin.depend__D --- echo catman: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a >> .depend --- depend_subdir_chat --- =3D=3D=3D> usr.bin/chat (depend) --- tests.depend__D --- make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct --- usr.bin.depend__D --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/chat --- tests.depend__D --- *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern --- usr.bin.depend__D --- *** [depend_subdir_chat] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin --- tests.depend__D --- *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sys.depend__D --- echo loader.sym: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys= /boot/i386/loader/../../ficl32/libficl.a /builds/FreeBSD_stable_10/obj/bu= ilds/FreeBSD_stable_10/sys/boot/i386/loader/../libi386/libi386.a /builds/Fr= eeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/loader/../../lib= stand32/libstand.a >> .depend A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386/loader *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 1 error make[5]: stopped in /builds/FreeBSD_stable_10/sys/boot/i386 *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot 1 error make[4]: stopped in /builds/FreeBSD_stable_10/sys/boot *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sys 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sys *** [sys.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Thu Dec 3 12:40:02 2015 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 BEF88A3E592 for ; Thu, 3 Dec 2015 12:40:02 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A2C8A1A81; Thu, 3 Dec 2015 12:40:02 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 00F9D802; Thu, 3 Dec 2015 12:40:01 +0000 (UTC) Date: Thu, 3 Dec 2015 12:39:58 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: royger@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-stable@FreeBSD.org Message-ID: <558179915.383.1449146400423.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1537731010.369.1449103238565.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1537731010.369.1449103238565.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_stable_10 - Build #1862 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 12:40:02 -0000 FreeBSD_stable_10 - Build #1862 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1862/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1862/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_10/1862/cons= ole Change summaries: 291687 by royger: MFC r291024: xen: fix dropping bitmap IPIs during resume Sponsored by:=09=09Citrix Systems R&D The end of the build log: [...truncated 116623 lines...] (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_i= o DEPENDFILE=3D.depend.fifo_io .MAKE.DEPENDFILE=3D.depend.fifo_io depend= ) --- usr.bin.depend__D --- --- depend_subdir_comm --- =3D=3D=3D> usr.bin/comm (depend) --- tests.depend__D --- --- .depend.fifo_io --- rm -f .depend.fifo_io CC=3D'cc ' mkdep -f .depend.fifo_io -a -std=3Dgnu99 /builds/FreeBSD_s= table_10/tests/sys/fifo/fifo_io.c --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/comm/tests (depend) --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/comm/comm.c --- tests.depend__D --- echo fifo_io: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libc.a >> .depend.fifo_io (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_m= isc DEPENDFILE=3D.depend.fifo_misc .MAKE.DEPENDFILE=3D.depend.fifo_misc = depend) --- .depend.fifo_misc --- rm -f .depend.fifo_misc CC=3D'cc ' mkdep -f .depend.fifo_misc -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_misc.c --- usr.bin.depend__D --- echo comm: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a >> .depend --- depend_subdir_compile_et --- =3D=3D=3D> usr.bin/compile_et (depend) --- parse.c --- yacc -d -o parse.c /builds/FreeBSD_stable_10/usr.bin/compile_et/../../contr= ib/com_err/parse.y --- lex.c --- lex -olex.c /builds/FreeBSD_stable_10/usr.bin/compile_et/../../contrib/com= _err/lex.l --- tests.depend__D --- echo fifo_misc: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_misc (cd /builds/FreeBSD_stable_10/tests/sys/fifo && make -f /builds/FreeBSD_sta= ble_10/tests/sys/fifo/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfifo_o= pen DEPENDFILE=3D.depend.fifo_open .MAKE.DEPENDFILE=3D.depend.fifo_open = depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I. -I/builds/FreeBSD_stable_10/usr.bin/c= ompile_et/../../contrib/com_err -std=3Dgnu99 /builds/FreeBSD_stable_10/us= r.bin/compile_et/../../contrib/com_err/compile_et.c parse.c lex.c --- tests.depend__D --- --- .depend.fifo_open --- rm -f .depend.fifo_open CC=3D'cc ' mkdep -f .depend.fifo_open -a -std=3Dgnu99 /builds/FreeBSD= _stable_10/tests/sys/fifo/fifo_open.c echo fifo_open: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libc.a >> .depend.fifo_open =3D=3D=3D> tests/sys/file (depend) --- usr.bin.depend__D --- echo compile_et: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp= /usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/= usr/lib/libroken.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/u= sr.bin/compile_et/../../kerberos5/lib/libvers/libvers.a >> .depend --- depend_subdir_compress --- =3D=3D=3D> usr.bin/compress (depend) --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dflock_= helper DEPENDFILE=3D.depend.flock_helper .MAKE.DEPENDFILE=3D.depend.flock_= helper depend) --- usr.bin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /usr.bin/compress/compress.c /builds/FreeBSD_stable_10/usr.bin/compress/zop= en.c --- tests.depend__D --- --- .depend.flock_helper --- rm -f .depend.flock_helper CC=3D'cc ' mkdep -f .depend.flock_helper -a -std=3Dgnu99 /builds/Free= BSD_stable_10/tests/sys/file/flock_helper.c echo flock_helper: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libpthread.a >> .depend.flock_helper (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dftrunc= ate_test DEPENDFILE=3D.depend.ftruncate_test .MAKE.DEPENDFILE=3D.depend.ft= runcate_test depend) --- .depend.ftruncate_test --- rm -f .depend.ftruncate_test CC=3D'cc ' mkdep -f .depend.ftruncate_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/ftruncate_test.c --- sbin.depend__D --- echo pfctl: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libm.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libmd.a >> .depend --- depend_subdir_pflogd --- =3D=3D=3D> sbin/pflogd (depend) --- usr.bin.depend__D --- echo compress: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend --- depend_subdir_cpio --- =3D=3D=3D> usr.bin/cpio (depend) --- sbin.depend__D --- --- .depend --- rm -f .depend --- tests.depend__D --- echo ftruncate_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a >> .depend.ftruncate_test --- sbin.depend__D --- CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 /builds/FreeBSD_stable_10= /sbin/pflogd/../../contrib/pf/pflogd/pflogd.c /builds/FreeBSD_stable_10/sbi= n/pflogd/../../contrib/pf/pflogd/pidfile.c /builds/FreeBSD_stable_10/sbin/p= flogd/../../contrib/pf/pflogd/privsep.c /builds/FreeBSD_stable_10/sbin/pflo= gd/../../contrib/pf/pflogd/privsep_fdpass.c --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dnewfil= eops_on_fork_test DEPENDFILE=3D.depend.newfileops_on_fork_test .MAKE.DEPEN= DFILE=3D.depend.newfileops_on_fork_test depend) --- usr.bin.depend__D --- --- _sub.depend --- =3D=3D=3D> usr.bin/cpio/tests (depend) --- tests.depend__D --- --- .depend.newfileops_on_fork_test --- rm -f .depend.newfileops_on_fork_test CC=3D'cc ' mkdep -f .depend.newfileops_on_fork_test -a -std=3Dgnu99 /= builds/FreeBSD_stable_10/tests/sys/file/newfileops_on_fork_test.c --- usr.bin.depend__D --- (cd /builds/FreeBSD_stable_10/usr.bin/cpio/tests && make -f /builds/FreeBSD= _stable_10/usr.bin/cpio/tests/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG= =3Dbsdcpio_test DEPENDFILE=3D.depend.bsdcpio_test .MAKE.DEPENDFILE=3D.depe= nd.bsdcpio_test depend) --- tests.depend__D --- echo newfileops_on_fork_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_= stable_10/tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_s= table_10/tmp/usr/lib/libpthread.a >> .depend.newfileops_on_fork_test --- usr.bin.depend__D --- --- list.h --- --- tests.depend__D --- (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dclosef= rom_test DEPENDFILE=3D.depend.closefrom_test .MAKE.DEPENDFILE=3D.depend.cl= osefrom_test depend) --- .depend.closefrom_test --- rm -f .depend.closefrom_test CC=3D'cc ' mkdep -f .depend.closefrom_test -a -std=3Dgnu99 /builds/Fr= eeBSD_stable_10/tests/sys/file/closefrom_test.c --- sbin.depend__D --- echo pflogd: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpcap.a >> .depend --- depend_subdir_ping --- =3D=3D=3D> sbin/ping (depend) --- tests.depend__D --- echo closefrom_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10= /tmp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/= tmp/usr/lib/libutil.a >> .depend.closefrom_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Ddup_te= st DEPENDFILE=3D.depend.dup_test .MAKE.DEPENDFILE=3D.depend.dup_test dep= end) --- sbin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DIPSEC -std=3Dgnu99 /builds/FreeBSD_st= able_10/sbin/ping/ping.c --- tests.depend__D --- --- .depend.dup_test --- rm -f .depend.dup_test CC=3D'cc ' mkdep -f .depend.dup_test -a -std=3Dgnu99 /builds/FreeBSD_= stable_10/tests/sys/file/dup_test.c echo dup_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/u= sr/lib/libc.a >> .depend.dup_test (cd /builds/FreeBSD_stable_10/tests/sys/file && make -f /builds/FreeBSD_sta= ble_10/tests/sys/file/Makefile _RECURSING_PROGS=3D SUBDIR=3D PROG=3Dfcntlf= lags_test DEPENDFILE=3D.depend.fcntlflags_test .MAKE.DEPENDFILE=3D.depend.= fcntlflags_test depend) --- sbin.depend__D --- echo ping: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/li= b/libm.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/lib= /libipsec.a >> .depend --- depend_subdir_ping6 --- =3D=3D=3D> sbin/ping6 (depend) --- tests.depend__D --- --- .depend.fcntlflags_test --- rm -f .depend.fcntlflags_test --- usr.bin.depend__D --- --- .depend.bsdcpio_test --- --- tests.depend__D --- CC=3D'cc ' mkdep -f .depend.fcntlflags_test -a -std=3Dgnu99 /builds/F= reeBSD_stable_10/tests/sys/file/fcntlflags_test.c --- usr.bin.depend__D --- rm -f .depend.bsdcpio_test CC=3D'cc ' mkdep -f .depend.bsdcpio_test -a -DPLATFORM_CONFIG_H=3D\"/bui= lds/FreeBSD_stable_10/lib/libarchive/config_freebsd.h\" -I/builds/FreeBSD_s= table_10/lib/libarchive -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD_stab= le_10/usr.bin/cpio/tests -I/builds/FreeBSD_stable_10/obj/builds/FreeBSD_sta= ble_10/usr.bin/cpio/tests -I/builds/FreeBSD_stable_10/contrib/libarchive/cp= io -I/builds/FreeBSD_stable_10/contrib/libarchive/libarchive_fe -I/builds/F= reeBSD_stable_10/contrib/libarchive/test_utils -std=3Dgnu99 /builds/FreeB= SD_stable_10/contrib/libarchive/cpio/cmdline.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/libarchive_fe/err.c /builds/FreeBSD_stable_10/contrib/liba= rchive/cpio/test/test_0.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio= /test/test_basic.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/t= est_cmdline.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_e= xtract_cpio_Z.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test= _extract_cpio_bz2.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/= test_extract_cpio_grz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/t= est/test_extract_cpio_gz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpi= o/test/test_extract_cpio_lrz.c /builds/FreeBSD_stable_10/contrib/libarchive= /cpio/test/test_extract_cpio_lz.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_extract_cpio_lzma.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_extract_cpio_lzo.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_extract_cpio_xz.c /builds/FreeBSD_stable_10/con= trib/libarchive/cpio/test/test_format_newc.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_gcpio_compat.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_option_0.c /builds/FreeBSD_stable_10/contrib/= libarchive/cpio/test/test_option_B_upper.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_option_C_upper.c /builds/FreeBSD_stable_10/cont= rib/libarchive/cpio/test/test_option_J_upper.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_L_upper.c /builds/FreeBSD_stable_10/= contrib/libarchive/cpio/test/test_option_Z_upper.c /builds/FreeBSD_stable_1= 0/contrib/libarchive/cpio/test/test_option_a.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_b64encode.c /builds/FreeBSD_stable_1= 0/contrib/libarchive/cpio/test/test_option_c.c /builds/FreeBSD_stable_10/co= ntrib/libarchive/cpio/test/test_option_d.c /builds/FreeBSD_stable_10/contri= b/libarchive/cpio/test/test_option_f.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_option_grzip.c /builds/FreeBSD_stable_10/contrib/li= barchive/cpio/test/test_option_help.c /builds/FreeBSD_stable_10/contrib/lib= archive/cpio/test/test_option_l.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_option_lrzip.c /builds/FreeBSD_stable_10/contrib/libarch= ive/cpio/test/test_option_lzma.c /builds/FreeBSD_stable_10/contrib/libarchi= ve/cpio/test/test_option_lzop.c /builds/FreeBSD_stable_10/contrib/libarchiv= e/cpio/test/test_option_m.c /builds/FreeBSD_stable_10/contrib/libarchive/cp= io/test/test_option_t.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/t= est/test_option_u.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/= test_option_uuencode.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/te= st/test_option_version.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/= test/test_option_xz.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/tes= t/test_option_y.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/te= st_option_z.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_o= wner_parse.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/test_pa= ssthrough_dotdot.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio/test/t= est_passthrough_reverse.c /builds/FreeBSD_stable_10/contrib/libarchive/cpio= /test/main.c /builds/FreeBSD_stable_10/contrib/libarchive/test_utils/test_u= tils.c --- sbin.depend__D --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DIPSEC -DKAME_SCOPEID -DUSE_RFC2292BIS -= std=3Dgnu99 /builds/FreeBSD_stable_10/sbin/ping6/ping6.c --- tests.depend__D --- echo fcntlflags_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_1= 0/tmp/usr/lib/libc.a >> .depend.fcntlflags_test =3D=3D=3D> tests/sys/kern (depend) =3D=3D=3D> tests/sys/kern/acct (depend) (cd /builds/FreeBSD_stable_10/tests/sys/kern/acct && make -f /builds/FreeBS= D_stable_10/tests/sys/kern/acct/Makefile _RECURSING_PROGS=3D SUBDIR=3D PRO= G=3Dacct_test DEPENDFILE=3D.depend.acct_test .MAKE.DEPENDFILE=3D.depend.ac= ct_test depend) --- sbin.depend__D --- echo ping6: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/l= ib/libipsec.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/us= r/lib/libm.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libmd.a >> .depend --- depend_subdir_quotacheck --- =3D=3D=3D> sbin/quotacheck (depend) --- tests.depend__D --- make[7]: make[7]: don't know how to make /sys/kern/kern_acct.c. Stop make[7]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [acct_test.depend] Error code 2 make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct 1 error make[6]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern/acct *** [_sub.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern 1 error make[5]: stopped in /builds/FreeBSD_stable_10/tests/sys/kern *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys 1 error make[4]: stopped in /builds/FreeBSD_stable_10/tests/sys *** [_sub.depend] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/tests 1 error make[3]: stopped in /builds/FreeBSD_stable_10/tests *** [tests.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- sbin.depend__D --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_stable_10/sbin/quotacheck *** [depend_subdir_quotacheck] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/sbin *** [sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.bin.depend__D --- echo bsdcpio_test: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/t= mp/usr/lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tm= p/usr/lib/libarchive.a >> .depend.bsdcpio_test A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests *** [bsdcpio_test.depend] Error code 2 make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests 1 error make[5]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio/tests *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.bin/cpio *** [depend_subdir_cpio] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.bin *** [usr.bin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 --- usr.sbin.depend__D --- --- depend_subdir_acpi --- echo acpidb: /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr= /lib/libc.a /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/tmp/usr/= lib/libpthread.a >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi/acpidb *** [_sub.depend] Error code 2 make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi 1 error make[4]: stopped in /builds/FreeBSD_stable_10/usr.sbin/acpi *** [depend_subdir_acpi] Error code 2 make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_stable_10/usr.sbin *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in /builds/FreeBSD_stable_10 4 errors make[2]: stopped in /builds/FreeBSD_stable_10 *** [_depend] Error code 2 make[1]: stopped in /builds/FreeBSD_stable_10 1 error make[1]: stopped in /builds/FreeBSD_stable_10 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_stable_10 1 error make: stopped in /builds/FreeBSD_stable_10 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-stable@freebsd.org Thu Dec 3 15:24:32 2015 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 1CD81A4009E for ; Thu, 3 Dec 2015 15:24:32 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) (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 D029F11D9 for ; Thu, 3 Dec 2015 15:24:31 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1a4Vk6-000N9l-Oz for freebsd-stable@FreeBSD.org; Thu, 03 Dec 2015 18:24:22 +0300 Date: Thu, 3 Dec 2015 18:24:22 +0300 From: Slawa Olhovchenkov To: freebsd-stable@FreeBSD.org Subject: TCP regression between 288167 and 291456 Message-ID: <20151203152422.GB70867@zxy.spb.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:24:32 -0000 After upgrading STABLE to r291456 I am see bunch of sockets in TIME_WAIT state. In normal situation I am expect about 30k-50k such sockets. Now I am see all of net.inet.tcp.maxtcptw (440k currently). Setting net.inet.tcp.msl to low value don't reduce this sockets. I am see socket in TIME_WAIT state during 30 minutes. Perhapsh in this state socket may be for ever From owner-freebsd-stable@freebsd.org Fri Dec 4 01:36:21 2015 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 9D401A36330 for ; Fri, 4 Dec 2015 01:36:21 +0000 (UTC) (envelope-from gavin.mu@qq.com) Received: from smtpbg202.qq.com (smtpbg202.qq.com [184.105.206.29]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5414F17D4 for ; Fri, 4 Dec 2015 01:36:20 +0000 (UTC) (envelope-from gavin.mu@qq.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=qq.com; s=s201307; t=1449192955; bh=R80Ti8RvTjJWFsADvtPrdnUN6j3PqQa4/qIRm3lLosA=; h=From:To:Subject:Mime-Version:Content-Type:Content-Transfer-Encoding:Date:Message-ID; b=FmBEBjDDr+unywMW5zBDRTyQtaPHppS1VyYAyaXOUt5W8UxvTcDT/39HQnliakI6s z/BunKjb/hMwfbNAZbkfm2QEimIUBh+EB3aG8XAXZRYhjauqxaXnZkF05a2RYeco8J eNBAUarJw9d+A14BM6TUsd20W2PUTsHjoRPPFBlw= X-QQ-FEAT: zCxBEJgh85cHFW19adgKDd4lZiYQSZ2ir7vcjgBjl9uePzmmNJ0SIGoSttnd4 aWxWT+e3CnP6Y/cJfOSvOYBvgI+p5iiuwpCOtQi/1mUmoMT8KZ4tX+U9uYX/T5Iw1h+bUTJ pPxvtsIOS5AcKhnqWyodd35dfRXYj1XtQm8KNtiLr/yCsNrxINaGaCFnct0T6e+m/2NRfqS 7KPscmPCXa7Sk+9beC478DxWCrujPnoMohdC0mqhm5Q== X-QQ-SSF: 00000000000000F000000000000000Z X-HAS-ATTACH: no X-QQ-BUSINESS-ORIGIN: 2 X-Originating-IP: 124.207.182.128 X-QQ-STYLE: X-QQ-mid: webmail514t1449192954t1037880 From: "=?utf-8?B?R2F2aW4gTXU=?=" To: "=?utf-8?B?ZnJlZWJzZC1zdGFibGU=?=" Subject: application coredump behavior differences between FreeBSD 7.0 and FreeBSD 10.1 Mime-Version: 1.0 Date: Fri, 4 Dec 2015 09:35:54 +0800 X-Priority: 3 Message-ID: X-QQ-MIME: TCMime 1.0 by Tencent X-Mailer: QQMail 2.x X-QQ-Mailer: QQMail 2.x X-QQ-SENDSIZE: 520 X-QQ-Bgrelay: 1 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Dec 2015 01:36:21 -0000 SGksDQoNCldlIGhhdmUgYW4gYXBwbGljYXRpb24gcnVubmluZyBvbiBvbGQgRnJlZUJTRCA3 LjAsIGFuZCB3ZSBhcmUgdXBncmFkaW5nIHRoZSBiYXNlIHN5c3RlbSB0byBGcmVlQlNEIDEw LjEuIFRoZSBhcHBsaWNhdGlvbiB1c2VzIHN5c3Zfc2htLCBhbmQgd2lsbCBhbGxvY2F0ZSBh IGxvdCBvZiBzaGFyZSBtZW1vcnksIHRob3VnaCBtb3N0IG9mIHRpbWUgb25seSBhIHBhcnQg b2YgdGhlIGFsbG9jYXRlZCBtZW1vcnkgaXMgdXNlZC4gYWthLiBsYXJnZSBTSVpFIGFuZCBz bWFsbCBSRVMgZnJvbSAvdXNyL2Jpbi90b3Agdmlldy4NCg0KV2hlbiB0aGUgYXBwbGljYXRp b24gY29yZSBkdW1wLCB0aGUgY29yZSBkdW1wIGZpbGUgd2lsbCBiZSBsYXJnZSwgYW5kIGlu IEZyZWVCU0QgNy4wLCBpdCB1c2VzIG9ubHkgYSBsaXR0bGUgbW9yZSBtZW1vcnkgdG8gZG8g Y29yZSBkdW1wLCBidXQgaW4gRnJlZUJTRCAxMC4xLCBpdCBzZWVtcyBhbGwgc2hhcmUgbWVt b3J5IGFyZSB0b3VjaGVkIGFuZCB1c2VzIGEgbG90IG9mIHBoeXNpY2FsIG1lbW9yeSAoUkVT IGluIC91c3IvYmluL3RvcCBvdXRwdXQgd2lsbCBpbmNyZWFzZSB2ZXJ5IG11Y2gpIGFuZCBj YXVzZSBtZW1vcnkgZHJhaW4uDQoNCkkgaGF2ZSBiZWVuIGRlYnVnZ2luZyBidXQgY2FuIG5v dCBmaW5kIGFueSBjbHVlIHlldC4gQ291bGQgc29tZW9uZSBwcm92aWRlIHNvbWUgcG9pbnRz IHdoZXJlIHRoZSBpc3N1ZSBoYXBwZW4/IFRoYW5rcy4NCg0KUmVnYXJkcywNCkdhdmluIE11 From owner-freebsd-stable@freebsd.org Fri Dec 4 09:45:58 2015 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 5FB09A40763 for ; Fri, 4 Dec 2015 09:45:58 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CAFAC1D34 for ; Fri, 4 Dec 2015 09:45:57 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tB49jqa8050011 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 4 Dec 2015 11:45:52 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tB49jqa8050011 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tB49joc0049992; Fri, 4 Dec 2015 11:45:50 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 4 Dec 2015 11:45:50 +0200 From: Konstantin Belousov To: Gavin Mu Cc: freebsd-stable Subject: Re: application coredump behavior differences between FreeBSD 7.0 and FreeBSD 10.1 Message-ID: <20151204094550.GO2405@kib.kiev.ua> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) 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.20 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, 04 Dec 2015 09:45:58 -0000 On Fri, Dec 04, 2015 at 09:35:54AM +0800, Gavin Mu wrote: > Hi, > > We have an application running on old FreeBSD 7.0, and we are upgrading the base system to FreeBSD 10.1. The application uses sysv_shm, and will allocate a lot of share memory, though most of time only a part of the allocated memory is used. aka. large SIZE and small RES from /usr/bin/top view. > > When the application core dump, the core dump file will be large, and in FreeBSD 7.0, it uses only a little more memory to do core dump, but in FreeBSD 10.1, it seems all share memory are touched and uses a lot of physical memory (RES in /usr/bin/top output will increase very much) and cause memory drain. > > I have been debugging but can not find any clue yet. Could someone provide some points where the issue happen? Thanks. Both stable/7 and latest HEAD do read the whole mapped segment to write the coredump. This behaviour did not changed, since probably introduction of the ELF support into FreeBSD. And, how otherwise could coredump file contain the content of the mapped segments ? What in the FreeBSD 10 changed in this regard, is a deadlock fix which could occur in some scenarious, including the coredumping. In stable/7, the page instantiation or swap-in for pages accessed by the core write, was done while owning several VFS locks. This sometimes caused deadlock. In stable/10 the deadlock avoidance code is enabled by default, and when kernel detects the possibility of the deadlock, it changes to reading carefully by small chunks. Still, this does not explain the effect that you describe. In fact, I am more suspicious to the claim that stable/7 did not increase RSS of the dumping process or did not accessed the whole mapped shared segment, then the claim that there is a regression in stable/10. From owner-freebsd-stable@freebsd.org Sat Dec 5 05:09:48 2015 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 08F03A41F36 for ; Sat, 5 Dec 2015 05:09:48 +0000 (UTC) (envelope-from gavin.mu@qq.com) Received: from smtpbgsg2.qq.com (smtpbgsg2.qq.com [54.254.200.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 427B519F2 for ; Sat, 5 Dec 2015 05:09:46 +0000 (UTC) (envelope-from gavin.mu@qq.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=qq.com; s=s201307; t=1449292173; bh=4pS1/wMe/2X/CUb7UsXY32l/TLxU38O4+4DBswp2SAk=; h=In-Reply-To:References:From:To:Cc:Subject:Mime-Version:Content-Type:Content-Transfer-Encoding:Date:Message-ID; b=ksZRjZDEZtenvWObcne2Thd1c4aZTeGVyzn8SujZN56yZUDgnZSLPGgJ2whvMsGT6 0x5U4L3jSbfd4f6hAZOxCEi2J2OVy9GpAF5UppLKluOXUSiR2JH0rEwNflKOSK0hHE umyK5TjMX7istXy9CfvKV5tjl4emdAEp1Ru4P3gI= X-QQ-FEAT: /PwxjSpela4dRFwsVUec5QU3IQFRr5tqVSHVGPQlqdKPM3xr8LMcAn0kMXHYs 9DBIptAKXya/YUtasDaEnPKyQbN0aLDamuxvuEW3++a+QIMohgNEjpVaTS5b+mjwrLp2svg VI9ivFfcj2Gbu7U+fp8StJ4FYxMaZcbf+Id7ydLD3CLgTcwOUCv+toB4ZyXY2Q8wQBGdNHC 1xOaWjPdVCvxyiSWWMa1NnpMem2HzB7VR1UKnDk8m7lc6s6YJ1wjxh02P+KzkTJDc+E+RK6 wJKg== X-QQ-SSF: 00000000000000F000000000000000Z X-HAS-ATTACH: no X-QQ-BUSINESS-ORIGIN: 2 X-Originating-IP: 114.250.240.17 In-Reply-To: <20151204094550.GO2405@kib.kiev.ua> References: <20151204094550.GO2405@kib.kiev.ua> X-QQ-STYLE: X-QQ-mid: webmail514t1449292171t8157102 From: "=?utf-8?B?R2F2aW4gTXU=?=" To: "=?utf-8?B?S29uc3RhbnRpbiBCZWxvdXNvdg==?=" Cc: "=?utf-8?B?ZnJlZWJzZC1zdGFibGU=?=" Subject: Re: application coredump behavior differences between FreeBSD 7.0and FreeBSD 10.1 Mime-Version: 1.0 Date: Sat, 5 Dec 2015 13:09:31 +0800 X-Priority: 3 Message-ID: X-QQ-MIME: TCMime 1.0 by Tencent X-Mailer: QQMail 2.x X-QQ-Mailer: QQMail 2.x X-QQ-ReplyHash: 3175897267 X-QQ-SENDSIZE: 520 X-QQ-Bgrelay: 1 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 05:09:48 -0000 SGksIGtpYiwNCg0KDQpQbGVhc2Ugc2VlIG15IHRlc3Rpbmcgb24gRnJlZUJTRCA3LjAuDQpm cmVlYnNkNyMgc3lzY3RsIGtlcm4uaXBjLnNobWFsbA0Ka2Vybi5pcGMuc2htYWxsOiA4MTky MDANCmZyZWVic2Q3IyBzeXNjdGwga2Vybi5pcGMuc2htbWF4DQprZXJuLmlwYy5zaG1tYXg6 IDMzNTU0NDMyMDANCmZyZWVic2Q3IyB1bmFtZSAtYQ0KRnJlZUJTRCBmcmVlYnNkNy5sb2Nh bGRvbWFpbiA3LjAtUkVMRUFTRSBGcmVlQlNEIDcuMC1SRUxFQVNFICMwOiBTdW4gRmViIDI0 IDEwOjM1OjM2IFVUQyAyMDA4ICAgICByb290QGRyaXNjb2xsLmNzZS5idWZmYWxvLmVkdTov dXNyL29iai91c3Ivc3JjL3N5cy9HRU5FUklDICBhbWQ2NA0KDQoNCg0KdGVzdGluZyBjb2Rl Og0KZnJlZWJzZDcjIGNhdCB0dC5jDQojaW5jbHVkZSA8c3RkaW8uaD4NCiNpbmNsdWRlIDxz dGRsaWIuaD4NCiNpbmNsdWRlIDxtYWNoaW5lL3BhcmFtLmg+DQojaW5jbHVkZSA8c3lzL3R5 cGVzLmg+DQojaW5jbHVkZSA8c3lzL2lwYy5oPg0KI2luY2x1ZGUgPHN5cy9zaG0uaD4NCg0K DQppbnQNCm1haW4oaW50IGFyZ2MsIGNoYXIgKiphcmd2KQ0Kew0KICAgICAgICBjaGFyICoq cDsNCiAgICAgICAgaW50IHNpemU7DQogICAgICAgIGludCBpOw0KICAgICAgICBjaGFyICpj ID0gTlVMTDsNCiAgICAgICAgaW50IHNobWlkOw0KICAgICAgICB2b2lkICpzaG1faGFuZGxl Ow0KICAgICAgICBzaXplID0gYXRvaShhcmd2WzFdKTsNCiAgICAgICAgcHJpbnRmKCJ3aWxs IGFsbG9jICVkR0JcbiIsIHNpemUpOw0KDQoNCiAgICAgICAgc2htaWQgPSBzaG1nZXQoMTAw LCBzaXplICogMTAyNCAqIDEwMjQgKiAxMDI0LCAwNjQ0IHwgSVBDX0NSRUFUKTsNCiAgICAg ICAgaWYgKHNobWlkID09IC0xKSB7DQogICAgICAgICAgICAgICAgcHJpbnRmKCJzaG1pZCA9 ICVkXG4iLCBzaG1pZCk7DQogICAgICAgIH0NCg0KDQogICAgICAgIHNobV9oYW5kbGUgPSBz aG1hdChzaG1pZCwgTlVMTCwgMCk7DQogICAgICAgIGlmIChzaG1faGFuZGxlID09IC0xKSB7 DQogICAgICAgICAgICAgICAgcHJpbnRmKCJudWxsIHNobV9oYW5kbGVcbiIpOw0KICAgICAg ICB9DQoNCg0KICAgICAgICAqYyA9IDA7DQogICAgICAgIHJldHVybiAwOw0KfQ0KDQoNCg0K ZnJlZWJzZDcjIC4vYS5vdXQgMQ0Kd2lsbCBhbGxvYyAxR0INClNlZ21lbnRhdGlvbiBmYXVs dCAoY29yZSBkdW1wZWQpDQoNCg0KDQp3aGVuIGEub3V0IGlzIHJ1bm5pbmcsIHRoZSBSRVMg a2VlcHMgYmVpbmcgMjAyNEsgd2l0aG91dCBpbmNyZWFzaW5nOg0KDQoNCmxhc3QgcGlkOiAg IDczNTsgIGxvYWQgYXZlcmFnZXM6ICAwLjAwLCAgMC4wMSwgIDAuMDMgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgIHVwIDArMDA6MTU6MTEgIDA0OjQzOjM1DQoyNSBw cm9jZXNzZXM6ICAxIHJ1bm5pbmcsIDI0IHNsZWVwaW5nDQpDUFUgc3RhdGVzOiAgMC4wJSB1 c2VyLCAgMC4wJSBuaWNlLCAyMi42JSBzeXN0ZW0sICAwLjglIGludGVycnVwdCwgNzYuNyUg aWRsZQ0KTWVtOiAxM00gQWN0aXZlLCA2MzgwSyBJbmFjdCwgNTJNIFdpcmVkLCAzMksgQ2Fj aGUsIDM5TSBCdWYsIDkxME0gRnJlZQ0KU3dhcDogMjAxNU0gVG90YWwsIDIwMTVNIEZyZWUN Cg0KDQogIFBJRCBVU0VSTkFNRSAgVEhSIFBSSSBOSUNFICAgU0laRSAgICBSRVMgU1RBVEUg ICAgVElNRSAgIFdDUFUgQ09NTUFORA0KICA3MzQgcm9vdCAgICAgICAgMSAtMTYgICAgMCAg MTAyN00gIDIwMjRLIHdkcmFpbiAgIDA6MDIgMTMuMjclIGEub3V0DQoNCg0KDQpidXQgd2hl biBzYW1lIGNvZGUgaXMgcnVubmluZyBvbiBGcmVlQlNEIDEwLjEsIHRoZSBSRVMga2VlcHMg aW5jcmVhc2luZyB0byAxR0IuIEZyb20gbXkgdGVzdGluZywgaWYgdGhlIG1lbW9yeSBpcyBh bGxvY2F0ZWQgYnkgbWFsbG9jKCksIHRoZW4gUkVTIHdpbGwga2VlcCBpbmNyZWFzaW5nIGlu IGJvdGggNy4wIGFuZCAxMC4xLiBvbmx5IHN5c3Zfc2htIGluIDcuMCBoYXMgZGlmZmVyZW50 IGJlaGF2aW9yLiBJIGhhdmUgY2hlY2tlZCBjb3JlZHVtcCgpIGNvZGUgYnV0IGRpZCBub3Qg ZmluZCBhbnkgY2x1ZSB3aHkgaXQgaXMgZGlmZmVyZW50Lg0KDQoNClJlZ2FyZHMsDQpHYXZp biBNdQ0KDQoNCi0tLS0tLS0tLS0tLS0tLS0tLSBPcmlnaW5hbCAtLS0tLS0tLS0tLS0tLS0t LS0NCkZyb206ICAiS29uc3RhbnRpbiBCZWxvdXNvdiI7PGtvc3Rpa2JlbEBnbWFpbC5jb20+ Ow0KRGF0ZTogIEZyaSwgRGVjIDQsIDIwMTUgMDU6NDUgUE0NClRvOiAgIkdhdmluIE11Ijxn YXZpbi5tdUBxcS5jb20+OyANCkNjOiAgImZyZWVic2Qtc3RhYmxlIjxmcmVlYnNkLXN0YWJs ZUBmcmVlYnNkLm9yZz47IA0KU3ViamVjdDogIFJlOiBhcHBsaWNhdGlvbiBjb3JlZHVtcCBi ZWhhdmlvciBkaWZmZXJlbmNlcyBiZXR3ZWVuIEZyZWVCU0QgNy4wYW5kIEZyZWVCU0QgMTAu MQ0KDQoNCg0KT24gRnJpLCBEZWMgMDQsIDIwMTUgYXQgMDk6MzU6NTRBTSArMDgwMCwgR2F2 aW4gTXUgd3JvdGU6DQo+IEhpLA0KPiANCj4gV2UgaGF2ZSBhbiBhcHBsaWNhdGlvbiBydW5u aW5nIG9uIG9sZCBGcmVlQlNEIDcuMCwgYW5kIHdlIGFyZSB1cGdyYWRpbmcgdGhlIGJhc2Ug c3lzdGVtIHRvIEZyZWVCU0QgMTAuMS4gVGhlIGFwcGxpY2F0aW9uIHVzZXMgc3lzdl9zaG0s IGFuZCB3aWxsIGFsbG9jYXRlIGEgbG90IG9mIHNoYXJlIG1lbW9yeSwgdGhvdWdoIG1vc3Qg b2YgdGltZSBvbmx5IGEgcGFydCBvZiB0aGUgYWxsb2NhdGVkIG1lbW9yeSBpcyB1c2VkLiBh a2EuIGxhcmdlIFNJWkUgYW5kIHNtYWxsIFJFUyBmcm9tIC91c3IvYmluL3RvcCB2aWV3Lg0K PiANCj4gV2hlbiB0aGUgYXBwbGljYXRpb24gY29yZSBkdW1wLCB0aGUgY29yZSBkdW1wIGZp bGUgd2lsbCBiZSBsYXJnZSwgYW5kIGluIEZyZWVCU0QgNy4wLCBpdCB1c2VzIG9ubHkgYSBs aXR0bGUgbW9yZSBtZW1vcnkgdG8gZG8gY29yZSBkdW1wLCBidXQgaW4gRnJlZUJTRCAxMC4x LCBpdCBzZWVtcyBhbGwgc2hhcmUgbWVtb3J5IGFyZSB0b3VjaGVkIGFuZCB1c2VzIGEgbG90 IG9mIHBoeXNpY2FsIG1lbW9yeSAoUkVTIGluIC91c3IvYmluL3RvcCBvdXRwdXQgd2lsbCBp bmNyZWFzZSB2ZXJ5IG11Y2gpIGFuZCBjYXVzZSBtZW1vcnkgZHJhaW4uDQo+IA0KPiBJIGhh dmUgYmVlbiBkZWJ1Z2dpbmcgYnV0IGNhbiBub3QgZmluZCBhbnkgY2x1ZSB5ZXQuIENvdWxk IHNvbWVvbmUgcHJvdmlkZSBzb21lIHBvaW50cyB3aGVyZSB0aGUgaXNzdWUgaGFwcGVuPyBU aGFua3MuDQoNCkJvdGggc3RhYmxlLzcgYW5kIGxhdGVzdCBIRUFEIGRvIHJlYWQgdGhlIHdo b2xlIG1hcHBlZCBzZWdtZW50IHRvIHdyaXRlDQp0aGUgY29yZWR1bXAuICBUaGlzIGJlaGF2 aW91ciBkaWQgbm90IGNoYW5nZWQsIHNpbmNlIHByb2JhYmx5IGludHJvZHVjdGlvbg0Kb2Yg dGhlIEVMRiBzdXBwb3J0IGludG8gRnJlZUJTRC4gIEFuZCwgaG93IG90aGVyd2lzZSBjb3Vs ZCBjb3JlZHVtcCBmaWxlDQpjb250YWluIHRoZSBjb250ZW50IG9mIHRoZSBtYXBwZWQgc2Vn bWVudHMgPw0KDQpXaGF0IGluIHRoZSBGcmVlQlNEIDEwIGNoYW5nZWQgaW4gdGhpcyByZWdh cmQsIGlzIGEgZGVhZGxvY2sgZml4IHdoaWNoDQpjb3VsZCBvY2N1ciBpbiBzb21lIHNjZW5h cmlvdXMsIGluY2x1ZGluZyB0aGUgY29yZWR1bXBpbmcuICBJbiBzdGFibGUvNywNCnRoZSBw YWdlIGluc3RhbnRpYXRpb24gb3Igc3dhcC1pbiBmb3IgcGFnZXMgYWNjZXNzZWQgYnkgdGhl IGNvcmUgd3JpdGUsDQp3YXMgZG9uZSB3aGlsZSBvd25pbmcgc2V2ZXJhbCBWRlMgbG9ja3Mu ICBUaGlzIHNvbWV0aW1lcyBjYXVzZWQgZGVhZGxvY2suDQpJbiBzdGFibGUvMTAgdGhlIGRl YWRsb2NrIGF2b2lkYW5jZSBjb2RlIGlzIGVuYWJsZWQgYnkgZGVmYXVsdCwgYW5kDQp3aGVu IGtlcm5lbCBkZXRlY3RzIHRoZSBwb3NzaWJpbGl0eSBvZiB0aGUgZGVhZGxvY2ssIGl0IGNo YW5nZXMgdG8gcmVhZGluZw0KY2FyZWZ1bGx5IGJ5IHNtYWxsIGNodW5rcy4NCg0KU3RpbGws IHRoaXMgZG9lcyBub3QgZXhwbGFpbiB0aGUgZWZmZWN0IHRoYXQgeW91IGRlc2NyaWJlLiBJ biBmYWN0LCBJDQphbSBtb3JlIHN1c3BpY2lvdXMgdG8gdGhlIGNsYWltIHRoYXQgc3RhYmxl LzcgZGlkIG5vdCBpbmNyZWFzZSBSU1Mgb2YNCnRoZSBkdW1waW5nIHByb2Nlc3Mgb3IgZGlk IG5vdCBhY2Nlc3NlZCB0aGUgd2hvbGUgbWFwcGVkIHNoYXJlZCBzZWdtZW50LA0KdGhlbiB0 aGUgY2xhaW0gdGhhdCB0aGVyZSBpcyBhIHJlZ3Jlc3Npb24gaW4gc3RhYmxlLzEwLg== From owner-freebsd-stable@freebsd.org Sat Dec 5 14:24:15 2015 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 2F8A0A41BF6 for ; Sat, 5 Dec 2015 14:24:15 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEE3F1D9B for ; Sat, 5 Dec 2015 14:24:14 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tB5EO63d065914 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sat, 5 Dec 2015 16:24:06 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tB5EO63d065914 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tB5EO3O8065848; Sat, 5 Dec 2015 16:24:03 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sat, 5 Dec 2015 16:24:03 +0200 From: Konstantin Belousov To: Gavin Mu Cc: freebsd-stable Subject: Re: application coredump behavior differences between FreeBSD 7.0and FreeBSD 10.1 Message-ID: <20151205142403.GE2202@kib.kiev.ua> References: <20151204094550.GO2405@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) 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.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 14:24:15 -0000 On Sat, Dec 05, 2015 at 01:09:31PM +0800, Gavin Mu wrote: > Hi, kib, > > > Please see my testing on FreeBSD 7.0. > freebsd7# sysctl kern.ipc.shmall > kern.ipc.shmall: 819200 > freebsd7# sysctl kern.ipc.shmmax > kern.ipc.shmmax: 3355443200 > freebsd7# uname -a > FreeBSD freebsd7.localdomain 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 10:35:36 UTC 2008 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 > > > > testing code: > freebsd7# cat tt.c > #include > #include > #include > #include > #include > #include > > > int > main(int argc, char **argv) > { > char **p; > int size; > int i; > char *c = NULL; > int shmid; > void *shm_handle; > size = atoi(argv[1]); > printf("will alloc %dGB\n", size); > > > shmid = shmget(100, size * 1024 * 1024 * 1024, 0644 | IPC_CREAT); > if (shmid == -1) { > printf("shmid = %d\n", shmid); > } > > > shm_handle = shmat(shmid, NULL, 0); (shm_handle is not a handle). > if (shm_handle == -1) { > printf("null shm_handle\n"); > } > What if you add madvise(shm_handle, size, MADV_SEQUENTIAL); there ? Does 10.x behaviour become similar to that of the 7.x ? > > *c = 0; > return 0; > } > > > > freebsd7# ./a.out 1 > will alloc 1GB > Segmentation fault (core dumped) > > > > when a.out is running, the RES keeps being 2024K without increasing: > > > last pid: 735; load averages: 0.00, 0.01, 0.03 up 0+00:15:11 04:43:35 > 25 processes: 1 running, 24 sleeping > CPU states: 0.0% user, 0.0% nice, 22.6% system, 0.8% interrupt, 76.7% idle > Mem: 13M Active, 6380K Inact, 52M Wired, 32K Cache, 39M Buf, 910M Free > Swap: 2015M Total, 2015M Free > > > PID USERNAME THR PRI NICE SIZE RES STATE TIME WCPU COMMAND > 734 root 1 -16 0 1027M 2024K wdrain 0:02 13.27% a.out > > > > but when same code is running on FreeBSD 10.1, the RES keeps increasing to 1GB. From my testing, if the memory is allocated by malloc(), then RES will keep increasing in both 7.0 and 10.1. only sysv_shm in 7.0 has different behavior. I have checked coredump() code but did not find any clue why it is different. > > > Regards, > Gavin Mu > > > ------------------ Original ------------------ > From: "Konstantin Belousov";; > Date: Fri, Dec 4, 2015 05:45 PM > To: "Gavin Mu"; > Cc: "freebsd-stable"; > Subject: Re: application coredump behavior differences between FreeBSD 7.0and FreeBSD 10.1 > > > > On Fri, Dec 04, 2015 at 09:35:54AM +0800, Gavin Mu wrote: > > Hi, > > > > We have an application running on old FreeBSD 7.0, and we are upgrading the base system to FreeBSD 10.1. The application uses sysv_shm, and will allocate a lot of share memory, though most of time only a part of the allocated memory is used. aka. large SIZE and small RES from /usr/bin/top view. > > > > When the application core dump, the core dump file will be large, and in FreeBSD 7.0, it uses only a little more memory to do core dump, but in FreeBSD 10.1, it seems all share memory are touched and uses a lot of physical memory (RES in /usr/bin/top output will increase very much) and cause memory drain. > > > > I have been debugging but can not find any clue yet. Could someone provide some points where the issue happen? Thanks. > > Both stable/7 and latest HEAD do read the whole mapped segment to write > the coredump. This behaviour did not changed, since probably introduction > of the ELF support into FreeBSD. And, how otherwise could coredump file > contain the content of the mapped segments ? > > What in the FreeBSD 10 changed in this regard, is a deadlock fix which > could occur in some scenarious, including the coredumping. In stable/7, > the page instantiation or swap-in for pages accessed by the core write, > was done while owning several VFS locks. This sometimes caused deadlock. > In stable/10 the deadlock avoidance code is enabled by default, and > when kernel detects the possibility of the deadlock, it changes to reading > carefully by small chunks. > > Still, this does not explain the effect that you describe. In fact, I > am more suspicious to the claim that stable/7 did not increase RSS of > the dumping process or did not accessed the whole mapped shared segment, > then the claim that there is a regression in stable/10.