From owner-freebsd-amd64@FreeBSD.ORG Sun Jun 12 04:50:01 2011 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10F8F1065673 for ; Sun, 12 Jun 2011 04:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF7CA8FC22 for ; Sun, 12 Jun 2011 04:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5C4o0N2052700 for ; Sun, 12 Jun 2011 04:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5C4o0DM052699; Sun, 12 Jun 2011 04:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 12 Jun 2011 04:50:00 GMT Resent-Message-Id: <201106120450.p5C4o0DM052699@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ben Baron Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F2E6106566C for ; Sun, 12 Jun 2011 04:42:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 151DA8FC08 for ; Sun, 12 Jun 2011 04:42:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p5C4g3bL089889 for ; Sun, 12 Jun 2011 04:42:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p5C4g3nN089888; Sun, 12 Jun 2011 04:42:03 GMT (envelope-from nobody) Message-Id: <201106120442.p5C4g3nN089888@red.freebsd.org> Date: Sun, 12 Jun 2011 04:42:03 GMT From: Ben Baron To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Sun, 12 Jun 2011 04:59:43 +0000 Cc: Subject: amd64/157785: amd64 + jail + ipfw + natd = very slow outbound traffic from jail (5KB/s) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2011 04:50:01 -0000 >Number: 157785 >Category: amd64 >Synopsis: amd64 + jail + ipfw + natd = very slow outbound traffic from jail (5KB/s) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 12 04:50:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ben Baron >Release: 8.2-RELEASE >Organization: Be Five Enterprises, Inc. >Environment: FreeBSD localhost 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I have a newly set up FreeBSD 8.2 server with one public network interface setup with a jail for housing Apache. I was using ipfw + natd as my solution to firewall and nat traffic between the machine and jail (actually had multiple jails for different processes). The setup was working fine, however transfers out from my Apache jail were limited to about 5 KB/sec (~40kbit/sec) (I didn't test other jails but I assume they were the same speed, also didn't test jail to jail). Traffic into the jail from the internet was full speed. Traffic out from the host was also full speed. Only traffic out from the jail was affected. I researched the issue online and determined that this is a known issue with ipfw + natd and jails when using amd64 processors (in my case an Intel Core i7). I read conflicting statements on the FreeBSD forums about whether this also affects i386 (it looks like it doesn't, but one person did comment that they had the same issue on an i386 machine IIRC). >How-To-Repeat: 1. Do a fresh install of FreeBSD 8.2 2. Create an lo1 interface with the IP 10.0.0.2/24 3. Use ezjail to create a jail with 10.0.0.2 IP address 4. Install Apache in jail 5. Setup ipfw with the following settings (edited from my original settings to remove some sensitive information): # Interface: em1 # List of Ports: # Host SSH: 22 # JAIL WEB SERVER: 80, 443 IPF="ipfw -q add" ipfw -q -f flush # Replace with your interface PIF="em1" # Host IP inet="XXX.XXX.XXX.XXX" # Jail IPs apache_jail="10.0.0.2" # Loopback $IPF 100 allow all from any to any via lo0 $IPF 110 deny all from any to 127.0.0.0/8 $IPF 120 deny all from 127.0.0.0/8 to any $IPF 130 deny tcp from any to any frag # Allow SSH to host $IPF 300 allow tcp from any to me 22 established # Allow out NATed traffic from Apache Jail. This is DNATed traffic. $IPF 500 divert natd ip from $apache_jail to not me out via $PIF $IPF 570 skipto 10000 ip from any to any diverted # Allow remaining all outgoing traffic $IPF 600 allow all from me to any out # Allow NATed traffic to Jail. This is SNATed traffic. natd (NAT daemon) will take care of these. $IPF 700 divert natd ip from not me to any in via $PIF $IPF 710 skipto 10000 ip from any to any diverted # Deny ICMP $IPF 800 allow icmp from any to any # Log an deny the traffic $IPF 900 deny log logamount 10000 ip from any to any # This is where all diverted NAT traffic are skipped to after being processed. $IPF 10000 allow ip from any to any 6. Setup natd with the following settings: # Apache Jail redirect_port tcp 10.0.0.2:80 80 redirect_port tcp 10.0.0.2:443 443 >Fix: The only fix I was able to find was to switch to pf. After switching to pf for my firewall and nat solution, I'm getting full speed traffic both ways from the jail. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Sun Jun 12 20:20:09 2011 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 339711065672 for ; Sun, 12 Jun 2011 20:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DDFEF8FC1C for ; Sun, 12 Jun 2011 20:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5CKK2Cm042195 for ; Sun, 12 Jun 2011 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5CKK2U3042194; Sun, 12 Jun 2011 20:20:02 GMT (envelope-from gnats) Resent-Date: Sun, 12 Jun 2011 20:20:02 GMT Resent-Message-Id: <201106122020.p5CKK2U3042194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexey Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08C35106566B for ; Sun, 12 Jun 2011 20:11:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ED8C18FC14 for ; Sun, 12 Jun 2011 20:11:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p5CKBXK0058046 for ; Sun, 12 Jun 2011 20:11:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p5CKBX16058043; Sun, 12 Jun 2011 20:11:33 GMT (envelope-from nobody) Message-Id: <201106122011.p5CKBX16058043@red.freebsd.org> Date: Sun, 12 Jun 2011 20:11:33 GMT From: Alexey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Sun, 12 Jun 2011 20:54:15 +0000 Cc: Subject: amd64/157802: kernel panic in dummynet X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2011 20:20:09 -0000 >Number: 157802 >Category: amd64 >Synopsis: kernel panic in dummynet >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 12 20:20:02 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey >Release: 8.2-RELEASE-p2 >Organization: >Environment: FreeBSD gate22.igf.local 8.2-RELEASE-p2 FreeBSD 8.2-RELEASE-p2 #0: Fri Jun 10 04:12:07 YEKST 2011 kovalgate22.igf.local:/usr/obj/usr/src/sys/gate.vserver.x64 amd64 >Description: kernel panic in dummynet's 'prio' scheduler on 1'st egress packet I'm using such dummynet configuration: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: >ipfw pipe show 00001: 2.000 Mbit/s 0 ms burst 0. q131073 50 sl. 0 flows (1 buckets) sched 1 weight 0 lmax 0 pri 0 droptail sched 65537 type FIFO flags 0x0 0 buckets 0 active 00002: 128.000 Kbit/s 0 ms burst 10485760. q131074 50 sl. 0 flows (1 buckets) sched 65538 weight 1 lmax 0 pri 0 droptail sched 65538 type FIFO flags 0x0 0 buckets 0 active >ipfw sched show 00001: 2.000 Mbit/s 0 ms burst 0. sched 1 type PRIO flags 0x0 0 buckets 0 active Children flowsets: 1 2 3 4 5 6 7. 00002: 128.000 Kbit/s 0 ms burst 10485760. sched 2 type WF2Q+ flags 0x0 0 buckets 0 active Children flowsets: 10. > ipfw queue show q00001 50 sl. 0 flows (1 buckets) sched 1 weight 1 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00002 50 sl. 0 flows (1 buckets) sched 1 weight 20 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00003 50 sl. 0 flows (1 buckets) sched 1 weight 30 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00004 50 sl. 0 flows (1 buckets) sched 1 weight 40 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00005 50 sl. 0 flows (1 buckets) sched 1 weight 50 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00006 50 sl. 0 flows (1 buckets) sched 1 weight 63 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00007 50 sl. 0 flows (1 buckets) sched 1 weight 63 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 q00010 50 sl. 0 flows (64 buckets) sched 2 weight 10 lmax 0 pri 0. <------> GRED w_q 0.001999 min_th 30 max_th 80 max_p 0.089996 mask: 0x00 0x00000000/0x0000 -> 0xffffffff/0x0000 BKT Prot ___Source IP/port____ ____Dest. IP/port____ Tot_pkt/bytes Pkt/Byte Drp > ipfw list | grep queue 51100 queue 10 { tcp or udp } from any to any src-port 1024-65535 xmit lan1 51400 queue 7 tag 1 tcp from any to any tcpflags syn 51401 queue 7 tag 1 tcp from any to any tcpflags ack iplen 1-100 not tagged 1 51402 queue 7 tag 1 ip from any to any iplen 1-80 not tagged 1 51403 queue 6 tag 1 tcp from any to any dst-port 22,53 not tagged 1 51404 queue 6 tag 1 udp from any to any dst-port 53,123 not tagged 1 51405 queue 6 tag 1 icmp from any to any not tagged 1 51406 queue 5 tag 1 { tcp or udp } from any 33000-33999 to any not tagged 1 51407 queue 4 tag 1 tcp from any to any dst-port 25,110,143,465,587,993 not tagged 1 51408 queue 4 tag 1 tcp from any 25,465,993 to any not tagged 1 51409 queue 3 tag 1 tcp from any 80 to any not tagged 1 51410 queue 3 tag 1 tcp from any to any dst-port 80 not tagged 1 51411 queue 2 tag 1 tcp from any 20-21 to any not tagged 1 51412 queue 2 tag 1 tcp from any to any dst-port 20-21 not tagged 1 51413 queue 1 tag 1 ip from any to any not tagged 1 rules 51400-51413 are on wan1 interface ping any of external address (on wan1) causes crash. kgdb /usr/obj/usr/src/sys/gate.vserver.x64/kernel.debug vmcore.0 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x60 fault code = supervisor read data, page not present instruction pointer = 0x20:0xffffffff80a297a9 stack pointer = 0x28:0xffffff8075921450 frame pointer = 0x28:0xffffff8075921460 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 1438 (ping) trap number = 12 panic: page fault cpuid = 1 Uptime: 17m8s Physical memory: 1591 MB Dumping 90 MB: 75 59panic: bufwrite: buffer is not busy??? cpuid = 1 43 27 11 Reading symbols from /boot/kernel/geom_journal.ko...Reading symbols from /boot/kernel/geom_journal.ko.symbols...done. done. Loaded symbols for /boot/kernel/geom_journal.ko Reading symbols from /boot/kernel/alias_ftp.ko...Reading symbols from /boot/kernel/alias_ftp.ko.symbols...done. done. Loaded symbols for /boot/kernel/alias_ftp.ko Reading symbols from /boot/kernel/dummynet.ko...Reading symbols from /boot/kernel/dummynet.ko.symbols...done. done. Loaded symbols for /boot/kernel/dummynet.ko #0 doadump () at pcpu.h:224 224 pcpu.h: No such file or directory. in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:224 #1 0xffffffff8033124d in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:419 #2 0xffffffff80331528 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:592 #3 0xffffffff805350e7 in trap_fatal (frame=0xffffff80759213a0, eva=96) at /usr/src/sys/amd64/amd64/trap.c:783 #4 0xffffffff8053536e in trap_pfault (frame=0xffffff80759213a0, usermode=0) at /usr/src/sys/amd64/amd64/trap.c:699 #5 0xffffffff80535804 in trap (frame=0xffffff80759213a0) at /usr/src/sys/amd64/amd64/trap.c:449 #6 0xffffffff8051d894 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:224 #7 0xffffffff80a297a9 in prio_dequeue (_si=Variable "_si" is not available. ) at /usr/src/sys/modules/dummynet/../../netinet/ipfw/dn_sched_prio.c:121 #8 0xffffffff80a26cee in serve_sched (q=0xffffff80759214a0, si=0xffffff000171d400, now=101965) at /usr/src/sys/modules/dummynet/../../netinet/ipfw/ip_dn_io.c:457 #9 0xffffffff80a27200 in dummynet_io (m0=0xffffff8075921718, dir=0, fwa=Variable "fwa" is not available. ) at /usr/src/sys/modules/dummynet/../../netinet/ipfw/ip_dn_io.c:759 #10 0xffffffff804139e2 in ipfw_check_hook (arg=Variable "arg" is not available. ) at /usr/src/sys/netinet/ipfw/ip_fw_pfil.c:192 #11 0xffffffff803f43bc in pfil_run_hooks (ph=Variable "ph" is not available. ) at /usr/src/sys/net/pfil.c:82 #12 0xffffffff8041ccab in ip_output (m=0xffffff0001b24500, opt=Variable "opt" is not available. ) at /usr/src/sys/netinet/ip_output.c:511 #13 0xffffffff8041d7be in rip_output (m=0xffffff0001b24500, so=Variable "so" is not available. ) at /usr/src/sys/netinet/raw_ip.c:507 #14 0xffffffff8041d882 in rip_send (so=Variable "so" is not available. ) at /usr/src/sys/netinet/raw_ip.c:993 #15 0xffffffff8039b659 in sosend_generic (so=0xffffff0001941d48, addr=0xffffff00017e0160, uio=0xffffff80759219e0, top=0xffffff0001b24500, control=0x0, flags=0, td=0xffffff0001913460) at /usr/src/sys/kern/uipc_socket.c:1260 #16 0xffffffff8039540f in sosend (so=Variable "so" is not available. ) at /usr/src/sys/kern/uipc_socket.c:1304 #17 0xffffffff8039d11e in kern_sendit (td=0xffffff0001913460, s=3, mp=0xffffff8075921ab0, flags=0, control=0x0, segflg=UIO_USERSPACE) at /usr/src/sys/kern/uipc_syscalls.c:788 #18 0xffffffff8039d33a in sendit (td=0xffffff0001913460, s=3, mp=0xffffff8075921ab0, flags=0) at /usr/src/sys/kern/uipc_syscalls.c:724 #19 0xffffffff8039d45b in sendto (td=Variable "td" is not available. ) at /usr/src/sys/kern/uipc_syscalls.c:840 #20 0xffffffff803709ee in syscallenter (td=0xffffff0001913460, sa=0xffffff8075921bb0) at /usr/src/sys/kern/subr_trap.c:315 #21 0xffffffff805353e1 in syscall (frame=0xffffff8075921c40) at /usr/src/sys/amd64/amd64/trap.c:888 #22 0xffffffff8051db72 in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:377 #23 0x0000000800947a7c in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb) frame 7 #7 0xffffffff80a297a9 in prio_dequeue (_si=Variable "_si" is not available. ) at /usr/src/sys/modules/dummynet/../../netinet/ipfw/dn_sched_prio.c:121 121 q = si->q_array[prio]; (kgdb) From owner-freebsd-amd64@FreeBSD.ORG Sun Jun 12 21:53:53 2011 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF026106566C; Sun, 12 Jun 2011 21:53:53 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 893878FC13; Sun, 12 Jun 2011 21:53:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5CLrrwR032282; Sun, 12 Jun 2011 21:53:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5CLrrw5032278; Sun, 12 Jun 2011 21:53:53 GMT (envelope-from linimon) Date: Sun, 12 Jun 2011 21:53:53 GMT Message-Id: <201106122153.p5CLrrw5032278@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-net@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/157802: [dummynet] [panic] kernel panic in dummynet X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2011 21:53:53 -0000 Old Synopsis: kernel panic in dummynet New Synopsis: [dummynet] [panic] kernel panic in dummynet Responsible-Changed-From-To: freebsd-amd64->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jun 12 21:53:36 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=157802 From owner-freebsd-amd64@FreeBSD.ORG Sun Jun 12 23:04:30 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD3D61065766; Sun, 12 Jun 2011 23:04:29 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 99AFF8FC16; Sun, 12 Jun 2011 23:04:29 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5CN4T08027484; Sun, 12 Jun 2011 19:04:29 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5CN4Tlc027483; Sun, 12 Jun 2011 23:04:29 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 12 Jun 2011 23:04:29 GMT Message-Id: <201106122304.p5CN4Tlc027483@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2011 23:04:30 -0000 TB --- 2011-06-12 21:10:01 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-12 21:10:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-12 21:10:01 - cleaning the object tree TB --- 2011-06-12 21:10:28 - cvsupping the source tree TB --- 2011-06-12 21:10:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-12 21:10:50 - building world TB --- 2011-06-12 21:10:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-12 21:10:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-12 21:10:50 - TARGET=amd64 TB --- 2011-06-12 21:10:50 - TARGET_ARCH=amd64 TB --- 2011-06-12 21:10:50 - TZ=UTC TB --- 2011-06-12 21:10:50 - __MAKE_CONF=/dev/null TB --- 2011-06-12 21:10:50 - cd /src TB --- 2011-06-12 21:10:50 - /usr/bin/make -B buildworld >>> World build started on Sun Jun 12 21:10:50 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_alloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_balloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_bswap.c cc1: warnings being treated as errors In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51: /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data definition has no type or storage class /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter names (without types) in function declaration /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected specifier-qualifier-list before 'LIST_ENTRY' *** Error code 1 Stop in /src/usr.sbin/makefs. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-12 23:04:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-12 23:04:28 - ERROR: failed to build world TB --- 2011-06-12 23:04:28 - 5563.59 user 909.05 system 6867.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Jun 13 02:42:42 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA17D106566B; Mon, 13 Jun 2011 02:42:42 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7B6478FC16; Mon, 13 Jun 2011 02:42:42 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5D2gf3V017235; Sun, 12 Jun 2011 22:42:41 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5D2gfOF017234; Mon, 13 Jun 2011 02:42:41 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 13 Jun 2011 02:42:41 GMT Message-Id: <201106130242.p5D2gfOF017234@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2011 02:42:42 -0000 TB --- 2011-06-13 00:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-13 00:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-13 00:50:00 - cleaning the object tree TB --- 2011-06-13 00:50:09 - cvsupping the source tree TB --- 2011-06-13 00:50:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-13 00:50:53 - building world TB --- 2011-06-13 00:50:53 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-13 00:50:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-13 00:50:53 - TARGET=amd64 TB --- 2011-06-13 00:50:53 - TARGET_ARCH=amd64 TB --- 2011-06-13 00:50:53 - TZ=UTC TB --- 2011-06-13 00:50:53 - __MAKE_CONF=/dev/null TB --- 2011-06-13 00:50:53 - cd /src TB --- 2011-06-13 00:50:53 - /usr/bin/make -B buildworld >>> World build started on Mon Jun 13 00:50:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/cd9660/cd9660_conversion.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/cd9660/iso9660_rrip.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/cd9660/cd9660_archimedes.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_alloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_balloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_bswap.c In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52: /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 'sn_lock' has incomplete type *** Error code 1 Stop in /src/usr.sbin/makefs. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-13 02:42:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-13 02:42:41 - ERROR: failed to build world TB --- 2011-06-13 02:42:41 - 5482.20 user 889.91 system 6760.98 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Jun 13 11:06:58 2011 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8DD41065679 for ; Mon, 13 Jun 2011 11:06:58 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E6388FC12 for ; Mon, 13 Jun 2011 11:06:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5DB6wGh092002 for ; Mon, 13 Jun 2011 11:06:58 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5DB6vnt092000 for freebsd-amd64@FreeBSD.org; Mon, 13 Jun 2011 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 13 Jun 2011 11:06:57 GMT Message-Id: <201106131106.p5DB6vnt092000@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2011 11:06:58 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/157785 amd64 amd64 + jail + ipfw + natd = very slow outbound traffi o amd64/157615 amd64 AHCI device timeouts with ATI IXP700 SATA controller o o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o amd64/156464 amd64 fpsetprec does not work o amd64/156106 amd64 [boot] boot0 fails to start o amd64/156074 amd64 [hang] Removing CD-Rom from Lenovo T61p hangs system o amd64/156014 amd64 [hang] FreeBSD 8.2-RELEASE amd64 freeze and crash o amd64/155249 amd64 [build] 8.1 buildworld failure o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o amd64/153372 amd64 [panic] kernel panic o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o amd64/151385 amd64 [boot] Installation hangs on MacBook o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' f amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher o amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit o amd64/139998 amd64 [panic][net] 7.2 amd64 panic in rtrequest1_fib o amd64/139924 amd64 [boot] cd or dvd not load o amd64/138029 amd64 [panic][bpf] periodically kernel panic and reboot o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o amd64/135265 amd64 [mpt] Boot from install cd hangs on HP DL160 G5 with L o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO o amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT o amd64/131456 amd64 [acpi] [ata] ACPI & ATA problems s amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo o amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o amd64/129315 amd64 [em] amd64 motherboard: Intel DG965WH motherboard comp o amd64/128765 amd64 [install] Install CD loads to Install choices but stop o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 52 problems total. From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 04:02:53 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A3E01065670; Thu, 16 Jun 2011 04:02:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EA7EA8FC19; Thu, 16 Jun 2011 04:02:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5G42qJd080284; Thu, 16 Jun 2011 00:02:52 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5G42qaM080283; Thu, 16 Jun 2011 04:02:52 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 04:02:52 GMT Message-Id: <201106160402.p5G42qaM080283@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 04:02:53 -0000 TB --- 2011-06-16 02:10:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 02:10:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 02:10:00 - cleaning the object tree TB --- 2011-06-16 02:10:27 - cvsupping the source tree TB --- 2011-06-16 02:10:27 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 02:10:40 - building world TB --- 2011-06-16 02:10:40 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 02:10:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 02:10:40 - TARGET=amd64 TB --- 2011-06-16 02:10:40 - TARGET_ARCH=amd64 TB --- 2011-06-16 02:10:40 - TZ=UTC TB --- 2011-06-16 02:10:40 - __MAKE_CONF=/dev/null TB --- 2011-06-16 02:10:40 - cd /src TB --- 2011-06-16 02:10:40 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 02:10:45 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_alloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_balloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_bswap.c cc1: warnings being treated as errors In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51: /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:60: warning: 'enum vtype' declared inside parameter list /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:60: warning: its scope is only this definition or declaration, which is probably not what you want /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:85: warning: 'enum vtype' declared inside parameter list *** Error code 1 Stop in /src/usr.sbin/makefs. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 04:02:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 04:02:51 - ERROR: failed to build world TB --- 2011-06-16 04:02:51 - 5517.04 user 901.61 system 6771.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 07:33:52 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91A8B1065674; Thu, 16 Jun 2011 07:33:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4DD018FC1A; Thu, 16 Jun 2011 07:33:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5G7XpVH036865; Thu, 16 Jun 2011 03:33:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5G7XphY036864; Thu, 16 Jun 2011 07:33:51 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 07:33:51 GMT Message-Id: <201106160733.p5G7XphY036864@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 07:33:52 -0000 TB --- 2011-06-16 05:40:01 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 05:40:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 05:40:01 - cleaning the object tree TB --- 2011-06-16 05:40:09 - cvsupping the source tree TB --- 2011-06-16 05:40:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 05:40:30 - building world TB --- 2011-06-16 05:40:30 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 05:40:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 05:40:30 - TARGET=amd64 TB --- 2011-06-16 05:40:30 - TARGET_ARCH=amd64 TB --- 2011-06-16 05:40:30 - TZ=UTC TB --- 2011-06-16 05:40:30 - __MAKE_CONF=/dev/null TB --- 2011-06-16 05:40:30 - cd /src TB --- 2011-06-16 05:40:30 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 05:40:30 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_alloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_balloc.c cc -O2 -pipe -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ -I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat -DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 -I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.sbin/makefs/ffs/ffs_bswap.c cc1: warnings being treated as errors In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51: /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:60: warning: 'enum vtype' declared inside parameter list /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:60: warning: its scope is only this definition or declaration, which is probably not what you want /obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:85: warning: 'enum vtype' declared inside parameter list *** Error code 1 Stop in /src/usr.sbin/makefs. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 07:33:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 07:33:51 - ERROR: failed to build world TB --- 2011-06-16 07:33:51 - 5569.52 user 902.40 system 6830.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 10:25:52 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97D66106564A; Thu, 16 Jun 2011 10:25:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 53AF88FC08; Thu, 16 Jun 2011 10:25:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GAPpMJ015396; Thu, 16 Jun 2011 06:25:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GAPppH015388; Thu, 16 Jun 2011 10:25:51 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 10:25:51 GMT Message-Id: <201106161025.p5GAPppH015388@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 10:25:52 -0000 TB --- 2011-06-16 09:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 09:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 09:50:00 - cleaning the object tree TB --- 2011-06-16 09:50:08 - cvsupping the source tree TB --- 2011-06-16 09:50:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 09:50:25 - building world TB --- 2011-06-16 09:50:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 09:50:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 09:50:25 - TARGET=amd64 TB --- 2011-06-16 09:50:25 - TARGET_ARCH=amd64 TB --- 2011-06-16 09:50:25 - TZ=UTC TB --- 2011-06-16 09:50:25 - __MAKE_CONF=/dev/null TB --- 2011-06-16 09:50:25 - cd /src TB --- 2011-06-16 09:50:25 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 09:50:26 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 10:25:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 10:25:51 - ERROR: failed to build world TB --- 2011-06-16 10:25:51 - 1619.80 user 382.68 system 2151.11 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 11:55:34 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AE3A1065702; Thu, 16 Jun 2011 11:55:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E559E8FC08; Thu, 16 Jun 2011 11:55:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GBtXIj095328; Thu, 16 Jun 2011 07:55:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GBtX0W095314; Thu, 16 Jun 2011 11:55:33 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 11:55:33 GMT Message-Id: <201106161155.p5GBtX0W095314@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 11:55:34 -0000 TB --- 2011-06-16 11:20:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 11:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 11:20:00 - cleaning the object tree TB --- 2011-06-16 11:20:05 - cvsupping the source tree TB --- 2011-06-16 11:20:05 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 11:20:18 - building world TB --- 2011-06-16 11:20:18 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 11:20:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 11:20:18 - TARGET=amd64 TB --- 2011-06-16 11:20:18 - TARGET_ARCH=amd64 TB --- 2011-06-16 11:20:18 - TZ=UTC TB --- 2011-06-16 11:20:18 - __MAKE_CONF=/dev/null TB --- 2011-06-16 11:20:18 - cd /src TB --- 2011-06-16 11:20:18 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 11:20:21 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 11:55:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 11:55:33 - ERROR: failed to build world TB --- 2011-06-16 11:55:33 - 1611.19 user 385.47 system 2132.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 13:25:35 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 338B51065672; Thu, 16 Jun 2011 13:25:35 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E35ED8FC1D; Thu, 16 Jun 2011 13:25:34 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GDPYTR077856; Thu, 16 Jun 2011 09:25:34 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GDPYAh077846; Thu, 16 Jun 2011 13:25:34 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 13:25:34 GMT Message-Id: <201106161325.p5GDPYAh077846@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 13:25:35 -0000 TB --- 2011-06-16 12:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 12:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 12:50:00 - cleaning the object tree TB --- 2011-06-16 12:50:04 - cvsupping the source tree TB --- 2011-06-16 12:50:04 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 12:50:20 - building world TB --- 2011-06-16 12:50:20 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 12:50:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 12:50:20 - TARGET=amd64 TB --- 2011-06-16 12:50:20 - TARGET_ARCH=amd64 TB --- 2011-06-16 12:50:20 - TZ=UTC TB --- 2011-06-16 12:50:20 - __MAKE_CONF=/dev/null TB --- 2011-06-16 12:50:20 - cd /src TB --- 2011-06-16 12:50:20 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 12:50:20 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 13:25:34 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 13:25:34 - ERROR: failed to build world TB --- 2011-06-16 13:25:34 - 1615.65 user 382.71 system 2133.91 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 14:56:07 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9F7C106566B; Thu, 16 Jun 2011 14:56:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 951AE8FC1D; Thu, 16 Jun 2011 14:56:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GEu7SR062595; Thu, 16 Jun 2011 10:56:07 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GEu70H062591; Thu, 16 Jun 2011 14:56:07 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 14:56:07 GMT Message-Id: <201106161456.p5GEu70H062591@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 14:56:08 -0000 TB --- 2011-06-16 14:20:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 14:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 14:20:00 - cleaning the object tree TB --- 2011-06-16 14:20:05 - cvsupping the source tree TB --- 2011-06-16 14:20:05 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 14:20:53 - building world TB --- 2011-06-16 14:20:53 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 14:20:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 14:20:53 - TARGET=amd64 TB --- 2011-06-16 14:20:53 - TARGET_ARCH=amd64 TB --- 2011-06-16 14:20:53 - TZ=UTC TB --- 2011-06-16 14:20:53 - __MAKE_CONF=/dev/null TB --- 2011-06-16 14:20:53 - cd /src TB --- 2011-06-16 14:20:53 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 14:20:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 14:56:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 14:56:06 - ERROR: failed to build world TB --- 2011-06-16 14:56:06 - 1613.99 user 381.21 system 2166.28 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 16:26:11 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDEB6106566C; Thu, 16 Jun 2011 16:26:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 8213C8FC13; Thu, 16 Jun 2011 16:26:11 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GGQAeU050066; Thu, 16 Jun 2011 12:26:10 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GGQAx7050064; Thu, 16 Jun 2011 16:26:10 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 16:26:10 GMT Message-Id: <201106161626.p5GGQAx7050064@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 16:26:12 -0000 TB --- 2011-06-16 15:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 15:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 15:50:00 - cleaning the object tree TB --- 2011-06-16 15:50:05 - cvsupping the source tree TB --- 2011-06-16 15:50:05 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 15:50:49 - building world TB --- 2011-06-16 15:50:49 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 15:50:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 15:50:49 - TARGET=amd64 TB --- 2011-06-16 15:50:49 - TARGET_ARCH=amd64 TB --- 2011-06-16 15:50:49 - TZ=UTC TB --- 2011-06-16 15:50:49 - __MAKE_CONF=/dev/null TB --- 2011-06-16 15:50:49 - cd /src TB --- 2011-06-16 15:50:49 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 15:50:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 16:26:10 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 16:26:10 - ERROR: failed to build world TB --- 2011-06-16 16:26:10 - 1612.88 user 382.82 system 2169.88 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 18:14:59 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DD97106564A; Thu, 16 Jun 2011 18:14:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 451F98FC1A; Thu, 16 Jun 2011 18:14:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GIEwes026003; Thu, 16 Jun 2011 14:14:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5GIEwJt025999; Thu, 16 Jun 2011 18:14:58 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 18:14:58 GMT Message-Id: <201106161814.p5GIEwJt025999@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 18:14:59 -0000 TB --- 2011-06-16 17:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-16 17:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-16 17:40:00 - cleaning the object tree TB --- 2011-06-16 17:40:06 - cvsupping the source tree TB --- 2011-06-16 17:40:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-16 17:40:23 - building world TB --- 2011-06-16 17:40:23 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 17:40:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 17:40:23 - TARGET=amd64 TB --- 2011-06-16 17:40:23 - TARGET_ARCH=amd64 TB --- 2011-06-16 17:40:23 - TZ=UTC TB --- 2011-06-16 17:40:23 - __MAKE_CONF=/dev/null TB --- 2011-06-16 17:40:23 - cd /src TB --- 2011-06-16 17:40:23 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 17:40:23 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/sbrk.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/twiddle.c cc -O2 -pipe -ffreestanding -Wformat -I/src/lib/libstand -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -m32 -I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY -I/src/lib/libstand/../libz -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/lib/libstand/zalloc.c cc1: warnings being treated as errors /src/lib/libstand/zalloc.c: In function 'zfree': /src/lib/libstand/zalloc.c:157: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:181: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' /src/lib/libstand/zalloc.c:212: warning: format '%ju' expects type 'uintmax_t', but argument 3 has type 'iaddr_t' *** Error code 1 Stop in /src/lib/libstand. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 18:14:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 18:14:58 - ERROR: failed to build world TB --- 2011-06-16 18:14:58 - 1589.59 user 361.52 system 2098.44 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jun 16 20:57:20 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C474106567C; Thu, 16 Jun 2011 20:57:20 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) by mx1.freebsd.org (Postfix) with ESMTP id 4132F8FC19; Thu, 16 Jun 2011 20:57:20 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.4/8.14.4) with ESMTP id p5GKvJ5R097830; Thu, 16 Jun 2011 20:57:19 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.4/8.14.4/Submit) id p5GKvJVr097769; Thu, 16 Jun 2011 20:57:19 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 16 Jun 2011 20:57:19 GMT Message-Id: <201106162057.p5GKvJVr097769@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_8_2 tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jun 2011 20:57:20 -0000 TB --- 2011-06-16 18:27:04 - tinderbox 2.6 running on freebsd-stable.sentex.ca TB --- 2011-06-16 18:27:04 - starting RELENG_8_2 tinderbox run for amd64/amd64 TB --- 2011-06-16 18:27:04 - cleaning the object tree TB --- 2011-06-16 18:27:39 - cvsupping the source tree TB --- 2011-06-16 18:27:39 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/amd64/amd64/supfile TB --- 2011-06-16 18:28:27 - building world TB --- 2011-06-16 18:28:27 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 18:28:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 18:28:27 - TARGET=amd64 TB --- 2011-06-16 18:28:27 - TARGET_ARCH=amd64 TB --- 2011-06-16 18:28:27 - TZ=UTC TB --- 2011-06-16 18:28:27 - __MAKE_CONF=/dev/null TB --- 2011-06-16 18:28:27 - cd /src TB --- 2011-06-16 18:28:27 - /usr/bin/make -B buildworld >>> World build started on Thu Jun 16 18:28:29 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Thu Jun 16 20:52:41 UTC 2011 TB --- 2011-06-16 20:52:41 - generating LINT kernel config TB --- 2011-06-16 20:52:41 - cd /src/sys/amd64/conf TB --- 2011-06-16 20:52:41 - /usr/bin/make -B LINT TB --- 2011-06-16 20:52:41 - building LINT kernel TB --- 2011-06-16 20:52:41 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-16 20:52:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-16 20:52:41 - TARGET=amd64 TB --- 2011-06-16 20:52:41 - TARGET_ARCH=amd64 TB --- 2011-06-16 20:52:41 - TZ=UTC TB --- 2011-06-16 20:52:41 - __MAKE_CONF=/dev/null TB --- 2011-06-16 20:52:41 - cd /src TB --- 2011-06-16 20:52:41 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Jun 16 20:52:41 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies [...] awk -f @/tools/makeobjops.awk @/opencrypto/cryptodev_if.m -h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/obj/src/sys/LINT /src/sys/modules/safe/../../dev/safe/safe.c ===> scc (depend) @ -> /src/sys machine -> /src/sys/amd64/include awk -f @/tools/makeobjops.awk @/dev/scc/scc_if.m -c /libexec/ld-elf.so.1: Cannot open "/lib/libm.so.5" *** Error code 1 Stop in /src/sys/modules/scc. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-16 20:57:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-16 20:57:18 - ERROR: failed to build lint kernel TB --- 2011-06-16 20:57:18 - 4633.49 user 684.12 system 9014.38 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat Jun 18 21:52:29 2011 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A89C106566B; Sat, 18 Jun 2011 21:52:29 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E8C918FC15; Sat, 18 Jun 2011 21:52:28 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p5ILqSVN018686; Sat, 18 Jun 2011 17:52:28 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p5ILqRFG018638; Sat, 18 Jun 2011 21:52:27 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 18 Jun 2011 21:52:27 GMT Message-Id: <201106182152.p5ILqRFG018638@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jun 2011 21:52:29 -0000 TB --- 2011-06-18 19:30:00 - tinderbox 2.7 running on freebsd-current.sentex.ca TB --- 2011-06-18 19:30:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-06-18 19:30:00 - cleaning the object tree TB --- 2011-06-18 19:30:43 - cvsupping the source tree TB --- 2011-06-18 19:30:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-06-18 19:36:08 - building world TB --- 2011-06-18 19:36:08 - MAKEOBJDIRPREFIX=/obj TB --- 2011-06-18 19:36:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-06-18 19:36:08 - TARGET=amd64 TB --- 2011-06-18 19:36:08 - TARGET_ARCH=amd64 TB --- 2011-06-18 19:36:08 - TZ=UTC TB --- 2011-06-18 19:36:08 - __MAKE_CONF=/dev/null TB --- 2011-06-18 19:36:08 - cd /src TB --- 2011-06-18 19:36:08 - /usr/bin/make -B buildworld >>> World build started on Sat Jun 18 19:36:08 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries [...] cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_proc.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_program.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_provider.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_regset.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_string.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_strtab.c cc -m32 -march=i686 -mmmx -msse -msse2 -mfancy-math-387 -DCOMPAT_32BIT -isystem /obj/src/lib32/usr/include/ -L/obj/src/lib32/usr/lib32 -B/obj/src/lib32/usr/lib32 -O2 -pipe -I/obj/lib32/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace -I/src/cddl/lib/libdtrace/../../../sys/cddl/dev/dtrace/i386 -I/src/cddl/lib/libdtrace/../../../sys/cddl/compat/opensolaris -I/src/cddl/lib/libdtrace/../../../cddl/compat/opensolaris/include -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/head -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libctf/common -I/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/common -I/src/cddl/lib/libdtrace/../../../sys/cddl/contrib/opensolaris/uts/intel -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=gnu89 -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensol! aris/lib/libdtrace/common/dt_subr.c /src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c:831:3: error: #warning need td_popc() implementation *** Error code 1 Stop in /src/cddl/lib/libdtrace. *** Error code 1 Stop in /src/cddl/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-06-18 21:52:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-06-18 21:52:27 - ERROR: failed to build world TB --- 2011-06-18 21:52:27 - 6357.81 user 1251.39 system 8547.13 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full