From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 01:15:24 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A75D21065672 for ; Sun, 29 Jan 2012 01:15:24 +0000 (UTC) (envelope-from barnabus.pinklehorn@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 348E18FC0A for ; Sun, 29 Jan 2012 01:15:23 +0000 (UTC) Received: by werm13 with SMTP id m13so1221027wer.13 for ; Sat, 28 Jan 2012 17:15:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; bh=zLGCAFVzAnW/uQXneca5qVKKa0O4Z1wJhoMipfCidv4=; b=edRJjLj3cBQYYCAZjfeosuAQDoqPIaGlEtoM3FHh06o+olEhj4zh3mF96A0lmtlJTx SGJuskDwvDHfLJI/0a1BUQOIJPgoarcZQj8DPgy1rl88mHmqiyKx3dbDHXjDOetyovJ9 +KYUBcewUIrUpwtLWOlZ3vHv/nN+r5ezLD6Kg= Received: by 10.216.139.79 with SMTP id b57mr6731wej.22.1327797921345; Sat, 28 Jan 2012 16:45:21 -0800 (PST) MIME-Version: 1.0 Received: by 10.223.104.133 with HTTP; Sat, 28 Jan 2012 16:45:01 -0800 (PST) From: Eric Bullen Date: Sat, 28 Jan 2012 16:45:01 -0800 Message-ID: To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Looks like a bug (or odd intended practice) in cron not honoring the PATH variable. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 01:15:24 -0000 Hi All, I'm running the following: FreeBSD x 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 I couldn't figure out why SOME of root's cronjobs weren't running, and others were. Here's my test crontab for root: # PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/user/local/bin # * * * * * env > /tmp/x 2>&1 * * * * * curl > /tmp/y 2>&1 The 'curl' command resides in /usr/local/bin, and the output for /tmp/x, and /tmp/y are as follows: # tail -10 /tmp/x /tmp/y ==> /tmp/x <== LOGNAME=root PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/user/local/bin PWD=/ USER=root HOME=/ SHELL=/bin/sh ==> /tmp/y <== curl: not found The man (man 5 crontab) page says the following, but it LOOKS like cron is passing the environment to the command, but doesn't take the PATH env var as defined at top. "SHELL is set to /bin/sh, PATH is set to /usr/bin:/bin, and LOGNAME and HOME are set from the /etc/passwd line of the crontab's owner. HOME, PATH and SHELL may be overridden by settings in the crontab; LOGNAME may not." Not expected behavior. Thoughts? Please don't say that I should use absolute paths in my crontabs. I am well aware of the security implications. Thanks in advance! -Eric From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 01:17:53 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id A236D1065742 for ; Sun, 29 Jan 2012 01:17:53 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from 172-17-150-251.globalsuite.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id 8DB01150C8D; Sun, 29 Jan 2012 01:17:50 +0000 (UTC) Message-ID: <4F249E3D.6050507@FreeBSD.org> Date: Sat, 28 Jan 2012 17:17:49 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20120119 Thunderbird/9.0 MIME-Version: 1.0 To: Eric Bullen References: In-Reply-To: X-Enigmail-Version: 1.3.5 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Looks like a bug (or odd intended practice) in cron not honoring the PATH variable. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 01:17:53 -0000 X-List-Received-Date: Sun, 29 Jan 2012 01:17:53 -0000 On 01/28/2012 16:45, Eric Bullen wrote: /user/local/bin -- It's always a long day; 86400 doesn't fit into a short. Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 01:36:04 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E0EA1065693 for ; Sun, 29 Jan 2012 01:36:04 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from glenbarber.us (onyx.glenbarber.us [199.48.134.227]) by mx1.freebsd.org (Postfix) with SMTP id 1B9718FC22 for ; Sun, 29 Jan 2012 01:36:03 +0000 (UTC) Received: (qmail 52563 invoked by uid 0); 28 Jan 2012 20:23:08 -0500 Received: from unknown (HELO glenbarber.us) (76.124.49.145) by 0 with SMTP; 28 Jan 2012 20:23:08 -0500 Date: Sat, 28 Jan 2012 20:23:02 -0500 From: Glen Barber To: Eric Bullen Message-ID: <20120129012302.GA1933@glenbarber.us> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-stable@freebsd.org Subject: Re: Looks like a bug (or odd intended practice) in cron not honoring the PATH variable. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 01:36:04 -0000 Hi, On Sat, Jan 28, 2012 at 04:45:01PM -0800, Eric Bullen wrote: > Hi All, > > I'm running the following: > > FreeBSD x 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC > 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 > > I couldn't figure out why SOME of root's cronjobs weren't running, and > others were. Here's my test crontab for root: > > > # > PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/user/local/bin Looks to me like '/user/local/bin' is more likely the problem. It should be '/usr/local/bin' (note the lack of 'e'). Regards, Glen From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 02:49:12 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFC80106566B for ; Sun, 29 Jan 2012 02:49:12 +0000 (UTC) (envelope-from mikes@siralan.org) Received: from mail.suso.org (mail.suso.org [66.244.94.5]) by mx1.freebsd.org (Postfix) with ESMTP id C05578FC13 for ; Sun, 29 Jan 2012 02:49:12 +0000 (UTC) Received: from c-98-223-201-170.hsd1.in.comcast.net (c-98-223-201-170.hsd1.in.comcast.net [98.223.201.170]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.suso.org (Postfix) with ESMTP id 2A57113822C for ; Sun, 29 Jan 2012 02:28:03 +0000 (GMT) Date: Sat, 28 Jan 2012 21:24:53 -0500 (EST) From: "Michael L. Squires" X-X-Sender: mikes@familysquires.net To: freebsd-stable@freebsd.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: Regression in 8.2-STABLE bge code (from 7.4-STABLE) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 02:49:13 -0000 There is a bug in the Tyan S4881/S4882 PCI-X bridges that was fixed with a patch in 7.x (thank you very much). This patch is not present in the 8.2-STABLE code and the symptoms (watchdog timeouts) have recurred. The watchdog timeouts do not appear to be present after I switched to an Intel gigabit PCI-X card. I did a brute-force patch of the 8.2-STABLE bge code using the patches for 7.4-STABLE; the resulting code compiled and, other than odd behavior at startup, seems to be working normally. This is using FreeBSD 8.2-STABLE amd64; I don't know what happens with i386. Given the age of the boards it may be easier if I just continue using the Intel gigabit card but am happy to test anything that comes my way. Thanks, Mike Squires mikes at siralan.org Tyan S4882 (quad Opteron) uname -a: FreeBSD superxeon.familysquires.net 8.2-RELEASE-p5 FreeBSD 8.2-RELEASE-p5 #52: at Jan 28 18:58:43 EST 2012 root@superxeon.familysquires.net:/usr/obj/usr/ c/sys/OPTERON8 amd64 bge0 dmesg (bge1 same; verbose; note bge cksum error): Jan 28 20:59:28 superxeon kernel: em0: port 0x3000-0x303f mem 0xfe040000-0xfe05ffff irq 26 at device 2.0 on pci2 Jan 28 20:59:28 superxeon kernel: em0: Reserved 0x20000 bytes for rid 0x10 type 3 at 0xfe040000 Jan 28 20:59:28 superxeon kernel: em0: Reserved 0x40 bytes for rid 0x20 type 4 a t 0x3000 Jan 28 20:59:28 superxeon kernel: ioapic1: routing intpin 2 (PCI IRQ 26) to lapi c 0 vector 55 Jan 28 20:59:28 superxeon kernel: em0: [FILTER] Jan 28 20:59:28 superxeon kernel: em0: bpf attached Jan 28 20:59:28 superxeon kernel: em0: Ethernet address: 00:0e:0c:36:54:64 Jan 28 20:59:28 superxeon kernel: pci0:2:9:0: bad VPD cksum, remain 72 Jan 28 20:59:28 superxeon kernel: bge0: mem 0xfe010000-0xfe01ffff,0xfe000000-0xfe00ffff irq 24 at dev ice 9.0 on pci2 Jan 28 20:59:28 superxeon kernel: bge0: Reserved 0x10000 bytes for rid 0x10 type 3 at 0xfe010000 Jan 28 20:59:28 superxeon kernel: bge0: CHIP ID 0x00002003; ASIC REV 0x02; CHIP REV 0x20; PCI Jan 28 20:59:28 superxeon kernel: miibus0: on bge0 Jan 28 20:59:28 superxeon kernel: brgphy0: PHY 1 on miibus0 Jan 28 20:59:28 superxeon kernel: brgphy0: OUI 0x000818, model 0x0019, rev. 0 Jan 28 20:59:28 superxeon kernel: brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100 baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, au to, auto-flow Jan 28 20:59:28 superxeon kernel: bge0: bpf attached Jan 28 20:59:28 superxeon kernel: bge0: Ethernet address: 00:e0:81:64:bc:7f Jan 28 20:59:28 superxeon kernel: ioapic1: routing intpin 0 (PCI IRQ 24) to lapi c 0 vector 56 Jan 28 20:59:28 superxeon kernel: bge0: [MPSAFE] Jan 28 20:59:28 superxeon kernel: bge0: [ITHREAD] Jan 28 20:59:28 superxeon kernel: pci0:2:9:1: bad VPD cksum, remain 72 ifconfig: em0: flags=8802 metric 0 mtu 1500 options=9b ether 00:0e:0c:36:54:64 media: Ethernet autoselect status: no carrier bge0: flags=8843 metric 0 mtu 1500 options=8009b ether 00:e0:81:64:bc:7f inet 10.1.5.160 netmask 0xffffff00 broadcast 10.1.5.255 media: Ethernet autoselect (1000baseT ) status: active bge1: flags=8802 metric 0 mtu 1500 options=8009b ether 00:e0:81:64:bc:7e media: Ethernet autoselect (none) status: no carrier plip0: flags=8810 metric 0 mtu 1500 lo0: flags=8049 metric 0 mtu 16384 options=3 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 nd6 options=3 Changes to ./dev/bge/if_bgereg.h: 2813d2812 < #define BGE_FLAG_MBOX_REORDER 0x10000000 Changes to ./dev/bge/if_bge.c 369,370d368 < static int bge_mbox_reorder(struct bge_softc *); < 628,629d625 < if ((sc->bge_flags & BGE_FLAG_MBOX_REORDER) != 0) < CSR_READ_4(sc, off); 2486c2482 < if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0) --- > if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0) { 2487a2484,2493 > /* > * XXX > * watchdog timeout issue was observed on BCM5704 which > * lives behind PCI-X bridge(e.g AMD 8131 PCI-X bridge). > * Limiting DMA address space to 32bits seems to address > * it. > */ > if (sc->bge_flags & BGE_FLAG_PCIX) > lowaddr = BUS_SPACE_MAXADDR_32BIT; > } 2641,2680d2646 < bge_mbox_reorder(struct bge_softc *sc) < { < /* Lists of PCI bridges that are known to reorder mailbox writes. */ < static const struct mbox_reorder { < const uint16_t vendor; < const uint16_t device; < const char *desc; < } const mbox_reorder_lists[] = { < { 0x1022, 0x7450, "AMD-8131 PCI-X Bridge" }, < }; < devclass_t pcib; < device_t dev; < int i, count, unit; < < count = sizeof(mbox_reorder_lists) / sizeof(mbox_reorder_lists[0]); < pcib = devclass_find("pcib"); < for (unit = 0; unit < devclass_get_maxunit(pcib); unit++) { < dev = devclass_get_device(pcib, unit); < if (dev == NULL) < continue; < #if 1 < printf("Found pcib%d : 0x%04x, 0x%04x\n", unit, < pci_get_vendor(dev), pci_get_device(dev)); < #endif < for (i = 0; i < count; i++) { < if (pci_get_vendor(dev) == < mbox_reorder_lists[i].vendor && < pci_get_device(dev) == < mbox_reorder_lists[i].device) { < device_printf(sc->bge_dev, < "enabling MBOX workaround for %s\n", < mbox_reorder_lists[i].desc); < return (1); < } < } < } < return (0); < } < < static int 2954d2919 < 2956,2965d2920 < * Some PCI-X bridges are known to trigger write reordering to < * the mailbox registers. Typical phenomena is watchdog timeouts < * caused by out-of-order TX completions. Enable workaround for < * PCI-X devices that live behind these bridges. < */ < if (sc->bge_flags & BGE_FLAG_PCIX && bge_mbox_reorder(sc) != 0) < sc->bge_flags |= BGE_FLAG_MBOX_REORDER; < < /* < From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 04:19:45 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6B461065672; Sun, 29 Jan 2012 04:19:44 +0000 (UTC) (envelope-from randy@psg.com) Received: from ran.psg.com (ran.psg.com [IPv6:2001:418:1::36]) by mx1.freebsd.org (Postfix) with ESMTP id 7627D8FC0A; Sun, 29 Jan 2012 04:19:44 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=rair.psg.com.psg.com) by ran.psg.com with esmtp (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RrMEv-000ItR-If; Sun, 29 Jan 2012 04:19:42 +0000 Date: Sun, 29 Jan 2012 13:19:40 +0900 Message-ID: From: Randy Bush To: Marius Strobl In-Reply-To: <20120128213857.GB39861@alchemy.franken.de> References: <20120128121830.GA38513@alchemy.franken.de> <20120128131830.GZ44286@alchemy.franken.de> <20120128213857.GB39861@alchemy.franken.de> User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/22.3 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Cc: FreeBSD Stable , FreeBSD Net Subject: Re: 9-stable - ifmedia_set: no match for 0x0/0xfffffff X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 04:19:45 -0000 > What happens if you set hw.bge.allow_asf to 0 and use auto-negotiation > on both sides? it works! the switch was already auto-neg, and i forced auto-neg on the server side. thanks. this was not pleasant. did i remember to whine that i am in tokyo and the server is on the beast coast of the states? :) i think a bit of a warning about hw.bge.allow_asf in UPDATING might help folk. thank you *very* much for your help. randy From owner-freebsd-stable@FreeBSD.ORG Sun Jan 29 14:32:04 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B93821065673; Sun, 29 Jan 2012 14:32:04 +0000 (UTC) (envelope-from antonio.trindade@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id E58F78FC0C; Sun, 29 Jan 2012 14:32:03 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4009226wib.13 for ; Sun, 29 Jan 2012 06:32:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:mime-version:content-type:subject:date:in-reply-to:to :references:message-id:x-mailer:x-virus-scanned; bh=X8a/gZMLKViN+V3Eqz+0tsNNzlHOS5W3OOVwgQoPouc=; b=CdDsU9neXVgy3NkkaPfMcuR0EWGe9pvrpDITitUPzWuRwn/tgnLl8ERkbtpxkH92R6 8iPftJ7+6Kb7+2iQ167Lt/oDJOMBsqgaezdN8St6B3JgDAS5W2gfgcBDNq3sGp7wqjHN 1SIOstRr97BXZsPAhYKqF5vqmNVm6EY/PlAxg= Received: by 10.180.86.105 with SMTP id o9mr22130947wiz.4.1327847523007; Sun, 29 Jan 2012 06:32:03 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (a89-153-149-64.cpe.netcabo.pt. [89.153.149.64]) by mx.google.com with ESMTPS id fv6sm42905017wib.8.2012.01.29.06.32.00 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 29 Jan 2012 06:32:01 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (localhost [127.0.0.1]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTP id 6096CCF01A; Sun, 29 Jan 2012 14:31:59 +0000 (WET) Received: from altair-wifi.darklair.homeunix.net (altair-wifi.darklair.homeunix.net [10.0.0.11]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTPA id C3814CF018; Sun, 29 Jan 2012 14:31:58 +0000 (WET) From: =?iso-8859-1?Q?Ant=F3nio_Trindade?= Mime-Version: 1.0 (Apple Message framework v1084) Date: Sun, 29 Jan 2012 14:31:56 +0000 In-Reply-To: <201201290809.q0T89xrA070840@chez.mckusick.com> To: freebsd-fs@freebsd.org, freebsd-stable@freebsd.org, freebsd-bugs@freebsd.org References: <201201290809.q0T89xrA070840@chez.mckusick.com> Message-Id: <5CDF3EE0-2FC6-4445-9BC4-502CA95BE70C@gmail.com> X-Mailer: Apple Mail (2.1084) X-Virus-Scanned: ClamAV using ClamSMTP Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: kernel: panic: softdep_sync_buf: Unknown type jnewblk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 14:32:04 -0000 Hi. I'm pretty sure this will be considered almost as spam, but I = reactivated SU+J a day and half ago and it still did not panic. However, I also activated dumpdev, so I'll be prepared to provide = additional information in case of a panic. Cumprimentos/Best regards/Mit freundlichen Gr=FC=DFen, Ant=F3nio Trindade Antonio Trindade gmail.com S=EDtios pessoais: Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ Blog de fotografia: http://trindade.myphotos.cc/fotografia/ Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ On 2012/01/29, at 08:09, Kirk McKusick wrote: >> Date: Fri, 27 Jan 2012 09:39:34 +0100 >> From: Yamagi Burmeister >> To: freebsd@jdc.parodius.com >> Cc: antonio.trindade@gmail.com, freebsd-fs@freebsd.org, = dougb@freebsd.org, >> freebsd-stable@freebsd.org >> Subject: Re: kernel: panic: softdep_sync_buf: Unknown type jnewblk >>=20 >> Hi :) >>=20 >> On Thu, 26 Jan 2012 17:54:30 -0800 >> Jeremy Chadwick wrote: >>=20 >>> I'll also point out, though the OP isn't using snapshots, that it's >>> confirmed use of snapshots on SU+J can result in a full filesystem = hang. >>> Confirmation is from Kirk McKusick (author of SU and designer of = SU+J): >>>=20 >>> = http://lists.freebsd.org/pipermail/freebsd-fs/2012-January/013429.html >>>=20 >>> Something really needs to be done about this combination of = problems. >>>=20 >>> Since SU+J is the default choice for all UFS filesystems on = 9.0-RELEASE, >>> the only solution I can think of is to send a massive announcement = to >>> relevant mailing lists, AND put something on the freebsd.org home = page >>> about these issues. >>=20 >> The problem was analyzed but no immediate solution found. Therefor >> snapshots on filesystems with SU+J (but not SU alone) were disabled >> by Kirk McKusick in SVN r230250. The MFC to 9-STABLE has still to >> be done. Maybe this fix is a candidate for an errata notice / patch, >> distributed by freebsd-update? >=20 > With revision 230725 I have MFC'ed to 9 the above change to disable > snapshots when running SU+J. Hopefully Jeff and I will manage to get > a fix for snapshots so as to be able to run them reliably with SU+J. > The above change is not relevant to 8 or earlier systems, so this MFC > will not be applied to them. >=20 > Kirk McKusick From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 01:41:52 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46CBE106564A for ; Mon, 30 Jan 2012 01:41:52 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from noop.in-addr.com (mail.in-addr.com [IPv6:2001:470:8:162::1]) by mx1.freebsd.org (Postfix) with ESMTP id 134B18FC0C for ; Mon, 30 Jan 2012 01:41:52 +0000 (UTC) Received: from gjp by noop.in-addr.com with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RrgFW-000GAq-D0; Sun, 29 Jan 2012 20:41:38 -0500 Date: Sun, 29 Jan 2012 20:41:38 -0500 From: Gary Palmer To: Peter Maloney Message-ID: <20120130014138.GA60637@in-addr.com> References: <20120127024815.GD17973@in-addr.com> <20120127030906.GA67449@icarus.home.lan> <20120127031351.GA67596@icarus.home.lan> <20120127034352.GG17973@in-addr.com> <4F2298A3.4030204@brockmann-consult.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F2298A3.4030204@brockmann-consult.de> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on noop.in-addr.com); SAEximRunCond expanded to false Cc: freebsd-stable@freebsd.org Subject: Re: Panic on 7.4-RELEASE-p5 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 01:41:52 -0000 On Fri, Jan 27, 2012 at 01:29:23PM +0100, Peter Maloney wrote: > On 01/27/2012 04:43 AM, Gary Palmer wrote: > > > > After scanning selected spans, do NOT read-scan remainder of disk. > > If Selective self-test is pending on power-up, resume after 0 minute delay. > > > > I noticed a while ago that there were some "bad" sectors on the disk, and > > at the time they were under the swap partition if my math was correct, > > and the box never swaps so it wasn't a problem. I don't know if > > the errors above are the same ones I saw earlier or not. > > > > There were no read or write errors on the console prior to the panic > > earlier today. In fact the previos output on the console relates to > > the last reboot for a software upgrade (fixing some packages) 11 > > days prior. The only thing in logs going back to November relating > > to ad1 are boot messages. > > > > Thanks, > > > > Gary > > > > Unmount your swap, and then write zeros to it to relocate the bad sectors. > > in one shell: > gstat -I 100ms -f da#p# > > in another: > swapoff /dev/da#p# > sysctl kern.geom.debugflags=0x10 > dd if=/dev/zero of=/dev/da#p# bs=1M > (eventually it stops saying end of device or no space left; at this > point I am not sure if you should then continue writing where it stopped > in 512 byte blocks, or if it wrote a partial 1M in the last 1M) > > Watch first shell. If the speed goes up, settles at a certain number, > then wildly goes down low and back up to that number, it is possibly > working. > > Then repeat. If the same wild fluctuations happen, then the drive didn't > relocate enough, because it is trying to keep some semi-bad ones, or > they are only bad when reading. If it is just settling at a speed and > staying there, then it is probably successful. I don't know how reliable > it is. I have found it to be 100% reliable in my testing though. But > some/most disks lie to you on the "relocated sector count". > > And then remount the swap and change that kernel parameter back. > sysctl kern.geom.debugflags=0 > swapon /dev/da#p# > > > Your relocated sector count: > > 5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0 > > > > However, this does not fix your disk. eg. If you have heads grinding the > platter, you have dust flying around, and your disk will get worse. > > Be VERY careful using dd to write directly to disks. If you use the > wrong slice, or you use the main device without slices and miscalculate, > bad things happen. This is why that kernel parameter was set to stop you. Hi Peter, I did things a little differently. When I checked swapinfo, apparently I set the swap partition up just purely to act as a dump device - it wasn't used as swap. So I tested it: # recoverdisk /dev/ad1s1b /dev/ad1s1b start size block-len state done remaining % done 628097024 1040384 1040384 0 629137408 0 100.00000 Completed smartctl still reports: 5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0 I then did a read test across the whole disk with no errors # recoverdisk /dev/ad1 /dev/null start size block-len state done remaining % done 120033640448 483328 483328 0 120034123776 0 100.00000 Completed Reallocated_Sector_Ct is still the same I dunno where the problems are/were, but apparently I cannot hit them now through just reading the disk or writing to swap. Thanks, Gary From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 03:03:30 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E991F1065670 for ; Mon, 30 Jan 2012 03:03:29 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from noop.in-addr.com (mail.in-addr.com [IPv6:2001:470:8:162::1]) by mx1.freebsd.org (Postfix) with ESMTP id B4AF88FC12 for ; Mon, 30 Jan 2012 03:03:29 +0000 (UTC) Received: from gjp by noop.in-addr.com with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1RrhWX-000GGb-1i; Sun, 29 Jan 2012 22:03:17 -0500 Date: Sun, 29 Jan 2012 22:03:16 -0500 From: Gary Palmer To: Peter Maloney Message-ID: <20120130030316.GB60637@in-addr.com> References: <20120127024815.GD17973@in-addr.com> <20120127030906.GA67449@icarus.home.lan> <20120127031351.GA67596@icarus.home.lan> <20120127034352.GG17973@in-addr.com> <4F2298A3.4030204@brockmann-consult.de> <20120130014138.GA60637@in-addr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120130014138.GA60637@in-addr.com> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on noop.in-addr.com); SAEximRunCond expanded to false Cc: freebsd-stable@freebsd.org Subject: Re: Panic on 7.4-RELEASE-p5 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 03:03:30 -0000 On Sun, Jan 29, 2012 at 08:41:38PM -0500, Gary Palmer wrote: > On Fri, Jan 27, 2012 at 01:29:23PM +0100, Peter Maloney wrote: > > On 01/27/2012 04:43 AM, Gary Palmer wrote: > > > > > > After scanning selected spans, do NOT read-scan remainder of disk. > > > If Selective self-test is pending on power-up, resume after 0 minute delay. > > > > > > I noticed a while ago that there were some "bad" sectors on the disk, and > > > at the time they were under the swap partition if my math was correct, > > > and the box never swaps so it wasn't a problem. I don't know if > > > the errors above are the same ones I saw earlier or not. > > > > > > There were no read or write errors on the console prior to the panic > > > earlier today. In fact the previos output on the console relates to > > > the last reboot for a software upgrade (fixing some packages) 11 > > > days prior. The only thing in logs going back to November relating > > > to ad1 are boot messages. > > > > > > Thanks, > > > > > > Gary > > > > > > > Unmount your swap, and then write zeros to it to relocate the bad sectors. > > > > in one shell: > > gstat -I 100ms -f da#p# > > > > in another: > > swapoff /dev/da#p# > > sysctl kern.geom.debugflags=0x10 > > dd if=/dev/zero of=/dev/da#p# bs=1M > > (eventually it stops saying end of device or no space left; at this > > point I am not sure if you should then continue writing where it stopped > > in 512 byte blocks, or if it wrote a partial 1M in the last 1M) > > > > Watch first shell. If the speed goes up, settles at a certain number, > > then wildly goes down low and back up to that number, it is possibly > > working. > > > > Then repeat. If the same wild fluctuations happen, then the drive didn't > > relocate enough, because it is trying to keep some semi-bad ones, or > > they are only bad when reading. If it is just settling at a speed and > > staying there, then it is probably successful. I don't know how reliable > > it is. I have found it to be 100% reliable in my testing though. But > > some/most disks lie to you on the "relocated sector count". > > > > And then remount the swap and change that kernel parameter back. > > sysctl kern.geom.debugflags=0 > > swapon /dev/da#p# > > > > > > Your relocated sector count: > > > > 5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0 > > > > > > > > However, this does not fix your disk. eg. If you have heads grinding the > > platter, you have dust flying around, and your disk will get worse. > > > > Be VERY careful using dd to write directly to disks. If you use the > > wrong slice, or you use the main device without slices and miscalculate, > > bad things happen. This is why that kernel parameter was set to stop you. > > Hi Peter, > > I did things a little differently. When I checked swapinfo, apparently I > set the swap partition up just purely to act as a dump device - it wasn't > used as swap. So I tested it: > > # recoverdisk /dev/ad1s1b /dev/ad1s1b > start size block-len state done remaining % done > 628097024 1040384 1040384 0 629137408 0 100.00000 > Completed > > smartctl still reports: > > 5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0 > > I then did a read test across the whole disk with no errors > > # recoverdisk /dev/ad1 /dev/null > start size block-len state done remaining % done > 120033640448 483328 483328 0 120034123776 0 100.00000 > Completed > > Reallocated_Sector_Ct is still the same > > I dunno where the problems are/were, but apparently I cannot hit them now > through just reading the disk or writing to swap. FYI I just ran both smartctl -t short /dev/ad1 and smartctl -t long /dev/ad1 and neither found any problems SMART Self-test log structure revision number 1 Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error # 1 Extended offline Completed without error 00% 33819 - # 2 Short offline Completed without error 00% 33818 - Thanks, Gary From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 05:35:04 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67907106566C; Mon, 30 Jan 2012 05:35:04 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 1393D8FC13; Mon, 30 Jan 2012 05:35:03 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5Yohm011522; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YoTS011521; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:50 GMT Message-Id: <201201300534.q0U5YoTS011521@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 05:35:04 -0000 TB --- 2012-01-30 04:00:47 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 04:00:47 - starting RELENG_8_1 tinderbox run for amd64/amd64 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/amd64 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/amd64/amd64 TB --- 2012-01-30 04:00:47 - cleaning the object tree TB --- 2012-01-30 04:00:47 - cvsupping the source tree TB --- 2012-01-30 04:00:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_1/amd64/amd64/supfile TB --- 2012-01-30 04:24:16 - building world TB --- 2012-01-30 04:24:16 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 04:24:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 04:24:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 04:24:16 - SRCCONF=/dev/null TB --- 2012-01-30 04:24:16 - TARGET=amd64 TB --- 2012-01-30 04:24:16 - TARGET_ARCH=amd64 TB --- 2012-01-30 04:24:16 - TZ=UTC TB --- 2012-01-30 04:24:16 - __MAKE_CONF=/dev/null TB --- 2012-01-30 04:24:16 - cd /src TB --- 2012-01-30 04:24:16 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 04:24:16 UTC 2012 >>> 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 Mon Jan 30 05:30:34 UTC 2012 TB --- 2012-01-30 05:30:34 - generating LINT kernel config TB --- 2012-01-30 05:30:34 - cd /src/sys/amd64/conf TB --- 2012-01-30 05:30:34 - /usr/bin/make -B LINT TB --- 2012-01-30 05:30:34 - cd /src/sys/amd64/conf TB --- 2012-01-30 05:30:34 - /usr/sbin/config -m LINT TB --- 2012-01-30 05:30:34 - building LINT kernel TB --- 2012-01-30 05:30:34 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:30:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:30:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:30:34 - SRCCONF=/dev/null TB --- 2012-01-30 05:30:34 - TARGET=amd64 TB --- 2012-01-30 05:30:34 - TARGET_ARCH=amd64 TB --- 2012-01-30 05:30:34 - TZ=UTC TB --- 2012-01-30 05:30:34 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:30:34 - cd /src TB --- 2012-01-30 05:30:34 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Jan 30 05:30:34 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_rtl80x9.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pccard.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pci.c awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/eisa/eisa_if.m -c ; cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue eisa_if.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 if_em.o: No space left on device {standard input}: Assembler messages: {standard input}:13043: FATAL: Can't write if_em.o: No space left on device *** Error code 1 Stop in /obj/amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-30 05:34:50 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:50 - ERROR: failed to build LINT kernel TB --- 2012-01-30 05:34:50 - 3282.55 user 688.05 system 5642.31 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-amd64-amd64.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:09 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08C6F106566C for ; Mon, 30 Jan 2012 06:04:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id A36FC8FC16 for ; Mon, 30 Jan 2012 06:04:08 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5Yoog011544; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YoKE011542; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:50 GMT Message-Id: <201201300534.q0U5YoKE011542@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:09 -0000 TB --- 2012-01-30 05:34:50 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:50 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-01-30 05:34:50 - mkdir /usr/home/tinderbox/RELENG_8_2/mips TB --- 2012-01-30 05:34:50 - ERROR: /usr/home/tinderbox/RELENG_8_2/mips/mips: No space left on device TB --- 2012-01-30 05:34:50 - 0.02 user 0.11 system 0.20 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:09 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F24D1065675 for ; Mon, 30 Jan 2012 06:04:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 458AB8FC15 for ; Mon, 30 Jan 2012 06:04:09 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YoIn011545; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5Yowx011543; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:50 GMT Message-Id: <201201300534.q0U5Yowx011543@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 ia64/ia64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:09 -0000 TB --- 2012-01-30 05:34:50 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:50 - starting RELENG_8_2 tinderbox run for ia64/ia64 TB --- 2012-01-30 05:34:50 - mkdir /usr/home/tinderbox/RELENG_8_2/ia64 TB --- 2012-01-30 05:34:50 - ERROR: /usr/home/tinderbox/RELENG_8_2/ia64/ia64: No space left on device TB --- 2012-01-30 05:34:50 - 0.02 user 0.07 system 0.08 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-ia64-ia64.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:10 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DC281065676 for ; Mon, 30 Jan 2012 06:04:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id D93008FC17 for ; Mon, 30 Jan 2012 06:04:09 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5Yob6011520; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5Yocj011519; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:50 GMT Message-Id: <201201300534.q0U5Yocj011519@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 i386/pc98 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:10 -0000 TB --- 2012-01-30 05:34:50 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:50 - starting RELENG_8_2 tinderbox run for i386/pc98 TB --- 2012-01-30 05:34:50 - mkdir /usr/home/tinderbox/RELENG_8_2/i386/pc98 TB --- 2012-01-30 05:34:50 - ERROR: /usr/home/tinderbox/RELENG_8_2/i386/pc98: No space left on device TB --- 2012-01-30 05:34:50 - 0.02 user 0.10 system 0.09 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-i386-pc98.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:10 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D149D106566B for ; Mon, 30 Jan 2012 06:04:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 784808FC18 for ; Mon, 30 Jan 2012 06:04:10 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YprD011554; Mon, 30 Jan 2012 05:34:51 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YpTJ011552; Mon, 30 Jan 2012 05:34:51 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:51 GMT Message-Id: <201201300534.q0U5YpTJ011552@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:10 -0000 TB --- 2012-01-30 05:34:50 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:50 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-01-30 05:34:50 - mkdir /usr/home/tinderbox/RELENG_8_2/powerpc TB --- 2012-01-30 05:34:50 - ERROR: /usr/home/tinderbox/RELENG_8_2/powerpc/powerpc: No space left on device TB --- 2012-01-30 05:34:50 - 0.03 user 0.09 system 0.05 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:11 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 552ED106564A for ; Mon, 30 Jan 2012 06:04:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 1751E8FC19 for ; Mon, 30 Jan 2012 06:04:11 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5ZTw2011762; Mon, 30 Jan 2012 05:35:29 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5ZT0N011761; Mon, 30 Jan 2012 05:35:29 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:35:29 GMT Message-Id: <201201300535.q0U5ZT0N011761@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 arm/arm X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:11 -0000 TB --- 2012-01-30 05:34:47 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:47 - starting RELENG_8_2 tinderbox run for arm/arm TB --- 2012-01-30 05:34:47 - mkdir /usr/home/tinderbox/RELENG_8_2/arm TB --- 2012-01-30 05:34:47 - mkdir /usr/home/tinderbox/RELENG_8_2/arm/arm TB --- 2012-01-30 05:34:47 - cleaning the object tree TB --- 2012-01-30 05:34:47 - cvsupping the source tree TB --- 2012-01-30 05:34:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_2/arm/arm/supfile TB --- 2012-01-30 05:35:29 - WARNING: /usr/bin/csup returned exit code 1 TB --- 2012-01-30 05:35:29 - ERROR: unable to cvsup the source tree TB --- 2012-01-30 05:35:29 - 0.11 user 0.30 system 41.35 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-arm-arm.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:11 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD61D1065670 for ; Mon, 30 Jan 2012 06:04:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7688FC12 for ; Mon, 30 Jan 2012 06:04:11 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5ZTX9011763; Mon, 30 Jan 2012 05:35:29 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5ZTfO011760; Mon, 30 Jan 2012 05:35:29 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:35:29 GMT Message-Id: <201201300535.q0U5ZTfO011760@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 i386/i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:11 -0000 TB --- 2012-01-30 05:34:47 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:34:47 - starting RELENG_8_2 tinderbox run for i386/i386 TB --- 2012-01-30 05:34:47 - mkdir /usr/home/tinderbox/RELENG_8_2/i386 TB --- 2012-01-30 05:34:47 - mkdir /usr/home/tinderbox/RELENG_8_2/i386/i386 TB --- 2012-01-30 05:34:47 - cleaning the object tree TB --- 2012-01-30 05:34:47 - cvsupping the source tree TB --- 2012-01-30 05:34:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_2/i386/i386/supfile TB --- 2012-01-30 05:35:29 - WARNING: /usr/bin/csup returned exit code 1 TB --- 2012-01-30 05:35:29 - ERROR: unable to cvsup the source tree TB --- 2012-01-30 05:35:29 - 0.09 user 0.41 system 41.39 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:12 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40AD71065672 for ; Mon, 30 Jan 2012 06:04:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 13B568FC14 for ; Mon, 30 Jan 2012 06:04:11 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YvDr011755; Mon, 30 Jan 2012 05:34:57 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5Yvrp011754; Mon, 30 Jan 2012 05:34:57 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:57 GMT Message-Id: <201201300534.q0U5Yvrp011754@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:12 -0000 TB --- 2012-01-30 04:42:24 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 04:42:24 - starting RELENG_8_1 tinderbox run for powerpc/powerpc TB --- 2012-01-30 04:42:24 - mkdir /usr/home/tinderbox/RELENG_8_1/powerpc TB --- 2012-01-30 04:42:24 - mkdir /usr/home/tinderbox/RELENG_8_1/powerpc/powerpc TB --- 2012-01-30 04:42:24 - cleaning the object tree TB --- 2012-01-30 04:42:24 - cvsupping the source tree TB --- 2012-01-30 04:42:24 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_1/powerpc/powerpc/supfile TB --- 2012-01-30 04:47:20 - building world TB --- 2012-01-30 04:47:20 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 04:47:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 04:47:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 04:47:20 - SRCCONF=/dev/null TB --- 2012-01-30 04:47:20 - TARGET=powerpc TB --- 2012-01-30 04:47:20 - TARGET_ARCH=powerpc TB --- 2012-01-30 04:47:20 - TZ=UTC TB --- 2012-01-30 04:47:20 - __MAKE_CONF=/dev/null TB --- 2012-01-30 04:47:20 - cd /src TB --- 2012-01-30 04:47:20 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 04:47:21 UTC 2012 >>> 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 >>> World build completed on Mon Jan 30 05:33:56 UTC 2012 TB --- 2012-01-30 05:33:56 - generating LINT kernel config TB --- 2012-01-30 05:33:56 - cd /src/sys/powerpc/conf TB --- 2012-01-30 05:33:56 - /usr/bin/make -B LINT TB --- 2012-01-30 05:33:56 - cd /src/sys/powerpc/conf TB --- 2012-01-30 05:33:56 - /usr/sbin/config -m LINT TB --- 2012-01-30 05:33:56 - building LINT kernel TB --- 2012-01-30 05:33:56 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:33:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:33:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:33:56 - SRCCONF=/dev/null TB --- 2012-01-30 05:33:56 - TARGET=powerpc TB --- 2012-01-30 05:33:56 - TARGET_ARCH=powerpc TB --- 2012-01-30 05:33:56 - TZ=UTC TB --- 2012-01-30 05:33:56 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:33:56 - cd /src TB --- 2012-01-30 05:33:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Jan 30 05:33:56 UTC 2012 >>> 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 [...] compilation terminated. :0: fatal error: when writing output to : No space left on device compilation terminated. :0: fatal error: when writing output to : No space left on device compilation terminated. :0: fatal error: when writing output to : No space left on device compilation terminated. mkdep: compile failed *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-30 05:34:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:57 - ERROR: failed to build LINT kernel TB --- 2012-01-30 05:34:57 - 2249.40 user 438.71 system 3153.45 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:12 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A86401065673 for ; Mon, 30 Jan 2012 06:04:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 7ADD38FC08 for ; Mon, 30 Jan 2012 06:04:12 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YlNQ011228; Mon, 30 Jan 2012 05:34:47 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YlKd011224; Mon, 30 Jan 2012 05:34:47 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:47 GMT Message-Id: <201201300534.q0U5YlKd011224@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:12 -0000 TB --- 2012-01-30 05:00:26 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:00:26 - starting RELENG_8_1 tinderbox run for sparc64/sparc64 TB --- 2012-01-30 05:00:26 - mkdir /usr/home/tinderbox/RELENG_8_1/sparc64 TB --- 2012-01-30 05:00:26 - mkdir /usr/home/tinderbox/RELENG_8_1/sparc64/sparc64 TB --- 2012-01-30 05:00:26 - cleaning the object tree TB --- 2012-01-30 05:00:26 - cvsupping the source tree TB --- 2012-01-30 05:00:26 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_1/sparc64/sparc64/supfile TB --- 2012-01-30 05:04:08 - building world TB --- 2012-01-30 05:04:08 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:04:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:04:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:04:08 - SRCCONF=/dev/null TB --- 2012-01-30 05:04:08 - TARGET=sparc64 TB --- 2012-01-30 05:04:08 - TARGET_ARCH=sparc64 TB --- 2012-01-30 05:04:08 - TZ=UTC TB --- 2012-01-30 05:04:08 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:04:08 - cd /src TB --- 2012-01-30 05:04:08 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 05:04:09 UTC 2012 >>> 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 -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" -I/obj/sparc64/src/gnu/usr.bin/cc/cc1/../cc_tools -I/src/gnu/usr.bin/cc/cc1/../cc_tools -I/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcclibs/libdecnumber -std=gnu89 -fstack-protector -static -o cc1 cc1-checksum.o main.o c-parser.o c-lang.o /obj/sparc64/src/gnu/usr.bin/cc/cc1/../cc_int/libbackend.a /obj/sparc64/src/gnu/usr.bin/cc/cc1/../libcpp/libcpp.a /obj/sparc64/src/gnu/usr.bin/cc/cc1/../libdecnumber/libdecnumber.a /obj/sparc64/src/gnu/usr.bin/cc/cc1/../libiberty/libiberty.a ===> gnu/usr.bin/cc/include (all) ===> gnu/usr.bin/cc/doc (all) (echo "@set version-GCC 4.2.1"; if [ "" = "experimental" ]; then echo "@set DEVELOPMENT"; else echo "@clear DEVELOPMENT"; fi; echo "@set srcdir /src/gnu/usr.bin/cc/doc/../../../../contrib/gcclibs/libiberty" ) > gcc-vers.texi makeinfo -I /src/gnu/usr.bin/cc/doc/../../../../contrib/gcc/doc -I /src/gnu/usr.bin/cc/doc/../../../../contrib/gcc/doc/include --no-split -I /src/gnu/usr.bin/cc/doc -I /src/gnu/usr.bin/cc/doc /src/gnu/usr.bin/cc/doc/../../../../contrib/gcc/doc/gcc.texi -o gcc.info gcc.info: No space left on device gcc.info: No space left on device makeinfo: Removing output file `gcc.info' due to errors; use --force to preserve. *** Error code 1 Stop in /src/gnu/usr.bin/cc/doc. *** Error code 1 Stop in /src/gnu/usr.bin/cc. *** Error code 1 Stop in /src/gnu/usr.bin. *** Error code 1 Stop in /src/gnu. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-30 05:34:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:47 - ERROR: failed to build world TB --- 2012-01-30 05:34:47 - 1426.16 user 300.38 system 2060.75 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-sparc64-sparc64.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:13 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3616C1065674 for ; Mon, 30 Jan 2012 06:04:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id E34158FC0A for ; Mon, 30 Jan 2012 06:04:12 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YnBo011509; Mon, 30 Jan 2012 05:34:49 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YnEY011508; Mon, 30 Jan 2012 05:34:49 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:49 GMT Message-Id: <201201300534.q0U5YnEY011508@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:13 -0000 TB --- 2012-01-30 05:19:15 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 05:19:15 - starting RELENG_8_2 tinderbox run for amd64/amd64 TB --- 2012-01-30 05:19:15 - mkdir /usr/home/tinderbox/RELENG_8_2 TB --- 2012-01-30 05:19:15 - mkdir /usr/home/tinderbox/RELENG_8_2/amd64 TB --- 2012-01-30 05:19:15 - mkdir /usr/home/tinderbox/RELENG_8_2/amd64/amd64 TB --- 2012-01-30 05:19:15 - cleaning the object tree TB --- 2012-01-30 05:19:15 - cvsupping the source tree TB --- 2012-01-30 05:19:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_2/amd64/amd64/supfile TB --- 2012-01-30 05:22:46 - building world TB --- 2012-01-30 05:22:46 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:22:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:22:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:22:46 - SRCCONF=/dev/null TB --- 2012-01-30 05:22:46 - TARGET=amd64 TB --- 2012-01-30 05:22:46 - TARGET_ARCH=amd64 TB --- 2012-01-30 05:22:46 - TZ=UTC TB --- 2012-01-30 05:22:46 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:22:46 - cd /src TB --- 2012-01-30 05:22:46 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 05:22:46 UTC 2012 >>> 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 -I. -I/obj/amd64/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/include -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector -c /src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/base/lib_printw.c cc -O2 -pipe -I. -I/obj/amd64/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/include -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector -c /src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/base/lib_redrawln.c cc -O2 -pipe -I. -I/obj/amd64/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/include -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector -c /src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/base/lib_refresh.c cc -O2 -pipe -I. -I/obj/amd64/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/include -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector -c /src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/base/lib_restart.c cc -O2 -pipe -I. -I/obj/amd64/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../ncurses -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/include -I/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS -std=gnu99 -fstack-protector -c /src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/base/lib_scanw.c lib_scanw.o: No space left on device {standard input}: Assembler messages: {standard input}:347: FATAL: Can't write lib_scanw.o: No space left on device *** Error code 1 Stop in /src/lib/ncurses/ncurses. *** 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 --- 2012-01-30 05:34:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:49 - ERROR: failed to build world TB --- 2012-01-30 05:34:49 - 576.54 user 120.20 system 934.44 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-amd64-amd64.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:13 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EC4F106564A for ; Mon, 30 Jan 2012 06:04:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id 705D98FC0C for ; Mon, 30 Jan 2012 06:04:13 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5YoZa011527; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YoO8011523; Mon, 30 Jan 2012 05:34:50 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:50 GMT Message-Id: <201201300534.q0U5YoO8011523@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:13 -0000 TB --- 2012-01-30 04:00:47 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 04:00:47 - starting RELENG_8_1 tinderbox run for ia64/ia64 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/ia64 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/ia64/ia64 TB --- 2012-01-30 04:00:47 - cleaning the object tree TB --- 2012-01-30 04:00:47 - cvsupping the source tree TB --- 2012-01-30 04:00:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_1/ia64/ia64/supfile TB --- 2012-01-30 04:24:16 - building world TB --- 2012-01-30 04:24:16 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 04:24:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 04:24:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 04:24:16 - SRCCONF=/dev/null TB --- 2012-01-30 04:24:16 - TARGET=ia64 TB --- 2012-01-30 04:24:16 - TARGET_ARCH=ia64 TB --- 2012-01-30 04:24:16 - TZ=UTC TB --- 2012-01-30 04:24:16 - __MAKE_CONF=/dev/null TB --- 2012-01-30 04:24:16 - cd /src TB --- 2012-01-30 04:24:16 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 04:24:16 UTC 2012 >>> 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 >>> World build completed on Mon Jan 30 05:23:15 UTC 2012 TB --- 2012-01-30 05:23:15 - generating LINT kernel config TB --- 2012-01-30 05:23:15 - cd /src/sys/ia64/conf TB --- 2012-01-30 05:23:15 - /usr/bin/make -B LINT TB --- 2012-01-30 05:23:15 - cd /src/sys/ia64/conf TB --- 2012-01-30 05:23:15 - /usr/sbin/config -m LINT TB --- 2012-01-30 05:23:15 - building LINT kernel TB --- 2012-01-30 05:23:15 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:23:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:23:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:23:15 - SRCCONF=/dev/null TB --- 2012-01-30 05:23:15 - TARGET=ia64 TB --- 2012-01-30 05:23:15 - TARGET_ARCH=ia64 TB --- 2012-01-30 05:23:15 - TZ=UTC TB --- 2012-01-30 05:23:15 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:23:15 - cd /src TB --- 2012-01-30 05:23:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Jan 30 05:23:15 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ufs/ffs/ffs_alloc.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ufs/ffs/ffs_balloc.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ufs/ffs/ffs_inode.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ufs/ffs/ffs_snapshot.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ufs/ffs/ffs_softdep.c ffs_softdep.o: No space left on device {standard input}: Assembler messages: {standard input}:35149: FATAL: Can't write ffs_softdep.o: No space left on device *** Error code 1 Stop in /obj/ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-30 05:34:50 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:50 - ERROR: failed to build LINT kernel TB --- 2012-01-30 05:34:50 - 3538.14 user 541.04 system 5642.36 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-ia64-ia64.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:04:14 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 141F61065675 for ; Mon, 30 Jan 2012 06:04:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [64.7.128.101]) by mx1.freebsd.org (Postfix) with ESMTP id D91808FC15 for ; Mon, 30 Jan 2012 06:04:13 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0U5Ylow011222; Mon, 30 Jan 2012 05:34:47 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0U5YlSe011216; Mon, 30 Jan 2012 05:34:47 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 30 Jan 2012 05:34:47 GMT Message-Id: <201201300534.q0U5YlSe011216@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on i386/i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2012 06:04:14 -0000 TB --- 2012-01-30 04:00:47 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-30 04:00:47 - starting RELENG_8_1 tinderbox run for i386/i386 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/i386 TB --- 2012-01-30 04:00:47 - mkdir /usr/home/tinderbox/RELENG_8_1/i386/i386 TB --- 2012-01-30 04:00:47 - cleaning the object tree TB --- 2012-01-30 04:00:47 - cvsupping the source tree TB --- 2012-01-30 04:00:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_8_1/i386/i386/supfile TB --- 2012-01-30 04:08:23 - building world TB --- 2012-01-30 04:08:23 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 04:08:23 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 04:08:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 04:08:23 - SRCCONF=/dev/null TB --- 2012-01-30 04:08:23 - TARGET=i386 TB --- 2012-01-30 04:08:23 - TARGET_ARCH=i386 TB --- 2012-01-30 04:08:23 - TZ=UTC TB --- 2012-01-30 04:08:23 - __MAKE_CONF=/dev/null TB --- 2012-01-30 04:08:23 - cd /src TB --- 2012-01-30 04:08:23 - /usr/bin/make -B buildworld >>> World build started on Mon Jan 30 04:08:23 UTC 2012 >>> 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 >>> World build completed on Mon Jan 30 04:51:16 UTC 2012 TB --- 2012-01-30 04:51:16 - generating LINT kernel config TB --- 2012-01-30 04:51:16 - cd /src/sys/i386/conf TB --- 2012-01-30 04:51:16 - /usr/bin/make -B LINT TB --- 2012-01-30 04:51:16 - cd /src/sys/i386/conf TB --- 2012-01-30 04:51:16 - /usr/sbin/config -m LINT TB --- 2012-01-30 04:51:16 - building LINT kernel TB --- 2012-01-30 04:51:16 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 04:51:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 04:51:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 04:51:16 - SRCCONF=/dev/null TB --- 2012-01-30 04:51:16 - TARGET=i386 TB --- 2012-01-30 04:51:16 - TARGET_ARCH=i386 TB --- 2012-01-30 04:51:16 - TZ=UTC TB --- 2012-01-30 04:51:16 - __MAKE_CONF=/dev/null TB --- 2012-01-30 04:51:16 - cd /src TB --- 2012-01-30 04:51:16 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Jan 30 04:51:16 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Mon Jan 30 05:10:26 UTC 2012 TB --- 2012-01-30 05:10:26 - cd /src/sys/i386/conf TB --- 2012-01-30 05:10:26 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-01-30 05:10:26 - building LINT-VIMAGE kernel TB --- 2012-01-30 05:10:26 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:10:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:10:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:10:26 - SRCCONF=/dev/null TB --- 2012-01-30 05:10:26 - TARGET=i386 TB --- 2012-01-30 05:10:26 - TARGET_ARCH=i386 TB --- 2012-01-30 05:10:26 - TZ=UTC TB --- 2012-01-30 05:10:26 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:10:26 - cd /src TB --- 2012-01-30 05:10:26 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Mon Jan 30 05:10:26 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT-VIMAGE completed on Mon Jan 30 05:29:43 UTC 2012 TB --- 2012-01-30 05:29:43 - cd /src/sys/i386/conf TB --- 2012-01-30 05:29:43 - /usr/sbin/config -m GENERIC TB --- 2012-01-30 05:29:43 - building GENERIC kernel TB --- 2012-01-30 05:29:43 - CROSS_BUILD_TESTING=YES TB --- 2012-01-30 05:29:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-30 05:29:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-30 05:29:43 - SRCCONF=/dev/null TB --- 2012-01-30 05:29:43 - TARGET=i386 TB --- 2012-01-30 05:29:43 - TARGET_ARCH=i386 TB --- 2012-01-30 05:29:43 - TZ=UTC TB --- 2012-01-30 05:29:43 - __MAKE_CONF=/dev/null TB --- 2012-01-30 05:29:43 - cd /src TB --- 2012-01-30 05:29:43 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Mon Jan 30 05:29:43 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror /src/sys/netinet/ip_input.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror /src/sys/netinet/ip_options.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror /src/sys/netinet/ip_output.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror /src/sys/netinet/raw_ip.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror /src/sys/netinet/sctp_asconf.c sctp_asconf.o: No space left on device {standard input}: Assembler messages: {standard input}:40260: FATAL: Can't write sctp_asconf.o: No space left on device *** Error code 1 Stop in /obj/i386/src/sys/GENERIC. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-30 05:34:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-30 05:34:47 - ERROR: failed to build GENERIC kernel TB --- 2012-01-30 05:34:47 - 4231.97 user 746.97 system 5639.40 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 06:56:23 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1163C106566C for ; Mon, 30 Jan 2012 06:56:23 +0000 (UTC) (envelope-from b.smeelen@ose.nl) Received: from mail.ose.nl (mail.ose.nl [212.178.134.164]) by mx1.freebsd.org (Postfix) with ESMTP id A276E8FC18 for ; Mon, 30 Jan 2012 06:56:22 +0000 (UTC) X-Footer: b3NlLm5s Received: from localhost ([127.0.0.1]) by mail.ose.nl (using TLSv1/SSLv3 with cipher AES256-SHA (256 bits)) for freebsd-stable@freebsd.org; Mon, 30 Jan 2012 07:46:18 +0100 Message-ID: <4F263CBA.60908@ose.nl> Date: Mon, 30 Jan 2012 07:46:18 +0100 From: Bas Smeelen User-Agent: Mozilla/5.0 (X11; Linux i686; rv:9.0) Gecko/20111220 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: 9-STABEL Gnome keyring cannot allocate secure memory X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 06:56:23 -0000 Hi, I have update my 9-STABLE system with csup from 21 jan. to 28 jan. last weekend. After building and installing kernel and world and recompiling all ports the Gnome desktop does not start through anymore. This is with gmd after providing the password or without when just running startx as a normal user. It was all working fine before. The X window system works, it is just a Gnome issue. To be sure I deleted all ports and reinstalled, but it still has the same issue. The screen stays blank and on the console there is a message from gnome keyring that it cannot allocate secure memory. I did not find anything significant in src/UPDATING and I did not update the portstree, because these versions were working fine. Any suggestions? Thanks in advance. Disclaimer: http://www.ose.nl/email From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 09:02:49 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BE891065670 for ; Mon, 30 Jan 2012 09:02:49 +0000 (UTC) (envelope-from b.smeelen@ose.nl) Received: from mail.ose.nl (mail.ose.nl [212.178.134.164]) by mx1.freebsd.org (Postfix) with ESMTP id 17CB38FC08 for ; Mon, 30 Jan 2012 09:02:48 +0000 (UTC) X-Footer: b3NlLm5s Received: from localhost ([127.0.0.1]) by mail.ose.nl (using TLSv1/SSLv3 with cipher AES256-SHA (256 bits)) for freebsd-stable@freebsd.org; Mon, 30 Jan 2012 10:02:46 +0100 Message-ID: <4F265CB6.9000601@ose.nl> Date: Mon, 30 Jan 2012 10:02:46 +0100 From: Bas Smeelen User-Agent: Mozilla/5.0 (X11; Linux i686; rv:9.0) Gecko/20111220 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <4F263CBA.60908@ose.nl> In-Reply-To: <4F263CBA.60908@ose.nl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: 9-STABLE Gnome keyring cannot allocate secure memory X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 09:02:49 -0000 On 01/30/2012 07:46 AM, Bas Smeelen wrote: > Hi, > > I have update my 9-STABLE system with csup from 21 jan. to 28 jan. last weekend. > After building and installing kernel and world and recompiling all ports the > Gnome desktop does not start through anymore. This is with gmd after > providing the password or without when just running startx as a normal user. > It was all working fine before. The X window system works, it is just a > Gnome issue. > To be sure I deleted all ports and reinstalled, but it still has the same > issue. The screen stays blank and on the console there is a message from > gnome keyring that it cannot allocate secure memory. > I did not find anything significant in src/UPDATING and I did not update the > portstree, because these versions were working fine. > > Any suggestions? > Thanks in advance. I guess I'll start digging through http://www.freebsd.org/gnome/index.html tonight. The strange thing is however that Gnome was running fine on 9-STABLE with hald and dbus and /proc until after the update. Disclaimer: http://www.ose.nl/email From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 09:15:19 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AC1A1065670; Mon, 30 Jan 2012 09:15:19 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog103.obsmtp.com (na3sys009aog103.obsmtp.com [74.125.149.71]) by mx1.freebsd.org (Postfix) with ESMTP id 59C868FC15; Mon, 30 Jan 2012 09:15:18 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob103.postini.com ([74.125.148.12]) with SMTP ID DSNKTyZfpbx6f4hiNqTanUBpBV6Z3qu2N+Cu@postini.com; Mon, 30 Jan 2012 01:15:18 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 04:19:55 -0500 Received: from inbexch02.lsi.com (135.36.98.40) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 04:15:16 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch02.lsi.com ([135.36.98.40]) with mapi; Mon, 30 Jan 2012 14:45:13 +0530 From: "Desai, Kashyap" To: "freebsd-stable@freebsd.org" , "freebsd-current@freebsd.org" Date: Mon, 30 Jan 2012 14:45:10 +0530 Thread-Topic: mps module compilation issue on FreeBSD-9 amd64 Thread-Index: AczfL6p2onvxGYiiRyaw+Lm85o015Q== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "gibbs@FreeBSD.org" , "Kenneth D. Merry" , "McConnell, Stephen" Subject: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 09:15:19 -0000 Hi, I am seeing some uncommon problem while doing compilation of mps driver (th= is is a latest driver from LSI). Here are the steps I followed. CASE-1=20 1. remove mps directory from sys/dev and sys/module and overwrite those two= directories with my latest code. 2. go to sys/module/mps and run "make". [Things works fine.] CASE-2. 1. remove mps directory from sys/dev and sys/module and overwrite those two= directories with my latest code. 2. go to main directory ( In my case it is "/usr/trees/9.0.0") 3. Run below command=20 make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps TARGET_ARCH= =3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN -DNO_KERNELCONFIG -DNO_KE= RNELCLEAN -DNO_KERNELDEPEND Here I am seeing mps.ko file is generated, but it is failing at steps. (this step is only seen in CASE-1). Any Idea How to resolve this issue ? INFO: I am using FreeBSD-8.2-Release amd64.case-1 and case-2 both passes fo= r i386. \\\\ --- Compilation failure log for CASE-2 ---- ld -d -warn-common -r -d -o mpslsi.ko.debug mps_pci.o mps.o mps_sas.o mps_= table.o mps_user.o mps_config.o mps_mapping.o mps_sas_lsi.o :> export_syms awk -f /usr/trees/9.0.0/sys/conf/kmod_syms.awk mpslsi.ko.debug export_syms= | xargs -J% objcopy % mpslsi.ko.debug /usr/local/bin/svnversion objcopy --only-keep-debug mpslsi.ko.debug mpslsi.ko.symbols objcopy --strip-debug --add-gnu-debuglink=3Dmpslsi.ko.symbols mpslsi.ko.deb= ug mpslsi.ko cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -g -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -= I. -I/usr/trees/9.0.0/sys -I/usr/trees/9.0.0/sys/contrib/altq -D_KERNEL -DH= AVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit= =3D8000 --param inline-unit-growth=3D100 --param large-function-growth=3D10= 00 -fno-omit-frame-pointer -mno-sse -mcmodel=3Dkernel -mno-red-zone -mno-m= mx -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-pro= tector -Werror vers.c linking kernel.debug mps.o: In function `mps_startup': /usr/trees/9.0.0/sys/dev/mps/mps.c:1249: undefined reference to `mps_mappin= g_initialize' mps.o: In function `mps_free': /usr/trees/9.0.0/sys/dev/mps/mps.c:1410: undefined reference to `mps_mappin= g_free_memory' mps.o: In function `mps_attach': /usr/trees/9.0.0/sys/dev/mps/mps.c:1204: undefined reference to `mps_base_s= tatic_config_pages' /usr/trees/9.0.0/sys/dev/mps/mps.c:1224: undefined reference to `mpssas_ir_= shutdown' mps_sas.o: In function `mps_attach_sas': /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:614: undefined reference to `mpssas_= firmware_event_work' mps_sas.o: In function `mpssas_register_events': /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:576: undefined reference to `mpssas_= evt_handler' mps_sas.o: In function `mpssas_portenable_complete': /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:3069: undefined reference to `mps_wd= _config_pages' mps_user.o: In function `mps_user_btdh': /usr/trees/9.0.0/sys/dev/mps/mps_user.c:2038: undefined reference to `mps_m= apping_get_sas_id_from_handle' mps_user.o: In function `mps_user_get_adapter_data': /usr/trees/9.0.0/sys/dev/mps/mps_user.c:1101: undefined reference to `mps_c= onfig_get_bios_pg3' *** Error code 1 1 error *** Error code 2 1 error *** Error code 2 1 error Failed : make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps TAR= GET_ARCH=3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN -DNO_KERNELCONFIG= -DNO_KERNELCLEAN -DNO_KERNELDEPEND From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 09:19:20 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EEF21065670; Mon, 30 Jan 2012 09:19:20 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog121.obsmtp.com (na3sys009aog121.obsmtp.com [74.125.149.145]) by mx1.freebsd.org (Postfix) with ESMTP id 3B51F8FC12; Mon, 30 Jan 2012 09:19:18 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob121.postini.com ([74.125.148.12]) with SMTP ID DSNKTyZglv3LABLoRTgDSNTvVe677m/jC2y8@postini.com; Mon, 30 Jan 2012 01:19:19 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 04:23:56 -0500 Received: from inbexch02.lsi.com (135.36.98.40) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 04:19:17 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch02.lsi.com ([135.36.98.40]) with mapi; Mon, 30 Jan 2012 14:49:14 +0530 From: "Desai, Kashyap" To: "Desai, Kashyap" , "freebsd-stable@freebsd.org" , "freebsd-current@freebsd.org" Date: Mon, 30 Jan 2012 14:49:12 +0530 Thread-Topic: mps module compilation issue on FreeBSD-9 amd64 Thread-Index: AczfL6p2onvxGYiiRyaw+Lm85o015QAAE/8w Message-ID: References: In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "gibbs@FreeBSD.org" , "Kenneth D. Merry" , "McConnell, Stephen" Subject: RE: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 09:19:20 -0000 > -----Original Message----- > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > stable@freebsd.org] On Behalf Of Desai, Kashyap > Sent: Monday, January 30, 2012 2:45 PM > To: freebsd-stable@freebsd.org; freebsd-current@freebsd.org > Cc: gibbs@FreeBSD.org; Kenneth D. Merry; McConnell, Stephen > Subject: mps module compilation issue on FreeBSD-9 amd64 >=20 > Hi, >=20 > I am seeing some uncommon problem while doing compilation of mps driver > (this is a latest driver from LSI). >=20 > Here are the steps I followed. >=20 > CASE-1 >=20 > 1. remove mps directory from sys/dev and sys/module and overwrite those > two directories with my latest code. > 2. go to sys/module/mps and run "make". [Things works fine.] >=20 > CASE-2. > 1. remove mps directory from sys/dev and sys/module and overwrite those > two directories with my latest code. > 2. go to main directory ( In my case it is "/usr/trees/9.0.0") > 3. Run below command > make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps > TARGET_ARCH=3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN - > DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND >=20 > Here I am seeing mps.ko file is generated, but it is failing at kernel.debug> steps. (this step is only seen in CASE-1). Typo: It should be=09 this step is only seen in CASE-2. Also, I have first finished buildworld before I tried mps (LSI driver) comp= ilation. > Any Idea How to resolve this issue ? >=20 > INFO: I am using FreeBSD-8.2-Release amd64.case-1 and case-2 both passes > for i386. \\\\ >=20 > --- Compilation failure log for CASE-2 ---- >=20 > ld -d -warn-common -r -d -o mpslsi.ko.debug mps_pci.o mps.o mps_sas.o > mps_table.o mps_user.o mps_config.o mps_mapping.o mps_sas_lsi.o > :> export_syms > awk -f /usr/trees/9.0.0/sys/conf/kmod_syms.awk mpslsi.ko.debug > export_syms | xargs -J% objcopy % mpslsi.ko.debug > /usr/local/bin/svnversion > objcopy --only-keep-debug mpslsi.ko.debug mpslsi.ko.symbols > objcopy --strip-debug --add-gnu-debuglink=3Dmpslsi.ko.symbols > mpslsi.ko.debug mpslsi.ko > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -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 -nostdinc -I. -I/usr/trees/9.0.0/sys - > I/usr/trees/9.0.0/sys/contrib/altq -D_KERNEL - > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline- > limit=3D8000 --param inline-unit-growth=3D100 --param large-function- > growth=3D1000 -fno-omit-frame-pointer -mno-sse -mcmodel=3Dkernel -mno-re= d- > zone -mno-mmx -msoft-float -fno-asynchronous-unwind-tables - > ffreestanding -fstack-protector -Werror vers.c > linking kernel.debug > mps.o: In function `mps_startup': > /usr/trees/9.0.0/sys/dev/mps/mps.c:1249: undefined reference to > `mps_mapping_initialize' > mps.o: In function `mps_free': > /usr/trees/9.0.0/sys/dev/mps/mps.c:1410: undefined reference to > `mps_mapping_free_memory' > mps.o: In function `mps_attach': > /usr/trees/9.0.0/sys/dev/mps/mps.c:1204: undefined reference to > `mps_base_static_config_pages' > /usr/trees/9.0.0/sys/dev/mps/mps.c:1224: undefined reference to > `mpssas_ir_shutdown' > mps_sas.o: In function `mps_attach_sas': > /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:614: undefined reference to > `mpssas_firmware_event_work' > mps_sas.o: In function `mpssas_register_events': > /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:576: undefined reference to > `mpssas_evt_handler' > mps_sas.o: In function `mpssas_portenable_complete': > /usr/trees/9.0.0/sys/dev/mps/mps_sas.c:3069: undefined reference to > `mps_wd_config_pages' > mps_user.o: In function `mps_user_btdh': > /usr/trees/9.0.0/sys/dev/mps/mps_user.c:2038: undefined reference to > `mps_mapping_get_sas_id_from_handle' > mps_user.o: In function `mps_user_get_adapter_data': > /usr/trees/9.0.0/sys/dev/mps/mps_user.c:1101: undefined reference to > `mps_config_get_bios_pg3' > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > Failed : make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps > TARGET_ARCH=3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN - > DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable- > unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 09:47:58 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22BC4106564A for ; Mon, 30 Jan 2012 09:47:58 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id B283A8FC08 for ; Mon, 30 Jan 2012 09:47:57 +0000 (UTC) Received: by werm13 with SMTP id m13so2328958wer.13 for ; Mon, 30 Jan 2012 01:47:56 -0800 (PST) Received: by 10.216.137.166 with SMTP id y38mr6576645wei.16.1327916876564; Mon, 30 Jan 2012 01:47:56 -0800 (PST) Received: from dfleuriot-at-hi-media.com ([83.167.62.196]) by mx.google.com with ESMTPS id bu13sm50655160wib.6.2012.01.30.01.47.52 (version=SSLv3 cipher=OTHER); Mon, 30 Jan 2012 01:47:55 -0800 (PST) Message-ID: <4F266748.4010602@my.gd> Date: Mon, 30 Jan 2012 10:47:52 +0100 From: Damien Fleuriot User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 09:47:58 -0000 On 1/30/12 10:15 AM, Desai, Kashyap wrote: > Hi, > > I am seeing some uncommon problem while doing compilation of mps driver (this is a latest driver from LSI). > > Here are the steps I followed. > > CASE-1 > > 1. remove mps directory from sys/dev and sys/module and overwrite those two directories with my latest code. > 2. go to sys/module/mps and run "make". [Things works fine.] > > CASE-2. > 1. remove mps directory from sys/dev and sys/module and overwrite those two directories with my latest code. > 2. go to main directory ( In my case it is "/usr/trees/9.0.0") > 3. Run below command > make -j8 buildkernel KERNCONF=GENERIC MODULES_OVERRIDE=mps TARGET_ARCH=amd64 SYSDIR=/usr/trees/9.0.0/sys -DNO_CLEAN -DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND > Why are you multithreading your kernel build ? I might be mistaken but I've always read you're *NOT* supposed to do that, only with the world ! From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 09:59:41 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD29610656F5 for ; Mon, 30 Jan 2012 09:59:41 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog115.obsmtp.com (na3sys009aog115.obsmtp.com [74.125.149.238]) by mx1.freebsd.org (Postfix) with ESMTP id 29DB08FC1B for ; Mon, 30 Jan 2012 09:59:40 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob115.postini.com ([74.125.148.12]) with SMTP ID DSNKTyZqDFW6rcur1vP6tp4z0N97JxE3Q8zz@postini.com; Mon, 30 Jan 2012 01:59:41 PST Received: from PALCAS01.lsi.com (128.94.213.117) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 05:04:18 -0500 Received: from inbexch01.lsi.com (135.36.98.37) by PALCAS01.lsi.com (128.94.213.117) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 04:59:39 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch01.lsi.com ([135.36.98.37]) with mapi; Mon, 30 Jan 2012 15:29:36 +0530 From: "Desai, Kashyap" To: Damien Fleuriot , "freebsd-stable@freebsd.org" Date: Mon, 30 Jan 2012 15:29:35 +0530 Thread-Topic: mps module compilation issue on FreeBSD-9 amd64 Thread-Index: AczfNGikieGZTdBBQN2sjYkdY7/yMQAAHkqg Message-ID: References: <4F266748.4010602@my.gd> In-Reply-To: <4F266748.4010602@my.gd> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: Subject: RE: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 09:59:41 -0000 > -----Original Message----- > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > stable@freebsd.org] On Behalf Of Damien Fleuriot > Sent: Monday, January 30, 2012 3:18 PM > To: freebsd-stable@freebsd.org > Subject: Re: mps module compilation issue on FreeBSD-9 amd64 >=20 >=20 >=20 > On 1/30/12 10:15 AM, Desai, Kashyap wrote: > > Hi, > > > > I am seeing some uncommon problem while doing compilation of mps > driver (this is a latest driver from LSI). > > > > Here are the steps I followed. > > > > CASE-1 > > > > 1. remove mps directory from sys/dev and sys/module and overwrite > those two directories with my latest code. > > 2. go to sys/module/mps and run "make". [Things works fine.] > > > > CASE-2. > > 1. remove mps directory from sys/dev and sys/module and overwrite > those two directories with my latest code. > > 2. go to main directory ( In my case it is "/usr/trees/9.0.0") > > 3. Run below command > > make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps > TARGET_ARCH=3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN - > DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND > > >=20 > Why are you multithreading your kernel build ? >=20 > I might be mistaken but I've always read you're *NOT* supposed to do > that, only with the world ! I have also tried with "-j1". I observe post "objcopy" .. why there is linking kernel.debug steps .? This= step is only seen for amd64 compilation. For i386, it finished immediate a= fter=20 "objcopy" prompt. --- objcopy --only-keep-debug mpslsi.ko.debug mpslsi.ko.symbols objcopy --strip-debug --add-gnu-debuglink=3Dmpslsi.ko.symbols mpslsi.ko.deb= ug mpslsi.ko /usr/local/bin/svnversion cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -g -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -= I. -I/usr/trees/9.0.0/sys -I/usr/trees/9.0.0/sys/contrib/altq -D_KERNEL -DH= AVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit= =3D8000 --param inline-unit-growth=3D100 --param large-function-growth=3D10= 00 -fno-omit-frame-pointer -mno-sse -mcmodel=3Dkernel -mno-red-zone -mno-m= mx -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-pro= tector -Werror vers.c linking kernel.debug --- > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable- > unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 10:29:30 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2623106566B for ; Mon, 30 Jan 2012 10:29:30 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog104.obsmtp.com (na3sys009aog104.obsmtp.com [74.125.149.73]) by mx1.freebsd.org (Postfix) with ESMTP id 52A7B8FC08 for ; Mon, 30 Jan 2012 10:29:30 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob104.postini.com ([74.125.148.12]) with SMTP ID DSNKTyZxCYLSaJ+3lPdxNTFbi6ye6WxyeelG@postini.com; Mon, 30 Jan 2012 02:29:30 PST Received: from PALCAS01.lsi.com (128.94.213.117) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 05:34:07 -0500 Received: from inbexch02.lsi.com (135.36.98.40) by PALCAS01.lsi.com (128.94.213.117) with Microsoft SMTP Server (TLS) id 8.3.213.0; Mon, 30 Jan 2012 05:29:28 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch02.lsi.com ([135.36.98.40]) with mapi; Mon, 30 Jan 2012 15:59:25 +0530 From: "Desai, Kashyap" To: Damien Fleuriot , "freebsd-stable@freebsd.org" Date: Mon, 30 Jan 2012 15:59:24 +0530 Thread-Topic: mps module compilation issue on FreeBSD-9 amd64 Thread-Index: AczfNGikieGZTdBBQN2sjYkdY7/yMQAAHkqgAAE1XpA= Message-ID: References: <4F266748.4010602@my.gd> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: Subject: RE: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 10:29:30 -0000 After applying below patch on my tree, things are working fine.. *** src/sys/conf/files.orig --- src/sys/conf/files *************** *** 1469,1476 **** --- 1469,1479 ---- dev/mmc/mmcsd.c optional mmcsd dev/mn/if_mn.c optional mn pci dev/mps/mps.c optional mps + dev/mps/mps_config.c optional mps + dev/mps/mps_mapping.c optional mps dev/mps/mps_pci.c optional mps pci dev/mps/mps_sas.c optional mps + dev/mps/mps_sas_lsi.c optional mps dev/mps/mps_table.c optional mps dev/mps/mps_user.c optional mps dev/mpt/mpt.c optional mp In LSI's new driver we have=20 mps_config.c, mps_mapping.c and mps_sas_lsi.c new files added. This needs t= o be updated in "sys/conf/files" _But_ still unresolved question is why it worked fine for i386 build and fa= iled only for amd64. Anyways, Thanks for helping me out. I am happy to continue with above menti= oned fix. ` Kashyap > -----Original Message----- > From: Desai, Kashyap > Sent: Monday, January 30, 2012 3:30 PM > To: 'Damien Fleuriot'; freebsd-stable@freebsd.org > Subject: RE: mps module compilation issue on FreeBSD-9 amd64 >=20 >=20 >=20 > > -----Original Message----- > > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > > stable@freebsd.org] On Behalf Of Damien Fleuriot > > Sent: Monday, January 30, 2012 3:18 PM > > To: freebsd-stable@freebsd.org > > Subject: Re: mps module compilation issue on FreeBSD-9 amd64 > > > > > > > > On 1/30/12 10:15 AM, Desai, Kashyap wrote: > > > Hi, > > > > > > I am seeing some uncommon problem while doing compilation of mps > > driver (this is a latest driver from LSI). > > > > > > Here are the steps I followed. > > > > > > CASE-1 > > > > > > 1. remove mps directory from sys/dev and sys/module and overwrite > > those two directories with my latest code. > > > 2. go to sys/module/mps and run "make". [Things works fine.] > > > > > > CASE-2. > > > 1. remove mps directory from sys/dev and sys/module and overwrite > > those two directories with my latest code. > > > 2. go to main directory ( In my case it is "/usr/trees/9.0.0") > > > 3. Run below command > > > make -j8 buildkernel KERNCONF=3DGENERIC MODULES_OVERRIDE=3Dmps > > TARGET_ARCH=3Damd64 SYSDIR=3D/usr/trees/9.0.0/sys -DNO_CLEAN - > > DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND > > > > > > > Why are you multithreading your kernel build ? > > > > I might be mistaken but I've always read you're *NOT* supposed to do > > that, only with the world ! >=20 > I have also tried with "-j1". > I observe post "objcopy" .. why there is linking kernel.debug steps .? > This step is only seen for amd64 compilation. For i386, it finished > immediate after > "objcopy" prompt. >=20 >=20 > --- > objcopy --only-keep-debug mpslsi.ko.debug mpslsi.ko.symbols > objcopy --strip-debug --add-gnu-debuglink=3Dmpslsi.ko.symbols > mpslsi.ko.debug mpslsi.ko > /usr/local/bin/svnversion > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -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 -nostdinc -I. -I/usr/trees/9.0.0/sys - > I/usr/trees/9.0.0/sys/contrib/altq -D_KERNEL - > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline- > limit=3D8000 --param inline-unit-growth=3D100 --param large-function- > growth=3D1000 -fno-omit-frame-pointer -mno-sse -mcmodel=3Dkernel -mno-re= d- > zone -mno-mmx -msoft-float -fno-asynchronous-unwind-tables - > ffreestanding -fstack-protector -Werror vers.c > linking kernel.debug >=20 > --- >=20 >=20 >=20 > > _______________________________________________ > > freebsd-stable@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable- > > unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 11:00:50 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 951CF1065676 for ; Mon, 30 Jan 2012 11:00:50 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2E2768FC20 for ; Mon, 30 Jan 2012 11:00:49 +0000 (UTC) Received: by werm13 with SMTP id m13so2403787wer.13 for ; Mon, 30 Jan 2012 03:00:48 -0800 (PST) Received: by 10.216.135.66 with SMTP id t44mr6663833wei.52.1327921248484; Mon, 30 Jan 2012 03:00:48 -0800 (PST) Received: from dfleuriot-at-hi-media.com ([83.167.62.196]) by mx.google.com with ESMTPS id ex2sm51366771wib.1.2012.01.30.03.00.47 (version=SSLv3 cipher=OTHER); Mon, 30 Jan 2012 03:00:47 -0800 (PST) Message-ID: <4F26785E.30305@my.gd> Date: Mon, 30 Jan 2012 12:00:46 +0100 From: Damien Fleuriot User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: "Desai, Kashyap" References: <4F266748.4010602@my.gd> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-stable@freebsd.org" Subject: Re: mps module compilation issue on FreeBSD-9 amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 11:00:50 -0000 I'm glad you've got this sorted. Out of curiosity, what does the new version bring ? On 1/30/12 11:29 AM, Desai, Kashyap wrote: > After applying below patch on my tree, things are working fine.. > > *** src/sys/conf/files.orig > --- src/sys/conf/files > *************** > *** 1469,1476 **** > --- 1469,1479 ---- > dev/mmc/mmcsd.c optional mmcsd > dev/mn/if_mn.c optional mn pci > dev/mps/mps.c optional mps > + dev/mps/mps_config.c optional mps > + dev/mps/mps_mapping.c optional mps > dev/mps/mps_pci.c optional mps pci > dev/mps/mps_sas.c optional mps > + dev/mps/mps_sas_lsi.c optional mps > dev/mps/mps_table.c optional mps > dev/mps/mps_user.c optional mps > dev/mpt/mpt.c optional mp > > > In LSI's new driver we have > mps_config.c, mps_mapping.c and mps_sas_lsi.c new files added. This needs to be updated in "sys/conf/files" > > _But_ still unresolved question is why it worked fine for i386 build and failed only for amd64. > Anyways, Thanks for helping me out. I am happy to continue with above mentioned fix. > > ` Kashyap >> -----Original Message----- >> From: Desai, Kashyap >> Sent: Monday, January 30, 2012 3:30 PM >> To: 'Damien Fleuriot'; freebsd-stable@freebsd.org >> Subject: RE: mps module compilation issue on FreeBSD-9 amd64 >> >> >> >>> -----Original Message----- >>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- >>> stable@freebsd.org] On Behalf Of Damien Fleuriot >>> Sent: Monday, January 30, 2012 3:18 PM >>> To: freebsd-stable@freebsd.org >>> Subject: Re: mps module compilation issue on FreeBSD-9 amd64 >>> >>> >>> >>> On 1/30/12 10:15 AM, Desai, Kashyap wrote: >>>> Hi, >>>> >>>> I am seeing some uncommon problem while doing compilation of mps >>> driver (this is a latest driver from LSI). >>>> >>>> Here are the steps I followed. >>>> >>>> CASE-1 >>>> >>>> 1. remove mps directory from sys/dev and sys/module and overwrite >>> those two directories with my latest code. >>>> 2. go to sys/module/mps and run "make". [Things works fine.] >>>> >>>> CASE-2. >>>> 1. remove mps directory from sys/dev and sys/module and overwrite >>> those two directories with my latest code. >>>> 2. go to main directory ( In my case it is "/usr/trees/9.0.0") >>>> 3. Run below command >>>> make -j8 buildkernel KERNCONF=GENERIC MODULES_OVERRIDE=mps >>> TARGET_ARCH=amd64 SYSDIR=/usr/trees/9.0.0/sys -DNO_CLEAN - >>> DNO_KERNELCONFIG -DNO_KERNELCLEAN -DNO_KERNELDEPEND >>>> >>> >>> Why are you multithreading your kernel build ? >>> >>> I might be mistaken but I've always read you're *NOT* supposed to do >>> that, only with the world ! >> >> I have also tried with "-j1". >> I observe post "objcopy" .. why there is linking kernel.debug steps .? >> This step is only seen for amd64 compilation. For i386, it finished >> immediate after >> "objcopy" prompt. >> >> >> --- >> objcopy --only-keep-debug mpslsi.ko.debug mpslsi.ko.symbols >> objcopy --strip-debug --add-gnu-debuglink=mpslsi.ko.symbols >> mpslsi.ko.debug mpslsi.ko >> /usr/local/bin/svnversion >> cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -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 -nostdinc -I. -I/usr/trees/9.0.0/sys - >> I/usr/trees/9.0.0/sys/contrib/altq -D_KERNEL - >> DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline- >> limit=8000 --param inline-unit-growth=100 --param large-function- >> growth=1000 -fno-omit-frame-pointer -mno-sse -mcmodel=kernel -mno-red- >> zone -mno-mmx -msoft-float -fno-asynchronous-unwind-tables - >> ffreestanding -fstack-protector -Werror vers.c >> linking kernel.debug >> >> --- >> >> >> >>> _______________________________________________ >>> freebsd-stable@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >>> To unsubscribe, send any mail to "freebsd-stable- >>> unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 11:28:43 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 878AB106564A for ; Mon, 30 Jan 2012 11:28:43 +0000 (UTC) (envelope-from adams-freebsd@ateamsystems.com) Received: from tali.ateamservers.com (tali.ateamservers.com [69.55.231.82]) by mx1.freebsd.org (Postfix) with ESMTP id 711608FC14 for ; Mon, 30 Jan 2012 11:28:43 +0000 (UTC) Received: from [192.168.15.220] (unknown [118.175.84.92]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tali.ateamservers.com (Postfix) with ESMTPSA id 892ED12E9C62 for ; Mon, 30 Jan 2012 06:12:22 -0500 (EST) Message-ID: <4F267B14.4060200@ateamsystems.com> Date: Mon, 30 Jan 2012 18:12:20 +0700 From: Adam Strohl Organization: A-Team Systems User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: FreeBSD-Stable ML Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 11:28:43 -0000 A few days ago I discovered that running dump(8) on a file system which has journaled soft updates enabled causes the machine to become unresponsive. This is using FreeBSD 9.0-R. I can still interact with the system a little bit (typing echos back) but never get a response to any action. It seems like there is an I/O issue (deadlock or overload) and CPU usage spikes as well. Resetting the machine seems to be the only solution once this occurs (CTRL-C, CTRL-ALT-DEL, logging in again, etc all fail). Disclaimer: I have only tested this as a VM under ESXi 5.0 as I don't have access to any physical servers with 9.0 on them that I can test with (I will soon though). As a side note this is the same issue reported here: http://forums.freebsd.org/showthread.php?t=25787 For now I've turned off journaling (soft updates seem fine) and that works around the issue. Let me know if I can provide more details etc! -- Adam Strohl A-Team Systems From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 12:06:46 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D196106567C for ; Mon, 30 Jan 2012 12:06:46 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta05.westchester.pa.mail.comcast.net (qmta05.westchester.pa.mail.comcast.net [76.96.62.48]) by mx1.freebsd.org (Postfix) with ESMTP id ADE768FC08 for ; Mon, 30 Jan 2012 12:06:45 +0000 (UTC) Received: from omta19.westchester.pa.mail.comcast.net ([76.96.62.98]) by qmta05.westchester.pa.mail.comcast.net with comcast id To5C1i00227AodY55o6l2L; Mon, 30 Jan 2012 12:06:45 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta19.westchester.pa.mail.comcast.net with comcast id To6k1i01P1t3BNj3fo6laG; Mon, 30 Jan 2012 12:06:45 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 9590F102C1E; Mon, 30 Jan 2012 04:06:43 -0800 (PST) Date: Mon, 30 Jan 2012 04:06:43 -0800 From: Jeremy Chadwick To: Adam Strohl Message-ID: <20120130120643.GA46785@icarus.home.lan> References: <4F267B14.4060200@ateamsystems.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F267B14.4060200@ateamsystems.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD-Stable ML Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 12:06:46 -0000 On Mon, Jan 30, 2012 at 06:12:20PM +0700, Adam Strohl wrote: > A few days ago I discovered that running dump(8) on a file system > which has journaled soft updates enabled causes the machine to > become unresponsive. This is using FreeBSD 9.0-R. I can still > interact with the system a little bit (typing echos back) but never > get a response to any action. It seems like there is an I/O issue > (deadlock or overload) and CPU usage spikes as well. Resetting the > machine seems to be the only solution once this occurs (CTRL-C, > CTRL-ALT-DEL, logging in again, etc all fail). > > Disclaimer: I have only tested this as a VM under ESXi 5.0 as I > don't have access to any physical servers with 9.0 on them that I > can test with (I will soon though). > > As a side note this is the same issue reported here: > http://forums.freebsd.org/showthread.php?t=25787 > > For now I've turned off journaling (soft updates seem fine) and that > works around the issue. > > Let me know if I can provide more details etc! I'm not sure, but this may be an after-effect of known problems right now with SU+J on 9.0. It would help if you could state if you're using "dump -L" or not. I've seen the "deadlock" behaviour you describe on older FreeBSD versions (dating back to at least 7.x) when using "dump -L", which generates a fs snapshot. Obviously 7.x does not have SU+J, so I'm a little surprised disabling journalling fixes the problem for you. This type of problem is exactly why we have avoided use of filesystem snapshots on our systems for years upon years and why we use rsnapshot/rsync instead of dump. I'm sure if you Google you can find old posts from me talking about the problem. You may also be interested in the thread on freebsd-fs titled "kernel: panic: softdep_sync_buf: Unknown type jnewblk". I realise that's a panic vs. the deadlock you're seeing. You will need to search the mailing list for that subject, since not everyone's mail clients support Reference headers thus replies are scattered all over: http://lists.freebsd.org/pipermail/freebsd-fs/2012-January/thread.html The most important thing to note is probably this: http://lists.freebsd.org/pipermail/freebsd-fs/2012-January/013573.html -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 14:55:08 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 626C81065675 for ; Mon, 30 Jan 2012 14:55:08 +0000 (UTC) (envelope-from freebsd-stable@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE738FC12 for ; Mon, 30 Jan 2012 14:55:07 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1RrsOp-0008QY-Kj for freebsd-stable@freebsd.org; Mon, 30 Jan 2012 15:40:03 +0100 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jan 2012 15:40:03 +0100 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jan 2012 15:40:03 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-stable@freebsd.org From: Ivan Voras Date: Mon, 30 Jan 2012 15:38:05 +0100 Lines: 18 Message-ID: References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20120110 Thunderbird/9.0 In-Reply-To: <20120130120643.GA46785@icarus.home.lan> Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 14:55:08 -0000 On 30/01/2012 13:06, Jeremy Chadwick wrote: >> For now I've turned off journaling (soft updates seem fine) and that >> works around the issue. >> >> Let me know if I can provide more details etc! > > I'm not sure, but this may be an after-effect of known problems right > now with SU+J on 9.0. It would help if you could state if you're using > "dump -L" or not. > > I've seen the "deadlock" behaviour you describe on older FreeBSD > versions (dating back to at least 7.x) when using "dump -L", which > generates a fs snapshot. Obviously 7.x does not have SU+J, so I'm a > little surprised disabling journalling fixes the problem for you. It's a known bug: SU+J currently deadlocks when used with UFS snapshots. From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 20:19:59 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18031106564A for ; Mon, 30 Jan 2012 20:19:59 +0000 (UTC) (envelope-from b.smeelen@ose.nl) Received: from mail.ose.nl (mail.ose.nl [212.178.134.164]) by mx1.freebsd.org (Postfix) with ESMTP id A434E8FC19 for ; Mon, 30 Jan 2012 20:19:58 +0000 (UTC) X-Footer: b3NlLm5s Received: from localhost ([127.0.0.1]) by mail.ose.nl (using TLSv1/SSLv3 with cipher AES128-SHA (128 bits)) for freebsd-stable@freebsd.org; Mon, 30 Jan 2012 21:19:56 +0100 Date: Mon, 30 Jan 2012 21:19:46 +0100 From: Bas Smeelen To: freebsd-stable@freebsd.org Message-ID: <20120130211946.677ca7c5@mpw> In-Reply-To: <4F265CB6.9000601@ose.nl> References: <4F263CBA.60908@ose.nl> <4F265CB6.9000601@ose.nl> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; i386-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [SOLVED] 9-STABLE Gnome keyring cannot allocate secure memory X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 20:19:59 -0000 On Mon, 30 Jan 2012 10:02:46 +0100 Bas Smeelen wrote: > On 01/30/2012 07:46 AM, Bas Smeelen wrote: > > > To be sure I deleted all ports and re-installed, but it still has > > the same issue. The screen stays blank and on the console there is > > a message from gnome keyring that it cannot allocate secure memory. > > I did not find anything significant in src/UPDATING and I did not > > update the ports-tree, because these versions were working fine. > > > > Any suggestions? > > Thanks in advance. > I guess I'll start digging through > http://www.freebsd.org/gnome/index.html tonight. > The strange thing is however that Gnome was running fine on 9-STABLE > with hald and dbus and /proc until after the update. > Solved. It seems like using a mix of packages and ports is not always a good thing. To re-install all ports I used portmaster -P `cat my-installed-ports-list` However there is an entry in ports/UPDATING about x11/xcb-util which requires a lot of ports to be rebuild and maybe the corresponding packages were not updated? Anyhow, I found out by installing fluxbox to have a wm for firefox and claws-mail. The latter wouldn't start and led me to libxcb-aux.0.so Sorry for the noise. Disclaimer: http://www.ose.nl/email From owner-freebsd-stable@FreeBSD.ORG Mon Jan 30 21:04:52 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 039F6106566C for ; Mon, 30 Jan 2012 21:04:52 +0000 (UTC) (envelope-from aboyer@averesystems.com) Received: from zimbra.averesystems.com (75-149-8-245-Pennsylvania.hfc.comcastbusiness.net [75.149.8.245]) by mx1.freebsd.org (Postfix) with ESMTP id B1EE58FC08 for ; Mon, 30 Jan 2012 21:04:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra.averesystems.com (Postfix) with ESMTP id EE038446005; Mon, 30 Jan 2012 15:49:09 -0500 (EST) X-Virus-Scanned: amavisd-new at averesystems.com Received: from zimbra.averesystems.com ([127.0.0.1]) by localhost (zimbra.averesystems.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WTrjC3+NPRUz; Mon, 30 Jan 2012 15:49:04 -0500 (EST) Received: from riven.arriad.com (fw.arriad.com [10.0.0.16]) by zimbra.averesystems.com (Postfix) with ESMTPSA id E253A446004; Mon, 30 Jan 2012 15:49:00 -0500 (EST) From: Andrew Boyer Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Mon, 30 Jan 2012 15:46:58 -0500 Message-Id: <76687387-92D3-4EA5-AD39-3F6820B27DCD@averesystems.com> To: FreeBSD Stable Mailing List , Alexander Motin Mime-Version: 1.0 (Apple Message framework v1084) X-Mailer: Apple Mail (2.1084) Cc: Subject: Kernel panics under 8.2 due to ATA timeouts X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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 Jan 2012 21:04:52 -0000 Hello Alexander, I have a system that appears to have a flaky SATA controller (one of the = Intel ESB2 variants) and it seems to be exposing a weakness in the ATA = driver (not using ATA_CAM). If a command with ATA_R_DIRECT set times = out, the channel gets reinitialized, but from the soft interrupt = context. It panics when it tries to sleep in ata_queue_request(). Timeouts work if ATA_R_DIRECT isn't set because in that case it uses a = taskqueue to complete the request. Here is the backtrace: > #0 kdb_enter (why=3D0xffffffff80962cfa "panic", msg=3D0xa
) at ../../../kern/subr_kdb.c:349 > #1 0xffffffff805d6d0b in panic (fmt=3DVariable "fmt" is not = available. > ) at ../../../kern/kern_shutdown.c:689 > #2 0xffffffff8061bc53 in sleepq_add (wchan=3D0xffffff00052c3e58, = lock=3D0xffffff00052c3e38, wmesg=3D0xffffffff808fa213 "ATA request = done",=20 > flags=3D1, queue=3D0) at ../../../kern/subr_sleepqueue.c:320 > #3 0xffffffff80590c95 in _cv_timedwait (cvp=3D0xffffff00052c3e58, = lock=3D0xffffff00052c3e38, timo=3D40000) at = ../../../kern/kern_condvar.c:313 > #4 0xffffffff805d61af in _sema_timedwait (sema=3D0xffffff00052c3e38, = timo=3D40000, file=3D0xffffffff808fa1f6 "../../../dev/ata/ata-queue.c",=20= > line=3D118) at ../../../kern/kern_sema.c:123 > #5 0xffffffff8028559f in ata_queue_request = (request=3D0xffffff00052c3dc0) at ../../../dev/ata/ata-queue.c:117 > #6 0xffffffff80286628 in ata_controlcmd (dev=3D0xffffff0002e83d00, = command=3D239 '?', feature=3DVariable "feature" is not available. > ) at ../../../dev/ata/ata-queue.c:153 > #7 0xffffffff8027ffd3 in ata_setmode (dev=3D0xffffff0002e83d00) at = ../../../dev/ata/ata-all.c:637 > #8 0xffffffff802a0af9 in ad_init (dev=3D0xffffff0002e83d00) at = ../../../dev/ata/ata-disk.c:405 > #9 0xffffffff802a0c29 in ad_reinit (dev=3D0xffffff0002e83d00) at = ../../../dev/ata/ata-disk.c:221 > #10 0xffffffff80280cad in ata_reinit (dev=3D0xffffff0002902800) at = ata_if.h:79 > #11 0xffffffff802856c4 in ata_completed (context=3DVariable "context" = is not available. > ) at ../../../dev/ata/ata-queue.c:313 > #12 0xffffffff80285ffb in ata_finish (request=3D0xffffff00054ec8c0) at = ../../../dev/ata/ata-queue.c:265 > #13 0xffffffff805ed419 in softclock (arg=3DVariable "arg" is not = available. > ) at ../../../kern/kern_timeout.c:430 This is very repeatable. I'm not sure what's the best fix - always use = a taskqueue on timeouts? Don't reinit if direct commands fail? -Andrew -------------------------------------------------- Andrew Boyer aboyer@averesystems.com From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 10:32:31 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D4FD106564A for ; Tue, 31 Jan 2012 10:32:31 +0000 (UTC) (envelope-from h.schmalzbauer@omnilan.de) Received: from host.omnilan.net (s1.omnilan.net [62.245.232.135]) by mx1.freebsd.org (Postfix) with ESMTP id 9AED08FC08 for ; Tue, 31 Jan 2012 10:32:30 +0000 (UTC) Received: from titan.wdn.omnilan.net (titan.lo4.wdn.omnilan.net [172.21.1.150]) (authenticated bits=0) by host.omnilan.net (8.13.8/8.13.8) with ESMTP id q0VAJxYM081141 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 31 Jan 2012 11:20:00 +0100 (CET) (envelope-from h.schmalzbauer@omnilan.de) X-Authentication-Warning: smtp.dmz.omnisec.de: Host titan.lo4.wdn.omnilan.net [172.21.1.150] claimed to be titan.wdn.omnilan.net Message-ID: <4F27C04F.7020400@omnilan.de> Date: Tue, 31 Jan 2012 11:19:59 +0100 From: Harald Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: Alex Samorukov References: <4F215A99.8020003@os2.kiev.ua> In-Reply-To: <4F215A99.8020003@os2.kiev.ua> X-Enigmail-Version: 1.1.2 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigE874FCEE561CE9AD077F7EB0" Cc: freebsd-stable@freebsd.org Subject: Re: disk devices speed is ugly X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 10:32:31 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE874FCEE561CE9AD077F7EB0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable schrieb Alex Samorukov am 26.01.2012 14:52 (localtime): > Hi, > > I ported exfat fuse module to FreeBSD (PR 164473) and found that it > works much slower then on Linux. I found 2 reasons for this: > Thanks a lot! I saw the new port :-) Hope that someone can help you improove fusefs-kmod. I remember more porters were blaming FreeBSDs fusefs support making their work hard/impossible (TrueCrypt). Hopefully some kernel hacker will read and help... Best regards, -Harry > 1) FreeBSD kernel do not allow to have nonalignment access to device > with standard read/write commands. mmap to the entire disk > (/dev/da0s1) doesn`t work also (EINVAL). > > When its not a big deal for read requests, for write it becomes a real > issue - to write non-aligned data i need to read beginning and end of > the block. So in fact for one write request i can get 2 reads. > > 2) It seems that there is a very simple read caching on such devices > without write caching at all. It makes write performance enormously > slow. I found geom_cache module, but it provides only read optimization= =2E > > > I decided to compare speed on Linux and FreeBSD and below are my > results. I used old USB flash drive to do the tests. > > Read Speed of 100Mb: > > Linux 3.0.0: 22.7 Mb/sec > FreeBSD: 10.22 Mb/sec > FreeBSD + gcache: 18.75 Mb/sec (!) > > Write speed of 100Mb file: > Linux: 90Mb/sec (cache, much higher then device speed) > FreeBSD: 0.52 Mb/sec (!) > FreeBSD + gcache: 0.52 Mb/sec > > As you could see write performance is enormously slow. May be we need > to create some geom provider for such caching or i am missing > something? I think, that other fuse modules like ntfs-3g and fuse-ext4 > having same issue. Also i found that fuse4bsd itself is non stable and > may crash the system without any visible reasons. > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.or= g" --------------enigE874FCEE561CE9AD077F7EB0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEARECAAYFAk8nwE8ACgkQLDqVQ9VXb8iQeACgowB+nFoRmLWdvIjcpz8BjMOy PQ4An0QVwBbqfbdxUw0HBD86lF8npYyr =nsEr -----END PGP SIGNATURE----- --------------enigE874FCEE561CE9AD077F7EB0-- From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 10:52:01 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00ECF1065672 for ; Tue, 31 Jan 2012 10:52:01 +0000 (UTC) (envelope-from ml@os2.kiev.ua) Received: from s1.sdv.com.ua (unknown [IPv6:2a01:d0:ffff:1f8::2]) by mx1.freebsd.org (Postfix) with ESMTP id 961808FC26 for ; Tue, 31 Jan 2012 10:52:00 +0000 (UTC) Received: from 94-105-243-80.cust.centrio.cz ([80.243.105.94] helo=[192.168.101.203]) by s1.sdv.com.ua with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RsBJZ-000LWP-Eb; Tue, 31 Jan 2012 12:51:58 +0200 Message-ID: <4F27C7C7.3060807@os2.kiev.ua> Date: Tue, 31 Jan 2012 11:51:51 +0100 From: Alex Samorukov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111229 Thunderbird/9.0 MIME-Version: 1.0 To: Harald Schmalzbauer References: <4F215A99.8020003@os2.kiev.ua> <4F27C04F.7020400@omnilan.de> In-Reply-To: <4F27C04F.7020400@omnilan.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-SA-Score: -1.0 Cc: freebsd-stable@freebsd.org Subject: Re: disk devices speed is ugly X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 10:52:01 -0000 On 01/31/2012 11:19 AM, Harald Schmalzbauer wrote: > schrieb Alex Samorukov am 26.01.2012 14:52 (localtime): >> Hi, >> >> I ported exfat fuse module to FreeBSD (PR 164473) and found that it >> works much slower then on Linux. I found 2 reasons for this: >> > Thanks a lot! I saw the new port :-) > Hope that someone can help you improove fusefs-kmod. I remember more > porters were blaming FreeBSDs fusefs support making their work > hard/impossible (TrueCrypt). Hopefully some kernel hacker will read and > help... Thank you for comment. It is now mostly not about fuse itself, but about non-buffered raw device access. I really think that something like improved geom_cache should solve this. I`ll add soon updated version of the patch with [optional] libublio support. This improves performance a lot. Read speed is comparable with Linux (about 20 Mb/sec on my old USB) and write is much faster aw well (but not so good as in Linux and with a lot read requests for align). Also i contacted upstream about unaligned writes and he told that it is in his todo list, but probably after 1.0.0 version, because it will require a lot of changes in the code. Also i found a libexfat bug in a fat time handling and creating patch to use freebsd code for this instead. So if you are using exfat any testing and comments are welcome. From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 14:38:21 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C16A1065674; Tue, 31 Jan 2012 14:38:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id B0A258FC17; Tue, 31 Jan 2012 14:38:20 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0VEcJ8P016228; Tue, 31 Jan 2012 14:38:19 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0VEcIHd016227; Tue, 31 Jan 2012 14:38:18 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 31 Jan 2012 14:38:18 GMT Message-Id: <201201311438.q0VEcIHd016227@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 14:38:21 -0000 TB --- 2012-01-31 13:35:13 - tinderbox 2.8 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 13:35:13 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2012-01-31 13:35:13 - mkdir /tinderbox/RELENG_8/sparc64 TB --- 2012-01-31 13:35:13 - mkdir /tinderbox/RELENG_8/sparc64/sparc64 TB --- 2012-01-31 13:35:13 - cleaning the object tree TB --- 2012-01-31 13:35:13 - cvsupping the source tree TB --- 2012-01-31 13:35:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/sparc64/sparc64/supfile TB --- 2012-01-31 13:38:43 - building world TB --- 2012-01-31 13:38:43 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 13:38:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 13:38:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 13:38:43 - SRCCONF=/dev/null TB --- 2012-01-31 13:38:43 - TARGET=sparc64 TB --- 2012-01-31 13:38:43 - TARGET_ARCH=sparc64 TB --- 2012-01-31 13:38:43 - TZ=UTC TB --- 2012-01-31 13:38:43 - __MAKE_CONF=/dev/null TB --- 2012-01-31 13:38:43 - cd /src TB --- 2012-01-31 13:38:43 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 13:38:43 UTC 2012 >>> 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 >>> World build completed on Tue Jan 31 14:20:07 UTC 2012 TB --- 2012-01-31 14:20:07 - generating LINT kernel config TB --- 2012-01-31 14:20:07 - cd /src/sys/sparc64/conf TB --- 2012-01-31 14:20:07 - /usr/bin/make -B LINT TB --- 2012-01-31 14:20:07 - cd /src/sys/sparc64/conf TB --- 2012-01-31 14:20:07 - /usr/sbin/config -m LINT TB --- 2012-01-31 14:20:07 - building LINT kernel TB --- 2012-01-31 14:20:07 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 14:20:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 14:20:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 14:20:07 - SRCCONF=/dev/null TB --- 2012-01-31 14:20:07 - TARGET=sparc64 TB --- 2012-01-31 14:20:07 - TARGET_ARCH=sparc64 TB --- 2012-01-31 14:20:07 - TZ=UTC TB --- 2012-01-31 14:20:07 - __MAKE_CONF=/dev/null TB --- 2012-01-31 14:20:07 - cd /src TB --- 2012-01-31 14:20:07 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jan 31 14:20:07 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Jan 31 14:33:50 UTC 2012 TB --- 2012-01-31 14:33:50 - cd /src/sys/sparc64/conf TB --- 2012-01-31 14:33:50 - /usr/sbin/config -m GENERIC TB --- 2012-01-31 14:33:50 - building GENERIC kernel TB --- 2012-01-31 14:33:50 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 14:33:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 14:33:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 14:33:50 - SRCCONF=/dev/null TB --- 2012-01-31 14:33:50 - TARGET=sparc64 TB --- 2012-01-31 14:33:50 - TARGET_ARCH=sparc64 TB --- 2012-01-31 14:33:50 - TZ=UTC TB --- 2012-01-31 14:33:50 - __MAKE_CONF=/dev/null TB --- 2012-01-31 14:33:50 - cd /src TB --- 2012-01-31 14:33:50 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Tue Jan 31 14:33:50 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/GENERIC/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -I/obj/sparc64/src/sys/GENERIC -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c /src/sys/modules/cam/../../cam/ata/ata_all.c cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/GENERIC/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -I/obj/sparc64/src/sys/GENERIC -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c /src/sys/modules/cam/../../cam/ata/ata_xpt.c cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/GENERIC/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -I/obj/sparc64/src/sys/GENERIC -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c /src/sys/modules/cam/../../cam/ata/ata_da.c cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/GENERIC/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -I/obj/sparc64/src/sys/GENERIC -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c /src/sys/modules/cam/../../sparc64/sparc64/ata_machdep.c cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/GENERIC/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -g -I/obj/sparc64/src/sys/GENERIC -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c /src/sys/modules/cam/../../cam/ata/ata_pmp.c ld -d -warn-common -r -d -o cam.kld cam.o cam_machdep.o cam_periph.o cam_queue.o cam_sim.o cam_xpt.o scsi_all.o scsi_cd.o scsi_ch.o scsi_da.o scsi_pass.o scsi_pt.o scsi_sa.o scsi_ses.o scsi_sg.o scsi_targ_bh.o scsi_target.o scsi_xpt.o ata_all.o ata_xpt.o ata_da.o ata_machdep.o ata_pmp.o ld -Bshareable -d -warn-common -o cam.ko.debug cam.kld ld: final link failed: No space left on device *** Error code 1 Stop in /src/sys/modules/cam. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64/src/sys/GENERIC. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-31 14:38:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-31 14:38:18 - ERROR: failed to build GENERIC kernel TB --- 2012-01-31 14:38:18 - 3026.52 user 470.00 system 3784.64 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 16:09:28 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD2D1106564A; Tue, 31 Jan 2012 16:09:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 4B8798FC0A; Tue, 31 Jan 2012 16:09:28 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0VG9RBw012863; Tue, 31 Jan 2012 16:09:27 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0VG9RHe012841; Tue, 31 Jan 2012 16:09:27 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 31 Jan 2012 16:09:27 GMT Message-Id: <201201311609.q0VG9RHe012841@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 16:09:28 -0000 TB --- 2012-01-31 15:20:27 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 15:20:27 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-01-31 15:20:27 - cleaning the object tree TB --- 2012-01-31 15:20:50 - cvsupping the source tree TB --- 2012-01-31 15:20:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-01-31 15:26:16 - building world TB --- 2012-01-31 15:26:16 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 15:26:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 15:26:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 15:26:16 - SRCCONF=/dev/null TB --- 2012-01-31 15:26:16 - TARGET=mips TB --- 2012-01-31 15:26:16 - TARGET_ARCH=mips TB --- 2012-01-31 15:26:16 - TZ=UTC TB --- 2012-01-31 15:26:16 - __MAKE_CONF=/dev/null TB --- 2012-01-31 15:26:16 - cd /src TB --- 2012-01-31 15:26:16 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 15:26:17 UTC 2012 >>> 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 >>> World build completed on Tue Jan 31 16:02:37 UTC 2012 TB --- 2012-01-31 16:02:37 - cd /src/sys/mips/conf TB --- 2012-01-31 16:02:37 - /usr/sbin/config -m ADM5120 TB --- 2012-01-31 16:02:37 - building ADM5120 kernel TB --- 2012-01-31 16:02:37 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 16:02:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 16:02:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 16:02:37 - SRCCONF=/dev/null TB --- 2012-01-31 16:02:37 - TARGET=mips TB --- 2012-01-31 16:02:37 - TARGET_ARCH=mips TB --- 2012-01-31 16:02:37 - TZ=UTC TB --- 2012-01-31 16:02:37 - __MAKE_CONF=/dev/null TB --- 2012-01-31 16:02:37 - cd /src TB --- 2012-01-31 16:02:37 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Tue Jan 31 16:02:37 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Tue Jan 31 16:03:48 UTC 2012 TB --- 2012-01-31 16:03:48 - cd /src/sys/mips/conf TB --- 2012-01-31 16:03:48 - /usr/sbin/config -m IDT TB --- 2012-01-31 16:03:49 - building IDT kernel TB --- 2012-01-31 16:03:49 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 16:03:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 16:03:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 16:03:49 - SRCCONF=/dev/null TB --- 2012-01-31 16:03:49 - TARGET=mips TB --- 2012-01-31 16:03:49 - TARGET_ARCH=mips TB --- 2012-01-31 16:03:49 - TZ=UTC TB --- 2012-01-31 16:03:49 - __MAKE_CONF=/dev/null TB --- 2012-01-31 16:03:49 - cd /src TB --- 2012-01-31 16:03:49 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Tue Jan 31 16:03:49 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Tue Jan 31 16:05:24 UTC 2012 TB --- 2012-01-31 16:05:24 - cd /src/sys/mips/conf TB --- 2012-01-31 16:05:24 - /usr/sbin/config -m MALTA TB --- 2012-01-31 16:05:24 - building MALTA kernel TB --- 2012-01-31 16:05:24 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 16:05:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 16:05:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 16:05:24 - SRCCONF=/dev/null TB --- 2012-01-31 16:05:24 - TARGET=mips TB --- 2012-01-31 16:05:24 - TARGET_ARCH=mips TB --- 2012-01-31 16:05:24 - TZ=UTC TB --- 2012-01-31 16:05:24 - __MAKE_CONF=/dev/null TB --- 2012-01-31 16:05:24 - cd /src TB --- 2012-01-31 16:05:24 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Tue Jan 31 16:05:24 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Tue Jan 31 16:06:52 UTC 2012 TB --- 2012-01-31 16:06:52 - cd /src/sys/mips/conf TB --- 2012-01-31 16:06:52 - /usr/sbin/config -m QEMU TB --- 2012-01-31 16:06:52 - building QEMU kernel TB --- 2012-01-31 16:06:52 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 16:06:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 16:06:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 16:06:52 - SRCCONF=/dev/null TB --- 2012-01-31 16:06:52 - TARGET=mips TB --- 2012-01-31 16:06:52 - TARGET_ARCH=mips TB --- 2012-01-31 16:06:52 - TZ=UTC TB --- 2012-01-31 16:06:52 - __MAKE_CONF=/dev/null TB --- 2012-01-31 16:06:52 - cd /src TB --- 2012-01-31 16:06:52 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Tue Jan 31 16:06:52 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Tue Jan 31 16:08:06 UTC 2012 TB --- 2012-01-31 16:08:06 - cd /src/sys/mips/conf TB --- 2012-01-31 16:08:06 - /usr/sbin/config -m SENTRY5 TB --- 2012-01-31 16:08:06 - building SENTRY5 kernel TB --- 2012-01-31 16:08:06 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 16:08:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 16:08:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 16:08:06 - SRCCONF=/dev/null TB --- 2012-01-31 16:08:06 - TARGET=mips TB --- 2012-01-31 16:08:06 - TARGET_ARCH=mips TB --- 2012-01-31 16:08:06 - TZ=UTC TB --- 2012-01-31 16:08:06 - __MAKE_CONF=/dev/null TB --- 2012-01-31 16:08:06 - cd /src TB --- 2012-01-31 16:08:06 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Tue Jan 31 16:08:06 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-31 16:09:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-31 16:09:27 - ERROR: failed to build SENTRY5 kernel TB --- 2012-01-31 16:09:27 - 1970.66 user 425.74 system 2940.18 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 18:24:33 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 100181065670; Tue, 31 Jan 2012 18:24:33 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id AE5648FC0C; Tue, 31 Jan 2012 18:24:32 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0VIOWAi076549; Tue, 31 Jan 2012 18:24:32 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0VIOVRb076037; Tue, 31 Jan 2012 18:24:31 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 31 Jan 2012 18:24:31 GMT Message-Id: <201201311824.q0VIOVRb076037@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 18:24:33 -0000 TB --- 2012-01-31 17:44:12 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 17:44:12 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-01-31 17:44:12 - cleaning the object tree TB --- 2012-01-31 17:44:12 - cvsupping the source tree TB --- 2012-01-31 17:44:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-01-31 17:45:56 - building world TB --- 2012-01-31 17:45:56 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 17:45:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 17:45:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 17:45:56 - SRCCONF=/dev/null TB --- 2012-01-31 17:45:56 - TARGET=mips TB --- 2012-01-31 17:45:56 - TARGET_ARCH=mips TB --- 2012-01-31 17:45:56 - TZ=UTC TB --- 2012-01-31 17:45:56 - __MAKE_CONF=/dev/null TB --- 2012-01-31 17:45:56 - cd /src TB --- 2012-01-31 17:45:56 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 17:45:56 UTC 2012 >>> 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 >>> World build completed on Tue Jan 31 18:22:11 UTC 2012 TB --- 2012-01-31 18:22:12 - cd /src/sys/mips/conf TB --- 2012-01-31 18:22:12 - /usr/sbin/config -m ADM5120 TB --- 2012-01-31 18:22:12 - building ADM5120 kernel TB --- 2012-01-31 18:22:12 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 18:22:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 18:22:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 18:22:12 - SRCCONF=/dev/null TB --- 2012-01-31 18:22:12 - TARGET=mips TB --- 2012-01-31 18:22:12 - TARGET_ARCH=mips TB --- 2012-01-31 18:22:12 - TZ=UTC TB --- 2012-01-31 18:22:12 - __MAKE_CONF=/dev/null TB --- 2012-01-31 18:22:12 - cd /src TB --- 2012-01-31 18:22:12 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Tue Jan 31 18:22:12 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Tue Jan 31 18:23:24 UTC 2012 TB --- 2012-01-31 18:23:24 - cd /src/sys/mips/conf TB --- 2012-01-31 18:23:24 - /usr/sbin/config -m ALCHEMY TB --- 2012-01-31 18:23:24 - building ALCHEMY kernel TB --- 2012-01-31 18:23:24 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 18:23:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 18:23:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 18:23:24 - SRCCONF=/dev/null TB --- 2012-01-31 18:23:24 - TARGET=mips TB --- 2012-01-31 18:23:24 - TARGET_ARCH=mips TB --- 2012-01-31 18:23:24 - TZ=UTC TB --- 2012-01-31 18:23:24 - __MAKE_CONF=/dev/null TB --- 2012-01-31 18:23:24 - cd /src TB --- 2012-01-31 18:23:24 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Tue Jan 31 18:23:24 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-31 18:24:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-31 18:24:31 - ERROR: failed to build ALCHEMY kernel TB --- 2012-01-31 18:24:31 - 1754.30 user 365.66 system 2418.88 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 19:16:53 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B851A106564A; Tue, 31 Jan 2012 19:16:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 619FA8FC12; Tue, 31 Jan 2012 19:16:53 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0VJGq3f099558; Tue, 31 Jan 2012 19:16:52 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0VJGqQn099553; Tue, 31 Jan 2012 19:16:52 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 31 Jan 2012 19:16:52 GMT Message-Id: <201201311916.q0VJGqQn099553@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 19:16:53 -0000 TB --- 2012-01-31 18:03:07 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 18:03:07 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-01-31 18:03:07 - cleaning the object tree TB --- 2012-01-31 18:03:07 - cvsupping the source tree TB --- 2012-01-31 18:03:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-01-31 18:03:22 - building world TB --- 2012-01-31 18:03:22 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 18:03:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 18:03:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 18:03:22 - SRCCONF=/dev/null TB --- 2012-01-31 18:03:22 - TARGET=powerpc TB --- 2012-01-31 18:03:22 - TARGET_ARCH=powerpc TB --- 2012-01-31 18:03:22 - TZ=UTC TB --- 2012-01-31 18:03:22 - __MAKE_CONF=/dev/null TB --- 2012-01-31 18:03:22 - cd /src TB --- 2012-01-31 18:03:22 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 18:03:22 UTC 2012 >>> 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 >>> World build completed on Tue Jan 31 18:49:28 UTC 2012 TB --- 2012-01-31 18:49:28 - generating LINT kernel config TB --- 2012-01-31 18:49:28 - cd /src/sys/powerpc/conf TB --- 2012-01-31 18:49:28 - /usr/bin/make -B LINT TB --- 2012-01-31 18:49:28 - cd /src/sys/powerpc/conf TB --- 2012-01-31 18:49:28 - /usr/sbin/config -m LINT TB --- 2012-01-31 18:49:28 - building LINT kernel TB --- 2012-01-31 18:49:28 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 18:49:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 18:49:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 18:49:28 - SRCCONF=/dev/null TB --- 2012-01-31 18:49:28 - TARGET=powerpc TB --- 2012-01-31 18:49:28 - TARGET_ARCH=powerpc TB --- 2012-01-31 18:49:28 - TZ=UTC TB --- 2012-01-31 18:49:28 - __MAKE_CONF=/dev/null TB --- 2012-01-31 18:49:28 - cd /src TB --- 2012-01-31 18:49:28 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jan 31 18:49:28 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Jan 31 19:04:41 UTC 2012 TB --- 2012-01-31 19:04:41 - cd /src/sys/powerpc/conf TB --- 2012-01-31 19:04:41 - /usr/sbin/config -m GENERIC TB --- 2012-01-31 19:04:41 - building GENERIC kernel TB --- 2012-01-31 19:04:41 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 19:04:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 19:04:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 19:04:41 - SRCCONF=/dev/null TB --- 2012-01-31 19:04:41 - TARGET=powerpc TB --- 2012-01-31 19:04:41 - TARGET_ARCH=powerpc TB --- 2012-01-31 19:04:41 - TZ=UTC TB --- 2012-01-31 19:04:41 - __MAKE_CONF=/dev/null TB --- 2012-01-31 19:04:41 - cd /src TB --- 2012-01-31 19:04:41 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Tue Jan 31 19:04:41 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Tue Jan 31 19:14:53 UTC 2012 TB --- 2012-01-31 19:14:53 - cd /src/sys/powerpc/conf TB --- 2012-01-31 19:14:53 - /usr/sbin/config -m MPC85XX TB --- 2012-01-31 19:14:53 - building MPC85XX kernel TB --- 2012-01-31 19:14:53 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 19:14:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 19:14:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 19:14:53 - SRCCONF=/dev/null TB --- 2012-01-31 19:14:53 - TARGET=powerpc TB --- 2012-01-31 19:14:53 - TARGET_ARCH=powerpc TB --- 2012-01-31 19:14:53 - TZ=UTC TB --- 2012-01-31 19:14:53 - __MAKE_CONF=/dev/null TB --- 2012-01-31 19:14:53 - cd /src TB --- 2012-01-31 19:14:53 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Tue Jan 31 19:14:53 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-31 19:16:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-31 19:16:52 - ERROR: failed to build MPC85XX kernel TB --- 2012-01-31 19:16:52 - 3531.09 user 566.98 system 4425.28 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 20:16:05 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F380106566C for ; Tue, 31 Jan 2012 20:16:05 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 7066B8FC08 for ; Tue, 31 Jan 2012 20:16:05 +0000 (UTC) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.42]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id AFD47A7188F for ; Tue, 31 Jan 2012 15:16:03 -0500 (EST) Received: (qmail 89 invoked from network); 31 Jan 2012 20:16:04 -0000 Received: by simscan 1.4.0 ppid: 23116, pid: 25764, t: 0.2510s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.112.30]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 31 Jan 2012 20:16:03 -0000 Message-ID: <4F284C04.9060608@speakeasy.org> Date: Tue, 31 Jan 2012 12:16:04 -0800 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20120126 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail3.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Freebsd.update 8.2 to 9.0 Success X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 20:16:05 -0000 Maybe the wrong list, but, this was from STABLE -> STABLE. I have an old 32-bit machine that had 8.2-STABLE on it. I tried to upgrade using 8.2 update # freebsd.update upgrade -r 9.0 failed with the no more mirrors message # env UNAME_r=8.2-RELEASE freebsd.update upgrade -r 9.0 failed with the no more mirrors message I tried # sed -i '' -e 's/=_/=%@_/' /usr/sbin/freebsd-update # env UNAME_r=8.2-RELEASE freebsd.update upgrade -r 9.0 similar failure I copied freebsd.update from my 9.0 amd64 system. # env UNAME_r=8.2-RELEASE ./freebsd.update upgrade -r 9.0 Worked! After following directions until update completed and updating ports with portupgrade -a -PP, the 32-bit machine was running 9.0 with no known problems. I changed stable-supfile to ... *default release=cvs tag=RELENG_9 ... I updated the source tree, did the '11 step program' in /usr/src/Makefile. All succeeded. > ssh <32-bit machine> uname -a ... FreeBSD asus.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #0: Tue Jan 31 07:39:04 PST 2012 tomdean@asus.tddhome:/usr/src/sys/GENERIC i386 Tom Dean From owner-freebsd-stable@FreeBSD.ORG Tue Jan 31 22:18:47 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB7FF106566C; Tue, 31 Jan 2012 22:18:47 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC4D8FC12; Tue, 31 Jan 2012 22:18:47 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q0VMIkpM093422; Tue, 31 Jan 2012 22:18:46 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q0VMIjVW093324; Tue, 31 Jan 2012 22:18:45 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 31 Jan 2012 22:18:45 GMT Message-Id: <201201312218.q0VMIjVW093324@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jan 2012 22:18:48 -0000 TB --- 2012-01-31 21:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 21:30:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-01-31 21:30:00 - cleaning the object tree TB --- 2012-01-31 21:30:09 - cvsupping the source tree TB --- 2012-01-31 21:30:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-01-31 21:35:33 - building world TB --- 2012-01-31 21:35:33 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 21:35:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 21:35:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 21:35:33 - SRCCONF=/dev/null TB --- 2012-01-31 21:35:33 - TARGET=mips TB --- 2012-01-31 21:35:33 - TARGET_ARCH=mips TB --- 2012-01-31 21:35:33 - TZ=UTC TB --- 2012-01-31 21:35:33 - __MAKE_CONF=/dev/null TB --- 2012-01-31 21:35:33 - cd /src TB --- 2012-01-31 21:35:33 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 21:35:34 UTC 2012 >>> 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 >>> World build completed on Tue Jan 31 22:12:02 UTC 2012 TB --- 2012-01-31 22:12:02 - cd /src/sys/mips/conf TB --- 2012-01-31 22:12:02 - /usr/sbin/config -m ADM5120 TB --- 2012-01-31 22:12:02 - building ADM5120 kernel TB --- 2012-01-31 22:12:02 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 22:12:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 22:12:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 22:12:02 - SRCCONF=/dev/null TB --- 2012-01-31 22:12:02 - TARGET=mips TB --- 2012-01-31 22:12:02 - TARGET_ARCH=mips TB --- 2012-01-31 22:12:02 - TZ=UTC TB --- 2012-01-31 22:12:02 - __MAKE_CONF=/dev/null TB --- 2012-01-31 22:12:02 - cd /src TB --- 2012-01-31 22:12:02 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Tue Jan 31 22:12:02 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Tue Jan 31 22:13:13 UTC 2012 TB --- 2012-01-31 22:13:13 - cd /src/sys/mips/conf TB --- 2012-01-31 22:13:13 - /usr/sbin/config -m IDT TB --- 2012-01-31 22:13:13 - building IDT kernel TB --- 2012-01-31 22:13:13 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 22:13:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 22:13:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 22:13:13 - SRCCONF=/dev/null TB --- 2012-01-31 22:13:13 - TARGET=mips TB --- 2012-01-31 22:13:13 - TARGET_ARCH=mips TB --- 2012-01-31 22:13:13 - TZ=UTC TB --- 2012-01-31 22:13:13 - __MAKE_CONF=/dev/null TB --- 2012-01-31 22:13:13 - cd /src TB --- 2012-01-31 22:13:13 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Tue Jan 31 22:13:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Tue Jan 31 22:14:47 UTC 2012 TB --- 2012-01-31 22:14:47 - cd /src/sys/mips/conf TB --- 2012-01-31 22:14:47 - /usr/sbin/config -m MALTA TB --- 2012-01-31 22:14:47 - building MALTA kernel TB --- 2012-01-31 22:14:47 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 22:14:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 22:14:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 22:14:47 - SRCCONF=/dev/null TB --- 2012-01-31 22:14:47 - TARGET=mips TB --- 2012-01-31 22:14:47 - TARGET_ARCH=mips TB --- 2012-01-31 22:14:47 - TZ=UTC TB --- 2012-01-31 22:14:47 - __MAKE_CONF=/dev/null TB --- 2012-01-31 22:14:47 - cd /src TB --- 2012-01-31 22:14:47 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Tue Jan 31 22:14:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Tue Jan 31 22:16:13 UTC 2012 TB --- 2012-01-31 22:16:13 - cd /src/sys/mips/conf TB --- 2012-01-31 22:16:13 - /usr/sbin/config -m QEMU TB --- 2012-01-31 22:16:13 - building QEMU kernel TB --- 2012-01-31 22:16:13 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 22:16:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 22:16:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 22:16:13 - SRCCONF=/dev/null TB --- 2012-01-31 22:16:13 - TARGET=mips TB --- 2012-01-31 22:16:13 - TARGET_ARCH=mips TB --- 2012-01-31 22:16:13 - TZ=UTC TB --- 2012-01-31 22:16:13 - __MAKE_CONF=/dev/null TB --- 2012-01-31 22:16:13 - cd /src TB --- 2012-01-31 22:16:13 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Tue Jan 31 22:16:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Tue Jan 31 22:17:26 UTC 2012 TB --- 2012-01-31 22:17:26 - cd /src/sys/mips/conf TB --- 2012-01-31 22:17:26 - /usr/sbin/config -m SENTRY5 TB --- 2012-01-31 22:17:26 - building SENTRY5 kernel TB --- 2012-01-31 22:17:26 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 22:17:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 22:17:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 22:17:26 - SRCCONF=/dev/null TB --- 2012-01-31 22:17:26 - TARGET=mips TB --- 2012-01-31 22:17:26 - TARGET_ARCH=mips TB --- 2012-01-31 22:17:26 - TZ=UTC TB --- 2012-01-31 22:17:26 - __MAKE_CONF=/dev/null TB --- 2012-01-31 22:17:26 - cd /src TB --- 2012-01-31 22:17:26 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Tue Jan 31 22:17:26 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-01-31 22:18:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-01-31 22:18:45 - ERROR: failed to build SENTRY5 kernel TB --- 2012-01-31 22:18:45 - 1978.45 user 421.90 system 2925.29 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 00:31:16 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F437106566C; Wed, 1 Feb 2012 00:31:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5CD8FC1A; Wed, 1 Feb 2012 00:31:16 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q110VFcq021803; Wed, 1 Feb 2012 00:31:15 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q110VFqj021796; Wed, 1 Feb 2012 00:31:15 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 00:31:15 GMT Message-Id: <201202010031.q110VFqj021796@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 00:31:16 -0000 TB --- 2012-01-31 23:52:12 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-01-31 23:52:12 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-01-31 23:52:12 - cleaning the object tree TB --- 2012-01-31 23:52:25 - cvsupping the source tree TB --- 2012-01-31 23:52:25 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-01-31 23:52:36 - building world TB --- 2012-01-31 23:52:36 - CROSS_BUILD_TESTING=YES TB --- 2012-01-31 23:52:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-01-31 23:52:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-01-31 23:52:36 - SRCCONF=/dev/null TB --- 2012-01-31 23:52:36 - TARGET=mips TB --- 2012-01-31 23:52:36 - TARGET_ARCH=mips TB --- 2012-01-31 23:52:36 - TZ=UTC TB --- 2012-01-31 23:52:36 - __MAKE_CONF=/dev/null TB --- 2012-01-31 23:52:36 - cd /src TB --- 2012-01-31 23:52:36 - /usr/bin/make -B buildworld >>> World build started on Tue Jan 31 23:52:37 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 00:28:52 UTC 2012 TB --- 2012-02-01 00:28:52 - cd /src/sys/mips/conf TB --- 2012-02-01 00:28:52 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 00:28:52 - building ADM5120 kernel TB --- 2012-02-01 00:28:52 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 00:28:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 00:28:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 00:28:52 - SRCCONF=/dev/null TB --- 2012-02-01 00:28:52 - TARGET=mips TB --- 2012-02-01 00:28:52 - TARGET_ARCH=mips TB --- 2012-02-01 00:28:52 - TZ=UTC TB --- 2012-02-01 00:28:52 - __MAKE_CONF=/dev/null TB --- 2012-02-01 00:28:52 - cd /src TB --- 2012-02-01 00:28:52 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 00:28:52 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 00:30:06 UTC 2012 TB --- 2012-02-01 00:30:06 - cd /src/sys/mips/conf TB --- 2012-02-01 00:30:06 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-01 00:30:06 - building ALCHEMY kernel TB --- 2012-02-01 00:30:06 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 00:30:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 00:30:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 00:30:06 - SRCCONF=/dev/null TB --- 2012-02-01 00:30:06 - TARGET=mips TB --- 2012-02-01 00:30:06 - TARGET_ARCH=mips TB --- 2012-02-01 00:30:06 - TZ=UTC TB --- 2012-02-01 00:30:06 - __MAKE_CONF=/dev/null TB --- 2012-02-01 00:30:06 - cd /src TB --- 2012-02-01 00:30:06 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Wed Feb 1 00:30:06 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 00:31:15 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 00:31:15 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-01 00:31:15 - 1755.98 user 367.59 system 2342.94 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 01:25:38 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D7FB1065670; Wed, 1 Feb 2012 01:25:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id BF1DF8FC1D; Wed, 1 Feb 2012 01:25:37 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q111PbZg070545; Wed, 1 Feb 2012 01:25:37 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q111PbBH070535; Wed, 1 Feb 2012 01:25:37 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 01:25:37 GMT Message-Id: <201202010125.q111PbBH070535@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 01:25:38 -0000 TB --- 2012-02-01 00:11:04 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 00:11:04 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-01 00:11:04 - cleaning the object tree TB --- 2012-02-01 00:11:35 - cvsupping the source tree TB --- 2012-02-01 00:11:35 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-01 00:11:46 - building world TB --- 2012-02-01 00:11:46 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 00:11:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 00:11:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 00:11:46 - SRCCONF=/dev/null TB --- 2012-02-01 00:11:46 - TARGET=powerpc TB --- 2012-02-01 00:11:46 - TARGET_ARCH=powerpc TB --- 2012-02-01 00:11:46 - TZ=UTC TB --- 2012-02-01 00:11:46 - __MAKE_CONF=/dev/null TB --- 2012-02-01 00:11:46 - cd /src TB --- 2012-02-01 00:11:46 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 00:11:47 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 00:57:46 UTC 2012 TB --- 2012-02-01 00:57:46 - generating LINT kernel config TB --- 2012-02-01 00:57:46 - cd /src/sys/powerpc/conf TB --- 2012-02-01 00:57:46 - /usr/bin/make -B LINT TB --- 2012-02-01 00:57:46 - cd /src/sys/powerpc/conf TB --- 2012-02-01 00:57:46 - /usr/sbin/config -m LINT TB --- 2012-02-01 00:57:46 - building LINT kernel TB --- 2012-02-01 00:57:46 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 00:57:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 00:57:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 00:57:46 - SRCCONF=/dev/null TB --- 2012-02-01 00:57:46 - TARGET=powerpc TB --- 2012-02-01 00:57:46 - TARGET_ARCH=powerpc TB --- 2012-02-01 00:57:46 - TZ=UTC TB --- 2012-02-01 00:57:46 - __MAKE_CONF=/dev/null TB --- 2012-02-01 00:57:46 - cd /src TB --- 2012-02-01 00:57:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Feb 1 00:57:46 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Feb 1 01:13:13 UTC 2012 TB --- 2012-02-01 01:13:13 - cd /src/sys/powerpc/conf TB --- 2012-02-01 01:13:13 - /usr/sbin/config -m GENERIC TB --- 2012-02-01 01:13:13 - building GENERIC kernel TB --- 2012-02-01 01:13:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 01:13:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 01:13:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 01:13:13 - SRCCONF=/dev/null TB --- 2012-02-01 01:13:13 - TARGET=powerpc TB --- 2012-02-01 01:13:13 - TARGET_ARCH=powerpc TB --- 2012-02-01 01:13:13 - TZ=UTC TB --- 2012-02-01 01:13:13 - __MAKE_CONF=/dev/null TB --- 2012-02-01 01:13:13 - cd /src TB --- 2012-02-01 01:13:13 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Feb 1 01:13:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Wed Feb 1 01:23:35 UTC 2012 TB --- 2012-02-01 01:23:35 - cd /src/sys/powerpc/conf TB --- 2012-02-01 01:23:35 - /usr/sbin/config -m MPC85XX TB --- 2012-02-01 01:23:35 - building MPC85XX kernel TB --- 2012-02-01 01:23:35 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 01:23:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 01:23:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 01:23:35 - SRCCONF=/dev/null TB --- 2012-02-01 01:23:35 - TARGET=powerpc TB --- 2012-02-01 01:23:35 - TARGET_ARCH=powerpc TB --- 2012-02-01 01:23:35 - TZ=UTC TB --- 2012-02-01 01:23:35 - __MAKE_CONF=/dev/null TB --- 2012-02-01 01:23:35 - cd /src TB --- 2012-02-01 01:23:35 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Wed Feb 1 01:23:35 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 01:25:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 01:25:37 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-01 01:25:37 - 3554.05 user 575.84 system 4472.56 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 04:28:50 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC853106564A; Wed, 1 Feb 2012 04:28:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 48E6E8FC0C; Wed, 1 Feb 2012 04:28:50 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q114SnPk049542; Wed, 1 Feb 2012 04:28:49 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q114Smfj049333; Wed, 1 Feb 2012 04:28:48 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 04:28:48 GMT Message-Id: <201202010428.q114Smfj049333@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 04:28:50 -0000 TB --- 2012-02-01 03:40:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 03:40:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-01 03:40:00 - cleaning the object tree TB --- 2012-02-01 03:40:08 - cvsupping the source tree TB --- 2012-02-01 03:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-01 03:45:32 - building world TB --- 2012-02-01 03:45:32 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 03:45:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 03:45:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 03:45:32 - SRCCONF=/dev/null TB --- 2012-02-01 03:45:32 - TARGET=mips TB --- 2012-02-01 03:45:32 - TARGET_ARCH=mips TB --- 2012-02-01 03:45:32 - TZ=UTC TB --- 2012-02-01 03:45:32 - __MAKE_CONF=/dev/null TB --- 2012-02-01 03:45:32 - cd /src TB --- 2012-02-01 03:45:32 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 03:45:33 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 04:21:58 UTC 2012 TB --- 2012-02-01 04:21:58 - cd /src/sys/mips/conf TB --- 2012-02-01 04:21:58 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 04:21:58 - building ADM5120 kernel TB --- 2012-02-01 04:21:58 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 04:21:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 04:21:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 04:21:58 - SRCCONF=/dev/null TB --- 2012-02-01 04:21:58 - TARGET=mips TB --- 2012-02-01 04:21:58 - TARGET_ARCH=mips TB --- 2012-02-01 04:21:58 - TZ=UTC TB --- 2012-02-01 04:21:58 - __MAKE_CONF=/dev/null TB --- 2012-02-01 04:21:58 - cd /src TB --- 2012-02-01 04:21:58 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 04:21:58 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 04:23:08 UTC 2012 TB --- 2012-02-01 04:23:08 - cd /src/sys/mips/conf TB --- 2012-02-01 04:23:08 - /usr/sbin/config -m IDT TB --- 2012-02-01 04:23:08 - building IDT kernel TB --- 2012-02-01 04:23:08 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 04:23:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 04:23:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 04:23:08 - SRCCONF=/dev/null TB --- 2012-02-01 04:23:08 - TARGET=mips TB --- 2012-02-01 04:23:08 - TARGET_ARCH=mips TB --- 2012-02-01 04:23:08 - TZ=UTC TB --- 2012-02-01 04:23:08 - __MAKE_CONF=/dev/null TB --- 2012-02-01 04:23:08 - cd /src TB --- 2012-02-01 04:23:08 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Wed Feb 1 04:23:08 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Wed Feb 1 04:24:45 UTC 2012 TB --- 2012-02-01 04:24:45 - cd /src/sys/mips/conf TB --- 2012-02-01 04:24:45 - /usr/sbin/config -m MALTA TB --- 2012-02-01 04:24:45 - building MALTA kernel TB --- 2012-02-01 04:24:45 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 04:24:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 04:24:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 04:24:45 - SRCCONF=/dev/null TB --- 2012-02-01 04:24:45 - TARGET=mips TB --- 2012-02-01 04:24:45 - TARGET_ARCH=mips TB --- 2012-02-01 04:24:45 - TZ=UTC TB --- 2012-02-01 04:24:45 - __MAKE_CONF=/dev/null TB --- 2012-02-01 04:24:45 - cd /src TB --- 2012-02-01 04:24:45 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Wed Feb 1 04:24:45 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Wed Feb 1 04:26:13 UTC 2012 TB --- 2012-02-01 04:26:13 - cd /src/sys/mips/conf TB --- 2012-02-01 04:26:13 - /usr/sbin/config -m QEMU TB --- 2012-02-01 04:26:13 - building QEMU kernel TB --- 2012-02-01 04:26:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 04:26:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 04:26:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 04:26:13 - SRCCONF=/dev/null TB --- 2012-02-01 04:26:13 - TARGET=mips TB --- 2012-02-01 04:26:13 - TARGET_ARCH=mips TB --- 2012-02-01 04:26:13 - TZ=UTC TB --- 2012-02-01 04:26:13 - __MAKE_CONF=/dev/null TB --- 2012-02-01 04:26:13 - cd /src TB --- 2012-02-01 04:26:13 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Wed Feb 1 04:26:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Wed Feb 1 04:27:27 UTC 2012 TB --- 2012-02-01 04:27:27 - cd /src/sys/mips/conf TB --- 2012-02-01 04:27:27 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-01 04:27:27 - building SENTRY5 kernel TB --- 2012-02-01 04:27:27 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 04:27:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 04:27:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 04:27:27 - SRCCONF=/dev/null TB --- 2012-02-01 04:27:27 - TARGET=mips TB --- 2012-02-01 04:27:27 - TARGET_ARCH=mips TB --- 2012-02-01 04:27:27 - TZ=UTC TB --- 2012-02-01 04:27:27 - __MAKE_CONF=/dev/null TB --- 2012-02-01 04:27:27 - cd /src TB --- 2012-02-01 04:27:27 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Wed Feb 1 04:27:27 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 04:28:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 04:28:48 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-01 04:28:48 - 1980.53 user 423.88 system 2928.58 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 06:36:12 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 639F61065673; Wed, 1 Feb 2012 06:36:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 0A2928FC14; Wed, 1 Feb 2012 06:36:11 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q116aB6g013309; Wed, 1 Feb 2012 06:36:11 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q116aBHL013300; Wed, 1 Feb 2012 06:36:11 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 06:36:11 GMT Message-Id: <201202010636.q116aBHL013300@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 06:36:12 -0000 TB --- 2012-02-01 05:57:13 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 05:57:13 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-01 05:57:13 - cleaning the object tree TB --- 2012-02-01 05:57:22 - cvsupping the source tree TB --- 2012-02-01 05:57:22 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-01 05:57:36 - building world TB --- 2012-02-01 05:57:36 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 05:57:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 05:57:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 05:57:36 - SRCCONF=/dev/null TB --- 2012-02-01 05:57:36 - TARGET=mips TB --- 2012-02-01 05:57:36 - TARGET_ARCH=mips TB --- 2012-02-01 05:57:36 - TZ=UTC TB --- 2012-02-01 05:57:36 - __MAKE_CONF=/dev/null TB --- 2012-02-01 05:57:36 - cd /src TB --- 2012-02-01 05:57:36 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 05:57:37 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 06:33:47 UTC 2012 TB --- 2012-02-01 06:33:47 - cd /src/sys/mips/conf TB --- 2012-02-01 06:33:47 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 06:33:47 - building ADM5120 kernel TB --- 2012-02-01 06:33:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 06:33:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 06:33:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 06:33:47 - SRCCONF=/dev/null TB --- 2012-02-01 06:33:47 - TARGET=mips TB --- 2012-02-01 06:33:47 - TARGET_ARCH=mips TB --- 2012-02-01 06:33:47 - TZ=UTC TB --- 2012-02-01 06:33:47 - __MAKE_CONF=/dev/null TB --- 2012-02-01 06:33:47 - cd /src TB --- 2012-02-01 06:33:47 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 06:33:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 06:35:02 UTC 2012 TB --- 2012-02-01 06:35:02 - cd /src/sys/mips/conf TB --- 2012-02-01 06:35:02 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-01 06:35:02 - building ALCHEMY kernel TB --- 2012-02-01 06:35:02 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 06:35:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 06:35:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 06:35:02 - SRCCONF=/dev/null TB --- 2012-02-01 06:35:02 - TARGET=mips TB --- 2012-02-01 06:35:02 - TARGET_ARCH=mips TB --- 2012-02-01 06:35:02 - TZ=UTC TB --- 2012-02-01 06:35:02 - __MAKE_CONF=/dev/null TB --- 2012-02-01 06:35:02 - cd /src TB --- 2012-02-01 06:35:02 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Wed Feb 1 06:35:02 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 06:36:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 06:36:11 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-01 06:36:11 - 1749.59 user 368.60 system 2337.77 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 07:37:30 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C776D106566C; Wed, 1 Feb 2012 07:37:30 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 6C6248FC15; Wed, 1 Feb 2012 07:37:30 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q117bTWN064582; Wed, 1 Feb 2012 07:37:29 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q117bTbs064527; Wed, 1 Feb 2012 07:37:29 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 07:37:29 GMT Message-Id: <201202010737.q117bTbs064527@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 07:37:30 -0000 TB --- 2012-02-01 06:22:17 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 06:22:17 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-01 06:22:17 - cleaning the object tree TB --- 2012-02-01 06:22:52 - cvsupping the source tree TB --- 2012-02-01 06:22:52 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-01 06:23:52 - building world TB --- 2012-02-01 06:23:52 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 06:23:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 06:23:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 06:23:52 - SRCCONF=/dev/null TB --- 2012-02-01 06:23:52 - TARGET=powerpc TB --- 2012-02-01 06:23:52 - TARGET_ARCH=powerpc TB --- 2012-02-01 06:23:52 - TZ=UTC TB --- 2012-02-01 06:23:52 - __MAKE_CONF=/dev/null TB --- 2012-02-01 06:23:52 - cd /src TB --- 2012-02-01 06:23:52 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 06:23:53 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 07:09:38 UTC 2012 TB --- 2012-02-01 07:09:38 - generating LINT kernel config TB --- 2012-02-01 07:09:38 - cd /src/sys/powerpc/conf TB --- 2012-02-01 07:09:38 - /usr/bin/make -B LINT TB --- 2012-02-01 07:09:38 - cd /src/sys/powerpc/conf TB --- 2012-02-01 07:09:38 - /usr/sbin/config -m LINT TB --- 2012-02-01 07:09:38 - building LINT kernel TB --- 2012-02-01 07:09:38 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 07:09:38 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 07:09:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 07:09:38 - SRCCONF=/dev/null TB --- 2012-02-01 07:09:38 - TARGET=powerpc TB --- 2012-02-01 07:09:38 - TARGET_ARCH=powerpc TB --- 2012-02-01 07:09:38 - TZ=UTC TB --- 2012-02-01 07:09:38 - __MAKE_CONF=/dev/null TB --- 2012-02-01 07:09:38 - cd /src TB --- 2012-02-01 07:09:38 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Feb 1 07:09:38 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Feb 1 07:25:02 UTC 2012 TB --- 2012-02-01 07:25:02 - cd /src/sys/powerpc/conf TB --- 2012-02-01 07:25:02 - /usr/sbin/config -m GENERIC TB --- 2012-02-01 07:25:02 - building GENERIC kernel TB --- 2012-02-01 07:25:02 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 07:25:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 07:25:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 07:25:02 - SRCCONF=/dev/null TB --- 2012-02-01 07:25:02 - TARGET=powerpc TB --- 2012-02-01 07:25:02 - TARGET_ARCH=powerpc TB --- 2012-02-01 07:25:02 - TZ=UTC TB --- 2012-02-01 07:25:02 - __MAKE_CONF=/dev/null TB --- 2012-02-01 07:25:02 - cd /src TB --- 2012-02-01 07:25:02 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Feb 1 07:25:02 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Wed Feb 1 07:35:27 UTC 2012 TB --- 2012-02-01 07:35:27 - cd /src/sys/powerpc/conf TB --- 2012-02-01 07:35:27 - /usr/sbin/config -m MPC85XX TB --- 2012-02-01 07:35:27 - building MPC85XX kernel TB --- 2012-02-01 07:35:27 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 07:35:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 07:35:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 07:35:27 - SRCCONF=/dev/null TB --- 2012-02-01 07:35:27 - TARGET=powerpc TB --- 2012-02-01 07:35:27 - TARGET_ARCH=powerpc TB --- 2012-02-01 07:35:27 - TZ=UTC TB --- 2012-02-01 07:35:27 - __MAKE_CONF=/dev/null TB --- 2012-02-01 07:35:27 - cd /src TB --- 2012-02-01 07:35:27 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Wed Feb 1 07:35:27 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 07:37:29 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 07:37:29 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-01 07:37:29 - 3537.88 user 570.27 system 4512.48 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 09:46:10 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9966A1065678 for ; Wed, 1 Feb 2012 09:46:10 +0000 (UTC) (envelope-from andrei693@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 210C88FC14 for ; Wed, 1 Feb 2012 09:46:09 +0000 (UTC) Received: by bkbzx1 with SMTP id zx1so1145834bkb.13 for ; Wed, 01 Feb 2012 01:46:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=BgmLeilkwdXnd8qV3CN6eTrDhVF972n+FAMzMIbmkqg=; b=mf5lrDidcRllN5eL4n93gZZRVcZgDWw2seE5JoWfcwQbCx50QWTDo9QG0xDs1oiUf0 5iW5asDb2l2QA3TwmFmxREbn4TK6AY926n5sVIun+sz9OVeRpnS40f/Ge6MNNROMAWan SiOLbNAzEeTjk/4pijxQvq8VjpuFDrqd48Qn4= Received: by 10.204.154.86 with SMTP id n22mr11956373bkw.85.1328087861194; Wed, 01 Feb 2012 01:17:41 -0800 (PST) Received: from [127.0.0.1] ([87.213.55.2]) by mx.google.com with ESMTPS id 20sm41786424bkr.0.2012.02.01.01.17.40 (version=SSLv3 cipher=OTHER); Wed, 01 Feb 2012 01:17:40 -0800 (PST) Message-ID: <4F290331.4090907@gmail.com> Date: Wed, 01 Feb 2012 10:17:37 +0100 From: Andrei Brezan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101207 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <4F284C04.9060608@speakeasy.org> In-Reply-To: <4F284C04.9060608@speakeasy.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Freebsd.update 8.2 to 9.0 Success X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 09:46:10 -0000 On 1/31/2012 9:16 PM, Thomas D. Dean wrote: > Maybe the wrong list, but, this was from STABLE -> STABLE. > > I have an old 32-bit machine that had 8.2-STABLE on it. > > I tried to upgrade using 8.2 update > > # freebsd.update upgrade -r 9.0 > failed with the no more mirrors message > # env UNAME_r=8.2-RELEASE freebsd.update upgrade -r 9.0 > failed with the no more mirrors message > I tried > # sed -i '' -e 's/=_/=%@_/' /usr/sbin/freebsd-update > # env UNAME_r=8.2-RELEASE freebsd.update upgrade -r 9.0 > similar failure > > I copied freebsd.update from my 9.0 amd64 system. > > # env UNAME_r=8.2-RELEASE ./freebsd.update upgrade -r 9.0 > > Worked! > > After following directions until update completed and updating ports > with portupgrade -a -PP, the 32-bit machine was running 9.0 with no > known problems. > > I changed stable-supfile to > ... > *default release=cvs tag=RELENG_9 > ... > > I updated the source tree, did the '11 step program' in > /usr/src/Makefile. All succeeded. > > > ssh <32-bit machine> uname -a > ... > FreeBSD asus.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #0: Tue Jan 31 > 07:39:04 PST 2012 tomdean@asus.tddhome:/usr/src/sys/GENERIC i386 > > > Tom Dean > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" Hi Tom, Is that a typo? I know freebsd-update not freebsd.update and that works only for REALEASE not STABLE. I always update STABLE with csup and make buildworld/installworld as in handbook. You can see also http://forums.freebsd.org/showthread.php?t=2930 Regards, Andrei Brezan From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 10:38:49 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B711C106566C; Wed, 1 Feb 2012 10:38:49 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4B88FC13; Wed, 1 Feb 2012 10:38:49 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11Acmeu035541; Wed, 1 Feb 2012 10:38:48 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11AclUL035438; Wed, 1 Feb 2012 10:38:47 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 10:38:47 GMT Message-Id: <201202011038.q11AclUL035438@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 10:38:49 -0000 TB --- 2012-02-01 09:50:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 09:50:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-01 09:50:00 - cleaning the object tree TB --- 2012-02-01 09:50:07 - cvsupping the source tree TB --- 2012-02-01 09:50:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-01 09:55:32 - building world TB --- 2012-02-01 09:55:32 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 09:55:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 09:55:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 09:55:32 - SRCCONF=/dev/null TB --- 2012-02-01 09:55:32 - TARGET=mips TB --- 2012-02-01 09:55:32 - TARGET_ARCH=mips TB --- 2012-02-01 09:55:32 - TZ=UTC TB --- 2012-02-01 09:55:32 - __MAKE_CONF=/dev/null TB --- 2012-02-01 09:55:32 - cd /src TB --- 2012-02-01 09:55:32 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 09:55:33 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 10:32:04 UTC 2012 TB --- 2012-02-01 10:32:04 - cd /src/sys/mips/conf TB --- 2012-02-01 10:32:04 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 10:32:04 - building ADM5120 kernel TB --- 2012-02-01 10:32:04 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 10:32:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 10:32:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 10:32:04 - SRCCONF=/dev/null TB --- 2012-02-01 10:32:04 - TARGET=mips TB --- 2012-02-01 10:32:04 - TARGET_ARCH=mips TB --- 2012-02-01 10:32:04 - TZ=UTC TB --- 2012-02-01 10:32:04 - __MAKE_CONF=/dev/null TB --- 2012-02-01 10:32:04 - cd /src TB --- 2012-02-01 10:32:04 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 10:32:04 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 10:33:15 UTC 2012 TB --- 2012-02-01 10:33:16 - cd /src/sys/mips/conf TB --- 2012-02-01 10:33:16 - /usr/sbin/config -m IDT TB --- 2012-02-01 10:33:16 - building IDT kernel TB --- 2012-02-01 10:33:16 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 10:33:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 10:33:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 10:33:16 - SRCCONF=/dev/null TB --- 2012-02-01 10:33:16 - TARGET=mips TB --- 2012-02-01 10:33:16 - TARGET_ARCH=mips TB --- 2012-02-01 10:33:16 - TZ=UTC TB --- 2012-02-01 10:33:16 - __MAKE_CONF=/dev/null TB --- 2012-02-01 10:33:16 - cd /src TB --- 2012-02-01 10:33:16 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Wed Feb 1 10:33:16 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Wed Feb 1 10:34:50 UTC 2012 TB --- 2012-02-01 10:34:50 - cd /src/sys/mips/conf TB --- 2012-02-01 10:34:50 - /usr/sbin/config -m MALTA TB --- 2012-02-01 10:34:50 - building MALTA kernel TB --- 2012-02-01 10:34:50 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 10:34:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 10:34:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 10:34:50 - SRCCONF=/dev/null TB --- 2012-02-01 10:34:50 - TARGET=mips TB --- 2012-02-01 10:34:50 - TARGET_ARCH=mips TB --- 2012-02-01 10:34:50 - TZ=UTC TB --- 2012-02-01 10:34:50 - __MAKE_CONF=/dev/null TB --- 2012-02-01 10:34:50 - cd /src TB --- 2012-02-01 10:34:50 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Wed Feb 1 10:34:50 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Wed Feb 1 10:36:17 UTC 2012 TB --- 2012-02-01 10:36:17 - cd /src/sys/mips/conf TB --- 2012-02-01 10:36:17 - /usr/sbin/config -m QEMU TB --- 2012-02-01 10:36:17 - building QEMU kernel TB --- 2012-02-01 10:36:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 10:36:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 10:36:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 10:36:17 - SRCCONF=/dev/null TB --- 2012-02-01 10:36:17 - TARGET=mips TB --- 2012-02-01 10:36:17 - TARGET_ARCH=mips TB --- 2012-02-01 10:36:17 - TZ=UTC TB --- 2012-02-01 10:36:17 - __MAKE_CONF=/dev/null TB --- 2012-02-01 10:36:17 - cd /src TB --- 2012-02-01 10:36:17 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Wed Feb 1 10:36:17 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Wed Feb 1 10:37:30 UTC 2012 TB --- 2012-02-01 10:37:30 - cd /src/sys/mips/conf TB --- 2012-02-01 10:37:30 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-01 10:37:30 - building SENTRY5 kernel TB --- 2012-02-01 10:37:30 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 10:37:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 10:37:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 10:37:30 - SRCCONF=/dev/null TB --- 2012-02-01 10:37:30 - TARGET=mips TB --- 2012-02-01 10:37:30 - TARGET_ARCH=mips TB --- 2012-02-01 10:37:30 - TZ=UTC TB --- 2012-02-01 10:37:30 - __MAKE_CONF=/dev/null TB --- 2012-02-01 10:37:30 - cd /src TB --- 2012-02-01 10:37:30 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Wed Feb 1 10:37:30 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 10:38:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 10:38:47 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-01 10:38:47 - 1978.59 user 427.77 system 2927.23 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 12:52:44 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E4AA1065672; Wed, 1 Feb 2012 12:52:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id D99CF8FC17; Wed, 1 Feb 2012 12:52:43 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11CqhXH071468; Wed, 1 Feb 2012 12:52:43 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11Cqgc0071402; Wed, 1 Feb 2012 12:52:42 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 12:52:42 GMT Message-Id: <201202011252.q11Cqgc0071402@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 12:52:44 -0000 TB --- 2012-02-01 12:13:37 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 12:13:37 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-01 12:13:37 - cleaning the object tree TB --- 2012-02-01 12:13:46 - cvsupping the source tree TB --- 2012-02-01 12:13:46 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-01 12:14:01 - building world TB --- 2012-02-01 12:14:01 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 12:14:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 12:14:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 12:14:01 - SRCCONF=/dev/null TB --- 2012-02-01 12:14:01 - TARGET=mips TB --- 2012-02-01 12:14:01 - TARGET_ARCH=mips TB --- 2012-02-01 12:14:01 - TZ=UTC TB --- 2012-02-01 12:14:01 - __MAKE_CONF=/dev/null TB --- 2012-02-01 12:14:01 - cd /src TB --- 2012-02-01 12:14:01 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 12:14:01 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 12:50:19 UTC 2012 TB --- 2012-02-01 12:50:19 - cd /src/sys/mips/conf TB --- 2012-02-01 12:50:19 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 12:50:19 - building ADM5120 kernel TB --- 2012-02-01 12:50:19 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 12:50:19 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 12:50:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 12:50:19 - SRCCONF=/dev/null TB --- 2012-02-01 12:50:19 - TARGET=mips TB --- 2012-02-01 12:50:19 - TARGET_ARCH=mips TB --- 2012-02-01 12:50:19 - TZ=UTC TB --- 2012-02-01 12:50:19 - __MAKE_CONF=/dev/null TB --- 2012-02-01 12:50:19 - cd /src TB --- 2012-02-01 12:50:19 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 12:50:19 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 12:51:33 UTC 2012 TB --- 2012-02-01 12:51:33 - cd /src/sys/mips/conf TB --- 2012-02-01 12:51:33 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-01 12:51:33 - building ALCHEMY kernel TB --- 2012-02-01 12:51:33 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 12:51:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 12:51:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 12:51:33 - SRCCONF=/dev/null TB --- 2012-02-01 12:51:33 - TARGET=mips TB --- 2012-02-01 12:51:33 - TARGET_ARCH=mips TB --- 2012-02-01 12:51:33 - TZ=UTC TB --- 2012-02-01 12:51:33 - __MAKE_CONF=/dev/null TB --- 2012-02-01 12:51:33 - cd /src TB --- 2012-02-01 12:51:33 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Wed Feb 1 12:51:33 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 12:52:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 12:52:42 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-01 12:52:42 - 1760.45 user 368.51 system 2344.51 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 13:40:24 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6326F106566C for ; Wed, 1 Feb 2012 13:40:24 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from mail.digiware.nl (mail.ip6.digiware.nl [IPv6:2001:4cb8:1:106::2]) by mx1.freebsd.org (Postfix) with ESMTP id 9C3638FC18 for ; Wed, 1 Feb 2012 13:40:23 +0000 (UTC) Received: from rack1.digiware.nl (localhost.digiware.nl [127.0.0.1]) by mail.digiware.nl (Postfix) with ESMTP id 54AF8153433 for ; Wed, 1 Feb 2012 14:40:21 +0100 (CET) X-Virus-Scanned: amavisd-new at digiware.nl Received: from mail.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EQCoyKnlJ-on for ; Wed, 1 Feb 2012 14:40:20 +0100 (CET) Received: from [192.168.10.67] (opteron [192.168.10.67]) by mail.digiware.nl (Postfix) with ESMTP id 62DD415343B for ; Wed, 1 Feb 2012 14:40:20 +0100 (CET) Message-ID: <4F2940C1.10901@digiware.nl> Date: Wed, 01 Feb 2012 14:40:17 +0100 From: Willem Jan Withagen User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: "stable@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 13:40:24 -0000 Hi, I have this ZFS server up for about 27 days, and about 3 weeks ago (was not really paying attention) it turns out it lost its SSD that I'm using for log and cache. There is also a poor and lonely memory stick for log. So the box did not really suffer file loss. system is running: FreeBSD zfs.digiware.nl 8.2-STABLE FreeBSD 8.2-STABLE #58: Thu Nov 17 09:43:46 CET 2011 root@zfs.digiware.nl:/home/obj/usr/src/src8/src/sys/ZFS amd64 more info like dmesg, pciconf, kernconf, zpool iostat at: http://www.tegenbosch28.nl/FreeBSD/systems/ZFS/ But it is weird to just lose a SSD from the bus. And it has happened before. And you can see that AHCI really banged on the frontdoor... The device is a Corsair 60Gb Force GT. And thusfar I have not found any suggestions that that serie of devices is prone to doing this. It was a real dead device, the only way to get it back: powercycle the device by pulling it, and stick it back then camcontrol rescan I've now upgrade it to a 120Gb Corsair, to see if that has the same problem. Other FreeBSD-ers have like problems? Regards, --WjW Jan 7 10:04:24 zfs kernel: ahcich3: Timeout on slot 27 port 0 Jan 7 10:04:24 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 38000000 rs 38000000 tfd c0 serr 00000000 cmd 0004dd17 Jan 7 10:04:56 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) Jan 7 10:05:26 zfs kernel: ahcich3: Timeout on slot 29 port 0 Jan 7 10:05:26 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 Jan 7 10:05:57 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) Jan 7 10:06:27 zfs kernel: ahcich3: Timeout on slot 29 port 0 Jan 7 10:06:27 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 Jan 7 10:06:27 zfs kernel: (ada2:ahcich3:0:0:0): lost device Jan 7 10:06:58 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) Jan 7 10:07:28 zfs kernel: ahcich3: Timeout on slot 29 port 0 Jan 7 10:07:28 zfs kernel: ahcich3: is 00000000 cs e0000000 ss e0000000 rs e0000000 tfd 80 serr 00000000 cmd 0004dd17 Jan 7 10:08:16 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) Jan 7 10:08:16 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 Jan 7 10:08:16 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 Jan 7 10:08:46 zfs kernel: ahcich3: Timeout on slot 31 port 0 Jan 7 10:08:46 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 Jan 7 10:08:48 zfs kernel: (ada2:ahcich3:0:0:0): removing device entry Jan 7 10:09:33 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) Jan 7 10:09:33 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 Jan 7 10:09:33 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 13:47:00 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB9E6106566B; Wed, 1 Feb 2012 13:47:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 735B08FC0C; Wed, 1 Feb 2012 13:47:00 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11Dkxga022805; Wed, 1 Feb 2012 13:47:00 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11Dkx5Q022804; Wed, 1 Feb 2012 13:46:59 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 13:46:59 GMT Message-Id: <201202011346.q11Dkx5Q022804@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 13:47:00 -0000 TB --- 2012-02-01 12:32:29 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 12:32:29 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-01 12:32:29 - cleaning the object tree TB --- 2012-02-01 12:32:55 - cvsupping the source tree TB --- 2012-02-01 12:32:55 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-01 12:33:10 - building world TB --- 2012-02-01 12:33:10 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 12:33:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 12:33:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 12:33:10 - SRCCONF=/dev/null TB --- 2012-02-01 12:33:10 - TARGET=powerpc TB --- 2012-02-01 12:33:10 - TARGET_ARCH=powerpc TB --- 2012-02-01 12:33:10 - TZ=UTC TB --- 2012-02-01 12:33:10 - __MAKE_CONF=/dev/null TB --- 2012-02-01 12:33:10 - cd /src TB --- 2012-02-01 12:33:10 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 12:33:11 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 13:19:11 UTC 2012 TB --- 2012-02-01 13:19:11 - generating LINT kernel config TB --- 2012-02-01 13:19:11 - cd /src/sys/powerpc/conf TB --- 2012-02-01 13:19:11 - /usr/bin/make -B LINT TB --- 2012-02-01 13:19:11 - cd /src/sys/powerpc/conf TB --- 2012-02-01 13:19:11 - /usr/sbin/config -m LINT TB --- 2012-02-01 13:19:11 - building LINT kernel TB --- 2012-02-01 13:19:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 13:19:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 13:19:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 13:19:11 - SRCCONF=/dev/null TB --- 2012-02-01 13:19:11 - TARGET=powerpc TB --- 2012-02-01 13:19:11 - TARGET_ARCH=powerpc TB --- 2012-02-01 13:19:11 - TZ=UTC TB --- 2012-02-01 13:19:11 - __MAKE_CONF=/dev/null TB --- 2012-02-01 13:19:11 - cd /src TB --- 2012-02-01 13:19:11 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Feb 1 13:19:11 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Feb 1 13:34:38 UTC 2012 TB --- 2012-02-01 13:34:38 - cd /src/sys/powerpc/conf TB --- 2012-02-01 13:34:38 - /usr/sbin/config -m GENERIC TB --- 2012-02-01 13:34:38 - building GENERIC kernel TB --- 2012-02-01 13:34:38 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 13:34:38 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 13:34:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 13:34:38 - SRCCONF=/dev/null TB --- 2012-02-01 13:34:38 - TARGET=powerpc TB --- 2012-02-01 13:34:38 - TARGET_ARCH=powerpc TB --- 2012-02-01 13:34:38 - TZ=UTC TB --- 2012-02-01 13:34:38 - __MAKE_CONF=/dev/null TB --- 2012-02-01 13:34:38 - cd /src TB --- 2012-02-01 13:34:38 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Feb 1 13:34:38 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Wed Feb 1 13:44:59 UTC 2012 TB --- 2012-02-01 13:44:59 - cd /src/sys/powerpc/conf TB --- 2012-02-01 13:44:59 - /usr/sbin/config -m MPC85XX TB --- 2012-02-01 13:44:59 - building MPC85XX kernel TB --- 2012-02-01 13:44:59 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 13:44:59 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 13:44:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 13:44:59 - SRCCONF=/dev/null TB --- 2012-02-01 13:44:59 - TARGET=powerpc TB --- 2012-02-01 13:44:59 - TARGET_ARCH=powerpc TB --- 2012-02-01 13:44:59 - TZ=UTC TB --- 2012-02-01 13:44:59 - __MAKE_CONF=/dev/null TB --- 2012-02-01 13:44:59 - cd /src TB --- 2012-02-01 13:44:59 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Wed Feb 1 13:44:59 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 13:46:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 13:46:59 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-01 13:46:59 - 3555.80 user 577.97 system 4470.16 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 13:51:02 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE9C2106564A for ; Wed, 1 Feb 2012 13:51:02 +0000 (UTC) (envelope-from peter.maloney@brockmann-consult.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.171]) by mx1.freebsd.org (Postfix) with ESMTP id 76D578FC14 for ; Wed, 1 Feb 2012 13:51:02 +0000 (UTC) Received: from [10.3.0.26] ([141.4.215.32]) by mrelayeu.kundenserver.de (node=mrbap4) with ESMTP (Nemesis) id 0MWSYU-1S47yR1rqM-00XczP; Wed, 01 Feb 2012 14:51:01 +0100 Message-ID: <4F294344.2030006@brockmann-consult.de> Date: Wed, 01 Feb 2012 14:51:00 +0100 From: Peter Maloney User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20110922 Thunderbird/3.1.15 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <4F2940C1.10901@digiware.nl> In-Reply-To: <4F2940C1.10901@digiware.nl> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:tqywJGU9z7hZiYWkSML1KqKAWFUgmy8nmG2m0PIa9no IXectIcAn6YFkMkQvuZx29h82Us1fYEWrWP8/AsDqfW0b+4HYP EDb0RNgPW1RZbWhAufrwRd6jS9ZTi8vL38AOmk21orESHlwZF4 8XyFkk4VLlCwccfBTYZebun7qywQLzm29Y57O80ByyCsG/xF6d k1ZjRiGkgZat/QtKlfioJ8t9L/v2TkpBJQiTb9cnF6EMkFaKxo kDS6bW/yBO9HUrX5gImWJmzZZLgstUam3Tuujt4PLIDsQzyH64 eGECt2VWuYOv570AiwGdSGDOIxAUN2ZCHKOuz2hbjoxFSAukMK VrNphGvk7VrOrAK9CE6uUSWQQNGSs1cTUkk6kr47s Subject: Re: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 13:51:02 -0000 I had the (probably) same problem with a Crucial SSD with old firmware. With my problem, the mps driver or mpslsi driver logs the timeouts rather than AHCI. With new disk firmware, it works fine so far (about 2-3 weeks). Here is my forum thread http://forums.freebsd.org/showthread.php?t=28252 I can cause a very similar error by hot pulling the disk. After putting the disk back in, I can't use the disk until rebooting. (And I reproduced the same problem with a Seagate Green spinning disk). After the firmware upgrade, this test passes, so I put it back to work in the machine. Here is a thread with a similar problem with an OCZ Vertex 3 http://forums.freebsd.org/showthread.php?t=27128 I didn't try "camcontrol rescan". But I tried "camcontrol reset ...." which caused a kernel panic (meaning FreeBSD is most likely at least partially to blame). ;) Peter On 02/01/2012 02:40 PM, Willem Jan Withagen wrote: > Hi, > > I have this ZFS server up for about 27 days, and about 3 weeks ago (was > not really paying attention) it turns out it lost its SSD that I'm using > for log and cache. There is also a poor and lonely memory stick for log. > So the box did not really suffer file loss. > > system is running: > FreeBSD zfs.digiware.nl 8.2-STABLE FreeBSD 8.2-STABLE #58: Thu Nov 17 > 09:43:46 CET 2011 > root@zfs.digiware.nl:/home/obj/usr/src/src8/src/sys/ZFS amd64 > > more info like dmesg, pciconf, kernconf, zpool iostat at: > http://www.tegenbosch28.nl/FreeBSD/systems/ZFS/ > > But it is weird to just lose a SSD from the bus. And it has happened > before. And you can see that AHCI really banged on the frontdoor... > > The device is a Corsair 60Gb Force GT. And thusfar I have not found any > suggestions that that serie of devices is prone to doing this. > > It was a real dead device, the only way to get it back: > powercycle the device by pulling it, and stick it back > then camcontrol rescan > > I've now upgrade it to a 120Gb Corsair, to see if that has the same problem. > > Other FreeBSD-ers have like problems? > > Regards, > --WjW > > > Jan 7 10:04:24 zfs kernel: ahcich3: Timeout on slot 27 port 0 > Jan 7 10:04:24 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 38000000 > rs 38000000 tfd c0 serr 00000000 cmd 0004dd17 > Jan 7 10:04:56 zfs kernel: ahcich3: AHCI reset: device not ready after > 31000ms (tfd = 00000080) > Jan 7 10:05:26 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:05:26 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 > rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:05:57 zfs kernel: ahcich3: AHCI reset: device not ready after > 31000ms (tfd = 00000080) > Jan 7 10:06:27 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:06:27 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 > rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:06:27 zfs kernel: (ada2:ahcich3:0:0:0): lost device > Jan 7 10:06:58 zfs kernel: ahcich3: AHCI reset: device not ready after > 31000ms (tfd = 00000080) > Jan 7 10:07:28 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:07:28 zfs kernel: ahcich3: is 00000000 cs e0000000 ss e0000000 > rs e0000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:08:16 zfs kernel: ahcich3: AHCI reset: device not ready after > 31000ms (tfd = 00000080) > Jan 7 10:08:16 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 > Jan 7 10:08:16 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 > rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > Jan 7 10:08:46 zfs kernel: ahcich3: Timeout on slot 31 port 0 > Jan 7 10:08:46 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 > rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > Jan 7 10:08:48 zfs kernel: (ada2:ahcich3:0:0:0): removing device entry > Jan 7 10:09:33 zfs kernel: ahcich3: AHCI reset: device not ready after > 31000ms (tfd = 00000080) > Jan 7 10:09:33 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 > Jan 7 10:09:33 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 > rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" -- -------------------------------------------- Peter Maloney Brockmann Consult Max-Planck-Str. 2 21502 Geesthacht Germany Tel: +49 4152 889 300 Fax: +49 4152 889 333 E-mail: peter.maloney@brockmann-consult.de Internet: http://www.brockmann-consult.de -------------------------------------------- From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 14:52:54 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EDBF106566C for ; Wed, 1 Feb 2012 14:52:54 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta15.emeryville.ca.mail.comcast.net (qmta15.emeryville.ca.mail.comcast.net [76.96.27.228]) by mx1.freebsd.org (Postfix) with ESMTP id 8823E8FC17 for ; Wed, 1 Feb 2012 14:52:54 +0000 (UTC) Received: from omta14.emeryville.ca.mail.comcast.net ([76.96.30.60]) by qmta15.emeryville.ca.mail.comcast.net with comcast id Ueam1i0031HpZEsAFefkzP; Wed, 01 Feb 2012 14:39:44 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta14.emeryville.ca.mail.comcast.net with comcast id Uefi1i00X1t3BNj8aefjZw; Wed, 01 Feb 2012 14:39:43 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id B1662102C1E; Wed, 1 Feb 2012 06:39:42 -0800 (PST) Date: Wed, 1 Feb 2012 06:39:42 -0800 From: Jeremy Chadwick To: Willem Jan Withagen Message-ID: <20120201143942.GA96012@icarus.home.lan> References: <4F2940C1.10901@digiware.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F2940C1.10901@digiware.nl> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "stable@freebsd.org" Subject: Re: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 14:52:54 -0000 On Wed, Feb 01, 2012 at 02:40:17PM +0100, Willem Jan Withagen wrote: > The device is a Corsair 60Gb Force GT. And thusfar I have not found any > suggestions that that serie of devices is prone to doing this. Can you please provide the following output when that SSD is attached to the system? You will need to install ports/sysutils/smartmontools for this (please make sure it's version 5.42 or newer). * smartctl -a /dev/whatever * smartctl -l devstat /dev/whatever * smartctl -l sataphy /dev/whatever * smartctl -l ssd /dev/whatever Thank you. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 15:56:31 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16E14106566B for ; Wed, 1 Feb 2012 15:56:31 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from mail.digiware.nl (mail.ip6.digiware.nl [IPv6:2001:4cb8:1:106::2]) by mx1.freebsd.org (Postfix) with ESMTP id B39198FC08 for ; Wed, 1 Feb 2012 15:56:29 +0000 (UTC) Received: from rack1.digiware.nl (localhost.digiware.nl [127.0.0.1]) by mail.digiware.nl (Postfix) with ESMTP id 2B550153435; Wed, 1 Feb 2012 16:56:28 +0100 (CET) X-Virus-Scanned: amavisd-new at digiware.nl Received: from mail.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S-yFNcH_zuHV; Wed, 1 Feb 2012 16:56:27 +0100 (CET) Received: from [192.168.10.67] (opteron [192.168.10.67]) by mail.digiware.nl (Postfix) with ESMTP id 3ACFF153433; Wed, 1 Feb 2012 16:56:27 +0100 (CET) Message-ID: <4F2960A7.8040705@digiware.nl> Date: Wed, 01 Feb 2012 16:56:23 +0100 From: Willem Jan Withagen User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: Jeremy Chadwick , "stable@freebsd.org" References: <4F2940C1.10901@digiware.nl> <20120201143942.GA96012@icarus.home.lan> In-Reply-To: <20120201143942.GA96012@icarus.home.lan> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 15:56:31 -0000 On 2012-02-01 15:39, Jeremy Chadwick wrote: > On Wed, Feb 01, 2012 at 02:40:17PM +0100, Willem Jan Withagen wrote: >> The device is a Corsair 60Gb Force GT. And thusfar I have not found any >> suggestions that that serie of devices is prone to doing this. > > Can you please provide the following output when that SSD is attached > to the system? You will need to install ports/sysutils/smartmontools > for this (please make sure it's version 5.42 or newer). > > * smartctl -a /dev/whatever > * smartctl -l devstat /dev/whatever > * smartctl -l sataphy /dev/whatever > * smartctl -l ssd /dev/whatever Eh, the last 3 look like they are not supported on the 3ware controller: ATA_READ_LOG_EXT (addr=0x00:0x00, page=0, n=1) failed: 48-bit ATA commands not supported Read GP Log Directory failed. So I'll have to put it back in my real fileserver. The output of the first one command, but it contains some real weird values.....?? --WjW === START OF INFORMATION SECTION === Device Model: Corsair Force GT Serial Number: 11296503000005870891 LU WWN Device Id: 0 000000 000000000 Firmware Version: 1.2 User Capacity: 60,022,480,896 bytes [60.0 GB] Sector Size: 512 bytes logical/physical Device is: Not in smartctl database [for details use: -P showall] ATA Version is: 8 ATA Standard is: ACS-2 revision 3 Local Time is: Wed Feb 1 16:52:42 2012 CET SMART support is: Available - device has SMART capability. SMART support is: Enabled === START OF READ SMART DATA SECTION === SMART overall-health self-assessment test result: PASSED General SMART Values: Offline data collection status: (0x00) Offline data collection activity was never started. Auto Offline Data Collection: Disabled. Self-test execution status: ( 0) The previous self-test routine completed without error or no self-test has ever been run. Total time to complete Offline data collection: ( 0) seconds. Offline data collection capabilities: (0x7f) SMART execute Offline immediate. Auto Offline data collection on/off support. Abort Offline collection upon new command. Offline surface scan supported. Self-test supported. Conveyance Self-test supported. Selective Self-test supported. SMART capabilities: (0x0003) Saves SMART data before entering power-saving mode. Supports SMART auto save timer. Error logging capability: (0x01) Error logging supported. General Purpose Logging supported. Short self-test routine recommended polling time: ( 1) minutes. Extended self-test routine recommended polling time: ( 48) minutes. Conveyance self-test routine recommended polling time: ( 2) minutes. SCT capabilities: (0x0021) SCT Status supported. SCT Data Table supported. SMART Attributes Data Structure revision number: 10 Vendor Specific SMART Attributes with Thresholds: ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE 1 Raw_Read_Error_Rate 0x000f 082 082 050 Pre-fail Always - 897651373777 5 Reallocated_Sector_Ct 0x0033 100 100 003 Pre-fail Always - 0 9 Power_On_Hours 0x0032 100 100 000 Old_age Always - 121242631799621 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 31 171 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 172 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 174 Unknown_Attribute 0x0030 000 000 000 Old_age Offline - 19 177 Wear_Leveling_Count 0x0000 000 000 000 Old_age Offline - 0 181 Program_Fail_Cnt_Total 0x0032 000 000 000 Old_age Always - 0 182 Erase_Fail_Count_Total 0x0032 000 000 000 Old_age Always - 0 187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0 194 Temperature_Celsius 0x0022 026 035 000 Old_age Always - 26 (Min/Max 21/35) 195 Hardware_ECC_Recovered 0x001c 120 120 000 Old_age Offline - 897651373777 196 Reallocated_Event_Count 0x0033 100 100 003 Pre-fail Always - 0 201 Soft_Read_Error_Rate 0x001c 120 120 000 Old_age Offline - 897651373777 204 Soft_ECC_Correction 0x001c 120 120 000 Old_age Offline - 897651373777 230 Head_Amplitude 0x0013 100 100 000 Pre-fail Always - 429496729700 231 Temperature_Celsius 0x0013 100 100 010 Pre-fail Always - 0 233 Media_Wearout_Indicator 0x0000 000 000 000 Old_age Offline - 1260 234 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 1925 241 Total_LBAs_Written 0x0032 000 000 000 Old_age Always - 1925 242 Total_LBAs_Read 0x0032 000 000 000 Old_age Always - 1032 SMART Error Log not supported SMART Self-test Log not supported SMART Selective self-test log data structure revision number 1 SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS 1 0 0 Not_testing 2 0 0 Not_testing 3 0 0 Not_testing 4 0 0 Not_testing 5 0 0 Not_testing Selective self-test flags (0x0): After scanning selected spans, do NOT read-scan remainder of disk. If Selective self-test is pending on power-up, resume after 0 minute delay. From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 16:35:58 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B727B106564A for ; Wed, 1 Feb 2012 16:35:58 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta05.emeryville.ca.mail.comcast.net (qmta05.emeryville.ca.mail.comcast.net [76.96.30.48]) by mx1.freebsd.org (Postfix) with ESMTP id 9D53A8FC1A for ; Wed, 1 Feb 2012 16:35:58 +0000 (UTC) Received: from omta01.emeryville.ca.mail.comcast.net ([76.96.30.11]) by qmta05.emeryville.ca.mail.comcast.net with comcast id UgVK1i0080EPchoA5gbyUr; Wed, 01 Feb 2012 16:35:58 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta01.emeryville.ca.mail.comcast.net with comcast id Ugbw1i00B1t3BNj8MgbxVm; Wed, 01 Feb 2012 16:35:57 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id BB197102C1E; Wed, 1 Feb 2012 08:35:56 -0800 (PST) Date: Wed, 1 Feb 2012 08:35:56 -0800 From: Jeremy Chadwick To: Willem Jan Withagen Message-ID: <20120201163556.GA97343@icarus.home.lan> References: <4F2940C1.10901@digiware.nl> <20120201143942.GA96012@icarus.home.lan> <4F2960A7.8040705@digiware.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F2960A7.8040705@digiware.nl> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "stable@freebsd.org" Subject: Re: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 16:35:58 -0000 On Wed, Feb 01, 2012 at 04:56:23PM +0100, Willem Jan Withagen wrote: > On 2012-02-01 15:39, Jeremy Chadwick wrote: > > On Wed, Feb 01, 2012 at 02:40:17PM +0100, Willem Jan Withagen wrote: > >> The device is a Corsair 60Gb Force GT. And thusfar I have not found any > >> suggestions that that serie of devices is prone to doing this. > > > > Can you please provide the following output when that SSD is attached > > to the system? You will need to install ports/sysutils/smartmontools > > for this (please make sure it's version 5.42 or newer). > > > > * smartctl -a /dev/whatever > > * smartctl -l devstat /dev/whatever > > * smartctl -l sataphy /dev/whatever > > * smartctl -l ssd /dev/whatever > > Eh, the last 3 look like they are not supported on the 3ware controller: > ATA_READ_LOG_EXT (addr=0x00:0x00, page=0, n=1) failed: 48-bit ATA > commands not supported > Read GP Log Directory failed. This indicates either a) the driver on FreeBSD, b) the controller itself, or c) the controller firmware does not permit these specific kinds of SMART sub-commands to be passed to the underlying device. > So I'll have to put it back in my real fileserver. Yes, please do. In fact, I wish you would not have moved the disk to another machine at all. I wish people would not do this during/around the time they ask for help; wait until someone clueful has exhausted existing analysis before doing that. Doing so adds great complexity to the situation, because then I have to start asking questions like "did you power off the machine before moving the drive?" "Did you use the same SATA cables?" "Is the controller on the other machine identical?" You get the idea. It is extremely taxing for me to track all of these things, because 99% of people do not write down/track what it is they do when they start moving hardware around/etc.. I'm not necessarily lecturing you, I'm more or less ranting -- I go through this situation two or three times a week with people I help online, and it wastes a lot of time. I have another individual in a private Email who asked me for help with 2 disks (one SSD, one HD), and kept moving the drives around between 3 different machines, giving me random output from each one (behaviour differed per box). I cannot deal with this kind of situation. > The output of the first one command, but it contains some real weird > values.....?? All the values below look fine to me. I will try my best to explain. > === START OF INFORMATION SECTION === > Device Model: Corsair Force GT > Serial Number: 11296503000005870891 > LU WWN Device Id: 0 000000 000000000 > Firmware Version: 1.2 > User Capacity: 60,022,480,896 bytes [60.0 GB] > Sector Size: 512 bytes logical/physical > Device is: Not in smartctl database [for details use: -P showall] First thing to note is the last line here. smartmontools does not appear to have knowledge of all the quirks/SMART attribute data for this model of Corsair SSD. So, some data may be inaccurate, and it does the best it can. Reformatting output to not force newlines/wrapping: > SMART Attributes Data Structure revision number: 10 > Vendor Specific SMART Attributes with Thresholds: > ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE > 1 Raw_Read_Error_Rate 0x000f 082 082 050 Pre-fail Always - 897651373777 > 5 Reallocated_Sector_Ct 0x0033 100 100 003 Pre-fail Always - 0 > 9 Power_On_Hours 0x0032 100 100 000 Old_age Always - 121242631799621 > 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 31 > 171 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 > 172 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 > 174 Unknown_Attribute 0x0030 000 000 000 Old_age Offline - 19 > 177 Wear_Leveling_Count 0x0000 000 000 000 Old_age Offline - 0 > 181 Program_Fail_Cnt_Total 0x0032 000 000 000 Old_age Always - 0 > 182 Erase_Fail_Count_Total 0x0032 000 000 000 Old_age Always - 0 > 187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0 > 194 Temperature_Celsius 0x0022 026 035 000 Old_age Always - 26 (Min/Max 21/35) > 195 Hardware_ECC_Recovered 0x001c 120 120 000 Old_age Offline - 897651373777 > 196 Reallocated_Event_Count 0x0033 100 100 003 Pre-fail Always - 0 > 201 Soft_Read_Error_Rate 0x001c 120 120 000 Old_age Offline - 897651373777 > 204 Soft_ECC_Correction 0x001c 120 120 000 Old_age Offline - 897651373777 > 230 Head_Amplitude 0x0013 100 100 000 Pre-fail Always - 429496729700 > 231 Temperature_Celsius 0x0013 100 100 010 Pre-fail Always - 0 > 233 Media_Wearout_Indicator 0x0000 000 000 000 Old_age Offline - 1260 > 234 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 1925 > 241 Total_LBAs_Written 0x0032 000 000 000 Old_age Always - 1925 > 242 Total_LBAs_Read 0x0032 000 000 000 Old_age Always - 1032 These values all look acceptable/excellent as best I can tell. The only attribute above that interests me is attribute 174. smartmontools doesn't know what this is, but I am curious to know what value "19" (which to me appears to be a counter or gauge) actually represents. Also, just for note: I think it's cool that Corsair put a thermistor or DTS inside of their drive for temperature readings. Wise of them! What you probably meant by "real weird values" are the extremely high numbers in the RAW_VALUE column. This is a sign of an individual who lacks familiarity with SMART and does not know how to properly interpret attributes. :-) I will make it crystal clear (since this is a mailing list and I'm sure someone will read this in the future): you cannot look at RAW_VALUE and assume it is a raw integer/counter or gauge. SMART attributes and their associated 6-byte data values are not defined per ATA standard. Thus, each vendor can implement them or store the data in the RAW_VALUE portion in any format they wish. Common vendors who do this are Seagate and Hitachi, and apparently Corsair. The behaviour varies from vendor to vendor, drive model to drive model, and firmware to firmware. Vendor-encoded values often appear very large or "look scary" to the uneducated eye. smartmontools can decode some of these, but the drive has to be in the smartmontools database (drivedb.h), **and** the code has to be written in smartmontools to properly decode the data. Since the attributes are proprietary, figuring out the format is virtually impossible without help from the vendor. Some (most) vendors choose not to disclose this information. In the case of some Seagate drives, the smartmontools folks either got "tips" from someone within Seagate, or somehow managed to figure out how to decode some (not all) on their own. You should probably start digging around on the Corsair forums, or within any online documentation you can find from Corsair, to see if they document what their SMART attributes are in their drives. For example, Intel documents all of their SMART attributes in an official PDF. > SMART Error Log not supported Well that's disappointing. That means that any kind of LBA (read/write) error inside of the drive will not be logged within the drive itself. Thus, the only kind of I/O errors or anomalies you'll be able to verify are purely OS-level. Oh well, there isn't anything anyone can do about this. So let's recap the original OS errors you saw in FreeBSD: > Jan 7 10:04:24 zfs kernel: ahcich3: Timeout on slot 27 port 0 > Jan 7 10:04:24 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 38000000 rs 38000000 tfd c0 serr 00000000 cmd 0004dd17 > Jan 7 10:04:56 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) > Jan 7 10:05:26 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:05:26 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:05:57 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) > Jan 7 10:06:27 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:06:27 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:06:27 zfs kernel: (ada2:ahcich3:0:0:0): lost device > Jan 7 10:06:58 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) > Jan 7 10:07:28 zfs kernel: ahcich3: Timeout on slot 29 port 0 > Jan 7 10:07:28 zfs kernel: ahcich3: is 00000000 cs e0000000 ss e0000000 rs e0000000 tfd 80 serr 00000000 cmd 0004dd17 > Jan 7 10:08:16 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) > Jan 7 10:08:16 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 > Jan 7 10:08:16 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > Jan 7 10:08:46 zfs kernel: ahcich3: Timeout on slot 31 port 0 > Jan 7 10:08:46 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > Jan 7 10:08:48 zfs kernel: (ada2:ahcich3:0:0:0): removing device entry > Jan 7 10:09:33 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) > Jan 7 10:09:33 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 > Jan 7 10:09:33 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 What is shown here appears to be the SSD disk simply falling off the SATA bus. Do not get confused about the "slots" and how the numbers there change; that has nothing to do with SATA ports or anything like that, it's an internal AHCI protocol thing. (I believe FreeBSD supports distributing commands across multiple slots or spreading them across multiple slots for added benefits). Everything above indicates that after 30 seconds (well, 31 seconds exactly, but I imagine it's 30 seconds plus 1 extra second due to how the timeout loop might be written) the drive stopped responding to commands on the AHCI protocol level. This could be caused by a multitude of things, and it is very difficult for me remotely to diagnose any of these: - Power supply issues (voltage ripple, not enough amps on that port, shoddy or loose SATA power connector) - SATA cable issues (cable too long, possibly some broken copper within the cable itself (very unlikely though), etc.) - SATA port (physical) problems; dust in connectors, etc. - SSD-level issues. There are so many possibilities here (more than on a MHDD) that it's almost impossible to list them all off: -- Internal garbage collection mechanism (this is different than TRIM) on drive may be overly aggressive and stalls all I/O to drive during heavy GC. This would be classified as a firmware bug -- Power circuitry on PCB may be flaky -- Drive may have locked up hard due to other firmware bugs or some form of very low-level electrical/electronic error -- Internal SSD SATA + NAND flash I/O controller failure For those considering the remote possibility of interoperability issues between the Corsair SSD and the AHCI controller -- it's possible, but highly unlikely. The controller itself is an Intel ICH9, which FreeBSD has excellent support for and is very reliable. So, the controller here is probably not at fault. I imagine if there were incompatibilities of this sort (between ICH9 and Corsair), we'd have heard about it. I have seen many drives in my time (many means hundreds, no exaggeration) "lock up" or fall off the bus, both on SCSI and SATA. It's very difficult to troubleshoot these kinds of issues as I said, and usually requires someone with extensive knowledge to figure it out. General "Tier 1" Technical Support from companies do not have this level of expertise, so don't expect that from Corsair. I look forward to seeing the output from the below 3 commands, as they may provide more insights to what actually transpired. Whether or not Corsair chose to implement these in the General Purpose Log area of SMART is unknown, however. Furthermore, they may actually implement them, but stick them in a non-common place (e.g. different GPLog offsets), but PLEASE DO NOT go tinkering around with -l gplog,0xXX values. > > * smartctl -l devstat /dev/whatever > > * smartctl -l sataphy /dev/whatever > > * smartctl -l ssd /dev/whatever Thanks. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 16:48:50 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2DDA106566B; Wed, 1 Feb 2012 16:48:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 62EA68FC13; Wed, 1 Feb 2012 16:48:50 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11GmnsJ058608; Wed, 1 Feb 2012 16:48:49 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11GmmxE058361; Wed, 1 Feb 2012 16:48:48 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 16:48:48 GMT Message-Id: <201202011648.q11GmmxE058361@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 16:48:50 -0000 TB --- 2012-02-01 16:00:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 16:00:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-01 16:00:00 - cleaning the object tree TB --- 2012-02-01 16:00:07 - cvsupping the source tree TB --- 2012-02-01 16:00:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-01 16:05:31 - building world TB --- 2012-02-01 16:05:31 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:05:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:05:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:05:31 - SRCCONF=/dev/null TB --- 2012-02-01 16:05:31 - TARGET=mips TB --- 2012-02-01 16:05:31 - TARGET_ARCH=mips TB --- 2012-02-01 16:05:31 - TZ=UTC TB --- 2012-02-01 16:05:31 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:05:31 - cd /src TB --- 2012-02-01 16:05:31 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 16:05:32 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 16:42:00 UTC 2012 TB --- 2012-02-01 16:42:00 - cd /src/sys/mips/conf TB --- 2012-02-01 16:42:00 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 16:42:00 - building ADM5120 kernel TB --- 2012-02-01 16:42:00 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:42:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:42:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:42:00 - SRCCONF=/dev/null TB --- 2012-02-01 16:42:00 - TARGET=mips TB --- 2012-02-01 16:42:00 - TARGET_ARCH=mips TB --- 2012-02-01 16:42:00 - TZ=UTC TB --- 2012-02-01 16:42:00 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:42:00 - cd /src TB --- 2012-02-01 16:42:00 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 16:42:00 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 16:43:12 UTC 2012 TB --- 2012-02-01 16:43:12 - cd /src/sys/mips/conf TB --- 2012-02-01 16:43:12 - /usr/sbin/config -m IDT TB --- 2012-02-01 16:43:12 - building IDT kernel TB --- 2012-02-01 16:43:12 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:43:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:43:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:43:12 - SRCCONF=/dev/null TB --- 2012-02-01 16:43:12 - TARGET=mips TB --- 2012-02-01 16:43:12 - TARGET_ARCH=mips TB --- 2012-02-01 16:43:12 - TZ=UTC TB --- 2012-02-01 16:43:12 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:43:12 - cd /src TB --- 2012-02-01 16:43:12 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Wed Feb 1 16:43:12 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Wed Feb 1 16:44:49 UTC 2012 TB --- 2012-02-01 16:44:49 - cd /src/sys/mips/conf TB --- 2012-02-01 16:44:49 - /usr/sbin/config -m MALTA TB --- 2012-02-01 16:44:49 - building MALTA kernel TB --- 2012-02-01 16:44:49 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:44:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:44:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:44:49 - SRCCONF=/dev/null TB --- 2012-02-01 16:44:49 - TARGET=mips TB --- 2012-02-01 16:44:49 - TARGET_ARCH=mips TB --- 2012-02-01 16:44:49 - TZ=UTC TB --- 2012-02-01 16:44:49 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:44:49 - cd /src TB --- 2012-02-01 16:44:49 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Wed Feb 1 16:44:49 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Wed Feb 1 16:46:17 UTC 2012 TB --- 2012-02-01 16:46:17 - cd /src/sys/mips/conf TB --- 2012-02-01 16:46:17 - /usr/sbin/config -m QEMU TB --- 2012-02-01 16:46:17 - building QEMU kernel TB --- 2012-02-01 16:46:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:46:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:46:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:46:17 - SRCCONF=/dev/null TB --- 2012-02-01 16:46:17 - TARGET=mips TB --- 2012-02-01 16:46:17 - TARGET_ARCH=mips TB --- 2012-02-01 16:46:17 - TZ=UTC TB --- 2012-02-01 16:46:17 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:46:17 - cd /src TB --- 2012-02-01 16:46:17 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Wed Feb 1 16:46:17 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Wed Feb 1 16:47:29 UTC 2012 TB --- 2012-02-01 16:47:29 - cd /src/sys/mips/conf TB --- 2012-02-01 16:47:29 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-01 16:47:29 - building SENTRY5 kernel TB --- 2012-02-01 16:47:29 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 16:47:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 16:47:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 16:47:29 - SRCCONF=/dev/null TB --- 2012-02-01 16:47:29 - TARGET=mips TB --- 2012-02-01 16:47:29 - TARGET_ARCH=mips TB --- 2012-02-01 16:47:29 - TZ=UTC TB --- 2012-02-01 16:47:29 - __MAKE_CONF=/dev/null TB --- 2012-02-01 16:47:29 - cd /src TB --- 2012-02-01 16:47:29 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Wed Feb 1 16:47:29 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 16:48:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 16:48:48 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-01 16:48:48 - 1985.72 user 423.87 system 2928.46 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 18:09:32 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9AA91065673 for ; Wed, 1 Feb 2012 18:09:32 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from mail.digiware.nl (mail.ip6.digiware.nl [IPv6:2001:4cb8:1:106::2]) by mx1.freebsd.org (Postfix) with ESMTP id 3244C8FC19 for ; Wed, 1 Feb 2012 18:09:32 +0000 (UTC) Received: from rack1.digiware.nl (localhost.digiware.nl [127.0.0.1]) by mail.digiware.nl (Postfix) with ESMTP id AF59B153435; Wed, 1 Feb 2012 19:09:30 +0100 (CET) X-Virus-Scanned: amavisd-new at digiware.nl Received: from mail.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id f5pIgLq8qPiy; Wed, 1 Feb 2012 19:09:29 +0100 (CET) Received: from [192.168.10.67] (opteron [192.168.10.67]) by mail.digiware.nl (Postfix) with ESMTP id 19924153433; Wed, 1 Feb 2012 19:09:29 +0100 (CET) Message-ID: <4F297FD5.7090809@digiware.nl> Date: Wed, 01 Feb 2012 19:09:25 +0100 From: Willem Jan Withagen User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: Jeremy Chadwick References: <4F2940C1.10901@digiware.nl> <20120201143942.GA96012@icarus.home.lan> <4F2960A7.8040705@digiware.nl> <20120201163556.GA97343@icarus.home.lan> In-Reply-To: <20120201163556.GA97343@icarus.home.lan> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "stable@freebsd.org" Subject: Re: Troube with SSD X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 18:09:32 -0000 On 2012-02-01 17:35, Jeremy Chadwick wrote: > On Wed, Feb 01, 2012 at 04:56:23PM +0100, Willem Jan Withagen wrote: >> On 2012-02-01 15:39, Jeremy Chadwick wrote: >>> On Wed, Feb 01, 2012 at 02:40:17PM +0100, Willem Jan Withagen wrote: >>>> The device is a Corsair 60Gb Force GT. And thusfar I have not found any >>>> suggestions that that serie of devices is prone to doing this. >>> >>> Can you please provide the following output when that SSD is attached >>> to the system? You will need to install ports/sysutils/smartmontools >>> for this (please make sure it's version 5.42 or newer). >>> >>> * smartctl -a /dev/whatever >>> * smartctl -l devstat /dev/whatever >>> * smartctl -l sataphy /dev/whatever >>> * smartctl -l ssd /dev/whatever ...... > It is extremely taxing for me to track all of these things, because 99% > of people do not write down/track what it is they do when they start > moving hardware around/etc.. I'm not necessarily lecturing you, I'm > more or less ranting -- I go through this situation two or three times a > week with people I help online, and it wastes a lot of time. I have > another individual in a private Email who asked me for help with 2 disks > (one SSD, one HD), and kept moving the drives around between 3 different > machines, giving me random output from each one (behaviour differed per > box). I cannot deal with this kind of situation. I know what you mean. I used to run an ISP in the nighties, and was usually the last person standing for the real hard problems. By that time nothing of the original problem was in place. >> The output of the first one command, but it contains some real weird >> values.....?? > > All the values below look fine to me. I will try my best to explain. >> SMART Attributes Data Structure revision number: 10 >> Vendor Specific SMART Attributes with Thresholds: >> ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE >> 1 Raw_Read_Error_Rate 0x000f 082 082 050 Pre-fail Always - 897651373777 >> 5 Reallocated_Sector_Ct 0x0033 100 100 003 Pre-fail Always - 0 >> 9 Power_On_Hours 0x0032 100 100 000 Old_age Always - 121242631799621 >> 12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 31 >> 171 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 >> 172 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 0 >> 174 Unknown_Attribute 0x0030 000 000 000 Old_age Offline - 19 >> 177 Wear_Leveling_Count 0x0000 000 000 000 Old_age Offline - 0 >> 181 Program_Fail_Cnt_Total 0x0032 000 000 000 Old_age Always - 0 >> 182 Erase_Fail_Count_Total 0x0032 000 000 000 Old_age Always - 0 >> 187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0 >> 194 Temperature_Celsius 0x0022 026 035 000 Old_age Always - 26 (Min/Max 21/35) >> 195 Hardware_ECC_Recovered 0x001c 120 120 000 Old_age Offline - 897651373777 >> 196 Reallocated_Event_Count 0x0033 100 100 003 Pre-fail Always - 0 >> 201 Soft_Read_Error_Rate 0x001c 120 120 000 Old_age Offline - 897651373777 >> 204 Soft_ECC_Correction 0x001c 120 120 000 Old_age Offline - 897651373777 >> 230 Head_Amplitude 0x0013 100 100 000 Pre-fail Always - 429496729700 >> 231 Temperature_Celsius 0x0013 100 100 010 Pre-fail Always - 0 >> 233 Media_Wearout_Indicator 0x0000 000 000 000 Old_age Offline - 1260 >> 234 Unknown_Attribute 0x0032 000 000 000 Old_age Always - 1925 >> 241 Total_LBAs_Written 0x0032 000 000 000 Old_age Always - 1925 >> 242 Total_LBAs_Read 0x0032 000 000 000 Old_age Always - 1032 > > These values all look acceptable/excellent as best I can tell. The only > attribute above that interests me is attribute 174. smartmontools > doesn't know what this is, but I am curious to know what value "19" > (which to me appears to be a counter or gauge) actually represents. > Also, just for note: I think it's cool that Corsair put a thermistor or > DTS inside of their drive for temperature readings. Wise of them! > > What you probably meant by "real weird values" are the extremely high > numbers in the RAW_VALUE column. This is a sign of an individual who > lacks familiarity with SMART and does not know how to properly interpret > attributes. :-) Count me in.... I'll leave it in for history as well > I will make it crystal clear (since this is a mailing list and I'm sure > someone will read this in the future): you cannot look at RAW_VALUE and > assume it is a raw integer/counter or gauge. > > SMART attributes and their associated 6-byte data values are not defined > per ATA standard. Thus, each vendor can implement them or store the > data in the RAW_VALUE portion in any format they wish. > > Common vendors who do this are Seagate and Hitachi, and apparently > Corsair. The behaviour varies from vendor to vendor, drive model to > drive model, and firmware to firmware. > > Vendor-encoded values often appear very large or "look scary" to the > uneducated eye. smartmontools can decode some of these, but the drive > has to be in the smartmontools database (drivedb.h), **and** the code > has to be written in smartmontools to properly decode the data. > > Since the attributes are proprietary, figuring out the format is > virtually impossible without help from the vendor. Some (most) vendors > choose not to disclose this information. In the case of some Seagate > drives, the smartmontools folks either got "tips" from someone within > Seagate, or somehow managed to figure out how to decode some (not all) > on their own. > > You should probably start digging around on the Corsair forums, or > within any online documentation you can find from Corsair, to see if > they document what their SMART attributes are in their drives. For > example, Intel documents all of their SMART attributes in an official > PDF. > >> SMART Error Log not supported > > Well that's disappointing. That means that any kind of LBA (read/write) > error inside of the drive will not be logged within the drive itself. > Thus, the only kind of I/O errors or anomalies you'll be able to verify > are purely OS-level. Oh well, there isn't anything anyone can do about > this. > > So let's recap the original OS errors you saw in FreeBSD: > >> Jan 7 10:04:24 zfs kernel: ahcich3: Timeout on slot 27 port 0 >> Jan 7 10:04:24 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 38000000 rs 38000000 tfd c0 serr 00000000 cmd 0004dd17 >> Jan 7 10:04:56 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) >> Jan 7 10:05:26 zfs kernel: ahcich3: Timeout on slot 29 port 0 >> Jan 7 10:05:26 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 >> Jan 7 10:05:57 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) >> Jan 7 10:06:27 zfs kernel: ahcich3: Timeout on slot 29 port 0 >> Jan 7 10:06:27 zfs kernel: ahcich3: is 00000000 cs 20000000 ss 00000000 rs 20000000 tfd 80 serr 00000000 cmd 0004dd17 >> Jan 7 10:06:27 zfs kernel: (ada2:ahcich3:0:0:0): lost device >> Jan 7 10:06:58 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) >> Jan 7 10:07:28 zfs kernel: ahcich3: Timeout on slot 29 port 0 >> Jan 7 10:07:28 zfs kernel: ahcich3: is 00000000 cs e0000000 ss e0000000 rs e0000000 tfd 80 serr 00000000 cmd 0004dd17 >> Jan 7 10:08:16 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) >> Jan 7 10:08:16 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 >> Jan 7 10:08:16 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 >> Jan 7 10:08:46 zfs kernel: ahcich3: Timeout on slot 31 port 0 >> Jan 7 10:08:46 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 >> Jan 7 10:08:48 zfs kernel: (ada2:ahcich3:0:0:0): removing device entry >> Jan 7 10:09:33 zfs kernel: ahcich3: AHCI reset: device not ready after 31000ms (tfd = 00000080) >> Jan 7 10:09:33 zfs kernel: ahcich3: Poll timeout on slot 31 port 0 >> Jan 7 10:09:33 zfs kernel: ahcich3: is 00000000 cs 80000000 ss 00000000 rs 80000000 tfd 80 serr 00000000 cmd 0004df17 > > What is shown here appears to be the SSD disk simply falling off the > SATA bus. Do not get confused about the "slots" and how the numbers > there change; that has nothing to do with SATA ports or anything like > that, it's an internal AHCI protocol thing. (I believe FreeBSD supports > distributing commands across multiple slots or spreading them across > multiple slots for added benefits). > > Everything above indicates that after 30 seconds (well, 31 seconds > exactly, but I imagine it's 30 seconds plus 1 extra second due to how > the timeout loop might be written) the drive stopped responding to > commands on the AHCI protocol level. So you say that in that 30 secs, it did respond to other commands? I would read it as: issue command wait for it to return with result BANG, after 30 secs timeout, because there was no result returned And then finally gave up, due to to many tries. > This could be caused by a multitude of things, and it is very difficult > for me remotely to diagnose any of these: > > - Power supply issues (voltage ripple, not enough amps on that port, > shoddy or loose SATA power connector) It's a super-micro chassis, with 16 hotswap bays... only 11 are in use Could be power, but it's a relative new box. > - SATA cable issues (cable too long, possibly some broken copper within > the cable itself (very unlikely though), etc.) too long, might be. The sata cable runs the full width of a 19" server. > - SATA port (physical) problems; dust in connectors, etc. ???, I'll check, but the room it is in is reasonably clean. > - SSD-level issues. There are so many possibilities here (more than > on a MHDD) that it's almost impossible to list them all off: > -- Internal garbage collection mechanism (this is different than TRIM) > on drive may be overly aggressive and stalls all I/O to drive > during heavy GC. This would be classified as a firmware bug > -- Power circuitry on PCB may be flaky > -- Drive may have locked up hard due to other firmware bugs or some > form of very low-level electrical/electronic error > -- Internal SSD SATA + NAND flash I/O controller failure That was why I was asking if there was anybody else out there that ran into something similar with this type. > For those considering the remote possibility of interoperability issues > between the Corsair SSD and the AHCI controller -- it's possible, but > highly unlikely. The controller itself is an Intel ICH9, which FreeBSD has > excellent support for and is very reliable. So, the controller here is > probably not at fault. I imagine if there were incompatibilities of > this sort (between ICH9 and Corsair), we'd have heard about it. My idea. > I have seen many drives in my time (many means hundreds, no > exaggeration) "lock up" or fall off the bus, both on SCSI and SATA. > It's very difficult to troubleshoot these kinds of issues as I said, and > usually requires someone with extensive knowledge to figure it out. > General "Tier 1" Technical Support from companies do not have this level > of expertise, so don't expect that from Corsair. > > I look forward to seeing the output from the below 3 commands, as they > may provide more insights to what actually transpired. Whether or not > Corsair chose to implement these in the General Purpose Log area of > SMART is unknown, however. Furthermore, they may actually implement > them, but stick them in a non-common place (e.g. different GPLog > offsets), but PLEASE DO NOT go tinkering around with -l gplog,0xXX > values. > >>> * smartctl -l devstat /dev/whatever >>> * smartctl -l sataphy /dev/whatever >>> * smartctl -l ssd /dev/whatever It'll have to wait until later this evening, before I able to swap the disk back in the old box. Thanx for explaining, --WjW From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 19:01:31 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B65AA1065670; Wed, 1 Feb 2012 19:01:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 61C2D8FC08; Wed, 1 Feb 2012 19:01:31 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11J1UU8091064; Wed, 1 Feb 2012 19:01:30 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11J1UO9091056; Wed, 1 Feb 2012 19:01:30 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 19:01:30 GMT Message-Id: <201202011901.q11J1UO9091056@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 19:01:31 -0000 TB --- 2012-02-01 18:22:09 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 18:22:09 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-01 18:22:09 - cleaning the object tree TB --- 2012-02-01 18:22:18 - cvsupping the source tree TB --- 2012-02-01 18:22:18 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-01 18:22:46 - building world TB --- 2012-02-01 18:22:46 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 18:22:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 18:22:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 18:22:46 - SRCCONF=/dev/null TB --- 2012-02-01 18:22:46 - TARGET=mips TB --- 2012-02-01 18:22:46 - TARGET_ARCH=mips TB --- 2012-02-01 18:22:46 - TZ=UTC TB --- 2012-02-01 18:22:46 - __MAKE_CONF=/dev/null TB --- 2012-02-01 18:22:46 - cd /src TB --- 2012-02-01 18:22:46 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 18:22:47 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 18:59:09 UTC 2012 TB --- 2012-02-01 18:59:09 - cd /src/sys/mips/conf TB --- 2012-02-01 18:59:09 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 18:59:09 - building ADM5120 kernel TB --- 2012-02-01 18:59:09 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 18:59:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 18:59:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 18:59:09 - SRCCONF=/dev/null TB --- 2012-02-01 18:59:09 - TARGET=mips TB --- 2012-02-01 18:59:09 - TARGET_ARCH=mips TB --- 2012-02-01 18:59:09 - TZ=UTC TB --- 2012-02-01 18:59:09 - __MAKE_CONF=/dev/null TB --- 2012-02-01 18:59:09 - cd /src TB --- 2012-02-01 18:59:09 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 18:59:09 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 19:00:22 UTC 2012 TB --- 2012-02-01 19:00:22 - cd /src/sys/mips/conf TB --- 2012-02-01 19:00:22 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-01 19:00:22 - building ALCHEMY kernel TB --- 2012-02-01 19:00:22 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 19:00:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 19:00:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 19:00:22 - SRCCONF=/dev/null TB --- 2012-02-01 19:00:22 - TARGET=mips TB --- 2012-02-01 19:00:22 - TARGET_ARCH=mips TB --- 2012-02-01 19:00:22 - TZ=UTC TB --- 2012-02-01 19:00:22 - __MAKE_CONF=/dev/null TB --- 2012-02-01 19:00:22 - cd /src TB --- 2012-02-01 19:00:22 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Wed Feb 1 19:00:22 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 19:01:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 19:01:30 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-01 19:01:30 - 1755.39 user 371.26 system 2360.73 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 19:34:56 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 070E0106566C for ; Wed, 1 Feb 2012 19:34:56 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 87CC88FC08 for ; Wed, 1 Feb 2012 19:34:54 +0000 (UTC) Received: by eekb47 with SMTP id b47so481107eek.13 for ; Wed, 01 Feb 2012 11:34:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=1pGC8slT7ld3wwX23uMV/V7pBhuxSHKaj8yTBmrbOjE=; b=tPv2/Lku7cDcwMe2CSIlUKv6NDKQ+uImPiCdfInhg0B7Q6h2ClY3M+IJWDrhKdH7eJ 8wWDPIw+WSfRYiAzCGw4KgJ/8rry3CCXqOCZF2rCPUddUkY05TTzmhLjgT9WQTy3Noty B5iQNtcDy89YvBNomNHXeLYOtyad+XteVORZM= Received: by 10.14.28.16 with SMTP id f16mr1418090eea.121.1328124893659; Wed, 01 Feb 2012 11:34:53 -0800 (PST) Received: from mavbook2.mavhome.dp.ua (pc.mavhome.dp.ua. [212.86.226.226]) by mx.google.com with ESMTPS id b49sm102336036eec.9.2012.02.01.11.34.51 (version=SSLv3 cipher=OTHER); Wed, 01 Feb 2012 11:34:52 -0800 (PST) Sender: Alexander Motin Message-ID: <4F2993DA.2010108@FreeBSD.org> Date: Wed, 01 Feb 2012 21:34:50 +0200 From: Alexander Motin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111227 Thunderbird/9.0 MIME-Version: 1.0 To: Andrew Boyer References: <76687387-92D3-4EA5-AD39-3F6820B27DCD@averesystems.com> In-Reply-To: <76687387-92D3-4EA5-AD39-3F6820B27DCD@averesystems.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Stable Mailing List Subject: Re: Kernel panics under 8.2 due to ATA timeouts X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 19:34:56 -0000 Hi. On 01/30/12 22:46, Andrew Boyer wrote: > I have a system that appears to have a flaky SATA controller (one of the Intel ESB2 variants) and it seems to be exposing a weakness in the ATA driver (not using ATA_CAM). If a command with ATA_R_DIRECT set times out, the channel gets reinitialized, but from the soft interrupt context. It panics when it tries to sleep in ata_queue_request(). > > Timeouts work if ATA_R_DIRECT isn't set because in that case it uses a taskqueue to complete the request. > > Here is the backtrace: >> #0 kdb_enter (why=0xffffffff80962cfa "panic", msg=0xa
) at ../../../kern/subr_kdb.c:349 >> #1 0xffffffff805d6d0b in panic (fmt=Variable "fmt" is not available. >> ) at ../../../kern/kern_shutdown.c:689 >> #2 0xffffffff8061bc53 in sleepq_add (wchan=0xffffff00052c3e58, lock=0xffffff00052c3e38, wmesg=0xffffffff808fa213 "ATA request done", >> flags=1, queue=0) at ../../../kern/subr_sleepqueue.c:320 >> #3 0xffffffff80590c95 in _cv_timedwait (cvp=0xffffff00052c3e58, lock=0xffffff00052c3e38, timo=40000) at ../../../kern/kern_condvar.c:313 >> #4 0xffffffff805d61af in _sema_timedwait (sema=0xffffff00052c3e38, timo=40000, file=0xffffffff808fa1f6 "../../../dev/ata/ata-queue.c", >> line=118) at ../../../kern/kern_sema.c:123 >> #5 0xffffffff8028559f in ata_queue_request (request=0xffffff00052c3dc0) at ../../../dev/ata/ata-queue.c:117 >> #6 0xffffffff80286628 in ata_controlcmd (dev=0xffffff0002e83d00, command=239 '?', feature=Variable "feature" is not available. >> ) at ../../../dev/ata/ata-queue.c:153 >> #7 0xffffffff8027ffd3 in ata_setmode (dev=0xffffff0002e83d00) at ../../../dev/ata/ata-all.c:637 >> #8 0xffffffff802a0af9 in ad_init (dev=0xffffff0002e83d00) at ../../../dev/ata/ata-disk.c:405 >> #9 0xffffffff802a0c29 in ad_reinit (dev=0xffffff0002e83d00) at ../../../dev/ata/ata-disk.c:221 >> #10 0xffffffff80280cad in ata_reinit (dev=0xffffff0002902800) at ata_if.h:79 >> #11 0xffffffff802856c4 in ata_completed (context=Variable "context" is not available. >> ) at ../../../dev/ata/ata-queue.c:313 >> #12 0xffffffff80285ffb in ata_finish (request=0xffffff00054ec8c0) at ../../../dev/ata/ata-queue.c:265 >> #13 0xffffffff805ed419 in softclock (arg=Variable "arg" is not available. >> ) at ../../../kern/kern_timeout.c:430 > > This is very repeatable. I'm not sure what's the best fix - always use a taskqueue on timeouts? Don't reinit if direct commands fail? This is one of the most messy points of the old ata(4). Problem is that reinit implemented to work synchronously. It means that if some command caused timeout and started reinit, that reinit runs from the taskqueue, blocking it. As result, we can't use taskqueue for completion there and can't do reinit on one of reinit commands timeout. That is handled using ATA_STALL_QUEUE flag. I remember I've intentionally blocked new device detection on reinit to avoid problems with taskqueue there. What's about ATA_R_DIRECT, sorry, I don't remember why it is used there or why it is needed at all. It was done before me. The only place where I see it set except ataraid is ata_getparam(), that should be called only on initial bus probe. -- Alexander Motin From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 19:55:28 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58142106566B; Wed, 1 Feb 2012 19:55:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 021448FC08; Wed, 1 Feb 2012 19:55:27 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11JtRDc007980; Wed, 1 Feb 2012 19:55:27 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11JtR3K007973; Wed, 1 Feb 2012 19:55:27 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 19:55:27 GMT Message-Id: <201202011955.q11JtR3K007973@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 19:55:28 -0000 TB --- 2012-02-01 18:42:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 18:42:00 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-01 18:42:00 - cleaning the object tree TB --- 2012-02-01 18:42:27 - cvsupping the source tree TB --- 2012-02-01 18:42:27 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-01 18:42:43 - building world TB --- 2012-02-01 18:42:43 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 18:42:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 18:42:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 18:42:43 - SRCCONF=/dev/null TB --- 2012-02-01 18:42:43 - TARGET=powerpc TB --- 2012-02-01 18:42:43 - TARGET_ARCH=powerpc TB --- 2012-02-01 18:42:43 - TZ=UTC TB --- 2012-02-01 18:42:43 - __MAKE_CONF=/dev/null TB --- 2012-02-01 18:42:43 - cd /src TB --- 2012-02-01 18:42:43 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 18:42:43 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 19:27:32 UTC 2012 TB --- 2012-02-01 19:27:32 - generating LINT kernel config TB --- 2012-02-01 19:27:32 - cd /src/sys/powerpc/conf TB --- 2012-02-01 19:27:32 - /usr/bin/make -B LINT TB --- 2012-02-01 19:27:32 - cd /src/sys/powerpc/conf TB --- 2012-02-01 19:27:32 - /usr/sbin/config -m LINT TB --- 2012-02-01 19:27:32 - building LINT kernel TB --- 2012-02-01 19:27:32 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 19:27:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 19:27:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 19:27:32 - SRCCONF=/dev/null TB --- 2012-02-01 19:27:32 - TARGET=powerpc TB --- 2012-02-01 19:27:32 - TARGET_ARCH=powerpc TB --- 2012-02-01 19:27:32 - TZ=UTC TB --- 2012-02-01 19:27:32 - __MAKE_CONF=/dev/null TB --- 2012-02-01 19:27:32 - cd /src TB --- 2012-02-01 19:27:32 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Feb 1 19:27:32 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Feb 1 19:43:00 UTC 2012 TB --- 2012-02-01 19:43:00 - cd /src/sys/powerpc/conf TB --- 2012-02-01 19:43:00 - /usr/sbin/config -m GENERIC TB --- 2012-02-01 19:43:00 - building GENERIC kernel TB --- 2012-02-01 19:43:00 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 19:43:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 19:43:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 19:43:00 - SRCCONF=/dev/null TB --- 2012-02-01 19:43:00 - TARGET=powerpc TB --- 2012-02-01 19:43:00 - TARGET_ARCH=powerpc TB --- 2012-02-01 19:43:00 - TZ=UTC TB --- 2012-02-01 19:43:00 - __MAKE_CONF=/dev/null TB --- 2012-02-01 19:43:00 - cd /src TB --- 2012-02-01 19:43:00 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Feb 1 19:43:00 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Wed Feb 1 19:53:26 UTC 2012 TB --- 2012-02-01 19:53:26 - cd /src/sys/powerpc/conf TB --- 2012-02-01 19:53:26 - /usr/sbin/config -m MPC85XX TB --- 2012-02-01 19:53:26 - building MPC85XX kernel TB --- 2012-02-01 19:53:26 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 19:53:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 19:53:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 19:53:26 - SRCCONF=/dev/null TB --- 2012-02-01 19:53:26 - TARGET=powerpc TB --- 2012-02-01 19:53:26 - TARGET_ARCH=powerpc TB --- 2012-02-01 19:53:26 - TZ=UTC TB --- 2012-02-01 19:53:26 - __MAKE_CONF=/dev/null TB --- 2012-02-01 19:53:26 - cd /src TB --- 2012-02-01 19:53:26 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Wed Feb 1 19:53:26 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 19:55:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 19:55:27 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-01 19:55:27 - 3546.38 user 581.78 system 4406.55 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 19:57:02 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCD2A106566B for ; Wed, 1 Feb 2012 19:57:02 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 8743B8FC08 for ; Wed, 1 Feb 2012 19:57:02 +0000 (UTC) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.42]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id AF33FA7241C for ; Wed, 1 Feb 2012 14:56:59 -0500 (EST) Received: (qmail 11765 invoked from network); 1 Feb 2012 19:56:56 -0000 Received: by simscan 1.4.0 ppid: 1536, pid: 8172, t: 0.2408s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from unknown (HELO P9X79.tddhome) (tomdean@[24.113.112.30]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 1 Feb 2012 19:56:56 -0000 Message-ID: <4F299909.9020405@speakeasy.org> Date: Wed, 01 Feb 2012 11:56:57 -0800 From: "Thomas D. Dean" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20120126 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <4F284C04.9060608@speakeasy.org> <4F290331.4090907@gmail.com> In-Reply-To: <4F290331.4090907@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail3.sea5 X-Spam-Level: X-Spam-Status: No, score=0.9 required=8.0 tests=FORGED_RCVD_HELO, RATWARE_GECKO_BUILD autolearn=disabled version=3.0.4 Subject: Re: Freebsd.update 8.2 to 9.0 Success X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 19:57:02 -0000 On 02/01/12 01:17, Andrei Brezan wrote: > > Is that a typo? Yes, it was a typo. I know freebsd-update not freebsd.update and that works > only for REALEASE not STABLE. Look at my command line, (with the typo fixed) env UNAME_r=8.2-RELEASE ./freebsd-update upgrade -r 9.0 This made freebsd-update proceed as if it was a RELEASE and the upgrade succeeded. I always update STABLE with csup and make > buildworld/installworld as in handbook. > I normally use the '11 step program' as per the Makefile. I wanted to see if freebsd-update would do this. And, it does. In hind sight, I think cvsup and the '11 step program' would have been simpler. With freebsd-update, I had to manually edit a dozen, or so, files. Tom Dean From owner-freebsd-stable@FreeBSD.ORG Wed Feb 1 22:59:00 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 396011065670; Wed, 1 Feb 2012 22:59:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id BB7178FC0C; Wed, 1 Feb 2012 22:58:59 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q11MwxSd039521; Wed, 1 Feb 2012 22:58:59 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q11Mww66039506; Wed, 1 Feb 2012 22:58:58 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Feb 2012 22:58:58 GMT Message-Id: <201202012258.q11Mww66039506@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 22:59:00 -0000 TB --- 2012-02-01 22:10:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-01 22:10:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-01 22:10:00 - cleaning the object tree TB --- 2012-02-01 22:10:09 - cvsupping the source tree TB --- 2012-02-01 22:10:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-01 22:15:33 - building world TB --- 2012-02-01 22:15:33 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:15:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:15:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:15:33 - SRCCONF=/dev/null TB --- 2012-02-01 22:15:33 - TARGET=mips TB --- 2012-02-01 22:15:33 - TARGET_ARCH=mips TB --- 2012-02-01 22:15:33 - TZ=UTC TB --- 2012-02-01 22:15:33 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:15:33 - cd /src TB --- 2012-02-01 22:15:33 - /usr/bin/make -B buildworld >>> World build started on Wed Feb 1 22:15:34 UTC 2012 >>> 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 >>> World build completed on Wed Feb 1 22:52:10 UTC 2012 TB --- 2012-02-01 22:52:10 - cd /src/sys/mips/conf TB --- 2012-02-01 22:52:10 - /usr/sbin/config -m ADM5120 TB --- 2012-02-01 22:52:10 - building ADM5120 kernel TB --- 2012-02-01 22:52:10 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:52:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:52:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:52:10 - SRCCONF=/dev/null TB --- 2012-02-01 22:52:10 - TARGET=mips TB --- 2012-02-01 22:52:10 - TARGET_ARCH=mips TB --- 2012-02-01 22:52:10 - TZ=UTC TB --- 2012-02-01 22:52:10 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:52:10 - cd /src TB --- 2012-02-01 22:52:10 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Wed Feb 1 22:52:10 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Wed Feb 1 22:53:21 UTC 2012 TB --- 2012-02-01 22:53:21 - cd /src/sys/mips/conf TB --- 2012-02-01 22:53:21 - /usr/sbin/config -m IDT TB --- 2012-02-01 22:53:21 - building IDT kernel TB --- 2012-02-01 22:53:21 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:53:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:53:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:53:21 - SRCCONF=/dev/null TB --- 2012-02-01 22:53:21 - TARGET=mips TB --- 2012-02-01 22:53:21 - TARGET_ARCH=mips TB --- 2012-02-01 22:53:21 - TZ=UTC TB --- 2012-02-01 22:53:21 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:53:21 - cd /src TB --- 2012-02-01 22:53:21 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Wed Feb 1 22:53:21 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Wed Feb 1 22:54:57 UTC 2012 TB --- 2012-02-01 22:54:57 - cd /src/sys/mips/conf TB --- 2012-02-01 22:54:57 - /usr/sbin/config -m MALTA TB --- 2012-02-01 22:54:57 - building MALTA kernel TB --- 2012-02-01 22:54:57 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:54:57 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:54:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:54:57 - SRCCONF=/dev/null TB --- 2012-02-01 22:54:57 - TARGET=mips TB --- 2012-02-01 22:54:57 - TARGET_ARCH=mips TB --- 2012-02-01 22:54:57 - TZ=UTC TB --- 2012-02-01 22:54:57 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:54:57 - cd /src TB --- 2012-02-01 22:54:57 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Wed Feb 1 22:54:57 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Wed Feb 1 22:56:23 UTC 2012 TB --- 2012-02-01 22:56:23 - cd /src/sys/mips/conf TB --- 2012-02-01 22:56:23 - /usr/sbin/config -m QEMU TB --- 2012-02-01 22:56:23 - building QEMU kernel TB --- 2012-02-01 22:56:23 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:56:23 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:56:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:56:23 - SRCCONF=/dev/null TB --- 2012-02-01 22:56:23 - TARGET=mips TB --- 2012-02-01 22:56:23 - TARGET_ARCH=mips TB --- 2012-02-01 22:56:23 - TZ=UTC TB --- 2012-02-01 22:56:23 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:56:23 - cd /src TB --- 2012-02-01 22:56:23 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Wed Feb 1 22:56:23 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Wed Feb 1 22:57:36 UTC 2012 TB --- 2012-02-01 22:57:36 - cd /src/sys/mips/conf TB --- 2012-02-01 22:57:36 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-01 22:57:36 - building SENTRY5 kernel TB --- 2012-02-01 22:57:36 - CROSS_BUILD_TESTING=YES TB --- 2012-02-01 22:57:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-01 22:57:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-01 22:57:36 - SRCCONF=/dev/null TB --- 2012-02-01 22:57:36 - TARGET=mips TB --- 2012-02-01 22:57:36 - TARGET_ARCH=mips TB --- 2012-02-01 22:57:36 - TZ=UTC TB --- 2012-02-01 22:57:36 - __MAKE_CONF=/dev/null TB --- 2012-02-01 22:57:36 - cd /src TB --- 2012-02-01 22:57:36 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Wed Feb 1 22:57:36 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-01 22:58:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-01 22:58:58 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-01 22:58:58 - 1980.21 user 430.27 system 2937.99 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 01:11:50 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1481B106564A; Thu, 2 Feb 2012 01:11:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id B32568FC08; Thu, 2 Feb 2012 01:11:49 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q121BnZP069191; Thu, 2 Feb 2012 01:11:49 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q121BmJo069075; Thu, 2 Feb 2012 01:11:48 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 01:11:48 GMT Message-Id: <201202020111.q121BmJo069075@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 01:11:50 -0000 TB --- 2012-02-02 00:33:17 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 00:33:17 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-02 00:33:17 - cleaning the object tree TB --- 2012-02-02 00:33:25 - cvsupping the source tree TB --- 2012-02-02 00:33:25 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-02 00:33:38 - building world TB --- 2012-02-02 00:33:38 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 00:33:38 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 00:33:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 00:33:38 - SRCCONF=/dev/null TB --- 2012-02-02 00:33:38 - TARGET=mips TB --- 2012-02-02 00:33:38 - TARGET_ARCH=mips TB --- 2012-02-02 00:33:38 - TZ=UTC TB --- 2012-02-02 00:33:38 - __MAKE_CONF=/dev/null TB --- 2012-02-02 00:33:38 - cd /src TB --- 2012-02-02 00:33:38 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 00:33:39 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 01:09:27 UTC 2012 TB --- 2012-02-02 01:09:27 - cd /src/sys/mips/conf TB --- 2012-02-02 01:09:27 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 01:09:27 - building ADM5120 kernel TB --- 2012-02-02 01:09:27 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 01:09:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 01:09:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 01:09:27 - SRCCONF=/dev/null TB --- 2012-02-02 01:09:27 - TARGET=mips TB --- 2012-02-02 01:09:27 - TARGET_ARCH=mips TB --- 2012-02-02 01:09:27 - TZ=UTC TB --- 2012-02-02 01:09:27 - __MAKE_CONF=/dev/null TB --- 2012-02-02 01:09:27 - cd /src TB --- 2012-02-02 01:09:27 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 01:09:27 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 01:10:40 UTC 2012 TB --- 2012-02-02 01:10:40 - cd /src/sys/mips/conf TB --- 2012-02-02 01:10:40 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-02 01:10:40 - building ALCHEMY kernel TB --- 2012-02-02 01:10:40 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 01:10:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 01:10:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 01:10:40 - SRCCONF=/dev/null TB --- 2012-02-02 01:10:40 - TARGET=mips TB --- 2012-02-02 01:10:40 - TARGET_ARCH=mips TB --- 2012-02-02 01:10:40 - TZ=UTC TB --- 2012-02-02 01:10:40 - __MAKE_CONF=/dev/null TB --- 2012-02-02 01:10:40 - cd /src TB --- 2012-02-02 01:10:40 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Thu Feb 2 01:10:40 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 01:11:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 01:11:48 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-02 01:11:48 - 1742.50 user 356.84 system 2311.07 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 02:05:48 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A0FC106566B; Thu, 2 Feb 2012 02:05:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id BA3E08FC08; Thu, 2 Feb 2012 02:05:47 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q1225lj9017652; Thu, 2 Feb 2012 02:05:47 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q1225lMe017651; Thu, 2 Feb 2012 02:05:47 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 02:05:47 GMT Message-Id: <201202020205.q1225lMe017651@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 02:05:48 -0000 TB --- 2012-02-02 00:51:45 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 00:51:45 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-02 00:51:45 - cleaning the object tree TB --- 2012-02-02 00:52:16 - cvsupping the source tree TB --- 2012-02-02 00:52:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-02 00:52:26 - building world TB --- 2012-02-02 00:52:26 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 00:52:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 00:52:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 00:52:26 - SRCCONF=/dev/null TB --- 2012-02-02 00:52:26 - TARGET=powerpc TB --- 2012-02-02 00:52:26 - TARGET_ARCH=powerpc TB --- 2012-02-02 00:52:26 - TZ=UTC TB --- 2012-02-02 00:52:26 - __MAKE_CONF=/dev/null TB --- 2012-02-02 00:52:26 - cd /src TB --- 2012-02-02 00:52:26 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 00:52:27 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 01:37:53 UTC 2012 TB --- 2012-02-02 01:37:53 - generating LINT kernel config TB --- 2012-02-02 01:37:53 - cd /src/sys/powerpc/conf TB --- 2012-02-02 01:37:53 - /usr/bin/make -B LINT TB --- 2012-02-02 01:37:53 - cd /src/sys/powerpc/conf TB --- 2012-02-02 01:37:53 - /usr/sbin/config -m LINT TB --- 2012-02-02 01:37:53 - building LINT kernel TB --- 2012-02-02 01:37:53 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 01:37:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 01:37:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 01:37:53 - SRCCONF=/dev/null TB --- 2012-02-02 01:37:53 - TARGET=powerpc TB --- 2012-02-02 01:37:53 - TARGET_ARCH=powerpc TB --- 2012-02-02 01:37:53 - TZ=UTC TB --- 2012-02-02 01:37:53 - __MAKE_CONF=/dev/null TB --- 2012-02-02 01:37:53 - cd /src TB --- 2012-02-02 01:37:53 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 2 01:37:53 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Thu Feb 2 01:53:22 UTC 2012 TB --- 2012-02-02 01:53:22 - cd /src/sys/powerpc/conf TB --- 2012-02-02 01:53:22 - /usr/sbin/config -m GENERIC TB --- 2012-02-02 01:53:22 - building GENERIC kernel TB --- 2012-02-02 01:53:22 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 01:53:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 01:53:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 01:53:22 - SRCCONF=/dev/null TB --- 2012-02-02 01:53:22 - TARGET=powerpc TB --- 2012-02-02 01:53:22 - TARGET_ARCH=powerpc TB --- 2012-02-02 01:53:22 - TZ=UTC TB --- 2012-02-02 01:53:22 - __MAKE_CONF=/dev/null TB --- 2012-02-02 01:53:22 - cd /src TB --- 2012-02-02 01:53:22 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Feb 2 01:53:22 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Thu Feb 2 02:03:46 UTC 2012 TB --- 2012-02-02 02:03:46 - cd /src/sys/powerpc/conf TB --- 2012-02-02 02:03:46 - /usr/sbin/config -m MPC85XX TB --- 2012-02-02 02:03:46 - building MPC85XX kernel TB --- 2012-02-02 02:03:46 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 02:03:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 02:03:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 02:03:46 - SRCCONF=/dev/null TB --- 2012-02-02 02:03:46 - TARGET=powerpc TB --- 2012-02-02 02:03:46 - TARGET_ARCH=powerpc TB --- 2012-02-02 02:03:46 - TZ=UTC TB --- 2012-02-02 02:03:46 - __MAKE_CONF=/dev/null TB --- 2012-02-02 02:03:46 - cd /src TB --- 2012-02-02 02:03:46 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Thu Feb 2 02:03:46 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 02:05:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 02:05:47 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-02 02:05:47 - 3536.14 user 567.62 system 4441.80 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 05:08:28 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6673106566B; Thu, 2 Feb 2012 05:08:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 457438FC0C; Thu, 2 Feb 2012 05:08:28 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q1258RJb098096; Thu, 2 Feb 2012 05:08:27 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q1258R6Z098068; Thu, 2 Feb 2012 05:08:27 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 05:08:27 GMT Message-Id: <201202020508.q1258R6Z098068@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 05:08:28 -0000 TB --- 2012-02-02 04:20:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 04:20:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-02 04:20:00 - cleaning the object tree TB --- 2012-02-02 04:20:09 - cvsupping the source tree TB --- 2012-02-02 04:20:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-02 04:25:34 - building world TB --- 2012-02-02 04:25:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 04:25:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 04:25:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 04:25:34 - SRCCONF=/dev/null TB --- 2012-02-02 04:25:34 - TARGET=mips TB --- 2012-02-02 04:25:34 - TARGET_ARCH=mips TB --- 2012-02-02 04:25:34 - TZ=UTC TB --- 2012-02-02 04:25:34 - __MAKE_CONF=/dev/null TB --- 2012-02-02 04:25:34 - cd /src TB --- 2012-02-02 04:25:34 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 04:25:34 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 05:01:47 UTC 2012 TB --- 2012-02-02 05:01:47 - cd /src/sys/mips/conf TB --- 2012-02-02 05:01:47 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 05:01:47 - building ADM5120 kernel TB --- 2012-02-02 05:01:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 05:01:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 05:01:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 05:01:47 - SRCCONF=/dev/null TB --- 2012-02-02 05:01:47 - TARGET=mips TB --- 2012-02-02 05:01:47 - TARGET_ARCH=mips TB --- 2012-02-02 05:01:47 - TZ=UTC TB --- 2012-02-02 05:01:47 - __MAKE_CONF=/dev/null TB --- 2012-02-02 05:01:47 - cd /src TB --- 2012-02-02 05:01:47 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 05:01:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 05:02:56 UTC 2012 TB --- 2012-02-02 05:02:56 - cd /src/sys/mips/conf TB --- 2012-02-02 05:02:56 - /usr/sbin/config -m IDT TB --- 2012-02-02 05:02:56 - building IDT kernel TB --- 2012-02-02 05:02:56 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 05:02:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 05:02:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 05:02:56 - SRCCONF=/dev/null TB --- 2012-02-02 05:02:56 - TARGET=mips TB --- 2012-02-02 05:02:56 - TARGET_ARCH=mips TB --- 2012-02-02 05:02:56 - TZ=UTC TB --- 2012-02-02 05:02:56 - __MAKE_CONF=/dev/null TB --- 2012-02-02 05:02:56 - cd /src TB --- 2012-02-02 05:02:56 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Thu Feb 2 05:02:56 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Thu Feb 2 05:04:30 UTC 2012 TB --- 2012-02-02 05:04:30 - cd /src/sys/mips/conf TB --- 2012-02-02 05:04:30 - /usr/sbin/config -m MALTA TB --- 2012-02-02 05:04:30 - building MALTA kernel TB --- 2012-02-02 05:04:30 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 05:04:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 05:04:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 05:04:30 - SRCCONF=/dev/null TB --- 2012-02-02 05:04:30 - TARGET=mips TB --- 2012-02-02 05:04:30 - TARGET_ARCH=mips TB --- 2012-02-02 05:04:30 - TZ=UTC TB --- 2012-02-02 05:04:30 - __MAKE_CONF=/dev/null TB --- 2012-02-02 05:04:30 - cd /src TB --- 2012-02-02 05:04:30 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Thu Feb 2 05:04:30 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Thu Feb 2 05:05:56 UTC 2012 TB --- 2012-02-02 05:05:56 - cd /src/sys/mips/conf TB --- 2012-02-02 05:05:56 - /usr/sbin/config -m QEMU TB --- 2012-02-02 05:05:56 - building QEMU kernel TB --- 2012-02-02 05:05:56 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 05:05:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 05:05:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 05:05:56 - SRCCONF=/dev/null TB --- 2012-02-02 05:05:56 - TARGET=mips TB --- 2012-02-02 05:05:56 - TARGET_ARCH=mips TB --- 2012-02-02 05:05:56 - TZ=UTC TB --- 2012-02-02 05:05:56 - __MAKE_CONF=/dev/null TB --- 2012-02-02 05:05:56 - cd /src TB --- 2012-02-02 05:05:56 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Thu Feb 2 05:05:56 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Thu Feb 2 05:07:08 UTC 2012 TB --- 2012-02-02 05:07:08 - cd /src/sys/mips/conf TB --- 2012-02-02 05:07:08 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-02 05:07:08 - building SENTRY5 kernel TB --- 2012-02-02 05:07:08 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 05:07:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 05:07:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 05:07:08 - SRCCONF=/dev/null TB --- 2012-02-02 05:07:08 - TARGET=mips TB --- 2012-02-02 05:07:08 - TARGET_ARCH=mips TB --- 2012-02-02 05:07:08 - TZ=UTC TB --- 2012-02-02 05:07:08 - __MAKE_CONF=/dev/null TB --- 2012-02-02 05:07:08 - cd /src TB --- 2012-02-02 05:07:08 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Thu Feb 2 05:07:08 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 05:08:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 05:08:27 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-02 05:08:27 - 1970.36 user 417.73 system 2907.12 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 07:15:33 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20E901065670; Thu, 2 Feb 2012 07:15:33 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id BBB438FC0A; Thu, 2 Feb 2012 07:15:32 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q127FWt4070683; Thu, 2 Feb 2012 07:15:32 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q127FVro070634; Thu, 2 Feb 2012 07:15:31 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 07:15:31 GMT Message-Id: <201202020715.q127FVro070634@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 07:15:33 -0000 TB --- 2012-02-02 06:36:28 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 06:36:28 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-02 06:36:28 - cleaning the object tree TB --- 2012-02-02 06:36:36 - cvsupping the source tree TB --- 2012-02-02 06:36:36 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-02 06:36:51 - building world TB --- 2012-02-02 06:36:51 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 06:36:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 06:36:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 06:36:51 - SRCCONF=/dev/null TB --- 2012-02-02 06:36:51 - TARGET=mips TB --- 2012-02-02 06:36:51 - TARGET_ARCH=mips TB --- 2012-02-02 06:36:51 - TZ=UTC TB --- 2012-02-02 06:36:51 - __MAKE_CONF=/dev/null TB --- 2012-02-02 06:36:51 - cd /src TB --- 2012-02-02 06:36:51 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 06:36:52 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 07:13:11 UTC 2012 TB --- 2012-02-02 07:13:11 - cd /src/sys/mips/conf TB --- 2012-02-02 07:13:11 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 07:13:11 - building ADM5120 kernel TB --- 2012-02-02 07:13:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 07:13:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 07:13:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 07:13:11 - SRCCONF=/dev/null TB --- 2012-02-02 07:13:11 - TARGET=mips TB --- 2012-02-02 07:13:11 - TARGET_ARCH=mips TB --- 2012-02-02 07:13:11 - TZ=UTC TB --- 2012-02-02 07:13:11 - __MAKE_CONF=/dev/null TB --- 2012-02-02 07:13:11 - cd /src TB --- 2012-02-02 07:13:11 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 07:13:11 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 07:14:23 UTC 2012 TB --- 2012-02-02 07:14:23 - cd /src/sys/mips/conf TB --- 2012-02-02 07:14:23 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-02 07:14:23 - building ALCHEMY kernel TB --- 2012-02-02 07:14:23 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 07:14:23 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 07:14:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 07:14:23 - SRCCONF=/dev/null TB --- 2012-02-02 07:14:23 - TARGET=mips TB --- 2012-02-02 07:14:23 - TARGET_ARCH=mips TB --- 2012-02-02 07:14:23 - TZ=UTC TB --- 2012-02-02 07:14:23 - __MAKE_CONF=/dev/null TB --- 2012-02-02 07:14:23 - cd /src TB --- 2012-02-02 07:14:23 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Thu Feb 2 07:14:23 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 07:15:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 07:15:31 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-02 07:15:31 - 1754.43 user 369.40 system 2343.27 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 08:16:36 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B788106566B; Thu, 2 Feb 2012 08:16:36 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 12C5D8FC08; Thu, 2 Feb 2012 08:16:35 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q128GZOa088694; Thu, 2 Feb 2012 08:16:35 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q128GYYV088575; Thu, 2 Feb 2012 08:16:34 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 08:16:34 GMT Message-Id: <201202020816.q128GYYV088575@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 08:16:36 -0000 TB --- 2012-02-02 07:01:25 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 07:01:25 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-02 07:01:25 - cleaning the object tree TB --- 2012-02-02 07:01:54 - cvsupping the source tree TB --- 2012-02-02 07:01:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-02 07:02:47 - building world TB --- 2012-02-02 07:02:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 07:02:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 07:02:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 07:02:47 - SRCCONF=/dev/null TB --- 2012-02-02 07:02:47 - TARGET=powerpc TB --- 2012-02-02 07:02:47 - TARGET_ARCH=powerpc TB --- 2012-02-02 07:02:47 - TZ=UTC TB --- 2012-02-02 07:02:47 - __MAKE_CONF=/dev/null TB --- 2012-02-02 07:02:47 - cd /src TB --- 2012-02-02 07:02:47 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 07:02:47 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 07:48:50 UTC 2012 TB --- 2012-02-02 07:48:50 - generating LINT kernel config TB --- 2012-02-02 07:48:50 - cd /src/sys/powerpc/conf TB --- 2012-02-02 07:48:50 - /usr/bin/make -B LINT TB --- 2012-02-02 07:48:50 - cd /src/sys/powerpc/conf TB --- 2012-02-02 07:48:50 - /usr/sbin/config -m LINT TB --- 2012-02-02 07:48:50 - building LINT kernel TB --- 2012-02-02 07:48:50 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 07:48:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 07:48:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 07:48:50 - SRCCONF=/dev/null TB --- 2012-02-02 07:48:50 - TARGET=powerpc TB --- 2012-02-02 07:48:50 - TARGET_ARCH=powerpc TB --- 2012-02-02 07:48:50 - TZ=UTC TB --- 2012-02-02 07:48:50 - __MAKE_CONF=/dev/null TB --- 2012-02-02 07:48:50 - cd /src TB --- 2012-02-02 07:48:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 2 07:48:50 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Thu Feb 2 08:04:13 UTC 2012 TB --- 2012-02-02 08:04:13 - cd /src/sys/powerpc/conf TB --- 2012-02-02 08:04:13 - /usr/sbin/config -m GENERIC TB --- 2012-02-02 08:04:13 - building GENERIC kernel TB --- 2012-02-02 08:04:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 08:04:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 08:04:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 08:04:13 - SRCCONF=/dev/null TB --- 2012-02-02 08:04:13 - TARGET=powerpc TB --- 2012-02-02 08:04:13 - TARGET_ARCH=powerpc TB --- 2012-02-02 08:04:13 - TZ=UTC TB --- 2012-02-02 08:04:13 - __MAKE_CONF=/dev/null TB --- 2012-02-02 08:04:13 - cd /src TB --- 2012-02-02 08:04:13 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Feb 2 08:04:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Thu Feb 2 08:14:34 UTC 2012 TB --- 2012-02-02 08:14:34 - cd /src/sys/powerpc/conf TB --- 2012-02-02 08:14:34 - /usr/sbin/config -m MPC85XX TB --- 2012-02-02 08:14:34 - building MPC85XX kernel TB --- 2012-02-02 08:14:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 08:14:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 08:14:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 08:14:34 - SRCCONF=/dev/null TB --- 2012-02-02 08:14:34 - TARGET=powerpc TB --- 2012-02-02 08:14:34 - TARGET_ARCH=powerpc TB --- 2012-02-02 08:14:34 - TZ=UTC TB --- 2012-02-02 08:14:34 - __MAKE_CONF=/dev/null TB --- 2012-02-02 08:14:34 - cd /src TB --- 2012-02-02 08:14:34 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Thu Feb 2 08:14:34 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 08:16:34 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 08:16:34 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-02 08:16:34 - 3550.87 user 575.41 system 4509.58 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 11:19:40 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04D0D106566B; Thu, 2 Feb 2012 11:19:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 843F88FC14; Thu, 2 Feb 2012 11:19:39 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12BJdId084728; Thu, 2 Feb 2012 11:19:39 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12BJcBI084617; Thu, 2 Feb 2012 11:19:38 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 11:19:38 GMT Message-Id: <201202021119.q12BJcBI084617@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 11:19:40 -0000 TB --- 2012-02-02 10:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 10:30:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-02 10:30:00 - cleaning the object tree TB --- 2012-02-02 10:30:08 - cvsupping the source tree TB --- 2012-02-02 10:30:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-02 10:36:11 - building world TB --- 2012-02-02 10:36:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 10:36:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 10:36:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 10:36:11 - SRCCONF=/dev/null TB --- 2012-02-02 10:36:11 - TARGET=mips TB --- 2012-02-02 10:36:11 - TARGET_ARCH=mips TB --- 2012-02-02 10:36:11 - TZ=UTC TB --- 2012-02-02 10:36:11 - __MAKE_CONF=/dev/null TB --- 2012-02-02 10:36:11 - cd /src TB --- 2012-02-02 10:36:11 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 10:36:12 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 11:12:49 UTC 2012 TB --- 2012-02-02 11:12:49 - cd /src/sys/mips/conf TB --- 2012-02-02 11:12:49 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 11:12:49 - building ADM5120 kernel TB --- 2012-02-02 11:12:49 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 11:12:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 11:12:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 11:12:49 - SRCCONF=/dev/null TB --- 2012-02-02 11:12:49 - TARGET=mips TB --- 2012-02-02 11:12:49 - TARGET_ARCH=mips TB --- 2012-02-02 11:12:49 - TZ=UTC TB --- 2012-02-02 11:12:49 - __MAKE_CONF=/dev/null TB --- 2012-02-02 11:12:49 - cd /src TB --- 2012-02-02 11:12:49 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 11:12:49 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 11:14:01 UTC 2012 TB --- 2012-02-02 11:14:01 - cd /src/sys/mips/conf TB --- 2012-02-02 11:14:01 - /usr/sbin/config -m IDT TB --- 2012-02-02 11:14:01 - building IDT kernel TB --- 2012-02-02 11:14:01 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 11:14:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 11:14:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 11:14:01 - SRCCONF=/dev/null TB --- 2012-02-02 11:14:01 - TARGET=mips TB --- 2012-02-02 11:14:01 - TARGET_ARCH=mips TB --- 2012-02-02 11:14:01 - TZ=UTC TB --- 2012-02-02 11:14:01 - __MAKE_CONF=/dev/null TB --- 2012-02-02 11:14:01 - cd /src TB --- 2012-02-02 11:14:01 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Thu Feb 2 11:14:01 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Thu Feb 2 11:15:37 UTC 2012 TB --- 2012-02-02 11:15:37 - cd /src/sys/mips/conf TB --- 2012-02-02 11:15:37 - /usr/sbin/config -m MALTA TB --- 2012-02-02 11:15:37 - building MALTA kernel TB --- 2012-02-02 11:15:37 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 11:15:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 11:15:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 11:15:37 - SRCCONF=/dev/null TB --- 2012-02-02 11:15:37 - TARGET=mips TB --- 2012-02-02 11:15:37 - TARGET_ARCH=mips TB --- 2012-02-02 11:15:37 - TZ=UTC TB --- 2012-02-02 11:15:37 - __MAKE_CONF=/dev/null TB --- 2012-02-02 11:15:37 - cd /src TB --- 2012-02-02 11:15:37 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Thu Feb 2 11:15:37 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Thu Feb 2 11:17:03 UTC 2012 TB --- 2012-02-02 11:17:03 - cd /src/sys/mips/conf TB --- 2012-02-02 11:17:03 - /usr/sbin/config -m QEMU TB --- 2012-02-02 11:17:03 - building QEMU kernel TB --- 2012-02-02 11:17:03 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 11:17:03 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 11:17:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 11:17:03 - SRCCONF=/dev/null TB --- 2012-02-02 11:17:03 - TARGET=mips TB --- 2012-02-02 11:17:03 - TARGET_ARCH=mips TB --- 2012-02-02 11:17:03 - TZ=UTC TB --- 2012-02-02 11:17:03 - __MAKE_CONF=/dev/null TB --- 2012-02-02 11:17:03 - cd /src TB --- 2012-02-02 11:17:03 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Thu Feb 2 11:17:04 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Thu Feb 2 11:18:17 UTC 2012 TB --- 2012-02-02 11:18:17 - cd /src/sys/mips/conf TB --- 2012-02-02 11:18:17 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-02 11:18:17 - building SENTRY5 kernel TB --- 2012-02-02 11:18:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 11:18:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 11:18:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 11:18:17 - SRCCONF=/dev/null TB --- 2012-02-02 11:18:17 - TARGET=mips TB --- 2012-02-02 11:18:17 - TARGET_ARCH=mips TB --- 2012-02-02 11:18:17 - TZ=UTC TB --- 2012-02-02 11:18:17 - __MAKE_CONF=/dev/null TB --- 2012-02-02 11:18:17 - cd /src TB --- 2012-02-02 11:18:17 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Thu Feb 2 11:18:17 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 11:19:38 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 11:19:38 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-02 11:19:38 - 1984.56 user 428.13 system 2978.13 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 13:26:26 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 941031065673; Thu, 2 Feb 2012 13:26:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 3A0FB8FC14; Thu, 2 Feb 2012 13:26:26 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12DQPYA029888; Thu, 2 Feb 2012 13:26:25 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12DQP1N029854; Thu, 2 Feb 2012 13:26:25 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 13:26:25 GMT Message-Id: <201202021326.q12DQP1N029854@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 13:26:26 -0000 TB --- 2012-02-02 12:47:17 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 12:47:17 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-02 12:47:17 - cleaning the object tree TB --- 2012-02-02 12:47:25 - cvsupping the source tree TB --- 2012-02-02 12:47:25 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-02 12:47:36 - building world TB --- 2012-02-02 12:47:36 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 12:47:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 12:47:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 12:47:36 - SRCCONF=/dev/null TB --- 2012-02-02 12:47:36 - TARGET=mips TB --- 2012-02-02 12:47:36 - TARGET_ARCH=mips TB --- 2012-02-02 12:47:36 - TZ=UTC TB --- 2012-02-02 12:47:36 - __MAKE_CONF=/dev/null TB --- 2012-02-02 12:47:36 - cd /src TB --- 2012-02-02 12:47:36 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 12:47:37 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 13:24:04 UTC 2012 TB --- 2012-02-02 13:24:04 - cd /src/sys/mips/conf TB --- 2012-02-02 13:24:04 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 13:24:04 - building ADM5120 kernel TB --- 2012-02-02 13:24:04 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 13:24:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 13:24:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 13:24:04 - SRCCONF=/dev/null TB --- 2012-02-02 13:24:04 - TARGET=mips TB --- 2012-02-02 13:24:04 - TARGET_ARCH=mips TB --- 2012-02-02 13:24:04 - TZ=UTC TB --- 2012-02-02 13:24:04 - __MAKE_CONF=/dev/null TB --- 2012-02-02 13:24:04 - cd /src TB --- 2012-02-02 13:24:04 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 13:24:05 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 13:25:17 UTC 2012 TB --- 2012-02-02 13:25:17 - cd /src/sys/mips/conf TB --- 2012-02-02 13:25:17 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-02 13:25:17 - building ALCHEMY kernel TB --- 2012-02-02 13:25:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 13:25:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 13:25:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 13:25:17 - SRCCONF=/dev/null TB --- 2012-02-02 13:25:17 - TARGET=mips TB --- 2012-02-02 13:25:17 - TARGET_ARCH=mips TB --- 2012-02-02 13:25:17 - TZ=UTC TB --- 2012-02-02 13:25:17 - __MAKE_CONF=/dev/null TB --- 2012-02-02 13:25:17 - cd /src TB --- 2012-02-02 13:25:17 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Thu Feb 2 13:25:17 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 13:26:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 13:26:25 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-02 13:26:25 - 1758.25 user 367.66 system 2347.64 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 14:35:31 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED1BF1065673; Thu, 2 Feb 2012 14:35:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 90B3C8FC19; Thu, 2 Feb 2012 14:35:31 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12EZUui077742; Thu, 2 Feb 2012 14:35:31 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12EZUBa077500; Thu, 2 Feb 2012 14:35:30 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 14:35:30 GMT Message-Id: <201202021435.q12EZUBa077500@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 14:35:32 -0000 TB --- 2012-02-02 13:19:46 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 13:19:46 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-02 13:19:46 - cleaning the object tree TB --- 2012-02-02 13:20:18 - cvsupping the source tree TB --- 2012-02-02 13:20:18 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-02 13:21:07 - building world TB --- 2012-02-02 13:21:07 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 13:21:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 13:21:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 13:21:07 - SRCCONF=/dev/null TB --- 2012-02-02 13:21:07 - TARGET=powerpc TB --- 2012-02-02 13:21:07 - TARGET_ARCH=powerpc TB --- 2012-02-02 13:21:07 - TZ=UTC TB --- 2012-02-02 13:21:07 - __MAKE_CONF=/dev/null TB --- 2012-02-02 13:21:07 - cd /src TB --- 2012-02-02 13:21:07 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 13:21:08 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 14:07:30 UTC 2012 TB --- 2012-02-02 14:07:30 - generating LINT kernel config TB --- 2012-02-02 14:07:30 - cd /src/sys/powerpc/conf TB --- 2012-02-02 14:07:30 - /usr/bin/make -B LINT TB --- 2012-02-02 14:07:30 - cd /src/sys/powerpc/conf TB --- 2012-02-02 14:07:30 - /usr/sbin/config -m LINT TB --- 2012-02-02 14:07:30 - building LINT kernel TB --- 2012-02-02 14:07:30 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 14:07:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 14:07:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 14:07:30 - SRCCONF=/dev/null TB --- 2012-02-02 14:07:30 - TARGET=powerpc TB --- 2012-02-02 14:07:30 - TARGET_ARCH=powerpc TB --- 2012-02-02 14:07:30 - TZ=UTC TB --- 2012-02-02 14:07:30 - __MAKE_CONF=/dev/null TB --- 2012-02-02 14:07:30 - cd /src TB --- 2012-02-02 14:07:30 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 2 14:07:30 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Thu Feb 2 14:23:05 UTC 2012 TB --- 2012-02-02 14:23:05 - cd /src/sys/powerpc/conf TB --- 2012-02-02 14:23:05 - /usr/sbin/config -m GENERIC TB --- 2012-02-02 14:23:05 - building GENERIC kernel TB --- 2012-02-02 14:23:05 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 14:23:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 14:23:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 14:23:05 - SRCCONF=/dev/null TB --- 2012-02-02 14:23:05 - TARGET=powerpc TB --- 2012-02-02 14:23:05 - TARGET_ARCH=powerpc TB --- 2012-02-02 14:23:05 - TZ=UTC TB --- 2012-02-02 14:23:05 - __MAKE_CONF=/dev/null TB --- 2012-02-02 14:23:05 - cd /src TB --- 2012-02-02 14:23:05 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Feb 2 14:23:05 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Thu Feb 2 14:33:29 UTC 2012 TB --- 2012-02-02 14:33:29 - cd /src/sys/powerpc/conf TB --- 2012-02-02 14:33:29 - /usr/sbin/config -m MPC85XX TB --- 2012-02-02 14:33:29 - building MPC85XX kernel TB --- 2012-02-02 14:33:29 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 14:33:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 14:33:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 14:33:29 - SRCCONF=/dev/null TB --- 2012-02-02 14:33:29 - TARGET=powerpc TB --- 2012-02-02 14:33:29 - TARGET_ARCH=powerpc TB --- 2012-02-02 14:33:29 - TZ=UTC TB --- 2012-02-02 14:33:29 - __MAKE_CONF=/dev/null TB --- 2012-02-02 14:33:29 - cd /src TB --- 2012-02-02 14:33:29 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Thu Feb 2 14:33:29 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 14:35:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 14:35:30 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-02 14:35:30 - 3550.11 user 583.95 system 4543.05 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 17:29:04 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 623E11065673; Thu, 2 Feb 2012 17:29:04 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id E1AC68FC13; Thu, 2 Feb 2012 17:29:03 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12HT3s1052745; Thu, 2 Feb 2012 17:29:03 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12HT34U052717; Thu, 2 Feb 2012 17:29:03 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 17:29:03 GMT Message-Id: <201202021729.q12HT34U052717@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 17:29:04 -0000 TB --- 2012-02-02 16:40:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 16:40:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-02 16:40:00 - cleaning the object tree TB --- 2012-02-02 16:40:07 - cvsupping the source tree TB --- 2012-02-02 16:40:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-02 16:45:34 - building world TB --- 2012-02-02 16:45:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 16:45:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 16:45:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 16:45:34 - SRCCONF=/dev/null TB --- 2012-02-02 16:45:34 - TARGET=mips TB --- 2012-02-02 16:45:34 - TARGET_ARCH=mips TB --- 2012-02-02 16:45:34 - TZ=UTC TB --- 2012-02-02 16:45:34 - __MAKE_CONF=/dev/null TB --- 2012-02-02 16:45:34 - cd /src TB --- 2012-02-02 16:45:34 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 16:45:34 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 17:22:13 UTC 2012 TB --- 2012-02-02 17:22:13 - cd /src/sys/mips/conf TB --- 2012-02-02 17:22:13 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 17:22:13 - building ADM5120 kernel TB --- 2012-02-02 17:22:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 17:22:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 17:22:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 17:22:13 - SRCCONF=/dev/null TB --- 2012-02-02 17:22:13 - TARGET=mips TB --- 2012-02-02 17:22:13 - TARGET_ARCH=mips TB --- 2012-02-02 17:22:13 - TZ=UTC TB --- 2012-02-02 17:22:13 - __MAKE_CONF=/dev/null TB --- 2012-02-02 17:22:13 - cd /src TB --- 2012-02-02 17:22:13 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 17:22:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 17:23:24 UTC 2012 TB --- 2012-02-02 17:23:24 - cd /src/sys/mips/conf TB --- 2012-02-02 17:23:24 - /usr/sbin/config -m IDT TB --- 2012-02-02 17:23:24 - building IDT kernel TB --- 2012-02-02 17:23:24 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 17:23:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 17:23:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 17:23:24 - SRCCONF=/dev/null TB --- 2012-02-02 17:23:24 - TARGET=mips TB --- 2012-02-02 17:23:24 - TARGET_ARCH=mips TB --- 2012-02-02 17:23:24 - TZ=UTC TB --- 2012-02-02 17:23:24 - __MAKE_CONF=/dev/null TB --- 2012-02-02 17:23:24 - cd /src TB --- 2012-02-02 17:23:24 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Thu Feb 2 17:23:25 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Thu Feb 2 17:25:01 UTC 2012 TB --- 2012-02-02 17:25:01 - cd /src/sys/mips/conf TB --- 2012-02-02 17:25:01 - /usr/sbin/config -m MALTA TB --- 2012-02-02 17:25:01 - building MALTA kernel TB --- 2012-02-02 17:25:01 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 17:25:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 17:25:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 17:25:01 - SRCCONF=/dev/null TB --- 2012-02-02 17:25:01 - TARGET=mips TB --- 2012-02-02 17:25:01 - TARGET_ARCH=mips TB --- 2012-02-02 17:25:01 - TZ=UTC TB --- 2012-02-02 17:25:01 - __MAKE_CONF=/dev/null TB --- 2012-02-02 17:25:01 - cd /src TB --- 2012-02-02 17:25:01 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Thu Feb 2 17:25:01 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Thu Feb 2 17:26:28 UTC 2012 TB --- 2012-02-02 17:26:28 - cd /src/sys/mips/conf TB --- 2012-02-02 17:26:28 - /usr/sbin/config -m QEMU TB --- 2012-02-02 17:26:28 - building QEMU kernel TB --- 2012-02-02 17:26:28 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 17:26:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 17:26:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 17:26:28 - SRCCONF=/dev/null TB --- 2012-02-02 17:26:28 - TARGET=mips TB --- 2012-02-02 17:26:28 - TARGET_ARCH=mips TB --- 2012-02-02 17:26:28 - TZ=UTC TB --- 2012-02-02 17:26:28 - __MAKE_CONF=/dev/null TB --- 2012-02-02 17:26:28 - cd /src TB --- 2012-02-02 17:26:28 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Thu Feb 2 17:26:28 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Thu Feb 2 17:27:42 UTC 2012 TB --- 2012-02-02 17:27:42 - cd /src/sys/mips/conf TB --- 2012-02-02 17:27:42 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-02 17:27:42 - building SENTRY5 kernel TB --- 2012-02-02 17:27:42 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 17:27:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 17:27:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 17:27:42 - SRCCONF=/dev/null TB --- 2012-02-02 17:27:42 - TARGET=mips TB --- 2012-02-02 17:27:42 - TARGET_ARCH=mips TB --- 2012-02-02 17:27:42 - TZ=UTC TB --- 2012-02-02 17:27:42 - __MAKE_CONF=/dev/null TB --- 2012-02-02 17:27:42 - cd /src TB --- 2012-02-02 17:27:42 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Thu Feb 2 17:27:42 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 17:29:03 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 17:29:03 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-02 17:29:03 - 1985.47 user 430.48 system 2943.08 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 19:32:47 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81578106564A for ; Thu, 2 Feb 2012 19:32:47 +0000 (UTC) (envelope-from ken@kdm.org) Received: from nargothrond.kdm.org (nargothrond.kdm.org [70.56.43.81]) by mx1.freebsd.org (Postfix) with ESMTP id 18FE28FC14 for ; Thu, 2 Feb 2012 19:32:46 +0000 (UTC) Received: from nargothrond.kdm.org (localhost [127.0.0.1]) by nargothrond.kdm.org (8.14.2/8.14.2) with ESMTP id q12JB5Fo056694; Thu, 2 Feb 2012 12:11:05 -0700 (MST) (envelope-from ken@nargothrond.kdm.org) Received: (from ken@localhost) by nargothrond.kdm.org (8.14.2/8.14.2/Submit) id q12JB5sX056693; Thu, 2 Feb 2012 12:11:05 -0700 (MST) (envelope-from ken) Date: Thu, 2 Feb 2012 12:11:05 -0700 From: "Kenneth D. Merry" To: stable@freebsd.org Message-ID: <20120202191105.GA55719@nargothrond.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2i Cc: "Desai, Kashyap" Subject: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Feb 2012 19:32:47 -0000 Hi folks, The LSI-supported version of the mps(4) driver that supports their 6Gb SAS HBAs as well as WarpDrive controllers, is now in stable/9 and stable/8. Please test it out and let me and Kashyap (CCed) know if you run into any problems. In addition to supporting WarpDrive, the driver also supports Integrated RAID. Thanks to LSI for doing the work on this driver! Note that the CAM infrastructure changes that went into FreeBSD/head along with this driver have not gone into either stable/9 or stable/8. Only the driver itself has been merged. The CAM infrastructure changes depend on some other da(4) driver changes that will need to get merged before they can go back. If that merge happens, it will probably only be into stable/9. A couple of notes about issues with this driver: - Unlike the previous mps(4) driver, it probes sequentially. If you have a lot of drives in your system, it will take a while to probe them all. - You may see warning messages like this: _mapping_add_new_device: failed to add the device with handle 0x0019 to persiste nt table because there is no free space available _mapping_add_new_device: failed to add the device with handle 0x001a to persiste nt table because there is no free space available - The driver is not endian safe. (It assumes a little endian machine.) This is not new, the previous version of the driver had the same issue. The LSI folks know about these issues. The driver has passed their testing process. Many thanks to LSI for going through the effort to support FreeBSD. Ken -- Kenneth Merry ken@FreeBSD.ORG From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 19:43:12 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA0C5106564A; Thu, 2 Feb 2012 19:43:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 945418FC12; Thu, 2 Feb 2012 19:43:12 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12JhBQa098409; Thu, 2 Feb 2012 19:43:11 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12JhBr3098373; Thu, 2 Feb 2012 19:43:11 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 19:43:11 GMT Message-Id: <201202021943.q12JhBr3098373@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 19:43:13 -0000 TB --- 2012-02-02 19:04:33 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 19:04:33 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-02 19:04:33 - cleaning the object tree TB --- 2012-02-02 19:04:45 - cvsupping the source tree TB --- 2012-02-02 19:04:45 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-02 19:04:56 - building world TB --- 2012-02-02 19:04:56 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 19:04:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 19:04:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 19:04:56 - SRCCONF=/dev/null TB --- 2012-02-02 19:04:56 - TARGET=mips TB --- 2012-02-02 19:04:56 - TARGET_ARCH=mips TB --- 2012-02-02 19:04:56 - TZ=UTC TB --- 2012-02-02 19:04:56 - __MAKE_CONF=/dev/null TB --- 2012-02-02 19:04:56 - cd /src TB --- 2012-02-02 19:04:56 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 19:04:56 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 19:40:52 UTC 2012 TB --- 2012-02-02 19:40:52 - cd /src/sys/mips/conf TB --- 2012-02-02 19:40:52 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 19:40:52 - building ADM5120 kernel TB --- 2012-02-02 19:40:52 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 19:40:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 19:40:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 19:40:52 - SRCCONF=/dev/null TB --- 2012-02-02 19:40:52 - TARGET=mips TB --- 2012-02-02 19:40:52 - TARGET_ARCH=mips TB --- 2012-02-02 19:40:52 - TZ=UTC TB --- 2012-02-02 19:40:52 - __MAKE_CONF=/dev/null TB --- 2012-02-02 19:40:52 - cd /src TB --- 2012-02-02 19:40:52 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 19:40:52 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 19:42:04 UTC 2012 TB --- 2012-02-02 19:42:04 - cd /src/sys/mips/conf TB --- 2012-02-02 19:42:04 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-02 19:42:04 - building ALCHEMY kernel TB --- 2012-02-02 19:42:04 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 19:42:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 19:42:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 19:42:04 - SRCCONF=/dev/null TB --- 2012-02-02 19:42:04 - TARGET=mips TB --- 2012-02-02 19:42:04 - TARGET_ARCH=mips TB --- 2012-02-02 19:42:04 - TZ=UTC TB --- 2012-02-02 19:42:04 - __MAKE_CONF=/dev/null TB --- 2012-02-02 19:42:04 - cd /src TB --- 2012-02-02 19:42:04 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Thu Feb 2 19:42:04 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 19:43:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 19:43:11 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-02 19:43:11 - 1744.46 user 357.16 system 2318.68 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 20:07:57 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41CE81065676 for ; Thu, 2 Feb 2012 20:07:57 +0000 (UTC) (envelope-from confirmation@bounces.fanbridge.com) Received: from r234-m4.fanbridge.com (r234-m4.fanbridge.com [174.37.97.234]) by mx1.freebsd.org (Postfix) with ESMTP id 156758FC18 for ; Thu, 2 Feb 2012 20:07:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=r234-m4; d=fanbridge.com; h=From:To:Subject:Message-ID:Sender:List-Unsubscribe:List-Id:Date:Content-Type:MIME-Version; i=noreply@fanbridge.com; bh=p0+kmFHSbaTY1/mnT5VxjJK1qDU=; b=lRG8tE9HSa2JBrMcUA0+DbWQpzJQGSMTsUMysravSy1ivnx41lNt6SAykOKEAV/Z9A76gY4wKSSy 3vR3pR5+/A== DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=r234-m4; d=fanbridge.com; b=bzuzgsYUbrtuqBY0oqQ4n4kmMhtXEgK8VC2qQsW5cXpL+puw/rm8QbjQlp+83IX+5eBfNR0gQ5Fl +FBDRajr2g==; Received: from 127.0.0.1 (74.86.115.74) by r234-m4.fanbridge.com (PowerMTA(TM) v3.5r15) id h5bmhq1cibcq for ; Thu, 2 Feb 2012 14:32:49 -0500 (envelope-from ) From: "775HipHop.com" To: "freebsd-stable@freebsd.org" Message-ID: <923689beaa04daf711f01dc3348586ef@fanbridge.com> Sender: FanBridge X-fbridge-uid: 139058 X-fbridge-sid: 189247948 X-fbridge-cfc: k3krdkBF1Xe647UFBBYehX1htd X-fbridge-collection: collection-171300 Date: Thu, 02 Feb 2012 14:32:49 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Please confirm your email for 775HipHop.com's list X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Feb 2012 20:07:57 -0000 Congratulations! You have been added to the fan list! Click on the foll= owing link to confirm/add your details: http://fburls.com/updt/139058|k3krdkBF1Xe647UFBBYehX1htd|freebsd-stable@= freebsd.org IMPORTANT: Be sure to add dhubbard775@gmail.com to your safe senders lis= t to ensure that you get these messages every time. This list is powered by FanBridge the world's leading provider of fan re= lationship management. With FanBridge, your information is kept safe and= never sold to third parties. http://www.fanbridge.com ---------------------------------------- 775HipHop.com sent this email to freebsd-stable@freebsd.org Questions? Contact dhubbard775@gmail.com or 775HipHop.com, c/o FanBridge= , Inc. - 14525 SW Millikan Way, #16910, Beaverton, Oregon 97005, United=20= States Update Your Information - http://fburls.com/updt/139058|k3krdkBF1Xe647UF= BBYehX1htd|freebsd-stable@freebsd.org Unsubscribe - http://fburls.com/usub/139058|k3krdkBF1Xe647UFBBYehX1htd|1= 89247948 Privacy Policy - http://www.fanbridge.com/learn/privacy.php This email message is powered by FanBridge: http://www.fanbridge.com/b.php?id=3D139058 Powering Valuable Fan Relationships ---------------------------------------- 775HipHop.com sent this email to freebsd-stable@freebsd.org Questions? Contact dhubbard775@gmail.com or 775HipHop.com, c/o FanBridge= , Inc. - 14525 SW Millikan Way, #16910, Beaverton, Oregon 97005, United=20= States Update Your Information - http://fburls.com/updt/139058|k3krdkBF1Xe647UF= BBYehX1htd|freebsd-stable@freebsd.org Unsubscribe - http://fburls.com/usub/139058|k3krdkBF1Xe647UFBBYehX1htd|1= 89247948 Privacy Policy - http://www.fanbridge.com/learn/privacy.php This email message is powered by FanBridge: http://www.fanbridge.com/b.php?id=3D139058 Powering Valuable Fan Relationships From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 20:37:07 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FEB0106564A; Thu, 2 Feb 2012 20:37:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id BE0328FC16; Thu, 2 Feb 2012 20:37:06 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12Kb61I041861; Thu, 2 Feb 2012 20:37:06 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12Kb66S041860; Thu, 2 Feb 2012 20:37:06 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 20:37:06 GMT Message-Id: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 20:37:07 -0000 TB --- 2012-02-02 19:22:20 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 19:22:20 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-02 19:22:20 - cleaning the object tree TB --- 2012-02-02 19:22:52 - cvsupping the source tree TB --- 2012-02-02 19:22:52 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-02 19:23:03 - building world TB --- 2012-02-02 19:23:03 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 19:23:03 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 19:23:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 19:23:03 - SRCCONF=/dev/null TB --- 2012-02-02 19:23:03 - TARGET=powerpc TB --- 2012-02-02 19:23:03 - TARGET_ARCH=powerpc TB --- 2012-02-02 19:23:03 - TZ=UTC TB --- 2012-02-02 19:23:03 - __MAKE_CONF=/dev/null TB --- 2012-02-02 19:23:03 - cd /src TB --- 2012-02-02 19:23:03 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 19:23:04 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 20:09:06 UTC 2012 TB --- 2012-02-02 20:09:06 - generating LINT kernel config TB --- 2012-02-02 20:09:06 - cd /src/sys/powerpc/conf TB --- 2012-02-02 20:09:06 - /usr/bin/make -B LINT TB --- 2012-02-02 20:09:06 - cd /src/sys/powerpc/conf TB --- 2012-02-02 20:09:06 - /usr/sbin/config -m LINT TB --- 2012-02-02 20:09:06 - building LINT kernel TB --- 2012-02-02 20:09:06 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 20:09:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 20:09:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 20:09:06 - SRCCONF=/dev/null TB --- 2012-02-02 20:09:06 - TARGET=powerpc TB --- 2012-02-02 20:09:06 - TARGET_ARCH=powerpc TB --- 2012-02-02 20:09:06 - TZ=UTC TB --- 2012-02-02 20:09:06 - __MAKE_CONF=/dev/null TB --- 2012-02-02 20:09:06 - cd /src TB --- 2012-02-02 20:09:06 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 2 20:09:06 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Thu Feb 2 20:24:35 UTC 2012 TB --- 2012-02-02 20:24:35 - cd /src/sys/powerpc/conf TB --- 2012-02-02 20:24:35 - /usr/sbin/config -m GENERIC TB --- 2012-02-02 20:24:35 - building GENERIC kernel TB --- 2012-02-02 20:24:35 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 20:24:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 20:24:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 20:24:35 - SRCCONF=/dev/null TB --- 2012-02-02 20:24:35 - TARGET=powerpc TB --- 2012-02-02 20:24:35 - TARGET_ARCH=powerpc TB --- 2012-02-02 20:24:35 - TZ=UTC TB --- 2012-02-02 20:24:35 - __MAKE_CONF=/dev/null TB --- 2012-02-02 20:24:35 - cd /src TB --- 2012-02-02 20:24:35 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Feb 2 20:24:36 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Thu Feb 2 20:35:04 UTC 2012 TB --- 2012-02-02 20:35:04 - cd /src/sys/powerpc/conf TB --- 2012-02-02 20:35:04 - /usr/sbin/config -m MPC85XX TB --- 2012-02-02 20:35:04 - building MPC85XX kernel TB --- 2012-02-02 20:35:04 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 20:35:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 20:35:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 20:35:04 - SRCCONF=/dev/null TB --- 2012-02-02 20:35:04 - TARGET=powerpc TB --- 2012-02-02 20:35:04 - TARGET_ARCH=powerpc TB --- 2012-02-02 20:35:04 - TZ=UTC TB --- 2012-02-02 20:35:04 - __MAKE_CONF=/dev/null TB --- 2012-02-02 20:35:04 - cd /src TB --- 2012-02-02 20:35:04 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Thu Feb 2 20:35:04 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 20:37:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 20:37:06 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-02 20:37:06 - 3548.79 user 576.95 system 4485.90 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 21:22:28 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FF411065675 for ; Thu, 2 Feb 2012 21:22:28 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id BE5E68FC12 for ; Thu, 2 Feb 2012 21:22:27 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYS00KXZ8LB3G40@thalia-smout.broadpark.no> for freebsd-stable@freebsd.org; Thu, 02 Feb 2012 21:22:23 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYS00EZJ8LANS60@terra-smin.broadpark.no> for freebsd-stable@freebsd.org; Thu, 02 Feb 2012 21:22:23 +0100 (CET) Date: Thu, 02 Feb 2012 21:22:22 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Feb 2012 21:22:28 -0000 Hi, I thought this bug was fixed back in 2009? root@kg-v7# uname -a FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-v7# root@kg-v7# service devd status devd is running as pid 555. root@kg-v7# service devd restart Stopping devd. Starting devd. devd: devd already running, pid: 555 /etc/rc.d/devd: WARNING: failed to start devd root@kg-v7# service devd status devd is not running. What gives? -- Torfinn From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 21:45:52 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E58201065677 for ; Thu, 2 Feb 2012 21:45:52 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by mx1.freebsd.org (Postfix) with ESMTP id 925B38FC16 for ; Thu, 2 Feb 2012 21:45:52 +0000 (UTC) Received: from omta12.westchester.pa.mail.comcast.net ([76.96.62.44]) by qmta07.westchester.pa.mail.comcast.net with comcast id V9lG1i00A0xGWP8579lshh; Thu, 02 Feb 2012 21:45:52 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta12.westchester.pa.mail.comcast.net with comcast id V9lr1i00u1t3BNj3Y9ls5e; Thu, 02 Feb 2012 21:45:52 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 50E95102C19; Thu, 2 Feb 2012 13:45:50 -0800 (PST) Date: Thu, 2 Feb 2012 13:45:50 -0800 From: Jeremy Chadwick To: Torfinn Ingolfsen Message-ID: <20120202214550.GA6965@icarus.home.lan> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: dougb@freebsd.org, freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Feb 2012 21:45:53 -0000 On Thu, Feb 02, 2012 at 09:22:22PM +0100, Torfinn Ingolfsen wrote: > Hi, > > I thought this bug was fixed back in 2009? > root@kg-v7# uname -a > FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 > root@kg-v7# > root@kg-v7# service devd status > devd is running as pid 555. > root@kg-v7# service devd restart > Stopping devd. > Starting devd. > devd: devd already running, pid: 555 > /etc/rc.d/devd: WARNING: failed to start devd > root@kg-v7# service devd status > devd is not running. > > What gives? This is probably "what gives", as it's a common problem with all sorts of daemons and is not specific to devd in the least: - devd is running (pid 555) - Admin issues "service devd restart" -- devd is sent SIGTERM; devd internally starts shutting down, but is not fully dead yet. "kill" does not block (wait) for processes to end, obviously -- Same script issues a start of devd, which fails because the daemon is still running (still shutting down) -- Resulting message is failure - Between failure message and below step, devd shuts down - Admin issues "service devd status" -- Script states devd isn't running I imagine either rc.subr(8) check_pidfile or wait_for_pids needs to be used, presumably in devd_stop () (which would need to be added/written). I do not know the implications of adding this, however, as there may be situations where (say on system shutdown) that you want things to "just end immediately" and not wait for the daemon to cleanly shut down. I say this because of devd's direct ties to devctl(4). Doug, any thoughts? -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Thu Feb 2 23:38:48 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7F8F106564A; Thu, 2 Feb 2012 23:38:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 787FE8FC08; Thu, 2 Feb 2012 23:38:48 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q12Ncli4029671; Thu, 2 Feb 2012 23:38:47 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q12NclpD029628; Thu, 2 Feb 2012 23:38:47 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 2 Feb 2012 23:38:47 GMT Message-Id: <201202022338.q12NclpD029628@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2012 23:38:49 -0000 TB --- 2012-02-02 22:50:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-02 22:50:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-02 22:50:00 - cleaning the object tree TB --- 2012-02-02 22:50:08 - cvsupping the source tree TB --- 2012-02-02 22:50:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-02 22:55:32 - building world TB --- 2012-02-02 22:55:32 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 22:55:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 22:55:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 22:55:32 - SRCCONF=/dev/null TB --- 2012-02-02 22:55:32 - TARGET=mips TB --- 2012-02-02 22:55:32 - TARGET_ARCH=mips TB --- 2012-02-02 22:55:32 - TZ=UTC TB --- 2012-02-02 22:55:32 - __MAKE_CONF=/dev/null TB --- 2012-02-02 22:55:32 - cd /src TB --- 2012-02-02 22:55:32 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 2 22:55:33 UTC 2012 >>> 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 >>> World build completed on Thu Feb 2 23:31:58 UTC 2012 TB --- 2012-02-02 23:31:58 - cd /src/sys/mips/conf TB --- 2012-02-02 23:31:58 - /usr/sbin/config -m ADM5120 TB --- 2012-02-02 23:31:58 - building ADM5120 kernel TB --- 2012-02-02 23:31:58 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 23:31:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 23:31:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 23:31:58 - SRCCONF=/dev/null TB --- 2012-02-02 23:31:58 - TARGET=mips TB --- 2012-02-02 23:31:58 - TARGET_ARCH=mips TB --- 2012-02-02 23:31:58 - TZ=UTC TB --- 2012-02-02 23:31:58 - __MAKE_CONF=/dev/null TB --- 2012-02-02 23:31:58 - cd /src TB --- 2012-02-02 23:31:58 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Thu Feb 2 23:31:58 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Thu Feb 2 23:33:10 UTC 2012 TB --- 2012-02-02 23:33:10 - cd /src/sys/mips/conf TB --- 2012-02-02 23:33:10 - /usr/sbin/config -m IDT TB --- 2012-02-02 23:33:10 - building IDT kernel TB --- 2012-02-02 23:33:10 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 23:33:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 23:33:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 23:33:10 - SRCCONF=/dev/null TB --- 2012-02-02 23:33:10 - TARGET=mips TB --- 2012-02-02 23:33:10 - TARGET_ARCH=mips TB --- 2012-02-02 23:33:10 - TZ=UTC TB --- 2012-02-02 23:33:10 - __MAKE_CONF=/dev/null TB --- 2012-02-02 23:33:10 - cd /src TB --- 2012-02-02 23:33:10 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Thu Feb 2 23:33:10 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Thu Feb 2 23:34:47 UTC 2012 TB --- 2012-02-02 23:34:47 - cd /src/sys/mips/conf TB --- 2012-02-02 23:34:47 - /usr/sbin/config -m MALTA TB --- 2012-02-02 23:34:47 - building MALTA kernel TB --- 2012-02-02 23:34:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 23:34:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 23:34:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 23:34:47 - SRCCONF=/dev/null TB --- 2012-02-02 23:34:47 - TARGET=mips TB --- 2012-02-02 23:34:47 - TARGET_ARCH=mips TB --- 2012-02-02 23:34:47 - TZ=UTC TB --- 2012-02-02 23:34:47 - __MAKE_CONF=/dev/null TB --- 2012-02-02 23:34:47 - cd /src TB --- 2012-02-02 23:34:47 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Thu Feb 2 23:34:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Thu Feb 2 23:36:14 UTC 2012 TB --- 2012-02-02 23:36:14 - cd /src/sys/mips/conf TB --- 2012-02-02 23:36:14 - /usr/sbin/config -m QEMU TB --- 2012-02-02 23:36:14 - building QEMU kernel TB --- 2012-02-02 23:36:14 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 23:36:14 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 23:36:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 23:36:14 - SRCCONF=/dev/null TB --- 2012-02-02 23:36:14 - TARGET=mips TB --- 2012-02-02 23:36:14 - TARGET_ARCH=mips TB --- 2012-02-02 23:36:14 - TZ=UTC TB --- 2012-02-02 23:36:14 - __MAKE_CONF=/dev/null TB --- 2012-02-02 23:36:14 - cd /src TB --- 2012-02-02 23:36:14 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Thu Feb 2 23:36:14 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Thu Feb 2 23:37:27 UTC 2012 TB --- 2012-02-02 23:37:27 - cd /src/sys/mips/conf TB --- 2012-02-02 23:37:27 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-02 23:37:27 - building SENTRY5 kernel TB --- 2012-02-02 23:37:27 - CROSS_BUILD_TESTING=YES TB --- 2012-02-02 23:37:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-02 23:37:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-02 23:37:27 - SRCCONF=/dev/null TB --- 2012-02-02 23:37:27 - TARGET=mips TB --- 2012-02-02 23:37:27 - TARGET_ARCH=mips TB --- 2012-02-02 23:37:27 - TZ=UTC TB --- 2012-02-02 23:37:27 - __MAKE_CONF=/dev/null TB --- 2012-02-02 23:37:27 - cd /src TB --- 2012-02-02 23:37:27 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Thu Feb 2 23:37:27 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-02 23:38:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-02 23:38:47 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-02 23:38:47 - 1975.02 user 423.65 system 2927.53 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 00:17:21 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1F071065670 for ; Fri, 3 Feb 2012 00:17:21 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from mailhost.m5p.com (ip-2-2-0-2.r20.asbnva02.us.ce.gin.ntt.net [IPv6:2001:418:0:5000::16]) by mx1.freebsd.org (Postfix) with ESMTP id 7A1838FC19 for ; Fri, 3 Feb 2012 00:17:21 +0000 (UTC) Received: from wonderland.m5p.com (wonderland.m5p.com [IPv6:2001:418:3fd::19]) by mailhost.m5p.com (8.14.4/8.14.4) with ESMTP id q130HEsM049790 for ; Thu, 2 Feb 2012 19:17:19 -0500 (EST) (envelope-from george+freebsd@m5p.com) Message-ID: <4F2B278A.3080502@m5p.com> Date: Thu, 02 Feb 2012 19:17:14 -0500 From: George Mitchell User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20120122 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> In-Reply-To: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (mailhost.m5p.com [IPv6:2001:418:3fd::f7]); Thu, 02 Feb 2012 19:17:19 -0500 (EST) X-Scanned-By: MIMEDefang 2.72 on IPv6:2001:418:3fd::f7 Subject: Re: [releng_8_2 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 00:17:22 -0000 On 02/02/12 15:37, FreeBSD Tinderbox wrote: > [... one of three errors it's been reporting repeatedly for days ...] Talk about a lack of focus! Apparently two or three people have all recently checked in code without first verifying that it compiled (let alone ran), or else possibly did not completely commit their changes, and then absconded to a place where they fail to receive these emails about the problems. Can someone please either diagnose these errors or else revert the deficient commits? -- George Mitchell From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 01:46:19 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 185D7106566B; Fri, 3 Feb 2012 01:46:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id B8AA78FC0C; Fri, 3 Feb 2012 01:46:18 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q131kIOw086882; Fri, 3 Feb 2012 01:46:18 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q131kIYI086826; Fri, 3 Feb 2012 01:46:18 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 01:46:18 GMT Message-Id: <201202030146.q131kIYI086826@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 01:46:19 -0000 TB --- 2012-02-03 01:07:18 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 01:07:18 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-03 01:07:18 - cleaning the object tree TB --- 2012-02-03 01:07:26 - cvsupping the source tree TB --- 2012-02-03 01:07:26 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-03 01:07:37 - building world TB --- 2012-02-03 01:07:37 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 01:07:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 01:07:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 01:07:37 - SRCCONF=/dev/null TB --- 2012-02-03 01:07:37 - TARGET=mips TB --- 2012-02-03 01:07:37 - TARGET_ARCH=mips TB --- 2012-02-03 01:07:37 - TZ=UTC TB --- 2012-02-03 01:07:37 - __MAKE_CONF=/dev/null TB --- 2012-02-03 01:07:37 - cd /src TB --- 2012-02-03 01:07:37 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 01:07:37 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 01:43:59 UTC 2012 TB --- 2012-02-03 01:43:59 - cd /src/sys/mips/conf TB --- 2012-02-03 01:43:59 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 01:43:59 - building ADM5120 kernel TB --- 2012-02-03 01:43:59 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 01:43:59 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 01:43:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 01:43:59 - SRCCONF=/dev/null TB --- 2012-02-03 01:43:59 - TARGET=mips TB --- 2012-02-03 01:43:59 - TARGET_ARCH=mips TB --- 2012-02-03 01:43:59 - TZ=UTC TB --- 2012-02-03 01:43:59 - __MAKE_CONF=/dev/null TB --- 2012-02-03 01:43:59 - cd /src TB --- 2012-02-03 01:43:59 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 01:43:59 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 01:45:11 UTC 2012 TB --- 2012-02-03 01:45:11 - cd /src/sys/mips/conf TB --- 2012-02-03 01:45:11 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-03 01:45:11 - building ALCHEMY kernel TB --- 2012-02-03 01:45:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 01:45:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 01:45:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 01:45:11 - SRCCONF=/dev/null TB --- 2012-02-03 01:45:11 - TARGET=mips TB --- 2012-02-03 01:45:11 - TARGET_ARCH=mips TB --- 2012-02-03 01:45:11 - TZ=UTC TB --- 2012-02-03 01:45:11 - __MAKE_CONF=/dev/null TB --- 2012-02-03 01:45:11 - cd /src TB --- 2012-02-03 01:45:11 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Fri Feb 3 01:45:11 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 01:46:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 01:46:18 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-03 01:46:18 - 1755.65 user 368.25 system 2339.99 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 02:53:16 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DAB8106566C; Fri, 3 Feb 2012 02:53:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 494A38FC08; Fri, 3 Feb 2012 02:53:16 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q132rF0G005496; Fri, 3 Feb 2012 02:53:15 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q132rEkC005205; Fri, 3 Feb 2012 02:53:14 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 02:53:14 GMT Message-Id: <201202030253.q132rEkC005205@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 02:53:16 -0000 TB --- 2012-02-03 01:38:30 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 01:38:30 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-03 01:38:30 - cleaning the object tree TB --- 2012-02-03 01:39:00 - cvsupping the source tree TB --- 2012-02-03 01:39:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-03 01:39:12 - building world TB --- 2012-02-03 01:39:12 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 01:39:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 01:39:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 01:39:12 - SRCCONF=/dev/null TB --- 2012-02-03 01:39:12 - TARGET=powerpc TB --- 2012-02-03 01:39:12 - TARGET_ARCH=powerpc TB --- 2012-02-03 01:39:12 - TZ=UTC TB --- 2012-02-03 01:39:12 - __MAKE_CONF=/dev/null TB --- 2012-02-03 01:39:12 - cd /src TB --- 2012-02-03 01:39:12 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 01:39:13 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 02:25:28 UTC 2012 TB --- 2012-02-03 02:25:28 - generating LINT kernel config TB --- 2012-02-03 02:25:28 - cd /src/sys/powerpc/conf TB --- 2012-02-03 02:25:28 - /usr/bin/make -B LINT TB --- 2012-02-03 02:25:28 - cd /src/sys/powerpc/conf TB --- 2012-02-03 02:25:28 - /usr/sbin/config -m LINT TB --- 2012-02-03 02:25:28 - building LINT kernel TB --- 2012-02-03 02:25:28 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 02:25:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 02:25:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 02:25:28 - SRCCONF=/dev/null TB --- 2012-02-03 02:25:28 - TARGET=powerpc TB --- 2012-02-03 02:25:28 - TARGET_ARCH=powerpc TB --- 2012-02-03 02:25:28 - TZ=UTC TB --- 2012-02-03 02:25:28 - __MAKE_CONF=/dev/null TB --- 2012-02-03 02:25:28 - cd /src TB --- 2012-02-03 02:25:28 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 02:25:28 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Fri Feb 3 02:40:53 UTC 2012 TB --- 2012-02-03 02:40:53 - cd /src/sys/powerpc/conf TB --- 2012-02-03 02:40:53 - /usr/sbin/config -m GENERIC TB --- 2012-02-03 02:40:53 - building GENERIC kernel TB --- 2012-02-03 02:40:53 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 02:40:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 02:40:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 02:40:53 - SRCCONF=/dev/null TB --- 2012-02-03 02:40:53 - TARGET=powerpc TB --- 2012-02-03 02:40:53 - TARGET_ARCH=powerpc TB --- 2012-02-03 02:40:53 - TZ=UTC TB --- 2012-02-03 02:40:53 - __MAKE_CONF=/dev/null TB --- 2012-02-03 02:40:53 - cd /src TB --- 2012-02-03 02:40:53 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri Feb 3 02:40:53 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Fri Feb 3 02:51:15 UTC 2012 TB --- 2012-02-03 02:51:15 - cd /src/sys/powerpc/conf TB --- 2012-02-03 02:51:15 - /usr/sbin/config -m MPC85XX TB --- 2012-02-03 02:51:15 - building MPC85XX kernel TB --- 2012-02-03 02:51:15 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 02:51:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 02:51:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 02:51:15 - SRCCONF=/dev/null TB --- 2012-02-03 02:51:15 - TARGET=powerpc TB --- 2012-02-03 02:51:15 - TARGET_ARCH=powerpc TB --- 2012-02-03 02:51:15 - TZ=UTC TB --- 2012-02-03 02:51:15 - __MAKE_CONF=/dev/null TB --- 2012-02-03 02:51:15 - cd /src TB --- 2012-02-03 02:51:15 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Fri Feb 3 02:51:15 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 02:53:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 02:53:14 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-03 02:53:14 - 3548.78 user 577.64 system 4483.57 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 03:51:54 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 843E4106564A; Fri, 3 Feb 2012 03:51:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 2FE1E8FC0C; Fri, 3 Feb 2012 03:51:54 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q133praD098467; Fri, 3 Feb 2012 03:51:53 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q133pri7098466; Fri, 3 Feb 2012 03:51:53 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 03:51:53 GMT Message-Id: <201202030351.q133pri7098466@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 03:51:54 -0000 TB --- 2012-02-03 02:59:56 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 02:59:56 - starting RELENG_8 tinderbox run for mips/mips TB --- 2012-02-03 02:59:56 - cleaning the object tree TB --- 2012-02-03 02:59:56 - cvsupping the source tree TB --- 2012-02-03 02:59:56 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/mips/mips/supfile TB --- 2012-02-03 03:00:11 - building world TB --- 2012-02-03 03:00:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:00:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:00:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:00:11 - SRCCONF=/dev/null TB --- 2012-02-03 03:00:11 - TARGET=mips TB --- 2012-02-03 03:00:11 - TARGET_ARCH=mips TB --- 2012-02-03 03:00:11 - TZ=UTC TB --- 2012-02-03 03:00:11 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:00:11 - cd /src TB --- 2012-02-03 03:00:11 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 03:00:11 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 03:36:47 UTC 2012 TB --- 2012-02-03 03:36:47 - cd /src/sys/mips/conf TB --- 2012-02-03 03:36:47 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 03:36:47 - building ADM5120 kernel TB --- 2012-02-03 03:36:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:36:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:36:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:36:47 - SRCCONF=/dev/null TB --- 2012-02-03 03:36:47 - TARGET=mips TB --- 2012-02-03 03:36:47 - TARGET_ARCH=mips TB --- 2012-02-03 03:36:47 - TZ=UTC TB --- 2012-02-03 03:36:47 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:36:47 - cd /src TB --- 2012-02-03 03:36:47 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 03:36:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 03:38:01 UTC 2012 TB --- 2012-02-03 03:38:01 - cd /src/sys/mips/conf TB --- 2012-02-03 03:38:01 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-03 03:38:01 - building ALCHEMY kernel TB --- 2012-02-03 03:38:01 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:38:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:38:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:38:01 - SRCCONF=/dev/null TB --- 2012-02-03 03:38:01 - TARGET=mips TB --- 2012-02-03 03:38:01 - TARGET_ARCH=mips TB --- 2012-02-03 03:38:01 - TZ=UTC TB --- 2012-02-03 03:38:01 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:38:01 - cd /src TB --- 2012-02-03 03:38:01 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Fri Feb 3 03:38:01 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ALCHEMY completed on Fri Feb 3 03:39:11 UTC 2012 TB --- 2012-02-03 03:39:11 - cd /src/sys/mips/conf TB --- 2012-02-03 03:39:11 - /usr/sbin/config -m AR71XX TB --- 2012-02-03 03:39:11 - building AR71XX kernel TB --- 2012-02-03 03:39:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:39:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:39:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:39:11 - SRCCONF=/dev/null TB --- 2012-02-03 03:39:11 - TARGET=mips TB --- 2012-02-03 03:39:11 - TARGET_ARCH=mips TB --- 2012-02-03 03:39:11 - TZ=UTC TB --- 2012-02-03 03:39:11 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:39:11 - cd /src TB --- 2012-02-03 03:39:11 - /usr/bin/make -B buildkernel KERNCONF=AR71XX >>> Kernel build for AR71XX started on Fri Feb 3 03:39:11 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for AR71XX completed on Fri Feb 3 03:46:43 UTC 2012 TB --- 2012-02-03 03:46:43 - cd /src/sys/mips/conf TB --- 2012-02-03 03:46:43 - /usr/sbin/config -m IDT TB --- 2012-02-03 03:46:43 - building IDT kernel TB --- 2012-02-03 03:46:43 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:46:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:46:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:46:43 - SRCCONF=/dev/null TB --- 2012-02-03 03:46:43 - TARGET=mips TB --- 2012-02-03 03:46:43 - TARGET_ARCH=mips TB --- 2012-02-03 03:46:43 - TZ=UTC TB --- 2012-02-03 03:46:43 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:46:43 - cd /src TB --- 2012-02-03 03:46:43 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Fri Feb 3 03:46:43 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Fri Feb 3 03:48:24 UTC 2012 TB --- 2012-02-03 03:48:24 - cd /src/sys/mips/conf TB --- 2012-02-03 03:48:24 - /usr/sbin/config -m MALTA TB --- 2012-02-03 03:48:24 - building MALTA kernel TB --- 2012-02-03 03:48:24 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:48:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:48:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:48:25 - SRCCONF=/dev/null TB --- 2012-02-03 03:48:25 - TARGET=mips TB --- 2012-02-03 03:48:25 - TARGET_ARCH=mips TB --- 2012-02-03 03:48:25 - TZ=UTC TB --- 2012-02-03 03:48:25 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:48:25 - cd /src TB --- 2012-02-03 03:48:25 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Fri Feb 3 03:48:25 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Fri Feb 3 03:49:56 UTC 2012 TB --- 2012-02-03 03:49:56 - cd /src/sys/mips/conf TB --- 2012-02-03 03:49:56 - /usr/sbin/config -m MALTA64 TB --- 2012-02-03 03:49:56 - building MALTA64 kernel TB --- 2012-02-03 03:49:56 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:49:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:49:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:49:56 - SRCCONF=/dev/null TB --- 2012-02-03 03:49:56 - TARGET=mips TB --- 2012-02-03 03:49:56 - TARGET_ARCH=mips TB --- 2012-02-03 03:49:56 - TZ=UTC TB --- 2012-02-03 03:49:56 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:49:56 - cd /src TB --- 2012-02-03 03:49:56 - /usr/bin/make -B buildkernel KERNCONF=MALTA64 >>> Kernel build for MALTA64 started on Fri Feb 3 03:49:56 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA64 completed on Fri Feb 3 03:51:28 UTC 2012 TB --- 2012-02-03 03:51:28 - cd /src/sys/mips/conf TB --- 2012-02-03 03:51:28 - /usr/sbin/config -m OCTEON1 TB --- 2012-02-03 03:51:28 - building OCTEON1 kernel TB --- 2012-02-03 03:51:28 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:51:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:51:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:51:28 - SRCCONF=/dev/null TB --- 2012-02-03 03:51:28 - TARGET=mips TB --- 2012-02-03 03:51:28 - TARGET_ARCH=mips TB --- 2012-02-03 03:51:28 - TZ=UTC TB --- 2012-02-03 03:51:28 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:51:28 - cd /src TB --- 2012-02-03 03:51:28 - /usr/bin/make -B buildkernel KERNCONF=OCTEON1 >>> Kernel build for OCTEON1 started on Fri Feb 3 03:51:29 UTC 2012 >>> 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 /src/sys/tools/makeobjops.awk /src/sys/kern/linker_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/kern/serdev_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/dev/ath/ath_hal -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -I/src/sys/dev/cxgb -I/src/sys/dev/cxgbe -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EB -fno-pic -mno-abicalls -G0 -EB -march=octeon -mabi=64 -msoft-float -mno-dsp -ffreestanding cc: /src/sys/dev/ixgbe/ixgbe_x540.c: No such file or directory /src/sys/dev/ixgbe/ixgbe_82598.c:36:25: error: ixgbe_82598.h: No such file or directory /src/sys/dev/ixgbe/ixgbe_82599.c:36:25: error: ixgbe_82599.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /obj/mips/src/sys/OCTEON1. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 03:51:53 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 03:51:53 - ERROR: failed to build OCTEON1 kernel TB --- 2012-02-03 03:51:53 - 2369.80 user 470.80 system 3116.71 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 03:54:24 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15D201065673; Fri, 3 Feb 2012 03:54:24 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id B0B068FC0A; Fri, 3 Feb 2012 03:54:23 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q133sN0c037263; Fri, 3 Feb 2012 03:54:23 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q133sMZ8037160; Fri, 3 Feb 2012 03:54:22 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 03:54:22 GMT Message-Id: <201202030354.q133sMZ8037160@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 03:54:24 -0000 TB --- 2012-02-03 02:53:15 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 02:53:15 - starting RELENG_8 tinderbox run for ia64/ia64 TB --- 2012-02-03 02:53:15 - cleaning the object tree TB --- 2012-02-03 02:53:15 - cvsupping the source tree TB --- 2012-02-03 02:53:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/ia64/ia64/supfile TB --- 2012-02-03 02:53:49 - building world TB --- 2012-02-03 02:53:49 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 02:53:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 02:53:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 02:53:49 - SRCCONF=/dev/null TB --- 2012-02-03 02:53:49 - TARGET=ia64 TB --- 2012-02-03 02:53:49 - TARGET_ARCH=ia64 TB --- 2012-02-03 02:53:49 - TZ=UTC TB --- 2012-02-03 02:53:49 - __MAKE_CONF=/dev/null TB --- 2012-02-03 02:53:49 - cd /src TB --- 2012-02-03 02:53:49 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 02:53:49 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 03:53:27 UTC 2012 TB --- 2012-02-03 03:53:27 - generating LINT kernel config TB --- 2012-02-03 03:53:27 - cd /src/sys/ia64/conf TB --- 2012-02-03 03:53:27 - /usr/bin/make -B LINT TB --- 2012-02-03 03:53:27 - cd /src/sys/ia64/conf TB --- 2012-02-03 03:53:27 - /usr/sbin/config -m LINT TB --- 2012-02-03 03:53:27 - building LINT kernel TB --- 2012-02-03 03:53:27 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:53:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:53:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:53:27 - SRCCONF=/dev/null TB --- 2012-02-03 03:53:27 - TARGET=ia64 TB --- 2012-02-03 03:53:27 - TARGET_ARCH=ia64 TB --- 2012-02-03 03:53:27 - TZ=UTC TB --- 2012-02-03 03:53:27 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:53:27 - cd /src TB --- 2012-02-03 03:53:27 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 03:53:27 UTC 2012 >>> 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 /src/sys/tools/makeobjops.awk /src/sys/opencrypto/cryptodev_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/acpica/acpi_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/dev/ath/ath_hal -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -I/src/sys/dev/cxgb -I/src/sys/dev/cxgbe -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding cc: /src/sys/dev/ixgbe/ixgbe_x540.c: No such file or directory /src/sys/dev/ixgbe/ixgbe_82598.c:36:25: error: ixgbe_82598.h: No such file or directory /src/sys/dev/ixgbe/ixgbe_82599.c:36:25: error: ixgbe_82599.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /obj/ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 03:54:22 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 03:54:22 - ERROR: failed to build LINT kernel TB --- 2012-02-03 03:54:22 - 2969.27 user 438.80 system 3666.37 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-ia64-ia64.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 03:54:26 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B00E106566C for ; Fri, 3 Feb 2012 03:54:26 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: from mho-02-ewr.mailhop.org (mho-02-ewr.mailhop.org [204.13.248.72]) by mx1.freebsd.org (Postfix) with ESMTP id 155668FC0C for ; Fri, 3 Feb 2012 03:54:25 +0000 (UTC) Received: from 75-169-85-151.slkc.qwest.net ([75.169.85.151] helo=mail.mikestammer.com) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.72) (envelope-from ) id 1Rt9b4-000Nop-JQ; Fri, 03 Feb 2012 03:13:58 +0000 Received: from [192.168.0.17] (barad-dur.mikestammer.local [192.168.0.17]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: eric@mikestammer.com) by mail.mikestammer.com (Postfix) with ESMTPSA id 1301D5F2; Thu, 2 Feb 2012 20:13:57 -0700 (MST) X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 75.169.85.151 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1++x1qR48oZcEwPmNDvuBPN8xtadmyL6wA= Message-ID: <4F2B50F3.3090108@mikestammer.com> Date: Thu, 02 Feb 2012 20:13:55 -0700 From: Eric User-Agent: Postbox 3.0.2 (Windows/20111203) MIME-Version: 1.0 To: "Kenneth D. Merry" References: <20120202191105.GA55719@nargothrond.kdm.org> In-Reply-To: <20120202191105.GA55719@nargothrond.kdm.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: stable@freebsd.org, "Desai, Kashyap" Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 03:54:26 -0000 Kenneth D. Merry wrote: > Hi folks, > > The LSI-supported version of the mps(4) driver that supports their 6Gb SAS > HBAs as well as WarpDrive controllers, is now in stable/9 and stable/8. > > Please test it out and let me and Kashyap (CCed) know if you run into > any problems. > > In addition to supporting WarpDrive, the driver also supports Integrated > RAID. > > Thanks to LSI for doing the work on this driver! > can you elaborate on what the symptoms would be before this commit for the 6Bg cards? i have a dual channel LSI card (i can get the exact model tomorrow) connected to a RAID Inc Maverick 8 disk array (one raid6 volume was created on the Mav) which constantly gets hung up with messages similar to: run_interrupt_driven_hooks - waiting for xpt_config every 60 seconds for about 5 iterations after which the box reboots. I am currently trying 9-RELEASE, but saw the same issues on 8.2. These messages happen after the USB stack initializes. Turning off the Maverick allows the system to boot up. i can then turn on the maverick after the system gets to the login prompt and the disks are detected as da0 and work just fine. the LSI device was detected as mpt0. many thanks! Eric From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 04:02:12 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3A3A106566B; Fri, 3 Feb 2012 04:02:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 5A24D8FC14; Fri, 3 Feb 2012 04:02:12 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q1342B4p035347; Fri, 3 Feb 2012 04:02:11 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q1342B0J035345; Fri, 3 Feb 2012 04:02:11 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 04:02:11 GMT Message-Id: <201202030402.q1342B0J035345@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 04:02:12 -0000 TB --- 2012-02-03 03:15:22 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 03:15:22 - starting RELENG_8 tinderbox run for powerpc/powerpc TB --- 2012-02-03 03:15:22 - cleaning the object tree TB --- 2012-02-03 03:15:22 - cvsupping the source tree TB --- 2012-02-03 03:15:22 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/powerpc/powerpc/supfile TB --- 2012-02-03 03:15:35 - building world TB --- 2012-02-03 03:15:35 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:15:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:15:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:15:35 - SRCCONF=/dev/null TB --- 2012-02-03 03:15:35 - TARGET=powerpc TB --- 2012-02-03 03:15:35 - TARGET_ARCH=powerpc TB --- 2012-02-03 03:15:35 - TZ=UTC TB --- 2012-02-03 03:15:35 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:15:35 - cd /src TB --- 2012-02-03 03:15:35 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 03:15:36 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 04:01:22 UTC 2012 TB --- 2012-02-03 04:01:22 - generating LINT kernel config TB --- 2012-02-03 04:01:22 - cd /src/sys/powerpc/conf TB --- 2012-02-03 04:01:22 - /usr/bin/make -B LINT TB --- 2012-02-03 04:01:22 - cd /src/sys/powerpc/conf TB --- 2012-02-03 04:01:22 - /usr/sbin/config -m LINT TB --- 2012-02-03 04:01:22 - building LINT kernel TB --- 2012-02-03 04:01:22 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 04:01:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 04:01:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 04:01:22 - SRCCONF=/dev/null TB --- 2012-02-03 04:01:22 - TARGET=powerpc TB --- 2012-02-03 04:01:22 - TARGET_ARCH=powerpc TB --- 2012-02-03 04:01:22 - TZ=UTC TB --- 2012-02-03 04:01:22 - __MAKE_CONF=/dev/null TB --- 2012-02-03 04:01:22 - cd /src TB --- 2012-02-03 04:01:22 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 04:01:22 UTC 2012 >>> 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 /src/sys/tools/makeobjops.awk /src/sys/powerpc/powerpc/pic_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/powerpc/powerpc/platform_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/dev/ath/ath_hal -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -I/src/sys/dev/cxgb -I/src/sys/dev/cxgbe -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector cc: /src/sys/dev/ixgbe/ixgbe_x540.c: No such file or directory /src/sys/dev/ixgbe/ixgbe_82598.c:36:25: error: ixgbe_82598.h: No such file or directory /src/sys/dev/ixgbe/ixgbe_82599.c:36:25: error: ixgbe_82599.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 04:02:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 04:02:11 - ERROR: failed to build LINT kernel TB --- 2012-02-03 04:02:11 - 2229.53 user 392.32 system 2809.70 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 04:28:44 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B1701065670; Fri, 3 Feb 2012 04:28:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 112A98FC15; Fri, 3 Feb 2012 04:28:43 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q134ShgY058511; Fri, 3 Feb 2012 04:28:43 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q134ShGH058510; Fri, 3 Feb 2012 04:28:43 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 04:28:43 GMT Message-Id: <201202030428.q134ShGH058510@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 04:28:44 -0000 TB --- 2012-02-03 03:51:42 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 03:51:42 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2012-02-03 03:51:42 - cleaning the object tree TB --- 2012-02-03 03:51:42 - cvsupping the source tree TB --- 2012-02-03 03:51:42 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/sparc64/sparc64/supfile TB --- 2012-02-03 03:52:08 - building world TB --- 2012-02-03 03:52:08 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 03:52:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 03:52:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 03:52:08 - SRCCONF=/dev/null TB --- 2012-02-03 03:52:08 - TARGET=sparc64 TB --- 2012-02-03 03:52:08 - TARGET_ARCH=sparc64 TB --- 2012-02-03 03:52:08 - TZ=UTC TB --- 2012-02-03 03:52:08 - __MAKE_CONF=/dev/null TB --- 2012-02-03 03:52:08 - cd /src TB --- 2012-02-03 03:52:08 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 03:52:08 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 04:28:05 UTC 2012 TB --- 2012-02-03 04:28:05 - generating LINT kernel config TB --- 2012-02-03 04:28:05 - cd /src/sys/sparc64/conf TB --- 2012-02-03 04:28:05 - /usr/bin/make -B LINT TB --- 2012-02-03 04:28:05 - cd /src/sys/sparc64/conf TB --- 2012-02-03 04:28:05 - /usr/sbin/config -m LINT TB --- 2012-02-03 04:28:05 - building LINT kernel TB --- 2012-02-03 04:28:05 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 04:28:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 04:28:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 04:28:05 - SRCCONF=/dev/null TB --- 2012-02-03 04:28:05 - TARGET=sparc64 TB --- 2012-02-03 04:28:05 - TARGET_ARCH=sparc64 TB --- 2012-02-03 04:28:05 - TZ=UTC TB --- 2012-02-03 04:28:05 - __MAKE_CONF=/dev/null TB --- 2012-02-03 04:28:05 - cd /src TB --- 2012-02-03 04:28:05 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 04:28:05 UTC 2012 >>> 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 /src/sys/tools/makeobjops.awk /src/sys/dev/ofw/ofw_bus_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/sparc64/pci/ofw_pci_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/dev/ath/ath_hal -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -I/src/sys/dev/cxgb -I/src/sys/dev/cxgbe -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector cc: /src/sys/dev/ixgbe/ixgbe_x540.c: No such file or directory /src/sys/dev/ixgbe/ixgbe_82598.c:36:25: error: ixgbe_82598.h: No such file or directory /src/sys/dev/ixgbe/ixgbe_82599.c:36:25: error: ixgbe_82599.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 04:28:43 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 04:28:43 - ERROR: failed to build LINT kernel TB --- 2012-02-03 04:28:43 - 1901.27 user 316.78 system 2220.64 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 04:38:20 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59C75106566C for ; Fri, 3 Feb 2012 04:38:20 +0000 (UTC) (envelope-from ken@kdm.org) Received: from nargothrond.kdm.org (nargothrond.kdm.org [70.56.43.81]) by mx1.freebsd.org (Postfix) with ESMTP id 258BC8FC13 for ; Fri, 3 Feb 2012 04:38:19 +0000 (UTC) Received: from nargothrond.kdm.org (localhost [127.0.0.1]) by nargothrond.kdm.org (8.14.2/8.14.2) with ESMTP id q134cJqK011584; Thu, 2 Feb 2012 21:38:19 -0700 (MST) (envelope-from ken@nargothrond.kdm.org) Received: (from ken@localhost) by nargothrond.kdm.org (8.14.2/8.14.2/Submit) id q134cIOA011583; Thu, 2 Feb 2012 21:38:18 -0700 (MST) (envelope-from ken) Date: Thu, 2 Feb 2012 21:38:18 -0700 From: "Kenneth D. Merry" To: Eric Message-ID: <20120203043818.GA11558@nargothrond.kdm.org> References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2B50F3.3090108@mikestammer.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F2B50F3.3090108@mikestammer.com> User-Agent: Mutt/1.4.2i Cc: stable@freebsd.org, "Desai, Kashyap" Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 04:38:20 -0000 On Thu, Feb 02, 2012 at 20:13:55 -0700, Eric wrote: > > Kenneth D. Merry wrote: > >Hi folks, > > > >The LSI-supported version of the mps(4) driver that supports their 6Gb SAS > >HBAs as well as WarpDrive controllers, is now in stable/9 and stable/8. > > > >Please test it out and let me and Kashyap (CCed) know if you run into > >any problems. > > > >In addition to supporting WarpDrive, the driver also supports Integrated > >RAID. > > > >Thanks to LSI for doing the work on this driver! > > > > > > can you elaborate on what the symptoms would be before this commit for > the 6Bg cards? i have a dual channel LSI card (i can get the exact model > tomorrow) connected to a RAID Inc Maverick 8 disk array (one raid6 > volume was created on the Mav) which constantly gets hung up with > messages similar to: > > run_interrupt_driven_hooks - waiting for xpt_config > > every 60 seconds for about 5 iterations after which the box reboots. I > am currently trying 9-RELEASE, but saw the same issues on 8.2. These > messages happen after the USB stack initializes. Turning off the > Maverick allows the system to boot up. i can then turn on the maverick > after the system gets to the login prompt and the disks are detected as > da0 and work just fine. > > the LSI device was detected as mpt0. If you've got an mpt(4) controller, the new driver won't help you. You've got a 3Gb LSI controller, and the mps(4) driver is for 6Gb controllers. It sounds like the mpt driver is getting stuck on boot. Ken -- Kenneth Merry ken@FreeBSD.ORG From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 05:19:00 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87B22106566C; Fri, 3 Feb 2012 05:19:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 311D98FC16; Fri, 3 Feb 2012 05:19:00 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q135IxJw018168; Fri, 3 Feb 2012 05:18:59 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q135Ix3t018161; Fri, 3 Feb 2012 05:18:59 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 05:18:59 GMT Message-Id: <201202030518.q135Ix3t018161@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 05:19:00 -0000 TB --- 2012-02-03 04:30:00 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 04:30:00 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-03 04:30:00 - cleaning the object tree TB --- 2012-02-03 04:30:08 - cvsupping the source tree TB --- 2012-02-03 04:30:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-03 04:35:34 - building world TB --- 2012-02-03 04:35:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 04:35:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 04:35:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 04:35:34 - SRCCONF=/dev/null TB --- 2012-02-03 04:35:34 - TARGET=mips TB --- 2012-02-03 04:35:34 - TARGET_ARCH=mips TB --- 2012-02-03 04:35:34 - TZ=UTC TB --- 2012-02-03 04:35:34 - __MAKE_CONF=/dev/null TB --- 2012-02-03 04:35:34 - cd /src TB --- 2012-02-03 04:35:34 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 04:35:34 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 05:12:11 UTC 2012 TB --- 2012-02-03 05:12:11 - cd /src/sys/mips/conf TB --- 2012-02-03 05:12:11 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 05:12:11 - building ADM5120 kernel TB --- 2012-02-03 05:12:11 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 05:12:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 05:12:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 05:12:11 - SRCCONF=/dev/null TB --- 2012-02-03 05:12:11 - TARGET=mips TB --- 2012-02-03 05:12:11 - TARGET_ARCH=mips TB --- 2012-02-03 05:12:11 - TZ=UTC TB --- 2012-02-03 05:12:11 - __MAKE_CONF=/dev/null TB --- 2012-02-03 05:12:11 - cd /src TB --- 2012-02-03 05:12:11 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 05:12:11 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 05:13:22 UTC 2012 TB --- 2012-02-03 05:13:22 - cd /src/sys/mips/conf TB --- 2012-02-03 05:13:22 - /usr/sbin/config -m IDT TB --- 2012-02-03 05:13:22 - building IDT kernel TB --- 2012-02-03 05:13:22 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 05:13:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 05:13:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 05:13:22 - SRCCONF=/dev/null TB --- 2012-02-03 05:13:22 - TARGET=mips TB --- 2012-02-03 05:13:22 - TARGET_ARCH=mips TB --- 2012-02-03 05:13:22 - TZ=UTC TB --- 2012-02-03 05:13:22 - __MAKE_CONF=/dev/null TB --- 2012-02-03 05:13:22 - cd /src TB --- 2012-02-03 05:13:22 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Fri Feb 3 05:13:22 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Fri Feb 3 05:14:59 UTC 2012 TB --- 2012-02-03 05:14:59 - cd /src/sys/mips/conf TB --- 2012-02-03 05:14:59 - /usr/sbin/config -m MALTA TB --- 2012-02-03 05:14:59 - building MALTA kernel TB --- 2012-02-03 05:14:59 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 05:14:59 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 05:14:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 05:14:59 - SRCCONF=/dev/null TB --- 2012-02-03 05:14:59 - TARGET=mips TB --- 2012-02-03 05:14:59 - TARGET_ARCH=mips TB --- 2012-02-03 05:14:59 - TZ=UTC TB --- 2012-02-03 05:14:59 - __MAKE_CONF=/dev/null TB --- 2012-02-03 05:14:59 - cd /src TB --- 2012-02-03 05:14:59 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Fri Feb 3 05:14:59 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Fri Feb 3 05:16:25 UTC 2012 TB --- 2012-02-03 05:16:25 - cd /src/sys/mips/conf TB --- 2012-02-03 05:16:25 - /usr/sbin/config -m QEMU TB --- 2012-02-03 05:16:25 - building QEMU kernel TB --- 2012-02-03 05:16:25 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 05:16:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 05:16:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 05:16:25 - SRCCONF=/dev/null TB --- 2012-02-03 05:16:25 - TARGET=mips TB --- 2012-02-03 05:16:25 - TARGET_ARCH=mips TB --- 2012-02-03 05:16:25 - TZ=UTC TB --- 2012-02-03 05:16:25 - __MAKE_CONF=/dev/null TB --- 2012-02-03 05:16:25 - cd /src TB --- 2012-02-03 05:16:25 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Fri Feb 3 05:16:25 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Fri Feb 3 05:17:39 UTC 2012 TB --- 2012-02-03 05:17:39 - cd /src/sys/mips/conf TB --- 2012-02-03 05:17:39 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-03 05:17:39 - building SENTRY5 kernel TB --- 2012-02-03 05:17:39 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 05:17:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 05:17:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 05:17:39 - SRCCONF=/dev/null TB --- 2012-02-03 05:17:39 - TARGET=mips TB --- 2012-02-03 05:17:39 - TARGET_ARCH=mips TB --- 2012-02-03 05:17:39 - TZ=UTC TB --- 2012-02-03 05:17:39 - __MAKE_CONF=/dev/null TB --- 2012-02-03 05:17:39 - cd /src TB --- 2012-02-03 05:17:39 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Fri Feb 3 05:17:39 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 05:18:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 05:18:59 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-03 05:18:59 - 1983.58 user 431.84 system 2938.59 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 05:34:11 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29FC41065672; Fri, 3 Feb 2012 05:34:11 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-tul01m020-f182.google.com (mail-tul01m020-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id DAD268FC19; Fri, 3 Feb 2012 05:34:10 +0000 (UTC) Received: by obcwo16 with SMTP id wo16so5472142obc.13 for ; Thu, 02 Feb 2012 21:34:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=ZRerw5261QSsWseRxVOoNLsRc/ngAmaqLVmQ3jk8qZE=; b=UO37LmyOCTZcBT1y4cgy9CJNrer2i4eCUx9G3zF2wSy3ehnvJTaVQV+jHih4QY/8+N 7lSjm69v8IlhpbdC7/hKMyeG1LpxMrpIyBs66dI0b/IVeD8frzW3DdXgevYLmRzmI2jm uuSTCJ3RsfiP9q9fW3yML7mWjTgn3z6gU72IQ= MIME-Version: 1.0 Received: by 10.182.75.65 with SMTP id a1mr5325985obw.32.1328247250238; Thu, 02 Feb 2012 21:34:10 -0800 (PST) Received: by 10.182.74.167 with HTTP; Thu, 2 Feb 2012 21:34:10 -0800 (PST) In-Reply-To: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> Date: Fri, 3 Feb 2012 08:34:10 +0300 Message-ID: From: Sergey Kandaurov To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Doug Barton , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 05:34:11 -0000 On 3 February 2012 00:22, Torfinn Ingolfsen wrote: > Hi, > > I thought this bug was fixed back in 2009? > root@kg-v7# uname -a > FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul =A09 23:00= :31 CEST 2011 =A0 =A0 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC =A0amd= 64 > root@kg-v7# > root@kg-v7# service devd status > devd is running as pid 555. > root@kg-v7# service devd restart > Stopping devd. > Starting devd. > devd: devd already running, pid: 555 > /etc/rc.d/devd: WARNING: failed to start devd > root@kg-v7# service devd status > devd is not running. > > What gives? Please apply this patch and report how it goes for you. http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?r1=3D1.12;r2= =3D1.13 This is not in 8-STABLE yet. --=20 wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 05:45:50 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id 42435106566B for ; Fri, 3 Feb 2012 05:45:50 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from 172-17-150-251.globalsuite.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id D6569160E26; Fri, 3 Feb 2012 05:45:26 +0000 (UTC) Message-ID: <4F2B7476.1090907@FreeBSD.org> Date: Thu, 02 Feb 2012 21:45:26 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0) Gecko/20120201 Thunderbird/10.0 MIME-Version: 1.0 To: Sergey Kandaurov References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> In-Reply-To: X-Enigmail-Version: 1.3.5 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Torfinn Ingolfsen , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 05:45:50 -0000 On 02/02/2012 21:34, Sergey Kandaurov wrote: > On 3 February 2012 00:22, Torfinn Ingolfsen > wrote: >> Hi, >> >> I thought this bug was fixed back in 2009? >> root@kg-v7# uname -a >> FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 >> root@kg-v7# >> root@kg-v7# service devd status >> devd is running as pid 555. >> root@kg-v7# service devd restart >> Stopping devd. >> Starting devd. >> devd: devd already running, pid: 555 >> /etc/rc.d/devd: WARNING: failed to start devd >> root@kg-v7# service devd status >> devd is not running. >> >> What gives? > > Please apply this patch and report how it goes for you. > http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?r1=1.12;r2=1.13 > > This is not in 8-STABLE yet. Actually all the OP needs to do is to make sure the src tree is up to date and run mergemaster. I MFC'ed the relevant changes to rc.d/devd last April. Doug -- It's always a long day; 86400 doesn't fit into a short. Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 05:51:24 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id BB3DF106568D for ; Fri, 3 Feb 2012 05:51:24 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from 172-17-150-251.globalsuite.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id EE3041A89CF; Fri, 3 Feb 2012 05:50:58 +0000 (UTC) Message-ID: <4F2B75C2.6090005@FreeBSD.org> Date: Thu, 02 Feb 2012 21:50:58 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0) Gecko/20120201 Thunderbird/10.0 MIME-Version: 1.0 To: Jeremy Chadwick References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120202214550.GA6965@icarus.home.lan> In-Reply-To: <20120202214550.GA6965@icarus.home.lan> X-Enigmail-Version: 1.3.5 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Torfinn Ingolfsen , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 05:51:24 -0000 On 02/02/2012 13:45, Jeremy Chadwick wrote: > On Thu, Feb 02, 2012 at 09:22:22PM +0100, Torfinn Ingolfsen wrote: >> Hi, >> >> I thought this bug was fixed back in 2009? >> root@kg-v7# uname -a >> FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 >> root@kg-v7# >> root@kg-v7# service devd status >> devd is running as pid 555. >> root@kg-v7# service devd restart >> Stopping devd. >> Starting devd. >> devd: devd already running, pid: 555 >> /etc/rc.d/devd: WARNING: failed to start devd >> root@kg-v7# service devd status >> devd is not running. >> >> What gives? > > This is probably "what gives", as it's a common problem with all sorts > of daemons and is not specific to devd in the least: > > - devd is running (pid 555) > - Admin issues "service devd restart" > -- devd is sent SIGTERM; devd internally starts shutting down, > but is not fully dead yet. "kill" does not block (wait) for > processes to end, obviously No, but wait_for_pids() does. The OP's /etc is out of date. -- It's always a long day; 86400 doesn't fit into a short. Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 06:54:51 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3E6F1065670 for ; Fri, 3 Feb 2012 06:54:51 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta14.emeryville.ca.mail.comcast.net (qmta14.emeryville.ca.mail.comcast.net [76.96.27.212]) by mx1.freebsd.org (Postfix) with ESMTP id 88E588FC13 for ; Fri, 3 Feb 2012 06:54:51 +0000 (UTC) Received: from omta22.emeryville.ca.mail.comcast.net ([76.96.30.89]) by qmta14.emeryville.ca.mail.comcast.net with comcast id VJQC1i0021vN32cAEJuryg; Fri, 03 Feb 2012 06:54:51 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta22.emeryville.ca.mail.comcast.net with comcast id VJuq1i0031t3BNj8iJuq0Z; Fri, 03 Feb 2012 06:54:50 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id CF21D102C19; Thu, 2 Feb 2012 22:54:49 -0800 (PST) Date: Thu, 2 Feb 2012 22:54:49 -0800 From: Jeremy Chadwick To: Doug Barton Message-ID: <20120203065449.GA15534@icarus.home.lan> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120202214550.GA6965@icarus.home.lan> <4F2B75C2.6090005@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F2B75C2.6090005@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Torfinn Ingolfsen , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 06:54:51 -0000 On Thu, Feb 02, 2012 at 09:50:58PM -0800, Doug Barton wrote: > On 02/02/2012 13:45, Jeremy Chadwick wrote: > > On Thu, Feb 02, 2012 at 09:22:22PM +0100, Torfinn Ingolfsen wrote: > >> Hi, > >> > >> I thought this bug was fixed back in 2009? > >> root@kg-v7# uname -a > >> FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 > >> root@kg-v7# > >> root@kg-v7# service devd status > >> devd is running as pid 555. > >> root@kg-v7# service devd restart > >> Stopping devd. > >> Starting devd. > >> devd: devd already running, pid: 555 > >> /etc/rc.d/devd: WARNING: failed to start devd > >> root@kg-v7# service devd status > >> devd is not running. > >> > >> What gives? > > > > This is probably "what gives", as it's a common problem with all sorts > > of daemons and is not specific to devd in the least: > > > > - devd is running (pid 555) > > - Admin issues "service devd restart" > > -- devd is sent SIGTERM; devd internally starts shutting down, > > but is not fully dead yet. "kill" does not block (wait) for > > processes to end, obviously > > No, but wait_for_pids() does. > > The OP's /etc is out of date. Hmm, mine dated April, for RELENG_8 tag, doesn't appear to use wait_for_pids. Is there implicit usage in it somewhere? (Probably bits of rc.subr(8) I'm not familiar with or don't remember...) #!/bin/sh # # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ # # PROVIDE: devd # REQUIRE: netif network_ipv6 # BEFORE: NETWORKING mountcritremote # KEYWORD: nojail shutdown . /etc/rc.subr name="devd" rcvar=`set_rcvar` command="/sbin/${name}" start_precmd=${name}_prestart stop_precmd=find_pidfile find_pidfile() { if get_pidfile_from_conf pid-file /etc/devd.conf; then pidfile="$_pidfile_from_conf" else pidfile="/var/run/${name}.pid" fi } devd_prestart () { find_pidfile # If devd is disabled, turn it off in the kernel to avoid memory leaks. if ! checkyesno ${rcvar}; then $SYSCTL hw.bus.devctl_disable=1 fi } load_rc_config $name run_rc_command "$1" -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 07:02:09 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65889106564A; Fri, 3 Feb 2012 07:02:09 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-tul01m020-f182.google.com (mail-tul01m020-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 218168FC13; Fri, 3 Feb 2012 07:02:08 +0000 (UTC) Received: by obcwo16 with SMTP id wo16so5578238obc.13 for ; Thu, 02 Feb 2012 23:02:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=pvmnGkMa8YyD0rjeVFmQjVesh4TD6H3RKP9IW+BzP/o=; b=cme13ff7JF6S4lZhMxKWNxLD3srnZCyGGwWTwOk2K2F+f7BRe70P/wYvyewl6i7Xi0 ZLlvLzukr6BErmPX9NNCwcSryheGfRaeoi4X+RnR85+hfoIZ3nUF4V+Te/qrbvVL4kma VLJwKQbwgKQGLOlmC1ODjbZFqzFERUK2IISRs= MIME-Version: 1.0 Received: by 10.182.159.101 with SMTP id xb5mr2309373obb.22.1328252528465; Thu, 02 Feb 2012 23:02:08 -0800 (PST) Received: by 10.182.74.167 with HTTP; Thu, 2 Feb 2012 23:02:08 -0800 (PST) In-Reply-To: <4F2B7476.1090907@FreeBSD.org> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <4F2B7476.1090907@FreeBSD.org> Date: Fri, 3 Feb 2012 10:02:08 +0300 Message-ID: From: Sergey Kandaurov To: Doug Barton Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Torfinn Ingolfsen , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 07:02:09 -0000 On 3 February 2012 09:45, Doug Barton wrote: > On 02/02/2012 21:34, Sergey Kandaurov wrote: >> On 3 February 2012 00:22, Torfinn Ingolfsen >> wrote: >>> Hi, >>> >>> I thought this bug was fixed back in 2009? >>> root@kg-v7# uname -a >>> FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul =A09 23:= 00:31 CEST 2011 =A0 =A0 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC =A0a= md64 >>> root@kg-v7# >>> root@kg-v7# service devd status >>> devd is running as pid 555. >>> root@kg-v7# service devd restart >>> Stopping devd. >>> Starting devd. >>> devd: devd already running, pid: 555 >>> /etc/rc.d/devd: WARNING: failed to start devd >>> root@kg-v7# service devd status >>> devd is not running. >>> >>> What gives? >> >> Please apply this patch and report how it goes for you. >> http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?r1=3D1.12;r= 2=3D1.13 >> >> This is not in 8-STABLE yet. > > Actually all the OP needs to do is to make sure the src tree is up to > date and run mergemaster. I MFC'ed the relevant changes to rc.d/devd > last April. Hmm.. I just double-checked. Somehow cvsweb.cgi failed to show that this change is merged in 1.11.2.2. Sorry for noise. --=20 wbr, pluknet From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 07:22:52 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id E844D106566B for ; Fri, 3 Feb 2012 07:22:52 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from 172-17-150-251.globalsuite.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id 26F2215084D; Fri, 3 Feb 2012 07:22:52 +0000 (UTC) Message-ID: <4F2B8B4B.6080004@FreeBSD.org> Date: Thu, 02 Feb 2012 23:22:51 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0) Gecko/20120201 Thunderbird/10.0 MIME-Version: 1.0 To: Jeremy Chadwick References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120202214550.GA6965@icarus.home.lan> <4F2B75C2.6090005@FreeBSD.org> <20120203065449.GA15534@icarus.home.lan> In-Reply-To: <20120203065449.GA15534@icarus.home.lan> X-Enigmail-Version: 1.3.5 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Torfinn Ingolfsen , freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 07:22:53 -0000 On 02/02/2012 22:54, Jeremy Chadwick wrote: > Hmm, mine dated April, for RELENG_8 tag, doesn't appear to use > wait_for_pids. It's in rc.subr. -- It's always a long day; 86400 doesn't fit into a short. Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 07:31:53 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EFC8106564A; Fri, 3 Feb 2012 07:31:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id AD4ED8FC0A; Fri, 3 Feb 2012 07:31:52 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q137VqgZ041481; Fri, 3 Feb 2012 07:31:52 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q137VpF5041480; Fri, 3 Feb 2012 07:31:51 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 07:31:51 GMT Message-Id: <201202030731.q137VpF5041480@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 07:31:53 -0000 TB --- 2012-02-03 06:53:29 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 06:53:29 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-03 06:53:29 - cleaning the object tree TB --- 2012-02-03 06:53:41 - cvsupping the source tree TB --- 2012-02-03 06:53:41 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-03 06:53:54 - building world TB --- 2012-02-03 06:53:54 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 06:53:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 06:53:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 06:53:54 - SRCCONF=/dev/null TB --- 2012-02-03 06:53:54 - TARGET=mips TB --- 2012-02-03 06:53:54 - TARGET_ARCH=mips TB --- 2012-02-03 06:53:54 - TZ=UTC TB --- 2012-02-03 06:53:54 - __MAKE_CONF=/dev/null TB --- 2012-02-03 06:53:54 - cd /src TB --- 2012-02-03 06:53:54 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 06:53:54 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 07:29:31 UTC 2012 TB --- 2012-02-03 07:29:31 - cd /src/sys/mips/conf TB --- 2012-02-03 07:29:31 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 07:29:31 - building ADM5120 kernel TB --- 2012-02-03 07:29:31 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 07:29:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 07:29:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 07:29:31 - SRCCONF=/dev/null TB --- 2012-02-03 07:29:31 - TARGET=mips TB --- 2012-02-03 07:29:31 - TARGET_ARCH=mips TB --- 2012-02-03 07:29:31 - TZ=UTC TB --- 2012-02-03 07:29:31 - __MAKE_CONF=/dev/null TB --- 2012-02-03 07:29:31 - cd /src TB --- 2012-02-03 07:29:31 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 07:29:31 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 07:30:43 UTC 2012 TB --- 2012-02-03 07:30:43 - cd /src/sys/mips/conf TB --- 2012-02-03 07:30:43 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-03 07:30:43 - building ALCHEMY kernel TB --- 2012-02-03 07:30:43 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 07:30:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 07:30:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 07:30:43 - SRCCONF=/dev/null TB --- 2012-02-03 07:30:43 - TARGET=mips TB --- 2012-02-03 07:30:43 - TARGET_ARCH=mips TB --- 2012-02-03 07:30:43 - TZ=UTC TB --- 2012-02-03 07:30:43 - __MAKE_CONF=/dev/null TB --- 2012-02-03 07:30:43 - cd /src TB --- 2012-02-03 07:30:43 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Fri Feb 3 07:30:43 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 07:31:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 07:31:51 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-03 07:31:51 - 1737.00 user 355.18 system 2302.09 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 08:27:43 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C069106564A; Fri, 3 Feb 2012 08:27:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id E88E48FC19; Fri, 3 Feb 2012 08:27:42 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q138Rg0s016008; Fri, 3 Feb 2012 08:27:42 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q138RgwL016007; Fri, 3 Feb 2012 08:27:42 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 08:27:42 GMT Message-Id: <201202030827.q138RgwL016007@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 08:27:43 -0000 TB --- 2012-02-03 07:12:50 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 07:12:50 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-03 07:12:50 - cleaning the object tree TB --- 2012-02-03 07:13:21 - cvsupping the source tree TB --- 2012-02-03 07:13:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-03 07:14:41 - building world TB --- 2012-02-03 07:14:41 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 07:14:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 07:14:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 07:14:41 - SRCCONF=/dev/null TB --- 2012-02-03 07:14:41 - TARGET=powerpc TB --- 2012-02-03 07:14:41 - TARGET_ARCH=powerpc TB --- 2012-02-03 07:14:41 - TZ=UTC TB --- 2012-02-03 07:14:41 - __MAKE_CONF=/dev/null TB --- 2012-02-03 07:14:41 - cd /src TB --- 2012-02-03 07:14:41 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 07:14:41 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 08:00:02 UTC 2012 TB --- 2012-02-03 08:00:02 - generating LINT kernel config TB --- 2012-02-03 08:00:02 - cd /src/sys/powerpc/conf TB --- 2012-02-03 08:00:02 - /usr/bin/make -B LINT TB --- 2012-02-03 08:00:02 - cd /src/sys/powerpc/conf TB --- 2012-02-03 08:00:02 - /usr/sbin/config -m LINT TB --- 2012-02-03 08:00:02 - building LINT kernel TB --- 2012-02-03 08:00:02 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 08:00:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 08:00:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 08:00:02 - SRCCONF=/dev/null TB --- 2012-02-03 08:00:02 - TARGET=powerpc TB --- 2012-02-03 08:00:02 - TARGET_ARCH=powerpc TB --- 2012-02-03 08:00:02 - TZ=UTC TB --- 2012-02-03 08:00:02 - __MAKE_CONF=/dev/null TB --- 2012-02-03 08:00:02 - cd /src TB --- 2012-02-03 08:00:02 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 08:00:02 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Fri Feb 3 08:15:17 UTC 2012 TB --- 2012-02-03 08:15:17 - cd /src/sys/powerpc/conf TB --- 2012-02-03 08:15:17 - /usr/sbin/config -m GENERIC TB --- 2012-02-03 08:15:17 - building GENERIC kernel TB --- 2012-02-03 08:15:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 08:15:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 08:15:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 08:15:17 - SRCCONF=/dev/null TB --- 2012-02-03 08:15:17 - TARGET=powerpc TB --- 2012-02-03 08:15:17 - TARGET_ARCH=powerpc TB --- 2012-02-03 08:15:17 - TZ=UTC TB --- 2012-02-03 08:15:17 - __MAKE_CONF=/dev/null TB --- 2012-02-03 08:15:17 - cd /src TB --- 2012-02-03 08:15:17 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri Feb 3 08:15:18 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Fri Feb 3 08:25:41 UTC 2012 TB --- 2012-02-03 08:25:41 - cd /src/sys/powerpc/conf TB --- 2012-02-03 08:25:41 - /usr/sbin/config -m MPC85XX TB --- 2012-02-03 08:25:41 - building MPC85XX kernel TB --- 2012-02-03 08:25:41 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 08:25:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 08:25:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 08:25:41 - SRCCONF=/dev/null TB --- 2012-02-03 08:25:41 - TARGET=powerpc TB --- 2012-02-03 08:25:41 - TARGET_ARCH=powerpc TB --- 2012-02-03 08:25:41 - TZ=UTC TB --- 2012-02-03 08:25:41 - __MAKE_CONF=/dev/null TB --- 2012-02-03 08:25:41 - cd /src TB --- 2012-02-03 08:25:41 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Fri Feb 3 08:25:41 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 08:27:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 08:27:42 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-03 08:27:42 - 3519.72 user 568.91 system 4491.32 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 08:48:19 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7193C1065672 for ; Fri, 3 Feb 2012 08:48:19 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta13.emeryville.ca.mail.comcast.net (qmta13.emeryville.ca.mail.comcast.net [76.96.27.243]) by mx1.freebsd.org (Postfix) with ESMTP id 5A1FB8FC12 for ; Fri, 3 Feb 2012 08:48:18 +0000 (UTC) Received: from omta22.emeryville.ca.mail.comcast.net ([76.96.30.89]) by qmta13.emeryville.ca.mail.comcast.net with comcast id VLoJ1i0031vN32cADLoJyB; Fri, 03 Feb 2012 08:48:18 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta22.emeryville.ca.mail.comcast.net with comcast id VLoH1i00Q1t3BNj8iLoJMu; Fri, 03 Feb 2012 08:48:18 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id C9030102C19; Fri, 3 Feb 2012 00:48:17 -0800 (PST) Date: Fri, 3 Feb 2012 00:48:17 -0800 From: Jeremy Chadwick To: Mike Tancsa Message-ID: <20120203084817.GA17447@icarus.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: George Mitchell , freebsd-stable@freebsd.org Subject: sentex tinderbox build cluster failures X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 08:48:19 -0000 Mike, For many days now (almost a week?) there have been tinderbox build mails coming from the sentex.ca build cluster, specific to powerpc, mips, and sparc64 platforms. The errors in question are strange and may indicate some kind of filesystem corruption or equivalent -- I'm really not sure. Breaking them down: powerpc/powerpc, RELENG_8_2 -- /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token This file hasn't been touched in over 2 months: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/powerpc/booke/platform_bare.c mips/mips, RELENG_8_2 -- /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression This file hasn't been touched in over 2 months: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/alchemy/obio.c mips/mips, RELENG_8_1 -- In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) src/sys/mips/sentry5/siba_cc.c has been Attic'd, and the last time it was touched was 14 months ago: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/sentry5/Attic/siba_cc.c src/sys/dev/siba/sibavar.h hasn't been touched in over 2 months: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/siba/sibavar.h All recent tinderbox failures for RELENG_8 (for mips, ia64, and sparc64) appear to be related to a commit Jack did ~7 hours ago, and are almost certainly temporary/transient errors (e.g. csup/cvs pulldown didn't get the full commit). So we can ignore those. The others need to be investigated though. Users on the freebsd-stable lists have been complaining about these continual errors, so I was wondering if they're being investigated. I also got one off-list mail from someone personally asking me if I knew what could be going on or had any insights to this (not sure why that person thought that -- I have nothing to do with tinderbox :-) ). Let us know if you could. Thanks! -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 09:06:27 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27BAD106566C; Fri, 3 Feb 2012 09:06:27 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id DE75F8FC13; Fri, 3 Feb 2012 09:06:26 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q1396QjG086617; Fri, 3 Feb 2012 09:06:26 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q1396P8f086485; Fri, 3 Feb 2012 09:06:25 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 09:06:25 GMT Message-Id: <201202030906.q1396P8f086485@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on i386/i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 09:06:27 -0000 TB --- 2012-02-03 08:06:42 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 08:06:42 - starting RELENG_8 tinderbox run for i386/i386 TB --- 2012-02-03 08:06:42 - cleaning the object tree TB --- 2012-02-03 08:06:42 - cvsupping the source tree TB --- 2012-02-03 08:06:42 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/i386/i386/supfile TB --- 2012-02-03 08:07:42 - building world TB --- 2012-02-03 08:07:42 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 08:07:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 08:07:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 08:07:42 - SRCCONF=/dev/null TB --- 2012-02-03 08:07:42 - TARGET=i386 TB --- 2012-02-03 08:07:42 - TARGET_ARCH=i386 TB --- 2012-02-03 08:07:42 - TZ=UTC TB --- 2012-02-03 08:07:42 - __MAKE_CONF=/dev/null TB --- 2012-02-03 08:07:42 - cd /src TB --- 2012-02-03 08:07:42 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 08:07:42 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 08:54:36 UTC 2012 TB --- 2012-02-03 08:54:36 - generating LINT kernel config TB --- 2012-02-03 08:54:36 - cd /src/sys/i386/conf TB --- 2012-02-03 08:54:36 - /usr/bin/make -B LINT TB --- 2012-02-03 08:54:37 - cd /src/sys/i386/conf TB --- 2012-02-03 08:54:37 - /usr/sbin/config -m LINT TB --- 2012-02-03 08:54:37 - building LINT kernel TB --- 2012-02-03 08:54:37 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 08:54:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 08:54:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 08:54:37 - SRCCONF=/dev/null TB --- 2012-02-03 08:54:37 - TARGET=i386 TB --- 2012-02-03 08:54:37 - TARGET_ARCH=i386 TB --- 2012-02-03 08:54:37 - TZ=UTC TB --- 2012-02-03 08:54:37 - __MAKE_CONF=/dev/null TB --- 2012-02-03 08:54:37 - cd /src TB --- 2012-02-03 08:54:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 08:54:37 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] :> hack.c cc -shared -nostdlib hack.c -o hack.So rm -f hack.c MAKE=/usr/bin/make sh /src/sys/conf/newvers.sh LINT cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue vers.c linking kernel ld: kernel: Not enough room for program headers (allocated 5, need 6) ld: final link failed: Bad value *** Error code 1 Stop in /obj/i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 09:06:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 09:06:25 - ERROR: failed to build LINT kernel TB --- 2012-02-03 09:06:25 - 2765.86 user 488.41 system 3582.98 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 09:16:26 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC0611065670; Fri, 3 Feb 2012 09:16:26 +0000 (UTC) (envelope-from marcelbonnet@gmail.com) Received: from mail-tul01m020-f182.google.com (mail-tul01m020-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 75ACF8FC12; Fri, 3 Feb 2012 09:16:26 +0000 (UTC) Received: by obcwo16 with SMTP id wo16so5787202obc.13 for ; Fri, 03 Feb 2012 01:16:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=wGWRUW04RuxuVEAAkHi1n60jM7QFA/h1B7Cdz8+ehRM=; b=i9PvFKlmt5weqTm3t8L0y3QJTMf5VovD9F56ZHdC79G36ntgB/tKSb4BObEr4E5V+4 ML8CeJujbsHng2wZD/63OupA2bJTTczQCZkJoOOPEgr0aq3IAobqfNIK70KBQ8PlcUQM NMqjjXI4LzIMWmDLVQeM8XQAAHEzzfcwvfIbs= MIME-Version: 1.0 Received: by 10.182.72.35 with SMTP id a3mr5879201obv.16.1328258758988; Fri, 03 Feb 2012 00:45:58 -0800 (PST) Received: by 10.182.118.97 with HTTP; Fri, 3 Feb 2012 00:45:58 -0800 (PST) Received: by 10.182.118.97 with HTTP; Fri, 3 Feb 2012 00:45:58 -0800 (PST) In-Reply-To: References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> Date: Fri, 3 Feb 2012 06:45:58 -0200 Message-ID: From: Marcel Bonnet To: Ivan Voras Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 09:16:26 -0000 Hi, what would be the best choice? 1. turn off SUJ and dump using -L flag and the turn it on again (but I'm affraid to destroy the system this way - is this possible?) 2. dump the unmounted partitions with a live cd, per example Sorry for top posting, mobile mail client problem. Em 30/01/2012 12:56, "Ivan Voras" escreveu: On 30/01/2012 13:06, Jeremy Chadwick wrote: >> For now I've turned off journaling (soft updates see... It's a known bug: SU+J currently deadlocks when used with UFS snapshots. _______________________________________________ freebsd-stable@freebsd.org mailing list http://li... From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 09:24:03 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AFE31065675 for ; Fri, 3 Feb 2012 09:24:03 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta12.emeryville.ca.mail.comcast.net (qmta12.emeryville.ca.mail.comcast.net [76.96.27.227]) by mx1.freebsd.org (Postfix) with ESMTP id 1DEB38FC08 for ; Fri, 3 Feb 2012 09:24:02 +0000 (UTC) Received: from omta07.emeryville.ca.mail.comcast.net ([76.96.30.59]) by qmta12.emeryville.ca.mail.comcast.net with comcast id VMNk1i0011GXsucACMQ2qR; Fri, 03 Feb 2012 09:24:02 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta07.emeryville.ca.mail.comcast.net with comcast id VMQ11i00h1t3BNj8UMQ2EK; Fri, 03 Feb 2012 09:24:02 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 7690C102C19; Fri, 3 Feb 2012 01:24:01 -0800 (PST) Date: Fri, 3 Feb 2012 01:24:01 -0800 From: Jeremy Chadwick To: Marcel Bonnet Message-ID: <20120203092401.GA18280@icarus.home.lan> References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-stable@freebsd.org, Ivan Voras Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 09:24:03 -0000 On Fri, Feb 03, 2012 at 06:45:58AM -0200, Marcel Bonnet wrote: > Hi, what would be the best choice? > > 1. turn off SUJ and dump using -L flag and the turn it on again (but I'm > affraid to destroy the system this way - is this possible?) > 2. dump the unmounted partitions with a live cd, per example > > Sorry for top posting, mobile mail client problem. > > Em 30/01/2012 12:56, "Ivan Voras" escreveu: > > On 30/01/2012 13:06, Jeremy Chadwick wrote: > > >> For now I've turned off journaling (soft updates see... > It's a known bug: SU+J currently deadlocks when used with UFS snapshots. Is there a reason you require use of dump(8) over, say, rsync/rsnapshot or similar tools? As far as disabling the journalling aspect of SU+J on-the-fly (meaning on a mounted filesystem), I don't think this is possible, but I will state boldly up front I have not messed around with 9.0 at all aside from tinkering about in the installer. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 10:15:38 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 286B9106564A for ; Fri, 3 Feb 2012 10:15:38 +0000 (UTC) (envelope-from adams-freebsd@ateamsystems.com) Received: from tali.ateamservers.com (tali.ateamservers.com [69.55.231.82]) by mx1.freebsd.org (Postfix) with ESMTP id EE4F68FC16 for ; Fri, 3 Feb 2012 10:15:37 +0000 (UTC) Received: from [192.168.15.220] (unknown [118.175.84.92]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tali.ateamservers.com (Postfix) with ESMTPSA id 2E28F12E9BE6; Fri, 3 Feb 2012 05:15:35 -0500 (EST) Message-ID: <4F2BB3CA.3060408@ateamsystems.com> Date: Fri, 03 Feb 2012 17:15:38 +0700 From: Adam Strohl Organization: A-Team Systems User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: Marcel Bonnet References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Cc: freebsd-stable@freebsd.org, Ivan Voras Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 10:15:38 -0000 On 2/3/2012 15:45, Marcel Bonnet wrote: > Hi, what would be the best choice? > > 1. turn off SUJ and dump using -L flag and the turn it on again (but I'= m > affraid to destroy the system this way - is this possible?) Yes, this is what I have done for my 9.0 servers. Unfortunately you=20 need to be in single user mode if you need to change /'s setting. This = is because you cannot change this option while a file system is mounted=20 read+write. Rebooting into single user mode is the easiest way to do=20 this, as it leaves you with / mounted read only and everything else=20 dismounted for you. Then I ran: tunefs -j disable / For each volume that journaling was enabled for. As a side note remove the .sujournal file in the base of each volume=20 afterwards as it just takes up space. After doing this I have been using dump(8) nightly via cron(8) for about = a week now under 9.0 without issue. Running it on 11 servers currently. > 2. dump the unmounted partitions with a live cd, per example > > Sorry for top posting, mobile mail client problem. > > Em 30/01/2012 12:56, "Ivan Voras"escreveu: > > On 30/01/2012 13:06, Jeremy Chadwick wrote: > >>> For now I've turned off journaling (soft updates see... > It's a known bug: SU+J currently deadlocks when used with UFS snapshots= =2E > > > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://li... > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.or= g" From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 10:36:01 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D09F106564A; Fri, 3 Feb 2012 10:36:01 +0000 (UTC) (envelope-from marcelbonnet@gmail.com) Received: from mail-tul01m020-f182.google.com (mail-tul01m020-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id D9B388FC15; Fri, 3 Feb 2012 10:36:00 +0000 (UTC) Received: by obcwo16 with SMTP id wo16so5920073obc.13 for ; Fri, 03 Feb 2012 02:36:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=PEbOEyWPY+wwQ+IyotrlQxhS0u4rjAMZMYH8o+04TAw=; b=AeVi2mfaWpN9w5EpJEhndNFCeQzZhYmOjlEDf7Ayl+tdA1ngLXA1RpKT1MQ8FOOSyl myNC0KMhZP6l1ui3akygNf90FzYAMwEbDVbPk5GHAgJ0Q/UBimFTLB7xUzzEVcjbuXa+ xXn1Kkgcopeb7GNDux2ox4sABjgJOPQe0kzb8= MIME-Version: 1.0 Received: by 10.182.231.100 with SMTP id tf4mr6082496obc.56.1328265360151; Fri, 03 Feb 2012 02:36:00 -0800 (PST) Received: by 10.182.118.97 with HTTP; Fri, 3 Feb 2012 02:36:00 -0800 (PST) In-Reply-To: <4F2BB59F.4070306@ateamsystems.com> References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> <4F2BB3CA.3060408@ateamsystems.com> <4F2BB59F.4070306@ateamsystems.com> Date: Fri, 3 Feb 2012 08:36:00 -0200 Message-ID: From: Marcel Bonnet To: Adam Strohl Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-stable@freebsd.org, Ivan Voras Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 10:36:01 -0000 On 3 February 2012 08:23, Adam Strohl wrote: > On 2/3/2012 17:15, Adam Strohl wrote: >> >> After doing this I have been using dump(8) nightly via cron(8) for about= a >> week now under 9.0 without issue. =A0Running it on 11 servers currently. >> > > P.S. > To be clear, I am using dump with -L (snapshots) without issue. > Okay, thanks! If we do that with our server, I'll post the result. --=20 Marcel Bonnet From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 10:41:05 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2521106566C; Fri, 3 Feb 2012 10:41:05 +0000 (UTC) (envelope-from adam.strohl@ateamsystems.com) Received: from tali.ateamservers.com (tali.ateamservers.com [69.55.231.82]) by mx1.freebsd.org (Postfix) with ESMTP id 807D88FC1E; Fri, 3 Feb 2012 10:41:05 +0000 (UTC) Received: from [192.168.15.220] (unknown [118.175.84.92]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tali.ateamservers.com (Postfix) with ESMTPSA id 53BAE12E9C5B; Fri, 3 Feb 2012 05:23:25 -0500 (EST) Message-ID: <4F2BB59F.4070306@ateamsystems.com> Date: Fri, 03 Feb 2012 17:23:27 +0700 From: Adam Strohl Organization: A-Team Systems User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: Marcel Bonnet References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> <4F2BB3CA.3060408@ateamsystems.com> In-Reply-To: <4F2BB3CA.3060408@ateamsystems.com> Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha1; boundary="------------ms000501010201030803050709" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org, Ivan Voras Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 10:41:05 -0000 This is a cryptographically signed message in MIME format. --------------ms000501010201030803050709 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable On 2/3/2012 17:15, Adam Strohl wrote: > After doing this I have been using dump(8) nightly via cron(8) for=20 > about a week now under 9.0 without issue. Running it on 11 servers=20 > currently. > P.S. To be clear, I am using dump with -L (snapshots) without issue. --------------ms000501010201030803050709-- From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 12:25:19 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B24AB106566C for ; Fri, 3 Feb 2012 12:25:19 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (constantine.ingresso.co.uk [IPv6:2a02:b90:3002:e550::3]) by mx1.freebsd.org (Postfix) with ESMTP id 786298FC12 for ; Fri, 3 Feb 2012 12:25:19 +0000 (UTC) Received: from dilbert.london-internal.ingresso.co.uk ([10.64.50.6] helo=dilbert.ingresso.co.uk) by constantine.ingresso.co.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtICc-0001H4-26 for freebsd-stable@freebsd.org; Fri, 03 Feb 2012 12:25:18 +0000 Received: from petefrench by dilbert.ingresso.co.uk with local (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtICc-00095q-1M for freebsd-stable@freebsd.org; Fri, 03 Feb 2012 12:25:18 +0000 To: freebsd-stable@freebsd.org Message-Id: From: Pete French Date: Fri, 03 Feb 2012 12:25:18 +0000 Subject: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 12:25:19 -0000 So, I was trying to create a disc witha sector size of 4096 bytes, and I assumed that simply creating a zvol with that blocksize would do the trick. But it appears that whatever the blocksize is on the xvol, diskinfo is reporting the sector size as 512 bytes. I this the intended behaviour ? I dont have a Solaris system to hand to test it on, so I have no ida if this is BSD specific or not. cheers, -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 12:30:53 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEBC4106566B for ; Fri, 3 Feb 2012 12:30:53 +0000 (UTC) (envelope-from adams-freebsd@ateamsystems.com) Received: from tali.ateamservers.com (tali.ateamservers.com [69.55.231.82]) by mx1.freebsd.org (Postfix) with ESMTP id B4A6C8FC0C for ; Fri, 3 Feb 2012 12:30:53 +0000 (UTC) Received: from [192.168.15.220] (unknown [118.175.84.92]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tali.ateamservers.com (Postfix) with ESMTPSA id 2336512E9BE6 for ; Fri, 3 Feb 2012 07:30:51 -0500 (EST) Message-ID: <4F2BD37E.70209@ateamsystems.com> Date: Fri, 03 Feb 2012 19:30:54 +0700 From: Adam Strohl Organization: A-Team Systems User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: FreeBSD-Stable ML Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: FreeBSD 9: Group quotas increase but don't decrease automatically X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 12:30:53 -0000 I'm running FreeBSD 9 on a number of systems and finally decided to take advantage of the quota system to enforce limits on my users. No real issues setting it all up aside from finding that http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/quotas.html needs to be updated. The new /etc/rc.conf entry is quota_enable="YES" not enable_quotas="YES" as it says (assuming it used to be this in 8.x?). I'll file a PR for this shortly. I did however run into a more serious issue (I think): A group or user's allocation as reported by repquota(8) will increases with new/growing files, however when a file is deleted or chgrped out of the quota's group, the amount of space reported by repquota(8) does not decrease. I have verified that the system does not register the freed space by going over the soft limit, being denied write, then deleting files. Even if I delete files which drop me below the soft quota limit, I will not be able to add them as I am still "over quota". So it does not appear to be reporting issue, the system really doesn't realize the usage has gone down. Interestingly the inode counts do decrease automatically/"instantly" as I would expect. Running quotacheck(8) fixes the issue and updates the allocation counts, but does not magically fix auto-updating, so needs to be done periodically which can be a bit intensive depending on file count. I see this on all FreeBSD 9 machines with quotas turned on. For now I have a cron script which tries to guess (based on changing inode counts, etc) if it should run quotacheck, and does so if needed (to avoid just blindly running it periodically). Anyone else run into this? Am I missing something? Known issue? Let me know if anyone wants more info, etc. I can also paste the work around "smart" cron script if anyone is interested (and I'm not missing something silly :P). -- Adam Strohl A-Team Systems http://ateamsystems.com/ From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 13:09:15 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 449F11065670; Fri, 3 Feb 2012 13:09:15 +0000 (UTC) (envelope-from antonio.trindade@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 689848FC08; Fri, 3 Feb 2012 13:09:13 +0000 (UTC) Received: by wgbdq11 with SMTP id dq11so3893513wgb.31 for ; Fri, 03 Feb 2012 05:09:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:mime-version:content-type:disposition-notification-to:from :in-reply-to:date:message-id:references:to:x-mailer:x-virus-scanned; bh=jg3WT95Yy3MO1T+52Lrr4ugbN8EqwkQcqenjoAHO3O0=; b=gvGjR8qfL0EZAef5+EPDOh1wdZR3wTP3AFeB25AdznQLRmrkkpWbFi78kOOy0uWFao 4iu654CTCX2EmUolbAuh37Wwyv/FHxR7JuxRwgpcQoS4gaVUhuoWpiqrPeIxqWmM+q0X wwspzNvrkfoCZNqkCZG3HY4kLyR/hmE52HpxE= Received: by 10.180.81.35 with SMTP id w3mr11372749wix.10.1328274553214; Fri, 03 Feb 2012 05:09:13 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (a89-153-149-64.cpe.netcabo.pt. [89.153.149.64]) by mx.google.com with ESMTPS id l8sm17248697wiy.5.2012.02.03.05.09.10 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 03 Feb 2012 05:09:12 -0800 (PST) Received: from gatekeeper.darklair.homeunix.net (localhost [127.0.0.1]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTP id D1B54CF06A; Fri, 3 Feb 2012 13:09:09 +0000 (WET) Received: from altair-wifi.darklair.homeunix.net (altair-wifi.darklair.homeunix.net [10.0.0.11]) by gatekeeper.darklair.homeunix.net (Postfix) with ESMTPA id 739BBCF069; Fri, 3 Feb 2012 13:09:09 +0000 (WET) Mime-Version: 1.0 (Apple Message framework v1084) From: "=?iso-8859-1?Q?Ant=F3nio_Trindade?=" In-Reply-To: Date: Fri, 3 Feb 2012 13:09:08 +0000 Message-Id: <32F9152B-5B6A-400A-9353-A050C89A336E@gmail.com> References: <315A1E95-9064-494F-A3B8-48F1C4951624@gmail.com> To: freebsd-stable@freebsd.org, freebsd-fs@freebsd.org, freebsd-bugs@freebsd.org X-Mailer: Apple Mail (2.1084) X-Virus-Scanned: ClamAV using ClamSMTP Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: kernel: panic: softdep_sync_buf: Unknown type jnewblk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 13:09:15 -0000 Hi! After a few days, I finally got a kernel panic like the one I reported = earlier. I attach the file info.0. I'm not attaching the vmcore.0 and core.txt.0 = files, because they are over 100MB in size. If needed, they can be = downloaded from http://trindade.myphotos.cc/crash/vmcore.0.gz and = http://trindade.myphotos.cc/crash/core.txt.0. I remind you that I am not using snapshots, at least conscientiously. Hope this helps diagnosing the problem. Meanwhile I deactivated SU+J again and reverted back to plain old SU. Best regards. ------ BEGIN info.0 ------ Dump header from device /dev/ad0s1b Architecture: i386 Architecture Version: 2 Dump Length: 193622016B (184 MB) Blocksize: 512 Dumptime: Thu Feb 2 22:57:19 2012 Hostname: gatekeeper.darklair.homeunix.net Magic: FreeBSD Kernel Dump Version String: FreeBSD 9.0-RELEASE #0: Sun Jan 15 01:22:14 WET 2012 = root@gatekeeper.darklair.homeunix.net:/usr/obj/usr/src/sys/GATEKEEPER Panic String: softdep_sync_buf: Unknown type jnewblk Dump Parity: 3424763946 Bounds: 0 Dump Status: good ------ END info.0 ------ Ant=F3nio Trindade Antonio Trindade gmail.com S=EDtios pessoais: Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ Blog de fotografia: http://trindade.myphotos.cc/fotografia/ Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ On 2012/01/27, at 01:03, Ant=F3nio Trindade wrote: > I'm sorry for so many mails... >=20 > Please cc me about this, because I'm not on any of the FreeBSD mailing = lists... >=20 > Thanks in advance. >=20 > Cumprimentos/Best regards/Mit freundlichen Gr=FC=DFen, > Ant=F3nio Trindade > Antonio Trindade gmail.com >=20 > S=EDtios pessoais: > Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ > Blog de fotografia: http://trindade.myphotos.cc/fotografia/ > Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ > Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ >=20 > On 2012/01/27, at 00:44, Ant=F3nio Trindade wrote: >=20 >>=20 >>> From: Ant=F3nio Trindade >>> Date: 27 de Janeiro de 2012 00:40:06 WET >>> To: freebsd-stable@freebsd.org, freebsd-fs@freebsd.org, = freebsd-bugs@freebsd.org >>> Subject: kernel: panic: softdep_sync_buf: Unknown type jnewblk >>>=20 >>> Cheers. >>>=20 >>> I recently updated my system to FreeBSD-9.0 and activated softupdate = journaling for a number of file systems (name /home, /var, /usr). >>>=20 >>> Since then I have been experiencing kernel panics: >>> kernel: panic: softdep_sync_buf: Unknown type jnewblk >>>=20 >>> Yesterday, Jan 26th, I got 6 (six) automatic reboots due to these = kernel panics. >>>=20 >>> I have now disabled softupdates journaling in the hope that the = panics disappear. >>>=20 >>> I am sorry for not providing more information about the panic, but = I'll gladly try to gather more info if instructed how to. >>>=20 >>> Cumprimentos/Best regards/Mit freundlichen Gr=FC=DFen, >>> Ant=F3nio Trindade >>> Antonio Trindade gmail.com >>>=20 >>> S=EDtios pessoais: >>> Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ >>> Blog de fotografia: http://trindade.myphotos.cc/fotografia/ >>> Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ >>> Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ >>>=20 >>=20 >> I forgot some additional info: >> To deactivate softupdates journaling, I rebooted into single-user = mode and ran full fsck to every file system I had activated journaling = for. >> To my surprise, fsck reported errors (namely wrong block counts and = bitmap errors, nothing serious). >>=20 >> Cumprimentos/Best regards/Mit freundlichen Gr=FC=DFen, >> Ant=F3nio Trindade >> Antonio Trindade gmail.com >>=20 >> S=EDtios pessoais: >> Galeria Fotogr=E1fica: http://trindade.myphotos.cc/fotos/ >> Blog de fotografia: http://trindade.myphotos.cc/fotografia/ >> Blog de not=EDcias: http://trindade.myphotos.cc/noticiasavulsas/ >> Blog pessoal: http://trindade.myphotos.cc/pensamentosnoar/ >>=20 >=20 From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 13:37:05 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFCD7106564A for ; Fri, 3 Feb 2012 13:37:05 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1-6.sentex.ca [IPv6:2607:f3e0:0:1::12]) by mx1.freebsd.org (Postfix) with ESMTP id 7B9EE8FC1E for ; Fri, 3 Feb 2012 13:37:05 +0000 (UTC) Received: from [IPv6:2607:f3e0:0:4:f025:8813:7603:7e4a] (saphire3.sentex.ca [IPv6:2607:f3e0:0:4:f025:8813:7603:7e4a]) by smarthost1.sentex.ca (8.14.5/8.14.4) with ESMTP id q13Db0kJ044484; Fri, 3 Feb 2012 08:37:00 -0500 (EST) (envelope-from mike@sentex.net) Message-ID: <4F2BE2FC.10704@sentex.net> Date: Fri, 03 Feb 2012 08:37:00 -0500 From: Mike Tancsa Organization: Sentex Communications User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: Jeremy Chadwick References: <20120203084817.GA17447@icarus.home.lan> In-Reply-To: <20120203084817.GA17447@icarus.home.lan> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.71 on IPv6:2607:f3e0:0:1::12 Cc: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= , George Mitchell , freebsd-stable@freebsd.org Subject: Re: sentex tinderbox build cluster failures X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 13:37:05 -0000 On 2/3/2012 3:48 AM, Jeremy Chadwick wrote: > Mike, > > For many days now (almost a week?) there have been tinderbox build mails > coming from the sentex.ca build cluster, specific to powerpc, mips, and > sparc64 platforms. Hi, I will let des@freebsd speak to the errors. We host the boxes here, but he is in charge of them and better understands the issue ---Mike > > The errors in question are strange and may indicate some kind of > filesystem corruption or equivalent -- I'm really not sure. > > Breaking them down: > > powerpc/powerpc, RELENG_8_2 -- > > /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token > > This file hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/powerpc/booke/platform_bare.c > > mips/mips, RELENG_8_2 -- > > /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression > > This file hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/alchemy/obio.c > > mips/mips, RELENG_8_1 -- > > In file included from /src/sys/mips/sentry5/siba_cc.c:58: > /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type > /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) > > src/sys/mips/sentry5/siba_cc.c has been Attic'd, and the last > time it was touched was 14 months ago: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/sentry5/Attic/siba_cc.c > > src/sys/dev/siba/sibavar.h hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/siba/sibavar.h > > All recent tinderbox failures for RELENG_8 (for mips, ia64, and sparc64) > appear to be related to a commit Jack did ~7 hours ago, and are almost > certainly temporary/transient errors (e.g. csup/cvs pulldown didn't get > the full commit). So we can ignore those. > > The others need to be investigated though. > > Users on the freebsd-stable lists have been complaining about these > continual errors, so I was wondering if they're being investigated. > I also got one off-list mail from someone personally asking me if I knew > what could be going on or had any insights to this (not sure why that > person thought that -- I have nothing to do with tinderbox :-) ). > > Let us know if you could. Thanks! > -- ------------------- Mike Tancsa, tel +1 519 651 3400 Sentex Communications, mike@sentex.net Providing Internet services since 1994 www.sentex.net Cambridge, Ontario Canada http://www.tancsa.com/ From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:19:32 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C251D1065670 for ; Fri, 3 Feb 2012 14:19:31 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id 8246A8FC12 for ; Fri, 3 Feb 2012 14:19:31 +0000 (UTC) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id 82FF4699F; Fri, 3 Feb 2012 14:11:48 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id 5A77688BA; Fri, 3 Feb 2012 15:11:48 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: George Mitchell References: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> <4F2B278A.3080502@m5p.com> Date: Fri, 03 Feb 2012 15:11:48 +0100 In-Reply-To: <4F2B278A.3080502@m5p.com> (George Mitchell's message of "Thu, 02 Feb 2012 19:17:14 -0500") Message-ID: <86wr84j9az.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-stable@freebsd.org Subject: Re: [releng_8_2 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:19:32 -0000 George Mitchell writes: > Apparently two or three people have all recently checked in code > without first verifying that it compiled (let alone ran), or else > possibly did not completely commit their changes, and then absconded > to a place where they fail to receive these emails about the problems. > Can someone please either diagnose these errors or else revert the > deficient commits? These are old bugs that nobody noticed because they're in code that the tinderbox didn't use to build. They're in releng branches, so fixing them requires re@ and / or so@ approval. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:24:32 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CC20106566C for ; Fri, 3 Feb 2012 14:24:32 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id CEC708FC13 for ; Fri, 3 Feb 2012 14:24:31 +0000 (UTC) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id 21631699C; Fri, 3 Feb 2012 14:08:20 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id F101D88B7; Fri, 3 Feb 2012 15:08:19 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Jeremy Chadwick References: <20120203084817.GA17447@icarus.home.lan> Date: Fri, 03 Feb 2012 15:08:19 +0100 In-Reply-To: <20120203084817.GA17447@icarus.home.lan> (Jeremy Chadwick's message of "Fri, 3 Feb 2012 00:48:17 -0800") Message-ID: <861uqcko18.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: George Mitchell , freebsd-stable@freebsd.org Subject: Re: sentex tinderbox build cluster failures X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:24:32 -0000 Jeremy Chadwick writes: > For many days now (almost a week?) there have been tinderbox build mails > coming from the sentex.ca build cluster, specific to powerpc, mips, and > sparc64 platforms. > > The errors in question are strange and may indicate some kind of > filesystem corruption or equivalent -- I'm really not sure. You could have taken the time to check the code before jumping to conclusions about "filesystem corruption or equivalent". These are genuine bugs. The tinderbox didn't warn about them earlier because it didn't build other kernels than LINT and GENERIC, and these bugs are in machine-dependent code that isn't included in LINT and GENERIC. I enabled additional kernels after the arm / mips people complained that the arm / mips build was sometimes broken for weeks without anybody noticing. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:28:05 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0BC31065670; Fri, 3 Feb 2012 14:28:05 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 728358FC14; Fri, 3 Feb 2012 14:28:05 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) by cyrus.watson.org (Postfix) with ESMTPSA id 179A446B42; Fri, 3 Feb 2012 09:28:05 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 9ABEAB924; Fri, 3 Feb 2012 09:28:04 -0500 (EST) From: John Baldwin To: freebsd-stable@freebsd.org Date: Fri, 3 Feb 2012 08:34:53 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p10; KDE/4.5.5; amd64; ; ) References: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> <4F2B278A.3080502@m5p.com> In-Reply-To: <4F2B278A.3080502@m5p.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201202030834.54072.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 03 Feb 2012 09:28:04 -0500 (EST) Cc: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= , George Mitchell , Colin Percival Subject: Re: [releng_8_2 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:28:05 -0000 On Thursday, February 02, 2012 7:17:14 pm George Mitchell wrote: > On 02/02/12 15:37, FreeBSD Tinderbox wrote: > > [... one of three errors it's been reporting repeatedly for days ...] > Talk about a lack of focus! Apparently two or three people have all > recently checked in code without first verifying that it compiled (let > alone ran), or else possibly did not completely commit their changes, > and then absconded to a place where they fail to receive these emails > about the problems. Can someone please either diagnose these errors or > else revert the deficient commits? -- George Mitchell No, it is more that the tinderbox for 8 wasn't actually checking these kernels before (they have been broken since 8.1 and 8.2 were released) and they are on less-used platforms. I do agree it needs to be cleaned up one way or another. Given the reticence to commit changes to release branches, it is probably simpler to mask this via the tinderbox instead. -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:28:06 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFD08106566B for ; Fri, 3 Feb 2012 14:28:06 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 820F28FC0A for ; Fri, 3 Feb 2012 14:28:06 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) by cyrus.watson.org (Postfix) with ESMTPSA id 3B4C546B0A; Fri, 3 Feb 2012 09:28:06 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id B1F27B968; Fri, 3 Feb 2012 09:28:05 -0500 (EST) From: John Baldwin To: freebsd-stable@freebsd.org Date: Fri, 3 Feb 2012 08:37:26 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p10; KDE/4.5.5; amd64; ; ) References: <20120203084817.GA17447@icarus.home.lan> In-Reply-To: <20120203084817.GA17447@icarus.home.lan> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201202030837.27080.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 03 Feb 2012 09:28:05 -0500 (EST) Cc: George Mitchell , Jeremy Chadwick Subject: Re: sentex tinderbox build cluster failures X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:28:06 -0000 On Friday, February 03, 2012 3:48:17 am Jeremy Chadwick wrote: > Mike, > > For many days now (almost a week?) there have been tinderbox build mails > coming from the sentex.ca build cluster, specific to powerpc, mips, and > sparc64 platforms. > > The errors in question are strange and may indicate some kind of > filesystem corruption or equivalent -- I'm really not sure. > > Breaking them down: > > powerpc/powerpc, RELENG_8_2 -- > > /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token > > This file hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/powerpc/booke/platform_bare.c > > mips/mips, RELENG_8_2 -- > > /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression > > This file hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/alchemy/obio.c > > mips/mips, RELENG_8_1 -- > > In file included from /src/sys/mips/sentry5/siba_cc.c:58: > /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type > /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) > > src/sys/mips/sentry5/siba_cc.c has been Attic'd, and the last > time it was touched was 14 months ago: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/mips/sentry5/Attic/siba_cc.c > > src/sys/dev/siba/sibavar.h hasn't been touched in over 2 months: > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/siba/sibavar.h > > All recent tinderbox failures for RELENG_8 (for mips, ia64, and sparc64) > appear to be related to a commit Jack did ~7 hours ago, and are almost > certainly temporary/transient errors (e.g. csup/cvs pulldown didn't get > the full commit). So we can ignore those. > > The others need to be investigated though. > > Users on the freebsd-stable lists have been complaining about these > continual errors, so I was wondering if they're being investigated. > I also got one off-list mail from someone personally asking me if I knew > what could be going on or had any insights to this (not sure why that > person thought that -- I have nothing to do with tinderbox :-) ). > > Let us know if you could. Thanks! The periodically failing ones are old bugs that were uncovered recently when the tinderbox was fixed to compile kernels for these branches. Most of these bugs are trivial to fix, but require committing a change to release branches which requires a whole bunch of hoopla and red tape (otherwise I would have merged the fixes by now). -- John Baldwin From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:29:31 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E6DB1065670; Fri, 3 Feb 2012 14:29:31 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id 0A8858FC22; Fri, 3 Feb 2012 14:29:30 +0000 (UTC) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id EEB6D69A1; Fri, 3 Feb 2012 14:12:23 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id DE8E588BC; Fri, 3 Feb 2012 15:12:23 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: FreeBSD Tinderbox References: <201201300534.q0U5YoTS011521@freebsd-legacy2.sentex.ca> Date: Fri, 03 Feb 2012 15:12:23 +0100 In-Reply-To: <201201300534.q0U5YoTS011521@freebsd-legacy2.sentex.ca> (FreeBSD Tinderbox's message of "Mon, 30 Jan 2012 05:34:50 GMT") Message-ID: <86sjisj9a0.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: amd64@freebsd.org, stable@freebsd.org Subject: Re: [releng_8_1 tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:29:31 -0000 FreeBSD Tinderbox writes: > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -D= HAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit= =3D8000 --param inline-unit-growth=3D100 --param large-function-growth=3D10= 00 -DGPROF -falign-functions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-= frame-pointer -mcmodel=3Dkernel -mno-red-zone -mfpmath=3D387 -mno-sse -mno= -sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-= tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /sr= c/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 > if_em.o: No space left on device > {standard input}: Assembler messages: > {standard input}:13043: FATAL: Can't write if_em.o: No space left on devi= ce > *** Error code 1 Fixed, sorry for the noise. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:43:05 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37073106566C for ; Fri, 3 Feb 2012 14:43:05 +0000 (UTC) (envelope-from joh.hendriks@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id A867B8FC16 for ; Fri, 3 Feb 2012 14:43:04 +0000 (UTC) Received: by bkbzx1 with SMTP id zx1so4286652bkb.13 for ; Fri, 03 Feb 2012 06:43:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=9/HO4C8BdWCZBhpJ2xitx+608H3nmEGbXuCBtZ5u3WI=; b=EfAcoRjIlUEQdKyHEyUrfJkyl+tLRUkDn5Yu0bKhPtMHmhLWw4uoSkVSwcb4q+TxyB YZY34bkT4ADrN0+Q7BVARsgHXJ3kjm8xUgsyQJiueHREeMV3gknniAB6/WTvgC9NPFzC nJHnMr4UGhdkuHRGE9NzyFFvS5DQ+YBI6HkS8= Received: by 10.204.133.204 with SMTP id g12mr3536949bkt.107.1328280183481; Fri, 03 Feb 2012 06:43:03 -0800 (PST) Received: from [192.168.50.103] (double-l.xs4all.nl. [80.126.205.144]) by mx.google.com with ESMTPS id d2sm17347988bky.11.2012.02.03.06.43.02 (version=SSLv3 cipher=OTHER); Fri, 03 Feb 2012 06:43:02 -0800 (PST) Message-ID: <4F2BF270.70303@gmail.com> Date: Fri, 03 Feb 2012 15:42:56 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20120129 Thunderbird/10.0 MIME-Version: 1.0 To: "Kenneth D. Merry" References: <20120202191105.GA55719@nargothrond.kdm.org> In-Reply-To: <20120202191105.GA55719@nargothrond.kdm.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:43:05 -0000 Kenneth D. Merry schreef: > Hi folks, > > The LSI-supported version of the mps(4) driver that supports their 6Gb SAS > HBAs as well as WarpDrive controllers, is now in stable/9 and stable/8. > > Please test it out and let me and Kashyap (CCed) know if you run into > any problems. > > In addition to supporting WarpDrive, the driver also supports Integrated > RAID. > > Thanks to LSI for doing the work on this driver! > > Note that the CAM infrastructure changes that went into FreeBSD/head along > with this driver have not gone into either stable/9 or stable/8. Only the > driver itself has been merged. > > The CAM infrastructure changes depend on some other da(4) driver changes > that will need to get merged before they can go back. If that merge > happens, it will probably only be into stable/9. > > A couple of notes about issues with this driver: > > - Unlike the previous mps(4) driver, it probes sequentially. If you have > a lot of drives in your system, it will take a while to probe them all. > - You may see warning messages like this: > > _mapping_add_new_device: failed to add the device with handle 0x0019 to persiste > nt table because there is no free space available > _mapping_add_new_device: failed to add the device with handle 0x001a to persiste > nt table because there is no free space available > > - The driver is not endian safe. (It assumes a little endian machine.) > This is not new, the previous version of the driver had the same issue. > > The LSI folks know about these issues. The driver has passed their testing > process. > > Many thanks to LSI for going through the effort to support FreeBSD. > > Ken Hello Ken. Just updated our 16 bay server. did a csup today. did try some commands, it looked like the drives got husseled. But after giving the command camcontrol rescan all it does not give back the prompt. Also top shows me the following. 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% camcontrol # on another console things works filer01# camcontrol devlist at scbus0 target 8 lun 0 (pass0,da0) at scbus0 target 9 lun 0 (pass1,da1) at scbus0 target 10 lun 0 (pass2,da2) at scbus0 target 11 lun 0 (pass3,da3) at scbus0 target 12 lun 0 (pass4,da4) at scbus0 target 13 lun 0 (pass5,da5) at scbus0 target 16 lun 0 (probe16,ses0,pass6) at scbus0 target 17 lun 0 (pass7,da6) at scbus0 target 18 lun 0 (pass8,da7) at scbus0 target 19 lun 0 (pass9,da8) at scbus0 target 20 lun 0 (pass10,da9) at scbus0 target 21 lun 0 (pass11,da10) at scbus0 target 22 lun 0 (pass12,da11) at scbus0 target 23 lun 0 (pass13,da12) at scbus0 target 24 lun 0 (pass14,da13) at scbus0 target 27 lun 0 (pass15,da14) at scbus0 target 28 lun 0 (pass16,da15) at scbus1 target 0 lun 0 (ada0,pass17) at scbus3 target 0 lun 0 (pass18,cd0) The controller is a LSI 9211-8i with IT firmware. here is the dmesg Copyright (c) 1992-2012 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x206a7 Family = 6 Model = 2a Stepping = 7 Features=0xbfebfbff Features2=0x15bae3ff AMD Features=0x28100800 AMD Features2=0x1 TSC: P-state invariant, performance statistics real memory = 17179869184 (16384 MB) avail memory = 16493441024 (15729 MB) Event timer "LAPIC" quality 600 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs FreeBSD/SMP: 1 package(s) x 4 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 2 cpu2 (AP): APIC ID: 4 cpu3 (AP): APIC ID: 6 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 cpu0: on acpi0 cpu1: on acpi0 cpu2: on acpi0 cpu3: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 19 at device 6.0 on pci0 pci1: on pcib1 mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff irq 19 at device 0.0 on pci1 mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd mps0: IOCCapabilities: 1285c em0: port 0xf020-0xf03f mem 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 on pci0 em0: Using an MSI interrupt em0: Ethernet address: 00:25:90:57:20:bd ehci0: mem 0xfb823000-0xfb8233ff irq 16 at device 26.0 on pci0 usbus0: EHCI version 1.0 usbus0: on ehci0 pcib2: irq 17 at device 28.0 on pci0 pci2: on pcib2 pcib3: irq 17 at device 28.4 on pci0 pci3: on pcib3 em1: port 0xd000-0xd01f mem 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on pci3 em1: Using MSIX interrupts with 3 vectors em1: Ethernet address: 00:25:90:57:20:bc ehci1: mem 0xfb822000-0xfb8223ff irq 23 at device 29.0 on pci0 usbus1: EHCI version 1.0 usbus1: on ehci1 pcib4: at device 30.0 on pci0 pci4: on pcib4 vgapci0: mem 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff irq 23 at device 3.0 on pci4 isab0: at device 31.0 on pci0 isa0: on isab0 ahci0: port 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000-0xf01f mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported ahcich0: at channel 0 on ahci0 ahcich1: at channel 1 on ahci0 ahcich2: at channel 2 on ahci0 ahcich3: at channel 3 on ahci0 ahcich4: at channel 4 on ahci0 ahcich5: at channel 5 on ahci0 pci0: at device 31.3 (no driver attached) acpi_button0: on acpi0 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 ahcich0: at channel 0 on ahci0 ahcich1: at channel 1 on ahci0 ahcich2: at channel 2 on ahci0 ahcich3: at channel 3 on ahci0 ahcich4: at channel 4 on ahci0 ahcich5: at channel 5 on ahci0 pci0: at device 31.3 (no driver attached) acpi_button0: on acpi0 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 950 Event timer "HPET" frequency 14318180 Hz quality 550 Event timer "HPET1" frequency 14318180 Hz quality 440 Event timer "HPET2" frequency 14318180 Hz quality 440 Event timer "HPET3" frequency 14318180 Hz quality 440 Event timer "HPET4" frequency 14318180 Hz quality 440 attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x71 irq 8 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 uart2: <16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: cannot reserve I/O port range est0: on cpu0 p4tcc0: on cpu0 est1: on cpu1 p4tcc1: on cpu1 est2: on cpu2 p4tcc2: on cpu2 est3: on cpu3 p4tcc3: on cpu3 ZFS filesystem version 5 ZFS storage pool version 28 Timecounters tick every 1.000 msec usbus0: 480Mbps High Speed USB v2.0 usbus1: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 da0 at mps0 bus 0 scbus0 target 8 lun 0 da0: Fixed Direct Access SCSI-6 device da0: 300.000MB/s transfers da0: Command Queueing enabled da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da1 at mps0 bus 0 scbus0 target 9 lun 0 da1: Fixed Direct Access SCSI-6 device da1: 300.000MB/s transfers da1: Command Queueing enabled da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da2 at mps0 bus 0 scbus0 target 10 lun 0 da2: Fixed Direct Access SCSI-6 device da2: 300.000MB/s transfers da2: Command Queueing enabled da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da3 at mps0 bus 0 scbus0 target 11 lun 0 da3: Fixed Direct Access SCSI-6 device da3: 300.000MB/s transfers da3: Command Queueing enabled da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da4 at mps0 bus 0 scbus0 target 12 lun 0 da4: Fixed Direct Access SCSI-6 device da4: 300.000MB/s transfers da4: Command Queueing enabled da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da5 at mps0 bus 0 scbus0 target 13 lun 0 da5: Fixed Direct Access SCSI-6 device da5: 150.000MB/s transfers da5: Command Queueing enabled da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da8 at mps0 bus 0 scbus0 target 19 lun 0 da8: Fixed Direct Access SCSI-6 device da8: 300.000MB/s transfers da8: Command Queueing enabled da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da9 at mps0 bus 0 scbus0 target 20 lun 0 da9: Fixed Direct Access SCSI-6 device da9: 300.000MB/s transfers da9: Command Queueing enabled da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da11 at mps0 bus 0 scbus0 target 22 lun 0 da11: Fixed Direct Access SCSI-6 device da11: 150.000MB/s transfers da11: Command Queueing enabled da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da12 at mps0 bus 0 scbus0 target 23 lun 0 da12: Fixed Direct Access SCSI-6 device da12: 150.000MB/s transfers da12: Command Queueing enabled da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da13 at mps0 bus 0 scbus0 target 24 lun 0 da13: Fixed Direct Access SCSI-6 device da13: 150.000MB/s transfers da13: Command Queueing enabled da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da14 at mps0 bus 0 scbus0 target 27 lun 0 da14: Fixed Direct Access SCSI-6 device da14: 300.000MB/s transfers da14: Command Queueing enabled da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) da15 at mps0 bus 0 scbus0 target 28 lun 0 da15: Fixed Direct Access SCSI-6 device da15: 150.000MB/s transfers da15: Command Queueing enabled da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) ses0 at mps0 bus 0 scbus0 target 16 lun 0 ses0: Fixed Enclosure Services SCSI-5 device ses0: 600.000MB/s transfers ses0: Command Queueing enabled ses0: SCSI-3 SES Device ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 ada0: ATA-7 SATA 1.x device ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) ada0: Previously was known as ad4 cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 SMP: AP CPU #3 Launched! cd0: Removable CD-ROM SCSI-0 device cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed SMP: AP CPU #2 Launched! SMP: AP CPU #1 Launched! da6 at mps0 bus 0 scbus0 target 17 lun 0 da6: Fixed Direct Access SCSI-6 device da6: 150.000MB/s transfers da6: Command Queueing enabled da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da7 at mps0 bus 0 scbus0 target 18 lun 0 da7: Fixed Direct Access SCSI-6 device da7: 150.000MB/s transfers da7: Command Queueing enabled da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) da10 at mps0 bus 0 scbus0 target 21 lun 0 da10: Fixed Direct Access SCSI-6 device da10: 300.000MB/s transfers da10: Command Queueing enabled da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) GEOM: da15s1: geometry does not match label (16h,63s != 255h,63s). uhub1: 2 ports with 2 removable, self powered uhub0: 2 ports with 2 removable, self powered Root mount waiting for: usbus1 usbus0 ugen0.2: at usbus0 uhub2: on usbus0 ugen1.2: at usbus1 uhub3: on usbus1 Root mount waiting for: usbus1 usbus0 uhub3: 6 ports with 6 removable, self powered uhub2: 6 ports with 6 removable, self powered ugen0.3: at usbus0 ums0: on usbus0 ums0: 3 buttons and [Z] coordinates ID=0 ukbd0: on usbus0 kbd2 at ukbd0 Trying to mount root from ufs:/dev/ada0p2 [rw]... em0: link state changed to UP thanks for your work. regards Johan From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:43:42 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1570C106566C for ; Fri, 3 Feb 2012 14:43:42 +0000 (UTC) (envelope-from dmagda@ee.ryerson.ca) Received: from eccles.ee.ryerson.ca (ee.ryerson.ca [141.117.1.2]) by mx1.freebsd.org (Postfix) with ESMTP id C716D8FC15 for ; Fri, 3 Feb 2012 14:43:41 +0000 (UTC) Received: from webmail.ee.ryerson.ca (eccles [172.16.1.2]) by eccles.ee.ryerson.ca (8.14.4/8.14.4) with ESMTP id q13EhahD029374; Fri, 3 Feb 2012 09:43:36 -0500 (EST) (envelope-from dmagda@ee.ryerson.ca) Received: from 206.108.127.2 (SquirrelMail authenticated user dmagda) by webmail.ee.ryerson.ca with HTTP; Fri, 3 Feb 2012 09:43:37 -0500 Message-ID: <015aa2883208e47457fdd56e63aab878.squirrel@webmail.ee.ryerson.ca> In-Reply-To: References: Date: Fri, 3 Feb 2012 09:43:37 -0500 From: "David Magda" To: "Pete French" User-Agent: SquirrelMail/1.4.20 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:43:42 -0000 On Fri, February 3, 2012 07:25, Pete French wrote: > So, I was trying to create a disc witha sector size of 4096 bytes, and I > assumed that simply creating a zvol with that blocksize would do the > trick. > But it appears that whatever the blocksize is on the xvol, diskinfo is > reporting the sector size as 512 bytes. > > I this the intended behaviour ? I dont have a Solaris system to hand to > test it on, so I have no ida if this is BSD specific or not. Yes, it is intended. The pool sector size and ZFS dataset block size are parameters are independent of each other. AFAIK, there is no way to specify the sector size to use in a ZFS pool: it is completely automatic when you call "zpool create". Ideally it should query the disk about its sector size and use that, but I don't know if that has been implemented (and can't be bothered to dig through the source at this time :). From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:52:39 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5112106564A for ; Fri, 3 Feb 2012 14:52:39 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 32ADA8FC0C for ; Fri, 3 Feb 2012 14:52:38 +0000 (UTC) Received: from skuns.kiev.zoral.com.ua (localhost [127.0.0.1]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id q13Emo1u048026 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Feb 2012 16:48:50 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5) with ESMTP id q13Emo1j028044; Fri, 3 Feb 2012 16:48:50 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5/Submit) id q13EmmRS028043; Fri, 3 Feb 2012 16:48:48 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 3 Feb 2012 16:48:48 +0200 From: Konstantin Belousov To: Adam Strohl Message-ID: <20120203144848.GX3283@deviant.kiev.zoral.com.ua> References: <4F2BD37E.70209@ateamsystems.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4PR/+zdSfVlxyWed" Content-Disposition: inline In-Reply-To: <4F2BD37E.70209@ateamsystems.com> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-3.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: Kirk McKusick , FreeBSD-Stable ML Subject: Re: FreeBSD 9: Group quotas increase but don't decrease automatically X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:52:39 -0000 --4PR/+zdSfVlxyWed Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 03, 2012 at 07:30:54PM +0700, Adam Strohl wrote: > I'm running FreeBSD 9 on a number of systems and finally decided to take= =20 > advantage of the quota system to enforce limits on my users. >=20 > No real issues setting it all up aside from finding that=20 > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/quotas.html=20 > needs to be updated. The new /etc/rc.conf entry is quota_enable=3D"YES"= =20 > not enable_quotas=3D"YES" as it says (assuming it used to be this in=20 > 8.x?). I'll file a PR for this shortly. >=20 > I did however run into a more serious issue (I think): >=20 > A group or user's allocation as reported by repquota(8) will increases=20 > with new/growing files, however when a file is deleted or chgrped out of= =20 > the quota's group, the amount of space reported by repquota(8) does not= =20 > decrease. I have verified that the system does not register the freed=20 > space by going over the soft limit, being denied write, then deleting=20 > files. Even if I delete files which drop me below the soft quota limit,= =20 > I will not be able to add them as I am still "over quota". So it does= =20 > not appear to be reporting issue, the system really doesn't realize the= =20 > usage has gone down. >=20 > Interestingly the inode counts do decrease automatically/"instantly" as= =20 > I would expect. >=20 > Running quotacheck(8) fixes the issue and updates the allocation counts,= =20 > but does not magically fix auto-updating, so needs to be done=20 > periodically which can be a bit intensive depending on file count. >=20 > I see this on all FreeBSD 9 machines with quotas turned on. >=20 > For now I have a cron script which tries to guess (based on changing=20 > inode counts, etc) if it should run quotacheck, and does so if needed=20 > (to avoid just blindly running it periodically). >=20 > Anyone else run into this? Am I missing something? Known issue? Let=20 > me know if anyone wants more info, etc. I can also paste the work=20 > around "smart" cron script if anyone is interested (and I'm not missing= =20 > something silly :P). This is a bug in +J code (even if you do not use +J). Do you have softupdates enabled on the volume ? If yes, try the following patch. diff --git a/sys/ufs/ffs/ffs_softdep.c b/sys/ufs/ffs/ffs_softdep.c index 5b4b6b9..ed2db79 100644 --- a/sys/ufs/ffs/ffs_softdep.c +++ b/sys/ufs/ffs/ffs_softdep.c @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); =20 #include "opt_ffs.h" +#include "opt_quota.h" #include "opt_ddb.h" =20 /* @@ -6428,7 +6429,7 @@ softdep_setup_freeblocks(ip, length, flags) } #ifdef QUOTA /* Reference the quotas in case the block count is wrong in the end. */ - quotaref(vp, freeblks->fb_quota); + quotaref(ITOV(ip), freeblks->fb_quota); (void) chkdq(ip, -datablocks, NOCRED, 0); #endif freeblks->fb_chkcnt =3D -datablocks; --4PR/+zdSfVlxyWed Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAk8r89AACgkQC3+MBN1Mb4hHzgCgqyqrjjVlffSzYViKoIpEeJUE +10AoJIA1OgMzlNiI9V5+FYsRBW+nDJX =caZA -----END PGP SIGNATURE----- --4PR/+zdSfVlxyWed-- From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 14:52:45 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8425B106566B for ; Fri, 3 Feb 2012 14:52:45 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog119.obsmtp.com (na3sys009aog119.obsmtp.com [74.125.149.246]) by mx1.freebsd.org (Postfix) with ESMTP id DC44B8FC13 for ; Fri, 3 Feb 2012 14:52:44 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob119.postini.com ([74.125.148.12]) with SMTP ID DSNKTyv0vD2ikMkqlB061DmES7qXr2EhcTVv@postini.com; Fri, 03 Feb 2012 06:52:44 PST Received: from PALCAS01.lsi.com (128.94.213.117) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 09:57:11 -0500 Received: from inbexch01.lsi.com (135.36.98.37) by PALCAS01.lsi.com (128.94.213.117) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 09:52:42 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch01.lsi.com ([135.36.98.37]) with mapi; Fri, 3 Feb 2012 20:22:38 +0530 From: "Desai, Kashyap" To: Johan Hendriks , "Kenneth D. Merry" Date: Fri, 3 Feb 2012 20:22:36 +0530 Thread-Topic: LSI supported mps(4) driver in stable/9 and stable/8 Thread-Index: AcziglpBPoGpvjoiSjGjA76rF/ljrwAAFECQ Message-ID: References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> In-Reply-To: <4F2BF270.70303@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: freebsd-stable Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 14:52:45 -0000 Hi Johan, I have already figure out this issue in our lab. I also have fix for this issue. (Just don't want to create regression, that= is why I have not posted outside) Since you have seen similar issue, It is worth to try my patch. My machine is not getting IP right now. I will send you patch once my machi= ne is in network ? ~ Kashyap > -----Original Message----- > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > stable@freebsd.org] On Behalf Of Johan Hendriks > Sent: Friday, February 03, 2012 8:13 PM > To: Kenneth D. Merry > Cc: freebsd-stable > Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > Kenneth D. Merry schreef: > > Hi folks, > > > > The LSI-supported version of the mps(4) driver that supports their 6Gb > SAS > > HBAs as well as WarpDrive controllers, is now in stable/9 and > stable/8. > > > > Please test it out and let me and Kashyap (CCed) know if you run into > > any problems. > > > > In addition to supporting WarpDrive, the driver also supports > Integrated > > RAID. > > > > Thanks to LSI for doing the work on this driver! > > > > Note that the CAM infrastructure changes that went into FreeBSD/head > along > > with this driver have not gone into either stable/9 or stable/8. Only > the > > driver itself has been merged. > > > > The CAM infrastructure changes depend on some other da(4) driver > changes > > that will need to get merged before they can go back. If that merge > > happens, it will probably only be into stable/9. > > > > A couple of notes about issues with this driver: > > > > - Unlike the previous mps(4) driver, it probes sequentially. If you > have > > a lot of drives in your system, it will take a while to probe them > all. > > - You may see warning messages like this: > > > > _mapping_add_new_device: failed to add the device with handle 0x0019 > to persiste > > nt table because there is no free space available > > _mapping_add_new_device: failed to add the device with handle 0x001a > to persiste > > nt table because there is no free space available > > > > - The driver is not endian safe. (It assumes a little endian > machine.) > > This is not new, the previous version of the driver had the same > issue. > > > > The LSI folks know about these issues. The driver has passed their > testing > > process. > > > > Many thanks to LSI for going through the effort to support FreeBSD. > > > > Ken > Hello Ken. > > Just updated our 16 bay server. did a csup today. > did try some commands, it looked like the drives got husseled. > > But after giving the command camcontrol rescan all it does not give back > the prompt. > Also top shows me the following. > 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% > camcontrol > > # on another console things works > filer01# camcontrol devlist > at scbus0 target 8 lun 0 (pass0,da0) > at scbus0 target 9 lun 0 (pass1,da1) > at scbus0 target 10 lun 0 (pass2,da2) > at scbus0 target 11 lun 0 (pass3,da3) > at scbus0 target 12 lun 0 (pass4,da4) > at scbus0 target 13 lun 0 (pass5,da5) > at scbus0 target 16 lun 0 > (probe16,ses0,pass6) > at scbus0 target 17 lun 0 (pass7,da6) > at scbus0 target 18 lun 0 (pass8,da7) > at scbus0 target 19 lun 0 (pass9,da8) > at scbus0 target 20 lun 0 > (pass10,da9) > at scbus0 target 21 lun 0 > (pass11,da10) > at scbus0 target 22 lun 0 > (pass12,da11) > at scbus0 target 23 lun 0 > (pass13,da12) > at scbus0 target 24 lun 0 > (pass14,da13) > at scbus0 target 27 lun 0 > (pass15,da14) > at scbus0 target 28 lun 0 > (pass16,da15) > at scbus1 target 0 lun 0 > (ada0,pass17) > at scbus3 target 0 lun 0 (pass18,cd0) > > The controller is a LSI 9211-8i with IT firmware. > > here is the dmesg > Copyright (c) 1992-2012 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights > reserved. > FreeBSD is a registered trademark of The FreeBSD Foundation. > FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 > root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 > CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class CPU) > Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 6 Model =3D 2a > Stepping =3D 7 > > Features=3D0xbfebfbff ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > > Features2=3D0x15bae3ff SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> > AMD Features=3D0x28100800 > AMD Features2=3D0x1 > TSC: P-state invariant, performance statistics > real memory =3D 17179869184 (16384 MB) > avail memory =3D 16493441024 (15729 MB) > Event timer "LAPIC" quality 600 > ACPI APIC Table: > FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs > FreeBSD/SMP: 1 package(s) x 4 core(s) > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 2 > cpu2 (AP): APIC ID: 4 > cpu3 (AP): APIC ID: 6 > ioapic0 irqs 0-23 on motherboard > kbd1 at kbdmux0 > acpi0: on motherboard > acpi0: Power Button (fixed) > Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 > cpu0: on acpi0 > cpu1: on acpi0 > cpu2: on acpi0 > cpu3: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > pcib1: irq 19 at device 6.0 on pci0 > pci1: on pcib1 > mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff irq 19 > at device 0.0 on pci1 > mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd > mps0: IOCCapabilities: > 1285c c> > em0: port 0xf020-0xf03f mem > 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 on > pci0 > em0: Using an MSI interrupt > em0: Ethernet address: 00:25:90:57:20:bd > ehci0: mem 0xfb823000-0xfb8233ff irq > 16 at device 26.0 on pci0 > usbus0: EHCI version 1.0 > usbus0: on ehci0 > pcib2: irq 17 at device 28.0 on pci0 > pci2: on pcib2 > pcib3: irq 17 at device 28.4 on pci0 > pci3: on pcib3 > em1: port 0xd000-0xd01f mem > 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on pci3 > em1: Using MSIX interrupts with 3 vectors > em1: Ethernet address: 00:25:90:57:20:bc > ehci1: mem 0xfb822000-0xfb8223ff irq > 23 at device 29.0 on pci0 > usbus1: EHCI version 1.0 > usbus1: on ehci1 > pcib4: at device 30.0 on pci0 > pci4: on pcib4 > vgapci0: mem > 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff irq 23 > at device 3.0 on pci4 > isab0: at device 31.0 on pci0 > isa0: on isab0 > ahci0: port > 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000-0xf01f > mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 > ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported > ahcich0: at channel 0 on ahci0 > ahcich1: at channel 1 on ahci0 > ahcich2: at channel 2 on ahci0 > ahcich3: at channel 3 on ahci0 > ahcich4: at channel 4 on ahci0 > ahcich5: at channel 5 on ahci0 > pci0: at device 31.3 (no driver attached) > acpi_button0: on acpi0 > hpet0: iomem 0xfed00000-0xfed003ff on acpi0 > ahcich0: at channel 0 on ahci0 > ahcich1: at channel 1 on ahci0 > ahcich2: at channel 2 on ahci0 > ahcich3: at channel 3 on ahci0 > ahcich4: at channel 4 on ahci0 > ahcich5: at channel 5 on ahci0 > pci0: at device 31.3 (no driver attached) > acpi_button0: on acpi0 > hpet0: iomem 0xfed00000-0xfed003ff on acpi0 > Timecounter "HPET" frequency 14318180 Hz quality 950 > Event timer "HPET" frequency 14318180 Hz quality 550 > Event timer "HPET1" frequency 14318180 Hz quality 440 > Event timer "HPET2" frequency 14318180 Hz quality 440 > Event timer "HPET3" frequency 14318180 Hz quality 440 > Event timer "HPET4" frequency 14318180 Hz quality 440 > attimer0: port 0x40-0x43 irq 0 on acpi0 > Timecounter "i8254" frequency 1193182 Hz quality 0 > Event timer "i8254" frequency 1193182 Hz quality 100 > atrtc0: port 0x70-0x71 irq 8 on acpi0 > Event timer "RTC" frequency 32768 Hz quality 0 > atkbdc0: port 0x60,0x64 irq 1 on acpi0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > atkbd0: [GIANT-LOCKED] > uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 > uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 > uart2: <16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 > orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff on isa0 > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=3D0x300> > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on > isa0 > ppc0: cannot reserve I/O port range > est0: on cpu0 > p4tcc0: on cpu0 > est1: on cpu1 > p4tcc1: on cpu1 > est2: on cpu2 > p4tcc2: on cpu2 > est3: on cpu3 > p4tcc3: on cpu3 > ZFS filesystem version 5 > ZFS storage pool version 28 > Timecounters tick every 1.000 msec > usbus0: 480Mbps High Speed USB v2.0 > usbus1: 480Mbps High Speed USB v2.0 > ugen0.1: at usbus0 > uhub0: on usbus0 > ugen1.1: at usbus1 > uhub1: on usbus1 > da0 at mps0 bus 0 scbus0 target 8 lun 0 > da0: Fixed Direct Access SCSI-6 device > da0: 300.000MB/s transfers > da0: Command Queueing enabled > da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da1 at mps0 bus 0 scbus0 target 9 lun 0 > da1: Fixed Direct Access SCSI-6 device > da1: 300.000MB/s transfers > da1: Command Queueing enabled > da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da2 at mps0 bus 0 scbus0 target 10 lun 0 > da2: Fixed Direct Access SCSI-6 device > da2: 300.000MB/s transfers > da2: Command Queueing enabled > da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da3 at mps0 bus 0 scbus0 target 11 lun 0 > da3: Fixed Direct Access SCSI-6 device > da3: 300.000MB/s transfers > da3: Command Queueing enabled > da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da4 at mps0 bus 0 scbus0 target 12 lun 0 > da4: Fixed Direct Access SCSI-6 device > da4: 300.000MB/s transfers > da4: Command Queueing enabled > da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da5 at mps0 bus 0 scbus0 target 13 lun 0 > da5: Fixed Direct Access SCSI-6 device > da5: 150.000MB/s transfers > da5: Command Queueing enabled > da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da8 at mps0 bus 0 scbus0 target 19 lun 0 > da8: Fixed Direct Access SCSI-6 device > da8: 300.000MB/s transfers > da8: Command Queueing enabled > da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da9 at mps0 bus 0 scbus0 target 20 lun 0 > da9: Fixed Direct Access SCSI-6 device > da9: 300.000MB/s transfers > da9: Command Queueing enabled > da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da11 at mps0 bus 0 scbus0 target 22 lun 0 > da11: Fixed Direct Access SCSI-6 device > da11: 150.000MB/s transfers > da11: Command Queueing enabled > da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da12 at mps0 bus 0 scbus0 target 23 lun 0 > da12: Fixed Direct Access SCSI-6 device > da12: 150.000MB/s transfers > da12: Command Queueing enabled > da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da13 at mps0 bus 0 scbus0 target 24 lun 0 > da13: Fixed Direct Access SCSI-6 device > da13: 150.000MB/s transfers > da13: Command Queueing enabled > da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da14 at mps0 bus 0 scbus0 target 27 lun 0 > da14: Fixed Direct Access SCSI-6 device > da14: 300.000MB/s transfers > da14: Command Queueing enabled > da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > da15 at mps0 bus 0 scbus0 target 28 lun 0 > da15: Fixed Direct Access SCSI-6 device > da15: 150.000MB/s transfers > da15: Command Queueing enabled > da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > ses0 at mps0 bus 0 scbus0 target 16 lun 0 > ses0: Fixed Enclosure Services SCSI-5 device > ses0: 600.000MB/s transfers > ses0: Command Queueing enabled > ses0: SCSI-3 SES Device > ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 > ada0: ATA-7 SATA 1.x device > ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) > ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) > ada0: Previously was known as ad4 > cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 > SMP: AP CPU #3 Launched! > cd0: Removable CD-ROM SCSI-0 device > cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO > 8192bytes) > cd0: Attempt to query device size failed: NOT READY, Medium not present > - tray closed > SMP: AP CPU #2 Launched! > SMP: AP CPU #1 Launched! > da6 at mps0 bus 0 scbus0 target 17 lun 0 > da6: Fixed Direct Access SCSI-6 device > da6: 150.000MB/s transfers > da6: Command Queueing enabled > da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da7 at mps0 bus 0 scbus0 target 18 lun 0 > da7: Fixed Direct Access SCSI-6 device > da7: 150.000MB/s transfers > da7: Command Queueing enabled > da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > da10 at mps0 bus 0 scbus0 target 21 lun 0 > da10: Fixed Direct Access SCSI-6 device > da10: 300.000MB/s transfers > da10: Command Queueing enabled > da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > GEOM: da15s1: geometry does not match label (16h,63s !=3D 255h,63s). > uhub1: 2 ports with 2 removable, self powered > uhub0: 2 ports with 2 removable, self powered > Root mount waiting for: usbus1 usbus0 > ugen0.2: at usbus0 > uhub2: > on usbus0 > ugen1.2: at usbus1 > uhub3: > on usbus1 > Root mount waiting for: usbus1 usbus0 > uhub3: 6 ports with 6 removable, self powered > uhub2: 6 ports with 6 removable, self powered > ugen0.3: at usbus0 > ums0: rev 1.10/0.01, addr 3> on usbus0 > ums0: 3 buttons and [Z] coordinates ID=3D0 > ukbd0: rev 1.10/0.01, addr 3> on usbus0 > kbd2 at ukbd0 > Trying to mount root from ufs:/dev/ada0p2 [rw]... > em0: link state changed to UP > > thanks for your work. > > regards > Johan > > > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable- > unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:03:57 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46720106564A for ; Fri, 3 Feb 2012 15:03:57 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (constantine.ingresso.co.uk [IPv6:2a02:b90:3002:e550::3]) by mx1.freebsd.org (Postfix) with ESMTP id D8F5A8FC15 for ; Fri, 3 Feb 2012 15:03:56 +0000 (UTC) Received: from dilbert.london-internal.ingresso.co.uk ([10.64.50.6] helo=dilbert.ingresso.co.uk) by constantine.ingresso.co.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtKfv-0003ND-54; Fri, 03 Feb 2012 15:03:43 +0000 Received: from petefrench by dilbert.ingresso.co.uk with local (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtKfv-000BKF-4L; Fri, 03 Feb 2012 15:03:43 +0000 To: dmagda@ee.ryerson.ca, petefrench@ingresso.co.uk In-Reply-To: <015aa2883208e47457fdd56e63aab878.squirrel@webmail.ee.ryerson.ca> Message-Id: From: Pete French Date: Fri, 03 Feb 2012 15:03:43 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:03:57 -0000 > AFAIK, there is no way to specify the sector size to use in a ZFS pool: it > is completely automatic when you call "zpool create". Ideally it should > query the disk about its sector size and use that, but I don't know if > that has been implemented (and can't be bothered to dig through the source > at this time :). I think we are talking about different things - the sector size used by the zpool on the underlying system is automatic, and may or may not come from the disc sector size (like you, I hope it does, but havent checked ;-) ). But what I am talking about is the sector size presneted by the 'fake' disc that a ZVOL creates - that always seems to be 512 bytes, despite the fact that the zvol blocksize is 8k. Seems odd to me (and that 8k size os alterable, but just doesnt seem to be reflected in the zvol). As it stands I can make a zpool on top of 4k discs, a ZVOL using 8k blocks on top of that, but the things talking to it will use 512 byte chunks, which surely impacts performance ? -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:12:08 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A369106564A for ; Fri, 3 Feb 2012 15:12:08 +0000 (UTC) (envelope-from joh.hendriks@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id AA8C98FC12 for ; Fri, 3 Feb 2012 15:12:07 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4268340wib.13 for ; Fri, 03 Feb 2012 07:12:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=sIesJ9rIXk4R6yOooNl9JdpRiWyDdZaB392bVuAhd4I=; b=tOuJc+P7tS1jGUzBlCIv2qIUr09DzSTO7s0MT9QWOdY6lCftJ+H7WiNL+5IJ3nVwLd tQmdF+cDh84vaQNojIEj9m8nDbYZdExgEMjp2Hp/1zDn7yGYGiwRtfPHuniB/mxKoxKT iUqp6UKtRbDO6dTrbTqlMixSNVk4bfZXuhZxQ= Received: by 10.180.83.72 with SMTP id o8mr25262916wiy.22.1328281926291; Fri, 03 Feb 2012 07:12:06 -0800 (PST) Received: from [192.168.50.103] (double-l.xs4all.nl. [80.126.205.144]) by mx.google.com with ESMTPS id dw7sm7198447wib.4.2012.02.03.07.12.05 (version=SSLv3 cipher=OTHER); Fri, 03 Feb 2012 07:12:05 -0800 (PST) Message-ID: <4F2BF93F.4060407@gmail.com> Date: Fri, 03 Feb 2012 16:11:59 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20120129 Thunderbird/10.0 MIME-Version: 1.0 To: "Desai, Kashyap" References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:12:08 -0000 Desai, Kashyap schreef: > Hi Johan, > > I have already figure out this issue in our lab. > > I also have fix for this issue. (Just don't want to create regression, that is why I have not posted outside) > Since you have seen similar issue, It is worth to try my patch. > > My machine is not getting IP right now. I will send you patch once my machine is in network ? > > ~ Kashyap > > >> -----Original Message----- >> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- >> stable@freebsd.org] On Behalf Of Johan Hendriks >> Sent: Friday, February 03, 2012 8:13 PM >> To: Kenneth D. Merry >> Cc: freebsd-stable >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >> >> Kenneth D. Merry schreef: >>> Hi folks, >>> >>> The LSI-supported version of the mps(4) driver that supports their 6Gb >> SAS >>> HBAs as well as WarpDrive controllers, is now in stable/9 and >> stable/8. >>> Please test it out and let me and Kashyap (CCed) know if you run into >>> any problems. >>> >>> In addition to supporting WarpDrive, the driver also supports >> Integrated >>> RAID. >>> >>> Thanks to LSI for doing the work on this driver! >>> >>> Note that the CAM infrastructure changes that went into FreeBSD/head >> along >>> with this driver have not gone into either stable/9 or stable/8. Only >> the >>> driver itself has been merged. >>> >>> The CAM infrastructure changes depend on some other da(4) driver >> changes >>> that will need to get merged before they can go back. If that merge >>> happens, it will probably only be into stable/9. >>> >>> A couple of notes about issues with this driver: >>> >>> - Unlike the previous mps(4) driver, it probes sequentially. If you >> have >>> a lot of drives in your system, it will take a while to probe them >> all. >>> - You may see warning messages like this: >>> >>> _mapping_add_new_device: failed to add the device with handle 0x0019 >> to persiste >>> nt table because there is no free space available >>> _mapping_add_new_device: failed to add the device with handle 0x001a >> to persiste >>> nt table because there is no free space available >>> >>> - The driver is not endian safe. (It assumes a little endian >> machine.) >>> This is not new, the previous version of the driver had the same >> issue. >>> The LSI folks know about these issues. The driver has passed their >> testing >>> process. >>> >>> Many thanks to LSI for going through the effort to support FreeBSD. >>> >>> Ken >> Hello Ken. >> >> Just updated our 16 bay server. did a csup today. >> did try some commands, it looked like the drives got husseled. >> >> But after giving the command camcontrol rescan all it does not give back >> the prompt. >> Also top shows me the following. >> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% >> camcontrol >> >> # on another console things works >> filer01# camcontrol devlist >> at scbus0 target 8 lun 0 (pass0,da0) >> at scbus0 target 9 lun 0 (pass1,da1) >> at scbus0 target 10 lun 0 (pass2,da2) >> at scbus0 target 11 lun 0 (pass3,da3) >> at scbus0 target 12 lun 0 (pass4,da4) >> at scbus0 target 13 lun 0 (pass5,da5) >> at scbus0 target 16 lun 0 >> (probe16,ses0,pass6) >> at scbus0 target 17 lun 0 (pass7,da6) >> at scbus0 target 18 lun 0 (pass8,da7) >> at scbus0 target 19 lun 0 (pass9,da8) >> at scbus0 target 20 lun 0 >> (pass10,da9) >> at scbus0 target 21 lun 0 >> (pass11,da10) >> at scbus0 target 22 lun 0 >> (pass12,da11) >> at scbus0 target 23 lun 0 >> (pass13,da12) >> at scbus0 target 24 lun 0 >> (pass14,da13) >> at scbus0 target 27 lun 0 >> (pass15,da14) >> at scbus0 target 28 lun 0 >> (pass16,da15) >> at scbus1 target 0 lun 0 >> (ada0,pass17) >> at scbus3 target 0 lun 0 (pass18,cd0) >> >> The controller is a LSI 9211-8i with IT firmware. >> >> here is the dmesg >> Copyright (c) 1992-2012 The FreeBSD Project. >> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 >> The Regents of the University of California. All rights >> reserved. >> FreeBSD is a registered trademark of The FreeBSD Foundation. >> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 >> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 >> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class CPU) >> Origin = "GenuineIntel" Id = 0x206a7 Family = 6 Model = 2a >> Stepping = 7 >> >> Features=0xbfebfbff> ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> >> >> Features2=0x15bae3ff> SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> >> AMD Features=0x28100800 >> AMD Features2=0x1 >> TSC: P-state invariant, performance statistics >> real memory = 17179869184 (16384 MB) >> avail memory = 16493441024 (15729 MB) >> Event timer "LAPIC" quality 600 >> ACPI APIC Table: >> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs >> FreeBSD/SMP: 1 package(s) x 4 core(s) >> cpu0 (BSP): APIC ID: 0 >> cpu1 (AP): APIC ID: 2 >> cpu2 (AP): APIC ID: 4 >> cpu3 (AP): APIC ID: 6 >> ioapic0 irqs 0-23 on motherboard >> kbd1 at kbdmux0 >> acpi0: on motherboard >> acpi0: Power Button (fixed) >> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 >> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 >> cpu0: on acpi0 >> cpu1: on acpi0 >> cpu2: on acpi0 >> cpu3: on acpi0 >> pcib0: port 0xcf8-0xcff on acpi0 >> pci0: on pcib0 >> pcib1: irq 19 at device 6.0 on pci0 >> pci1: on pcib1 >> mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff irq 19 >> at device 0.0 on pci1 >> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd >> mps0: IOCCapabilities: >> 1285c> c> >> em0: port 0xf020-0xf03f mem >> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 on >> pci0 >> em0: Using an MSI interrupt >> em0: Ethernet address: 00:25:90:57:20:bd >> ehci0: mem 0xfb823000-0xfb8233ff irq >> 16 at device 26.0 on pci0 >> usbus0: EHCI version 1.0 >> usbus0: on ehci0 >> pcib2: irq 17 at device 28.0 on pci0 >> pci2: on pcib2 >> pcib3: irq 17 at device 28.4 on pci0 >> pci3: on pcib3 >> em1: port 0xd000-0xd01f mem >> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on pci3 >> em1: Using MSIX interrupts with 3 vectors >> em1: Ethernet address: 00:25:90:57:20:bc >> ehci1: mem 0xfb822000-0xfb8223ff irq >> 23 at device 29.0 on pci0 >> usbus1: EHCI version 1.0 >> usbus1: on ehci1 >> pcib4: at device 30.0 on pci0 >> pci4: on pcib4 >> vgapci0: mem >> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff irq 23 >> at device 3.0 on pci4 >> isab0: at device 31.0 on pci0 >> isa0: on isab0 >> ahci0: port >> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000-0xf01f >> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 >> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported >> ahcich0: at channel 0 on ahci0 >> ahcich1: at channel 1 on ahci0 >> ahcich2: at channel 2 on ahci0 >> ahcich3: at channel 3 on ahci0 >> ahcich4: at channel 4 on ahci0 >> ahcich5: at channel 5 on ahci0 >> pci0: at device 31.3 (no driver attached) >> acpi_button0: on acpi0 >> hpet0: iomem 0xfed00000-0xfed003ff on acpi0 >> ahcich0: at channel 0 on ahci0 >> ahcich1: at channel 1 on ahci0 >> ahcich2: at channel 2 on ahci0 >> ahcich3: at channel 3 on ahci0 >> ahcich4: at channel 4 on ahci0 >> ahcich5: at channel 5 on ahci0 >> pci0: at device 31.3 (no driver attached) >> acpi_button0: on acpi0 >> hpet0: iomem 0xfed00000-0xfed003ff on acpi0 >> Timecounter "HPET" frequency 14318180 Hz quality 950 >> Event timer "HPET" frequency 14318180 Hz quality 550 >> Event timer "HPET1" frequency 14318180 Hz quality 440 >> Event timer "HPET2" frequency 14318180 Hz quality 440 >> Event timer "HPET3" frequency 14318180 Hz quality 440 >> Event timer "HPET4" frequency 14318180 Hz quality 440 >> attimer0: port 0x40-0x43 irq 0 on acpi0 >> Timecounter "i8254" frequency 1193182 Hz quality 0 >> Event timer "i8254" frequency 1193182 Hz quality 100 >> atrtc0: port 0x70-0x71 irq 8 on acpi0 >> Event timer "RTC" frequency 32768 Hz quality 0 >> atkbdc0: port 0x60,0x64 irq 1 on acpi0 >> atkbd0: irq 1 on atkbdc0 >> kbd0 at atkbd0 >> atkbd0: [GIANT-LOCKED] >> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 >> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 >> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 >> orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff on isa0 >> sc0: at flags 0x100 on isa0 >> sc0: VGA<16 virtual consoles, flags=0x300> >> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on >> isa0 >> ppc0: cannot reserve I/O port range >> est0: on cpu0 >> p4tcc0: on cpu0 >> est1: on cpu1 >> p4tcc1: on cpu1 >> est2: on cpu2 >> p4tcc2: on cpu2 >> est3: on cpu3 >> p4tcc3: on cpu3 >> ZFS filesystem version 5 >> ZFS storage pool version 28 >> Timecounters tick every 1.000 msec >> usbus0: 480Mbps High Speed USB v2.0 >> usbus1: 480Mbps High Speed USB v2.0 >> ugen0.1: at usbus0 >> uhub0: on usbus0 >> ugen1.1: at usbus1 >> uhub1: on usbus1 >> da0 at mps0 bus 0 scbus0 target 8 lun 0 >> da0: Fixed Direct Access SCSI-6 device >> da0: 300.000MB/s transfers >> da0: Command Queueing enabled >> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da1 at mps0 bus 0 scbus0 target 9 lun 0 >> da1: Fixed Direct Access SCSI-6 device >> da1: 300.000MB/s transfers >> da1: Command Queueing enabled >> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da2 at mps0 bus 0 scbus0 target 10 lun 0 >> da2: Fixed Direct Access SCSI-6 device >> da2: 300.000MB/s transfers >> da2: Command Queueing enabled >> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da3 at mps0 bus 0 scbus0 target 11 lun 0 >> da3: Fixed Direct Access SCSI-6 device >> da3: 300.000MB/s transfers >> da3: Command Queueing enabled >> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da4 at mps0 bus 0 scbus0 target 12 lun 0 >> da4: Fixed Direct Access SCSI-6 device >> da4: 300.000MB/s transfers >> da4: Command Queueing enabled >> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da5 at mps0 bus 0 scbus0 target 13 lun 0 >> da5: Fixed Direct Access SCSI-6 device >> da5: 150.000MB/s transfers >> da5: Command Queueing enabled >> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da8 at mps0 bus 0 scbus0 target 19 lun 0 >> da8: Fixed Direct Access SCSI-6 device >> da8: 300.000MB/s transfers >> da8: Command Queueing enabled >> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da9 at mps0 bus 0 scbus0 target 20 lun 0 >> da9: Fixed Direct Access SCSI-6 device >> da9: 300.000MB/s transfers >> da9: Command Queueing enabled >> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da11 at mps0 bus 0 scbus0 target 22 lun 0 >> da11: Fixed Direct Access SCSI-6 device >> da11: 150.000MB/s transfers >> da11: Command Queueing enabled >> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da12 at mps0 bus 0 scbus0 target 23 lun 0 >> da12: Fixed Direct Access SCSI-6 device >> da12: 150.000MB/s transfers >> da12: Command Queueing enabled >> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da13 at mps0 bus 0 scbus0 target 24 lun 0 >> da13: Fixed Direct Access SCSI-6 device >> da13: 150.000MB/s transfers >> da13: Command Queueing enabled >> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da14 at mps0 bus 0 scbus0 target 27 lun 0 >> da14: Fixed Direct Access SCSI-6 device >> da14: 300.000MB/s transfers >> da14: Command Queueing enabled >> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> da15 at mps0 bus 0 scbus0 target 28 lun 0 >> da15: Fixed Direct Access SCSI-6 device >> da15: 150.000MB/s transfers >> da15: Command Queueing enabled >> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> ses0 at mps0 bus 0 scbus0 target 16 lun 0 >> ses0: Fixed Enclosure Services SCSI-5 device >> ses0: 600.000MB/s transfers >> ses0: Command Queueing enabled >> ses0: SCSI-3 SES Device >> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 >> ada0: ATA-7 SATA 1.x device >> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) >> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) >> ada0: Previously was known as ad4 >> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 >> SMP: AP CPU #3 Launched! >> cd0: Removable CD-ROM SCSI-0 device >> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO >> 8192bytes) >> cd0: Attempt to query device size failed: NOT READY, Medium not present >> - tray closed >> SMP: AP CPU #2 Launched! >> SMP: AP CPU #1 Launched! >> da6 at mps0 bus 0 scbus0 target 17 lun 0 >> da6: Fixed Direct Access SCSI-6 device >> da6: 150.000MB/s transfers >> da6: Command Queueing enabled >> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da7 at mps0 bus 0 scbus0 target 18 lun 0 >> da7: Fixed Direct Access SCSI-6 device >> da7: 150.000MB/s transfers >> da7: Command Queueing enabled >> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >> da10 at mps0 bus 0 scbus0 target 21 lun 0 >> da10: Fixed Direct Access SCSI-6 device >> da10: 300.000MB/s transfers >> da10: Command Queueing enabled >> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >> GEOM: da15s1: geometry does not match label (16h,63s != 255h,63s). >> uhub1: 2 ports with 2 removable, self powered >> uhub0: 2 ports with 2 removable, self powered >> Root mount waiting for: usbus1 usbus0 >> ugen0.2: at usbus0 >> uhub2: >> on usbus0 >> ugen1.2: at usbus1 >> uhub3: >> on usbus1 >> Root mount waiting for: usbus1 usbus0 >> uhub3: 6 ports with 6 removable, self powered >> uhub2: 6 ports with 6 removable, self powered >> ugen0.3: at usbus0 >> ums0:> rev 1.10/0.01, addr 3> on usbus0 >> ums0: 3 buttons and [Z] coordinates ID=0 >> ukbd0:> rev 1.10/0.01, addr 3> on usbus0 >> kbd2 at ukbd0 >> Trying to mount root from ufs:/dev/ada0p2 [rw]... >> em0: link state changed to UP >> >> thanks for your work. >> >> regards >> Johan >> >> >> >> >> _______________________________________________ >> freebsd-stable@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >> To unsubscribe, send any mail to "freebsd-stable- >> unsubscribe@freebsd.org" Ok i will try the patch, no hurry, i am back at the office on monday... regards Johan From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:15:48 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F7C11065673 for ; Fri, 3 Feb 2012 15:15:48 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog122.obsmtp.com (na3sys009aog122.obsmtp.com [74.125.149.147]) by mx1.freebsd.org (Postfix) with ESMTP id 4AE908FC0C for ; Fri, 3 Feb 2012 15:15:47 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob122.postini.com ([74.125.148.12]) with SMTP ID DSNKTyv6ItfxTo/5xY0mbOTwZGByrQxcSIok@postini.com; Fri, 03 Feb 2012 07:15:47 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 10:20:14 -0500 Received: from inbexch01.lsi.com (135.36.98.37) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 10:15:45 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch01.lsi.com ([135.36.98.37]) with mapi; Fri, 3 Feb 2012 20:45:41 +0530 From: "Desai, Kashyap" To: Johan Hendriks Date: Fri, 3 Feb 2012 20:45:40 +0530 Thread-Topic: LSI supported mps(4) driver in stable/9 and stable/8 Thread-Index: AczihjVWOTzLu7vISfui3on6s3EGowAAEz7w Message-ID: References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> In-Reply-To: <4F2BF93F.4060407@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: multipart/mixed; boundary="_002_B2FD678A64EAAD45B089B123FDFC3ED729A3414E2Einbmail01lsic_" MIME-Version: 1.0 Cc: freebsd-stable Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:15:48 -0000 --_002_B2FD678A64EAAD45B089B123FDFC3ED729A3414E2Einbmail01lsic_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Try attached patch.! (This patch is not taken against upstream code, so you= may see some hunk fail.) ~ Kashyap > -----Original Message----- > From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > Sent: Friday, February 03, 2012 8:42 PM > To: Desai, Kashyap > Cc: freebsd-stable > Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > Desai, Kashyap schreef: > > Hi Johan, > > > > I have already figure out this issue in our lab. > > > > I also have fix for this issue. (Just don't want to create regression, > that is why I have not posted outside) > > Since you have seen similar issue, It is worth to try my patch. > > > > My machine is not getting IP right now. I will send you patch once my > machine is in network ? > > > > ~ Kashyap > > > > > >> -----Original Message----- > >> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > >> stable@freebsd.org] On Behalf Of Johan Hendriks > >> Sent: Friday, February 03, 2012 8:13 PM > >> To: Kenneth D. Merry > >> Cc: freebsd-stable > >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >> > >> Kenneth D. Merry schreef: > >>> Hi folks, > >>> > >>> The LSI-supported version of the mps(4) driver that supports their > 6Gb > >> SAS > >>> HBAs as well as WarpDrive controllers, is now in stable/9 and > >> stable/8. > >>> Please test it out and let me and Kashyap (CCed) know if you run > into > >>> any problems. > >>> > >>> In addition to supporting WarpDrive, the driver also supports > >> Integrated > >>> RAID. > >>> > >>> Thanks to LSI for doing the work on this driver! > >>> > >>> Note that the CAM infrastructure changes that went into FreeBSD/head > >> along > >>> with this driver have not gone into either stable/9 or stable/8. > Only > >> the > >>> driver itself has been merged. > >>> > >>> The CAM infrastructure changes depend on some other da(4) driver > >> changes > >>> that will need to get merged before they can go back. If that merge > >>> happens, it will probably only be into stable/9. > >>> > >>> A couple of notes about issues with this driver: > >>> > >>> - Unlike the previous mps(4) driver, it probes sequentially. If > you > >> have > >>> a lot of drives in your system, it will take a while to probe > them > >> all. > >>> - You may see warning messages like this: > >>> > >>> _mapping_add_new_device: failed to add the device with handle 0x0019 > >> to persiste > >>> nt table because there is no free space available > >>> _mapping_add_new_device: failed to add the device with handle 0x001a > >> to persiste > >>> nt table because there is no free space available > >>> > >>> - The driver is not endian safe. (It assumes a little endian > >> machine.) > >>> This is not new, the previous version of the driver had the > same > >> issue. > >>> The LSI folks know about these issues. The driver has passed their > >> testing > >>> process. > >>> > >>> Many thanks to LSI for going through the effort to support FreeBSD. > >>> > >>> Ken > >> Hello Ken. > >> > >> Just updated our 16 bay server. did a csup today. > >> did try some commands, it looked like the drives got husseled. > >> > >> But after giving the command camcontrol rescan all it does not give > back > >> the prompt. > >> Also top shows me the following. > >> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% > >> camcontrol > >> > >> # on another console things works > >> filer01# camcontrol devlist > >> at scbus0 target 8 lun 0 > (pass0,da0) > >> at scbus0 target 9 lun 0 > (pass1,da1) > >> at scbus0 target 10 lun 0 > (pass2,da2) > >> at scbus0 target 11 lun 0 > (pass3,da3) > >> at scbus0 target 12 lun 0 > (pass4,da4) > >> at scbus0 target 13 lun 0 > (pass5,da5) > >> at scbus0 target 16 lun 0 > >> (probe16,ses0,pass6) > >> at scbus0 target 17 lun 0 > (pass7,da6) > >> at scbus0 target 18 lun 0 > (pass8,da7) > >> at scbus0 target 19 lun 0 > (pass9,da8) > >> at scbus0 target 20 lun 0 > >> (pass10,da9) > >> at scbus0 target 21 lun 0 > >> (pass11,da10) > >> at scbus0 target 22 lun 0 > >> (pass12,da11) > >> at scbus0 target 23 lun 0 > >> (pass13,da12) > >> at scbus0 target 24 lun 0 > >> (pass14,da13) > >> at scbus0 target 27 lun 0 > >> (pass15,da14) > >> at scbus0 target 28 lun 0 > >> (pass16,da15) > >> at scbus1 target 0 lun 0 > >> (ada0,pass17) > >> at scbus3 target 0 lun 0 > (pass18,cd0) > >> > >> The controller is a LSI 9211-8i with IT firmware. > >> > >> here is the dmesg > >> Copyright (c) 1992-2012 The FreeBSD Project. > >> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, > 1994 > >> The Regents of the University of California. All rights > >> reserved. > >> FreeBSD is a registered trademark of The FreeBSD Foundation. > >> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 > >> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 > >> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class CPU) > >> Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 6 Model =3D= 2a > >> Stepping =3D 7 > >> > >> > Features=3D0xbfebfbff >> ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > >> > >> > Features2=3D0x15bae3ff >> SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> > >> AMD Features=3D0x28100800 > >> AMD Features2=3D0x1 > >> TSC: P-state invariant, performance statistics > >> real memory =3D 17179869184 (16384 MB) > >> avail memory =3D 16493441024 (15729 MB) > >> Event timer "LAPIC" quality 600 > >> ACPI APIC Table: > >> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs > >> FreeBSD/SMP: 1 package(s) x 4 core(s) > >> cpu0 (BSP): APIC ID: 0 > >> cpu1 (AP): APIC ID: 2 > >> cpu2 (AP): APIC ID: 4 > >> cpu3 (AP): APIC ID: 6 > >> ioapic0 irqs 0-23 on motherboard > >> kbd1 at kbdmux0 > >> acpi0: on motherboard > >> acpi0: Power Button (fixed) > >> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > >> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 > >> cpu0: on acpi0 > >> cpu1: on acpi0 > >> cpu2: on acpi0 > >> cpu3: on acpi0 > >> pcib0: port 0xcf8-0xcff on acpi0 > >> pci0: on pcib0 > >> pcib1: irq 19 at device 6.0 on pci0 > >> pci1: on pcib1 > >> mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff irq > 19 > >> at device 0.0 on pci1 > >> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd > >> mps0: IOCCapabilities: > >> > 1285c >> c> > >> em0: port 0xf020-0xf03f > mem > >> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 on > >> pci0 > >> em0: Using an MSI interrupt > >> em0: Ethernet address: 00:25:90:57:20:bd > >> ehci0: mem 0xfb823000-0xfb8233ff > irq > >> 16 at device 26.0 on pci0 > >> usbus0: EHCI version 1.0 > >> usbus0: on ehci0 > >> pcib2: irq 17 at device 28.0 on pci0 > >> pci2: on pcib2 > >> pcib3: irq 17 at device 28.4 on pci0 > >> pci3: on pcib3 > >> em1: port 0xd000-0xd01f > mem > >> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on > pci3 > >> em1: Using MSIX interrupts with 3 vectors > >> em1: Ethernet address: 00:25:90:57:20:bc > >> ehci1: mem 0xfb822000-0xfb8223ff > irq > >> 23 at device 29.0 on pci0 > >> usbus1: EHCI version 1.0 > >> usbus1: on ehci1 > >> pcib4: at device 30.0 on pci0 > >> pci4: on pcib4 > >> vgapci0: mem > >> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff irq > 23 > >> at device 3.0 on pci4 > >> isab0: at device 31.0 on pci0 > >> isa0: on isab0 > >> ahci0: port > >> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000-0xf01f > >> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 > >> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported > >> ahcich0: at channel 0 on ahci0 > >> ahcich1: at channel 1 on ahci0 > >> ahcich2: at channel 2 on ahci0 > >> ahcich3: at channel 3 on ahci0 > >> ahcich4: at channel 4 on ahci0 > >> ahcich5: at channel 5 on ahci0 > >> pci0: at device 31.3 (no driver attached) > >> acpi_button0: on acpi0 > >> hpet0: iomem 0xfed00000-0xfed003ff on > acpi0 > >> ahcich0: at channel 0 on ahci0 > >> ahcich1: at channel 1 on ahci0 > >> ahcich2: at channel 2 on ahci0 > >> ahcich3: at channel 3 on ahci0 > >> ahcich4: at channel 4 on ahci0 > >> ahcich5: at channel 5 on ahci0 > >> pci0: at device 31.3 (no driver attached) > >> acpi_button0: on acpi0 > >> hpet0: iomem 0xfed00000-0xfed003ff on > acpi0 > >> Timecounter "HPET" frequency 14318180 Hz quality 950 > >> Event timer "HPET" frequency 14318180 Hz quality 550 > >> Event timer "HPET1" frequency 14318180 Hz quality 440 > >> Event timer "HPET2" frequency 14318180 Hz quality 440 > >> Event timer "HPET3" frequency 14318180 Hz quality 440 > >> Event timer "HPET4" frequency 14318180 Hz quality 440 > >> attimer0: port 0x40-0x43 irq 0 on acpi0 > >> Timecounter "i8254" frequency 1193182 Hz quality 0 > >> Event timer "i8254" frequency 1193182 Hz quality 100 > >> atrtc0: port 0x70-0x71 irq 8 on acpi0 > >> Event timer "RTC" frequency 32768 Hz quality 0 > >> atkbdc0: port 0x60,0x64 irq 1 on acpi0 > >> atkbd0: irq 1 on atkbdc0 > >> kbd0 at atkbd0 > >> atkbd0: [GIANT-LOCKED] > >> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on > acpi0 > >> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 > >> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 > >> orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff on > isa0 > >> sc0: at flags 0x100 on isa0 > >> sc0: VGA<16 virtual consoles, flags=3D0x300> > >> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on > >> isa0 > >> ppc0: cannot reserve I/O port range > >> est0: on cpu0 > >> p4tcc0: on cpu0 > >> est1: on cpu1 > >> p4tcc1: on cpu1 > >> est2: on cpu2 > >> p4tcc2: on cpu2 > >> est3: on cpu3 > >> p4tcc3: on cpu3 > >> ZFS filesystem version 5 > >> ZFS storage pool version 28 > >> Timecounters tick every 1.000 msec > >> usbus0: 480Mbps High Speed USB v2.0 > >> usbus1: 480Mbps High Speed USB v2.0 > >> ugen0.1: at usbus0 > >> uhub0: on > usbus0 > >> ugen1.1: at usbus1 > >> uhub1: on > usbus1 > >> da0 at mps0 bus 0 scbus0 target 8 lun 0 > >> da0: Fixed Direct Access SCSI-6 device > >> da0: 300.000MB/s transfers > >> da0: Command Queueing enabled > >> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da1 at mps0 bus 0 scbus0 target 9 lun 0 > >> da1: Fixed Direct Access SCSI-6 device > >> da1: 300.000MB/s transfers > >> da1: Command Queueing enabled > >> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da2 at mps0 bus 0 scbus0 target 10 lun 0 > >> da2: Fixed Direct Access SCSI-6 device > >> da2: 300.000MB/s transfers > >> da2: Command Queueing enabled > >> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da3 at mps0 bus 0 scbus0 target 11 lun 0 > >> da3: Fixed Direct Access SCSI-6 device > >> da3: 300.000MB/s transfers > >> da3: Command Queueing enabled > >> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da4 at mps0 bus 0 scbus0 target 12 lun 0 > >> da4: Fixed Direct Access SCSI-6 device > >> da4: 300.000MB/s transfers > >> da4: Command Queueing enabled > >> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da5 at mps0 bus 0 scbus0 target 13 lun 0 > >> da5: Fixed Direct Access SCSI-6 device > >> da5: 150.000MB/s transfers > >> da5: Command Queueing enabled > >> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da8 at mps0 bus 0 scbus0 target 19 lun 0 > >> da8: Fixed Direct Access SCSI-6 device > >> da8: 300.000MB/s transfers > >> da8: Command Queueing enabled > >> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da9 at mps0 bus 0 scbus0 target 20 lun 0 > >> da9: Fixed Direct Access SCSI-6 device > >> da9: 300.000MB/s transfers > >> da9: Command Queueing enabled > >> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da11 at mps0 bus 0 scbus0 target 22 lun 0 > >> da11: Fixed Direct Access SCSI-6 device > >> da11: 150.000MB/s transfers > >> da11: Command Queueing enabled > >> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da12 at mps0 bus 0 scbus0 target 23 lun 0 > >> da12: Fixed Direct Access SCSI-6 device > >> da12: 150.000MB/s transfers > >> da12: Command Queueing enabled > >> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da13 at mps0 bus 0 scbus0 target 24 lun 0 > >> da13: Fixed Direct Access SCSI-6 device > >> da13: 150.000MB/s transfers > >> da13: Command Queueing enabled > >> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da14 at mps0 bus 0 scbus0 target 27 lun 0 > >> da14: Fixed Direct Access SCSI-6 device > >> da14: 300.000MB/s transfers > >> da14: Command Queueing enabled > >> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> da15 at mps0 bus 0 scbus0 target 28 lun 0 > >> da15: Fixed Direct Access SCSI-6 device > >> da15: 150.000MB/s transfers > >> da15: Command Queueing enabled > >> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> ses0 at mps0 bus 0 scbus0 target 16 lun 0 > >> ses0: Fixed Enclosure Services SCSI-5 device > >> ses0: 600.000MB/s transfers > >> ses0: Command Queueing enabled > >> ses0: SCSI-3 SES Device > >> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 > >> ada0: ATA-7 SATA 1.x device > >> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) > >> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) > >> ada0: Previously was known as ad4 > >> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 > >> SMP: AP CPU #3 Launched! > >> cd0: Removable CD-ROM SCSI-0 device > >> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO > >> 8192bytes) > >> cd0: Attempt to query device size failed: NOT READY, Medium not > present > >> - tray closed > >> SMP: AP CPU #2 Launched! > >> SMP: AP CPU #1 Launched! > >> da6 at mps0 bus 0 scbus0 target 17 lun 0 > >> da6: Fixed Direct Access SCSI-6 device > >> da6: 150.000MB/s transfers > >> da6: Command Queueing enabled > >> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da7 at mps0 bus 0 scbus0 target 18 lun 0 > >> da7: Fixed Direct Access SCSI-6 device > >> da7: 150.000MB/s transfers > >> da7: Command Queueing enabled > >> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >> da10 at mps0 bus 0 scbus0 target 21 lun 0 > >> da10: Fixed Direct Access SCSI-6 device > >> da10: 300.000MB/s transfers > >> da10: Command Queueing enabled > >> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >> GEOM: da15s1: geometry does not match label (16h,63s !=3D 255h,63s). > >> uhub1: 2 ports with 2 removable, self powered > >> uhub0: 2 ports with 2 removable, self powered > >> Root mount waiting for: usbus1 usbus0 > >> ugen0.2: at usbus0 > >> uhub2: 2> > >> on usbus0 > >> ugen1.2: at usbus1 > >> uhub3: 2> > >> on usbus1 > >> Root mount waiting for: usbus1 usbus0 > >> uhub3: 6 ports with 6 removable, self powered > >> uhub2: 6 ports with 6 removable, self powered > >> ugen0.3: at usbus0 > >> ums0: >> rev 1.10/0.01, addr 3> on usbus0 > >> ums0: 3 buttons and [Z] coordinates ID=3D0 > >> ukbd0: 0/0, > >> rev 1.10/0.01, addr 3> on usbus0 > >> kbd2 at ukbd0 > >> Trying to mount root from ufs:/dev/ada0p2 [rw]... > >> em0: link state changed to UP > >> > >> thanks for your work. > >> > >> regards > >> Johan > >> > >> > >> > >> > >> _______________________________________________ > >> freebsd-stable@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-stable > >> To unsubscribe, send any mail to "freebsd-stable- > >> unsubscribe@freebsd.org" > > Ok i will try the patch, no hurry, i am back at the office on monday... > regards > Johan --_002_B2FD678A64EAAD45B089B123FDFC3ED729A3414E2Einbmail01lsic_ Content-Type: application/octet-stream; name="rescan_upstream.patch" Content-Description: rescan_upstream.patch Content-Disposition: attachment; filename="rescan_upstream.patch"; size=31155; creation-date="Fri, 03 Feb 2012 15:14:34 GMT"; modification-date="Sat, 04 Feb 2012 00:19:15 GMT" Content-Transfer-Encoding: base64 ZGlmZiAtYXVycCBGUkVFQlNELVNBUzItMTIuMDAuMDAuMDEvbXBzbHNpLXNvdXJjZS0xMi4wMC4w MC4wMS9zeXMvZGV2L21wcy9tcHMuYyBGUkVFQlNELVNBUzItMTIuMjU1LjAwLjAyL21wc2xzaS1z b3VyY2UtMTIuMjU1LjAwLjAyL3N5cy9kZXYvbXBzL21wcy5jCi0tLSBGUkVFQlNELVNBUzItMTIu MDAuMDAuMDEvbXBzbHNpLXNvdXJjZS0xMi4wMC4wMC4wMS9zeXMvZGV2L21wcy9tcHMuYwkyMDEy LTAxLTMwIDIwOjQ5OjA5LjAwMDAwMDAwMCArMDUzMAorKysgRlJFRUJTRC1TQVMyLTEyLjI1NS4w MC4wMi9tcHNsc2ktc291cmNlLTEyLjI1NS4wMC4wMi9zeXMvZGV2L21wcy9tcHMuYwkyMDEyLTAx LTE3IDA0OjMyOjE1LjAwMDAwMDAwMCArMDUzMApAQCAtNTI5LDcgKzUyOSw3IEBAIG1wc19lbnF1 ZXVlX3JlcXVlc3Qoc3RydWN0IG1wc19zb2Z0YyAqc2MKIAltcHNfZHByaW50KHNjLCBNUFNfVFJB Q0UsICIlcyBTTUlEICV1IGNtICVwIGNjYiAlcFxuIiwgX19mdW5jX18sCiAJICAgIGNtLT5jbV9k ZXNjLkRlZmF1bHQuU01JRCwgY20sIGNtLT5jbV9jY2IpOwogCi0JaWYgKHNjLT5tcHNfZmxhZ3Mg JiBNUFNfRkxBR1NfQVRUQUNIX0RPTkUpCisJaWYgKHNjLT5tcHNfZmxhZ3MgJiBNUFNfRkxBR1Nf QVRUQUNIX0RPTkUgJiYgIShzYy0+bXBzX2ZsYWdzICYgTVBTX0ZMQUdTX1NIVVRET1dOKSkKIAkJ bXR4X2Fzc2VydCgmc2MtPm1wc19tdHgsIE1BX09XTkVEKTsKIAogCWlmICgrK3NjLT5pb19jbWRz X2FjdGl2ZSA+IHNjLT5pb19jbWRzX2hpZ2h3YXRlcikKQEAgLTEzNDIsNiArMTM0Miw4IEBAIG1w c19mcmVlKHN0cnVjdCBtcHNfc29mdGMgKnNjKQogCSAgICAoKGVycm9yID0gbXBzX2RldGFjaF9z YXMoc2MpKSAhPSAwKSkKIAkJcmV0dXJuIChlcnJvcik7CiAKKwltcHNfZGV0YWNoX3VzZXIoc2Mp OworCiAJLyogUHV0IHRoZSBJT0MgYmFjayBpbiB0aGUgUkVBRFkgc3RhdGUuICovCiAJbXBzX2xv Y2soc2MpOwogCWlmICgoZXJyb3IgPSBtcHNfdHJhbnNpdGlvbl9yZWFkeShzYykpICE9IDApIHsK QEAgLTIxNDksNyArMjE1MSw3IEBAIG1wc193YWl0X2NvbW1hbmQoc3RydWN0IG1wc19zb2Z0YyAq c2MsIHMKIAllcnJvciA9IG1wc19tYXBfY29tbWFuZChzYywgY20pOwogCWlmICgoZXJyb3IgIT0g MCkgJiYgKGVycm9yICE9IEVJTlBST0dSRVNTKSkKIAkJcmV0dXJuIChlcnJvcik7Ci0JZXJyb3Ig PSBtc2xlZXAoY20sICZzYy0+bXBzX210eCwgMCwgIm1wc3dhaXQiLCB0aW1lb3V0KTsKKwllcnJv ciA9IG1zbGVlcChjbSwgJnNjLT5tcHNfbXR4LCAwLCAibXBzd2FpdCIsIHRpbWVvdXQqaHopOwog CWlmIChlcnJvciA9PSBFV09VTERCTE9DSykKIAkJZXJyb3IgPSBFVElNRURPVVQ7CiAJcmV0dXJu IChlcnJvcik7CmRpZmYgLWF1cnAgRlJFRUJTRC1TQVMyLTEyLjAwLjAwLjAxL21wc2xzaS1zb3Vy Y2UtMTIuMDAuMDAuMDEvc3lzL2Rldi9tcHMvbXBzX3Nhcy5jIEZSRUVCU0QtU0FTMi0xMi4yNTUu MDAuMDIvbXBzbHNpLXNvdXJjZS0xMi4yNTUuMDAuMDIvc3lzL2Rldi9tcHMvbXBzX3Nhcy5jCi0t LSBGUkVFQlNELVNBUzItMTIuMDAuMDAuMDEvbXBzbHNpLXNvdXJjZS0xMi4wMC4wMC4wMS9zeXMv ZGV2L21wcy9tcHNfc2FzLmMJMjAxMi0wMS0zMCAyMDo0OTowOS4wMDAwMDAwMDAgKzA1MzAKKysr IEZSRUVCU0QtU0FTMi0xMi4yNTUuMDAuMDIvbXBzbHNpLXNvdXJjZS0xMi4yNTUuMDAuMDIvc3lz L2Rldi9tcHMvbXBzX3Nhcy5jCTIwMTItMDEtMTcgMDQ6MzI6MTUuMDAwMDAwMDAwICswNTMwCkBA IC0xMzgsNyArMTM4LDYgQEAgc3RhdGljIHVpbnQ4X3Qgb3BfY29kZV9wcm90WzI1Nl0gPSB7CiAK IE1BTExPQ19ERUZJTkUoTV9NUFNTQVMsICJNUFNTQVMiLCAiTVBTIFNBUyBtZW1vcnkiKTsKIAot c3RhdGljIHN0cnVjdCBtcHNzYXNfdGFyZ2V0ICogbXBzc2FzX2ZpbmRfdGFyZ2V0X2J5X2hhbmRs ZShzdHJ1Y3QgbXBzc2FzX3NvZnRjICosIGludCwgdWludDE2X3QpOwogc3RhdGljIHZvaWQgbXBz c2FzX2Rpc2NvdmVyeV90aW1lb3V0KHZvaWQgKmRhdGEpOwogc3RhdGljIHZvaWQgbXBzc2FzX3Jl bW92ZV9kZXZpY2Uoc3RydWN0IG1wc19zb2Z0YyAqLCBzdHJ1Y3QgbXBzX2NvbW1hbmQgKik7CiBz dGF0aWMgdm9pZCBtcHNzYXNfcmVtb3ZlX2NvbXBsZXRlKHN0cnVjdCBtcHNfc29mdGMgKiwgc3Ry dWN0IG1wc19jb21tYW5kICopOwpAQCAtMTY5LDcgKzE2OCw3IEBAIHN0YXRpYyBpbnQgbXBzc2Fz X3NlbmRfcG9ydGVuYWJsZShzdHJ1Y3QKIHN0YXRpYyB2b2lkIG1wc3Nhc19wb3J0ZW5hYmxlX2Nv bXBsZXRlKHN0cnVjdCBtcHNfc29mdGMgKnNjLAogICAgIHN0cnVjdCBtcHNfY29tbWFuZCAqY20p OwogCi1zdGF0aWMgc3RydWN0IG1wc3Nhc190YXJnZXQgKgorc3RydWN0IG1wc3Nhc190YXJnZXQg KgogbXBzc2FzX2ZpbmRfdGFyZ2V0X2J5X2hhbmRsZShzdHJ1Y3QgbXBzc2FzX3NvZnRjICpzYXNz YywgaW50IHN0YXJ0LCB1aW50MTZfdCBoYW5kbGUpCiB7CiAJc3RydWN0IG1wc3Nhc190YXJnZXQg KnRhcmdldDsKQEAgLTM0MiwyMiArMzQxLDEyMyBAQCBzdGF0aWMgdm9pZCBtcHNzYXNfbG9nX2Nv bW1hbmQoc3RydWN0IG1wCiAJdmFfZW5kKGFwKTsKIH0KIAorCiBzdGF0aWMgdm9pZAotbXBzc2Fz X2xvc3RfdGFyZ2V0KHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHJ1Y3QgbXBzc2FzX3RhcmdldCAq dGFyZykKK21wc3Nhc19yZW1vdmVfdm9sdW1lKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHJ1Y3Qg bXBzX2NvbW1hbmQgKnRtKQogewotCXN0cnVjdCBtcHNzYXNfc29mdGMgKnNhc3NjID0gc2MtPnNh c3NjOwotCXBhdGhfaWRfdCBwYXRoaWQgPSBjYW1fc2ltX3BhdGgoc2Fzc2MtPnNpbSk7Ci0Jc3Ry dWN0IGNhbV9wYXRoICpwYXRoOworCU1QSTJfU0NTSV9UQVNLX01BTkFHRV9SRVBMWSAqcmVwbHk7 CisJc3RydWN0IG1wc3Nhc190YXJnZXQgKnRhcmc7CisJdWludDE2X3QgaGFuZGxlOworCisJbXBz X2RwcmludChzYywgTVBTX0lORk8sICIlc1xuIiwgX19mdW5jX18pOworCisJcmVwbHkgPSAoTVBJ Ml9TQ1NJX1RBU0tfTUFOQUdFX1JFUExZICopdG0tPmNtX3JlcGx5OworCWhhbmRsZSA9ICh1aW50 MTZfdCkodWludHB0cl90KXRtLT5jbV9jb21wbGV0ZV9kYXRhOworCXRhcmcgPSB0bS0+Y21fdGFy ZzsKIAotCW1wc19wcmludGYoc2MsICIlcyB0YXJnZXRpZCAldVxuIiwgX19mdW5jX18sIHRhcmct PnRpZCk7Ci0JaWYgKHhwdF9jcmVhdGVfcGF0aCgmcGF0aCwgTlVMTCwgcGF0aGlkLCB0YXJnLT50 aWQsIDApICE9IENBTV9SRVFfQ01QKSB7Ci0JCW1wc19wcmludGYoc2MsICJ1bmFibGUgdG8gY3Jl YXRlIHBhdGggZm9yIGxvc3QgdGFyZ2V0ICVkXG4iLCAKLQkJICAgIHRhcmctPnRpZCk7CisJaWYg KHJlcGx5ID09IE5VTEwpIHsKKwkJLyogWFhYIHJldHJ5IHRoZSByZW1vdmUgYWZ0ZXIgdGhlIGRp YWcgcmVzZXQgY29tcGxldGVzPyAqLworCQltcHNfcHJpbnRmKHNjLCAiJXMgTlVMTCByZXBseSBy ZXNldGluZyBkZXZpY2UgMHglMDR4XG4iLCAKKwkJICAgIF9fZnVuY19fLCBoYW5kbGUpOworCQlt cHNzYXNfZnJlZV90bShzYywgdG0pOwogCQlyZXR1cm47CiAJfQogCi0JeHB0X2FzeW5jKEFDX0xP U1RfREVWSUNFLCBwYXRoLCBOVUxMKTsKLQl4cHRfZnJlZV9wYXRoKHBhdGgpOworCWlmIChyZXBs eS0+SU9DU3RhdHVzICE9IE1QSTJfSU9DU1RBVFVTX1NVQ0NFU1MpIHsKKwkJbXBzX3ByaW50Zihz YywgIklPQ1N0YXR1cyA9IDB4JXggd2hpbGUgcmVzZXR0aW5nIGRldmljZSAweCV4XG4iLAorCQkg ICByZXBseS0+SU9DU3RhdHVzLCBoYW5kbGUpOworCQltcHNzYXNfZnJlZV90bShzYywgdG0pOwor CQlyZXR1cm47CisJfQorCisJbXBzX3ByaW50ZihzYywgIlJlc2V0IGFib3J0ZWQgJXUgY29tbWFu ZHNcbiIsIHJlcGx5LT5UZXJtaW5hdGlvbkNvdW50KTsKKwltcHNfZnJlZV9yZXBseShzYywgdG0t PmNtX3JlcGx5X2RhdGEpOworCXRtLT5jbV9yZXBseSA9IE5VTEw7CS8qIEVuc3VyZXMgdGhlIHRo ZSByZXBseSB3b24ndCBnZXQgcmUtZnJlZWQgKi8KKworCW1wc19wcmludGYoc2MsICJjbGVhcmlu ZyB0YXJnZXQgJXUgaGFuZGxlIDB4JTA0eFxuIiwgdGFyZy0+dGlkLCBoYW5kbGUpOworCQorCS8q CisJICogRG9uJ3QgY2xlYXIgdGFyZ2V0IGlmIHJlbW92ZSBmYWlscyBiZWNhdXNlIHRoaW5ncyB3 aWxsIGdldCBjb25mdXNpbmcuCisJICogTGVhdmUgdGhlIGRldm5hbWUgYW5kIHNhc2FkZHIgaW50 YWN0IHNvIHRoYXQgd2Uga25vdyB0byBhdm9pZCByZXVzaW5nCisJICogdGhpcyB0YXJnZXQgaWQg aWYgcG9zc2libGUsIGFuZCBzbyB3ZSBjYW4gYXNzaWduIHRoZSBzYW1lIHRhcmdldCBpZAorCSAq IHRvIHRoaXMgZGV2aWNlIGlmIGl0IGNvbWVzIGJhY2sgaW4gdGhlIGZ1dHVyZS4KKwkgKi8KKwlp ZiAocmVwbHktPklPQ1N0YXR1cyA9PSBNUEkyX0lPQ1NUQVRVU19TVUNDRVNTKSB7CisJCXRhcmcg PSB0bS0+Y21fdGFyZzsKKwkJdGFyZy0+aGFuZGxlID0gMHgwOworCQl0YXJnLT5lbmNsX2hhbmRs ZSA9IDB4MDsKKwkJdGFyZy0+ZW5jbF9zbG90ID0gMHgwOworCQl0YXJnLT5leHBfZGV2X2hhbmRs ZSA9IDB4MDsKKwkJdGFyZy0+cGh5X251bSA9IDB4MDsKKwkJdGFyZy0+bGlua3JhdGUgPSAweDA7 CisJCXRhcmctPmRldmluZm8gPSAweDA7CisJCXRhcmctPmZsYWdzID0gMHgwOworCX0KKworCW1w c3Nhc19mcmVlX3RtKHNjLCB0bSk7Cit9CisKKworLyoKKyAqIE5vIE5lZWQgdG8gY2FsbCAiTVBJ Ml9TQVNfT1BfUkVNT1ZFX0RFVklDRSIgRm9yIFZvbHVtZSByZW1vdmFsLgorICogT3RoZXJ3aXNl IFZvbHVtZSBEZWxldGUgaXMgc2FtZSBhcyBCYXJlIERyaXZlIFJlbW92YWwuCisgKi8KK3ZvaWQK K21wc3Nhc19wcmVwYXJlX3ZvbHVtZV9yZW1vdmUoc3RydWN0IG1wc3Nhc19zb2Z0YyAqc2Fzc2Ms IHVpbnQxNl90IGhhbmRsZSkKK3sKKwlNUEkyX1NDU0lfVEFTS19NQU5BR0VfUkVRVUVTVCAqcmVx OworCXN0cnVjdCBtcHNfc29mdGMgKnNjOworCXN0cnVjdCBtcHNfY29tbWFuZCAqY207CisJc3Ry dWN0IG1wc3Nhc190YXJnZXQgKnRhcmcgPSBOVUxMOworCisJbXBzX2RwcmludChzYXNzYy0+c2Ms IE1QU19JTkZPLCAiJXNcbiIsIF9fZnVuY19fKTsKKwlzYyA9IHNhc3NjLT5zYzsKKworI2lmZGVm IFdEX1NVUFBPUlQKKwkvKgorCSAqIElmIHRoaXMgaXMgYSBXRCBjb250cm9sbGVyLCBkZXRlcm1p bmUgaWYgdGhlIGRpc2sgc2hvdWxkIGJlIGV4cG9zZWQKKwkgKiB0byB0aGUgT1Mgb3Igbm90LiAg SWYgZGlzayBzaG91bGQgYmUgZXhwb3NlZCwgcmV0dXJuIGZyb20gdGhpcworCSAqIGZ1bmN0aW9u IHdpdGhvdXQgZG9pbmcgYW55dGhpbmcuCisJICovCisJaWYgKHNjLT5XRF9hdmFpbGFibGUgJiYg KHNjLT5XRF9oaWRlX2V4cG9zZSA9PQorCSAgICBNUFNfV0RfRVhQT1NFX0FMV0FZUykpIHsKKwkJ cmV0dXJuOworCX0KKyNlbmRpZiAvL1dEX1NVUFBPUlQKKworCXRhcmcgPSBtcHNzYXNfZmluZF90 YXJnZXRfYnlfaGFuZGxlKHNhc3NjLCAwLCBoYW5kbGUpOworCWlmICh0YXJnID09IE5VTEwpIHsK KwkJLyogRklYTUU6IHdoYXQgaXMgdGhlIGFjdGlvbj8gKi8KKwkJLyogV2UgZG9uJ3Qga25vdyBh Ym91dCB0aGlzIGRldmljZT8gKi8KKwkJcHJpbnRmKCIlcyAlZCA6IGludmFsaWQgaGFuZGxlIDB4 JXggXG4iLCBfX2Z1bmNfXyxfX0xJTkVfXywgaGFuZGxlKTsKKwkJcmV0dXJuOworCX0KKworCXRh cmctPmZsYWdzIHw9IE1QU1NBU19UQVJHRVRfSU5SRU1PVkFMOworCisJY20gPSBtcHNzYXNfYWxs b2NfdG0oc2MpOworCWlmIChjbSA9PSBOVUxMKSB7CisJCW1wc19wcmludGYoc2MsICIlczogY29t bWFuZCBhbGxvYyBmYWlsdXJlXG4iLCBfX2Z1bmNfXyk7CisJCXJldHVybjsKKwl9CisKKwltcHNz YXNfcmVzY2FuX3RhcmdldChzYywgdGFyZyk7CisKKwlyZXEgPSAoTVBJMl9TQ1NJX1RBU0tfTUFO QUdFX1JFUVVFU1QgKiljbS0+Y21fcmVxOworCXJlcS0+RGV2SGFuZGxlID0gdGFyZy0+aGFuZGxl OworCXJlcS0+RnVuY3Rpb24gPSBNUEkyX0ZVTkNUSU9OX1NDU0lfVEFTS19NR01UOworCXJlcS0+ VGFza1R5cGUgPSBNUEkyX1NDU0lUQVNLTUdNVF9UQVNLVFlQRV9UQVJHRVRfUkVTRVQ7CisKKwkv KiBTQVMgSGFyZCBMaW5rIFJlc2V0IC8gU0FUQSBMaW5rIFJlc2V0ICovCisJcmVxLT5Nc2dGbGFn cyA9IE1QSTJfU0NTSVRBU0tNR01UX01TR0ZMQUdTX0xJTktfUkVTRVQ7CisKKwljbS0+Y21fdGFy ZyA9IHRhcmc7CisJY20tPmNtX2RhdGEgPSBOVUxMOworCWNtLT5jbV9kZXNjLkhpZ2hQcmlvcml0 eS5SZXF1ZXN0RmxhZ3MgPQorCSAgICBNUEkyX1JFUV9ERVNDUklQVF9GTEFHU19ISUdIX1BSSU9S SVRZOworCWNtLT5jbV9jb21wbGV0ZSA9IG1wc3Nhc19yZW1vdmVfdm9sdW1lOworCWNtLT5jbV9j b21wbGV0ZV9kYXRhID0gKHZvaWQgKikodWludHB0cl90KWhhbmRsZTsKKwltcHNfbWFwX2NvbW1h bmQoc2MsIGNtKTsKIH0KIAogLyoKQEAgLTM3Nyw3ICs0NzcsNyBAQCBtcHNzYXNfcHJlcGFyZV9y ZW1vdmUoc3RydWN0IG1wc3Nhc19zb2Z0CiAJc3RydWN0IG1wc19jb21tYW5kICpjbTsKIAlzdHJ1 Y3QgbXBzc2FzX3RhcmdldCAqdGFyZyA9IE5VTEw7CiAKLQltcHNfZHByaW50KHNhc3NjLT5zYywg TVBTX1RSQUNFLCAiJXNcbiIsIF9fZnVuY19fKTsKKwltcHNfZHByaW50KHNhc3NjLT5zYywgTVBT X0lORk8sICIlc1xuIiwgX19mdW5jX18pOwogCiAJLyoKIAkgKiBJZiB0aGlzIGlzIGEgV0QgY29u dHJvbGxlciwgZGV0ZXJtaW5lIGlmIHRoZSBkaXNrIHNob3VsZCBiZSBleHBvc2VkCkBAIC0zOTQs NyArNDk0LDcgQEAgbXBzc2FzX3ByZXBhcmVfcmVtb3ZlKHN0cnVjdCBtcHNzYXNfc29mdAogCWlm ICh0YXJnID09IE5VTEwpIHsKIAkJLyogRklYTUU6IHdoYXQgaXMgdGhlIGFjdGlvbj8gKi8KIAkJ LyogV2UgZG9uJ3Qga25vdyBhYm91dCB0aGlzIGRldmljZT8gKi8KLQkJcHJpbnRmKCIlczogaW52 YWxpZCBoYW5kbGUgMHgleCBcbiIsIF9fZnVuY19fLCBoYW5kbGUpOworCQlwcmludGYoIiVzICVk IDogaW52YWxpZCBoYW5kbGUgMHgleCBcbiIsIF9fZnVuY19fLF9fTElORV9fLCBoYW5kbGUpOwog CQlyZXR1cm47CiAJfQogCkBAIC00MDYsNyArNTA2LDcgQEAgbXBzc2FzX3ByZXBhcmVfcmVtb3Zl KHN0cnVjdCBtcHNzYXNfc29mdAogCQlyZXR1cm47CiAJfQogCi0JbXBzc2FzX2xvc3RfdGFyZ2V0 KHNjLCB0YXJnKTsKKwltcHNzYXNfcmVzY2FuX3RhcmdldChzYywgdGFyZyk7CiAKIAlyZXEgPSAo TVBJMl9TQ1NJX1RBU0tfTUFOQUdFX1JFUVVFU1QgKiljbS0+Y21fcmVxOwogCW1lbXNldChyZXEs IDAsIHNpemVvZigqcmVxKSk7CkBAIC00MzQsNyArNTM0LDcgQEAgbXBzc2FzX3JlbW92ZV9kZXZp Y2Uoc3RydWN0IG1wc19zb2Z0YyAqcwogCXN0cnVjdCBtcHNfY29tbWFuZCAqbmV4dF9jbTsKIAl1 aW50MTZfdCBoYW5kbGU7CiAKLQltcHNfZHByaW50KHNjLCBNUFNfVFJBQ0UsICIlc1xuIiwgX19m dW5jX18pOworCW1wc19kcHJpbnQoc2MsIE1QU19JTkZPLCAiJXNcbiIsIF9fZnVuY19fKTsKIAog CXJlcGx5ID0gKE1QSTJfU0NTSV9UQVNLX01BTkFHRV9SRVBMWSAqKXRtLT5jbV9yZXBseTsKIAlo YW5kbGUgPSAodWludDE2X3QpKHVpbnRwdHJfdCl0bS0+Y21fY29tcGxldGVfZGF0YTsKQEAgLTUw NSw3ICs2MDUsNyBAQCBtcHNzYXNfcmVtb3ZlX2NvbXBsZXRlKHN0cnVjdCBtcHNfc29mdGMgCiAJ dWludDE2X3QgaGFuZGxlOwogCXN0cnVjdCBtcHNzYXNfdGFyZ2V0ICp0YXJnOwogCi0JbXBzX2Rw cmludChzYywgTVBTX1RSQUNFLCAiJXNcbiIsIF9fZnVuY19fKTsKKwltcHNfZHByaW50KHNjLCBN UFNfSU5GTywgIiVzXG4iLCBfX2Z1bmNfXyk7CiAKIAlyZXBseSA9IChNUEkyX1NBU19JT1VOSVRf Q09OVFJPTF9SRVBMWSAqKXRtLT5jbV9yZXBseTsKIAloYW5kbGUgPSAodWludDE2X3QpKHVpbnRw dHJfdCl0bS0+Y21fY29tcGxldGVfZGF0YTsKQEAgLTU0OSw2ICs2NDksNyBAQCBtcHNzYXNfcmVt b3ZlX2NvbXBsZXRlKHN0cnVjdCBtcHNfc29mdGMgCiAJCXRhcmctPnBoeV9udW0gPSAweDA7CiAJ CXRhcmctPmxpbmtyYXRlID0gMHgwOwogCQl0YXJnLT5kZXZpbmZvID0gMHgwOworCQl0YXJnLT5m bGFncyA9IDB4MDsKIAl9CiAKIAltcHNzYXNfZnJlZV90bShzYywgdG0pOwpAQCAtNjcwLDcgKzc3 MSw3IEBAIG1wc19kZXRhY2hfc2FzKHN0cnVjdCBtcHNfc29mdGMgKnNjKQogewogCXN0cnVjdCBt cHNzYXNfc29mdGMgKnNhc3NjOwogCi0JbXBzX2RwcmludChzYywgTVBTX1RSQUNFLCAiJXNcbiIs IF9fZnVuY19fKTsKKwltcHNfZHByaW50KHNjLCBNUFNfSU5GTywgIiVzXG4iLCBfX2Z1bmNfXyk7 CiAKIAlpZiAoc2MtPnNhc3NjID09IE5VTEwpCiAJCXJldHVybiAoMCk7CkBAIC03MDYsNiArODA3 LDcgQEAgbXBzX2RldGFjaF9zYXMoc3RydWN0IG1wc19zb2Z0YyAqc2MpCiAJfQogCW1wc191bmxv Y2soc2MpOwogCisJbXBzX2RwcmludChzYywgTVBTX0lORk8sICIlczolZFxuIiwgX19mdW5jX18s X19MSU5FX18pOwogCWlmIChzYXNzYy0+ZGV2cSAhPSBOVUxMKQogCQljYW1fc2ltcV9mcmVlKHNh c3NjLT5kZXZxKTsKIApAQCAtMTQ0MiwxMSArMTU0NCwxMSBAQCBtcHNzYXNfYWN0aW9uX3Njc2lp byhzdHJ1Y3QgbXBzc2FzX3NvZnRjCiAJdWludDE2X3QgZWVkcF9mbGFnczsKIAogCXNjID0gc2Fz c2MtPnNjOwotCW1wc19kcHJpbnQoc2MsIE1QU19UUkFDRSwgIiVzIGNjYiAlcFxuIiwgX19mdW5j X18sIGNjYik7CiAJbXR4X2Fzc2VydCgmc2MtPm1wc19tdHgsIE1BX09XTkVEKTsKIAogCWNzaW8g PSAmY2NiLT5jc2lvOwogCXRhcmcgPSAmc2Fzc2MtPnRhcmdldHNbY3Npby0+Y2NiX2gudGFyZ2V0 X2lkXTsKKwltcHNfZHByaW50KHNjLCBNUFNfVFJBQ0UsICIlcyBjY2IgJXAgdGFyZ2V0IGZsYWcg JXhcbiIsIF9fZnVuY19fLCBjY2IsIHRhcmctPmZsYWdzKTsKIAlpZiAodGFyZy0+aGFuZGxlID09 IDB4MCkgewogCQltcHNfZHByaW50KHNjLCBNUFNfVFJBQ0UsICIlcyBOVUxMIGhhbmRsZSBmb3Ig dGFyZ2V0ICV1XG4iLCAKIAkJICAgIF9fZnVuY19fLCBjc2lvLT5jY2JfaC50YXJnZXRfaWQpOwpA QCAtMTQ1NCw2ICsxNTU2LDEzIEBAIG1wc3Nhc19hY3Rpb25fc2NzaWlvKHN0cnVjdCBtcHNzYXNf c29mdGMKIAkJeHB0X2RvbmUoY2NiKTsKIAkJcmV0dXJuOwogCX0KKwlpZiAodGFyZy0+ZmxhZ3Mg JiBNUFNfVEFSR0VUX0ZMQUdTX1JBSURfQ09NUE9ORU5UKSB7CisJCW1wc19kcHJpbnQoc2MsIE1Q U19UUkFDRSwgIiVzIFJhaWQgY29tcG9uZW50IG5vIFNDU0kgSU8gc3VwcG9ydGVkICV1XG4iLCAK KwkJICAgIF9fZnVuY19fLCBjc2lvLT5jY2JfaC50YXJnZXRfaWQpOworCQljc2lvLT5jY2JfaC5z dGF0dXMgPSBDQU1fVElEX0lOVkFMSUQ7CisJCXhwdF9kb25lKGNjYik7CisJCXJldHVybjsKKwl9 CiAJLyoKIAkgKiBJZiBkZXZpbmZvIGlzIDAgdGhpcyB3aWxsIGJlIGEgdm9sdW1lLiAgSW4gdGhh dCBjYXNlIGRvbid0IHRlbGwgQ0FNCiAJICogdGhhdCB0aGUgdm9sdW1lIGhhcyB0aW1lZCBvdXQu ICBXZSB3YW50IHZvbHVtZXMgdG8gYmUgZW51bWVyYXRlZApAQCAtMTY1MSw2ICsxNzYwLDE5OCBA QCBtcHNzYXNfYWN0aW9uX3Njc2lpbyhzdHJ1Y3QgbXBzc2FzX3NvZnRjCiB9CiAKIHN0YXRpYyB2 b2lkCittcHNfcmVzcG9uc2VfY29kZShzdHJ1Y3QgbXBzX3NvZnRjICpzYywgdTggcmVzcG9uc2Vf Y29kZSkKK3sKKyAgICAgICAgY2hhciAqZGVzYzsKKyAKKyAgICAgICAgc3dpdGNoIChyZXNwb25z ZV9jb2RlKSB7CisgICAgICAgIGNhc2UgTVBJMl9TQ1NJVEFTS01HTVRfUlNQX1RNX0NPTVBMRVRF OgorICAgICAgICAgICAgICAgIGRlc2MgPSAidGFzayBtYW5hZ2VtZW50IHJlcXVlc3QgY29tcGxl dGVkIjsKKyAgICAgICAgICAgICAgICBicmVhazsKKyAgICAgICAgY2FzZSBNUEkyX1NDU0lUQVNL TUdNVF9SU1BfSU5WQUxJRF9GUkFNRToKKyAgICAgICAgICAgICAgICBkZXNjID0gImludmFsaWQg ZnJhbWUiOworICAgICAgICAgICAgICAgIGJyZWFrOworICAgICAgICBjYXNlIE1QSTJfU0NTSVRB U0tNR01UX1JTUF9UTV9OT1RfU1VQUE9SVEVEOgorICAgICAgICAgICAgICAgIGRlc2MgPSAidGFz ayBtYW5hZ2VtZW50IHJlcXVlc3Qgbm90IHN1cHBvcnRlZCI7CisgICAgICAgICAgICAgICAgYnJl YWs7CisgICAgICAgIGNhc2UgTVBJMl9TQ1NJVEFTS01HTVRfUlNQX1RNX0ZBSUxFRDoKKyAgICAg ICAgICAgICAgICBkZXNjID0gInRhc2sgbWFuYWdlbWVudCByZXF1ZXN0IGZhaWxlZCI7CisgICAg ICAgICAgICAgICAgYnJlYWs7CisgICAgICAgIGNhc2UgTVBJMl9TQ1NJVEFTS01HTVRfUlNQX1RN X1NVQ0NFRURFRDoKKyAgICAgICAgICAgICAgICBkZXNjID0gInRhc2sgbWFuYWdlbWVudCByZXF1 ZXN0IHN1Y2NlZWRlZCI7CisgICAgICAgICAgICAgICAgYnJlYWs7CisgICAgICAgIGNhc2UgTVBJ Ml9TQ1NJVEFTS01HTVRfUlNQX1RNX0lOVkFMSURfTFVOOgorICAgICAgICAgICAgICAgIGRlc2Mg PSAiaW52YWxpZCBsdW4iOworICAgICAgICAgICAgICAgIGJyZWFrOworICAgICAgICBjYXNlIDB4 QToKKyAgICAgICAgICAgICAgICBkZXNjID0gIm92ZXJsYXBwZWQgdGFnIGF0dGVtcHRlZCI7Cisg ICAgICAgICAgICAgICAgYnJlYWs7CisgICAgICAgIGNhc2UgTVBJMl9TQ1NJVEFTS01HTVRfUlNQ X0lPX1FVRVVFRF9PTl9JT0M6CisgICAgICAgICAgICAgICAgZGVzYyA9ICJ0YXNrIHF1ZXVlZCwg aG93ZXZlciBub3Qgc2VudCB0byB0YXJnZXQiOworICAgICAgICAgICAgICAgIGJyZWFrOworICAg ICAgICBkZWZhdWx0OgorICAgICAgICAgICAgICAgIGRlc2MgPSAidW5rbm93biI7CisgICAgICAg ICAgICAgICAgYnJlYWs7CisgICAgICAgIH0KKwkJbXBzX2RwcmludChzYywgTVBTX0lORk8sICJy ZXNwb25zZV9jb2RlKDB4JTAxeCk6ICVzXG4iLAorICAgICAgICAgICAgICAgIHJlc3BvbnNlX2Nv ZGUsIGRlc2MpOworfQorLyoqCisgKiBtcHNfc2NfZmFpbGVkX2lvX2luZm8gLSB0cmFuc2xhdGVk IG5vbi1zdWNjZXNmdWxsIFNDU0lfSU8gcmVxdWVzdAorICovCitzdGF0aWMgdm9pZAorbXBzX3Nj X2ZhaWxlZF9pb19pbmZvKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHJ1Y3QgY2NiX3Njc2lpbyAq Y3NpbywKKyAgICBNcGkyU0NTSUlPUmVwbHlfdCAqbXBpX3JlcGx5KQoreworCXUzMiByZXNwb25z ZV9pbmZvOworCXU4ICpyZXNwb25zZV9ieXRlczsKKwl1MTYgaW9jX3N0YXR1cyA9IGxlMTZ0b2go bXBpX3JlcGx5LT5JT0NTdGF0dXMpICYKKwkgICAgTVBJMl9JT0NTVEFUVVNfTUFTSzsKKwl1OCBz Y3NpX3N0YXRlID0gbXBpX3JlcGx5LT5TQ1NJU3RhdGU7CisJdTggc2NzaV9zdGF0dXMgPSBtcGlf cmVwbHktPlNDU0lTdGF0dXM7CisJY2hhciAqZGVzY19pb2Nfc3RhdGUgPSBOVUxMOworCWNoYXIg KmRlc2Nfc2NzaV9zdGF0dXMgPSBOVUxMOworCWNoYXIgKmRlc2Nfc2NzaV9zdGF0ZSA9IHNjLT50 bXBfc3RyaW5nOworCXUzMiBsb2dfaW5mbyA9IGxlMzJ0b2gobXBpX3JlcGx5LT5JT0NMb2dJbmZv KTsKKwkKKwlpZiAobG9nX2luZm8gPT0gMHgzMTE3MDAwMCkKKwkJcmV0dXJuOworCisJc3dpdGNo IChpb2Nfc3RhdHVzKSB7CisJY2FzZSBNUEkyX0lPQ1NUQVRVU19TVUNDRVNTOgorCQlkZXNjX2lv Y19zdGF0ZSA9ICJzdWNjZXNzIjsKKwkJYnJlYWs7CisJY2FzZSBNUEkyX0lPQ1NUQVRVU19JTlZB TElEX0ZVTkNUSU9OOgorCQlkZXNjX2lvY19zdGF0ZSA9ICJpbnZhbGlkIGZ1bmN0aW9uIjsKKwkJ YnJlYWs7CisJY2FzZSBNUEkyX0lPQ1NUQVRVU19TQ1NJX1JFQ09WRVJFRF9FUlJPUjoKKwkJZGVz Y19pb2Nfc3RhdGUgPSAic2NzaSByZWNvdmVyZWQgZXJyb3IiOworCQlicmVhazsKKwljYXNlIE1Q STJfSU9DU1RBVFVTX1NDU0lfSU5WQUxJRF9ERVZIQU5ETEU6CisJCWRlc2NfaW9jX3N0YXRlID0g InNjc2kgaW52YWxpZCBkZXYgaGFuZGxlIjsKKwkJYnJlYWs7CisJY2FzZSBNUEkyX0lPQ1NUQVRV U19TQ1NJX0RFVklDRV9OT1RfVEhFUkU6CisJCWRlc2NfaW9jX3N0YXRlID0gInNjc2kgZGV2aWNl IG5vdCB0aGVyZSI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9JT0NTVEFUVVNfU0NTSV9EQVRBX09W RVJSVU46CisJCWRlc2NfaW9jX3N0YXRlID0gInNjc2kgZGF0YSBvdmVycnVuIjsKKwkJYnJlYWs7 CisJY2FzZSBNUEkyX0lPQ1NUQVRVU19TQ1NJX0RBVEFfVU5ERVJSVU46CisJCWRlc2NfaW9jX3N0 YXRlID0gInNjc2kgZGF0YSB1bmRlcnJ1biI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9JT0NTVEFU VVNfU0NTSV9JT19EQVRBX0VSUk9SOgorCQlkZXNjX2lvY19zdGF0ZSA9ICJzY3NpIGlvIGRhdGEg ZXJyb3IiOworCQlicmVhazsKKwljYXNlIE1QSTJfSU9DU1RBVFVTX1NDU0lfUFJPVE9DT0xfRVJS T1I6CisJCWRlc2NfaW9jX3N0YXRlID0gInNjc2kgcHJvdG9jb2wgZXJyb3IiOworCQlicmVhazsK KwljYXNlIE1QSTJfSU9DU1RBVFVTX1NDU0lfVEFTS19URVJNSU5BVEVEOgorCQlkZXNjX2lvY19z dGF0ZSA9ICJzY3NpIHRhc2sgdGVybWluYXRlZCI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9JT0NT VEFUVVNfU0NTSV9SRVNJRFVBTF9NSVNNQVRDSDoKKwkJZGVzY19pb2Nfc3RhdGUgPSAic2NzaSBy ZXNpZHVhbCBtaXNtYXRjaCI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9JT0NTVEFUVVNfU0NTSV9U QVNLX01HTVRfRkFJTEVEOgorCQlkZXNjX2lvY19zdGF0ZSA9ICJzY3NpIHRhc2sgbWdtdCBmYWls ZWQiOworCQlicmVhazsKKwljYXNlIE1QSTJfSU9DU1RBVFVTX1NDU0lfSU9DX1RFUk1JTkFURUQ6 CisJCWRlc2NfaW9jX3N0YXRlID0gInNjc2kgaW9jIHRlcm1pbmF0ZWQiOworCQlicmVhazsKKwlj YXNlIE1QSTJfSU9DU1RBVFVTX1NDU0lfRVhUX1RFUk1JTkFURUQ6CisJCWRlc2NfaW9jX3N0YXRl ID0gInNjc2kgZXh0IHRlcm1pbmF0ZWQiOworCQlicmVhazsKKwljYXNlIE1QSTJfSU9DU1RBVFVT X0VFRFBfR1VBUkRfRVJST1I6CisJCWRlc2NfaW9jX3N0YXRlID0gImVlZHAgZ3VhcmQgZXJyb3Ii OworCQlicmVhazsKKwljYXNlIE1QSTJfSU9DU1RBVFVTX0VFRFBfUkVGX1RBR19FUlJPUjoKKwkJ ZGVzY19pb2Nfc3RhdGUgPSAiZWVkcCByZWYgdGFnIGVycm9yIjsKKwkJYnJlYWs7CisJY2FzZSBN UEkyX0lPQ1NUQVRVU19FRURQX0FQUF9UQUdfRVJST1I6CisJCWRlc2NfaW9jX3N0YXRlID0gImVl ZHAgYXBwIHRhZyBlcnJvciI7CisJCWJyZWFrOworCWRlZmF1bHQ6CisJCWRlc2NfaW9jX3N0YXRl ID0gInVua25vd24iOworCQlicmVhazsKKwl9CisKKwlzd2l0Y2ggKHNjc2lfc3RhdHVzKSB7CisJ Y2FzZSBNUEkyX1NDU0lfU1RBVFVTX0dPT0Q6CisJCWRlc2Nfc2NzaV9zdGF0dXMgPSAiZ29vZCI7 CisJCWJyZWFrOworCWNhc2UgTVBJMl9TQ1NJX1NUQVRVU19DSEVDS19DT05ESVRJT046CisJCWRl c2Nfc2NzaV9zdGF0dXMgPSAiY2hlY2sgY29uZGl0aW9uIjsKKwkJYnJlYWs7CisJY2FzZSBNUEky X1NDU0lfU1RBVFVTX0NPTkRJVElPTl9NRVQ6CisJCWRlc2Nfc2NzaV9zdGF0dXMgPSAiY29uZGl0 aW9uIG1ldCI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9TQ1NJX1NUQVRVU19CVVNZOgorCQlkZXNj X3Njc2lfc3RhdHVzID0gImJ1c3kiOworCQlicmVhazsKKwljYXNlIE1QSTJfU0NTSV9TVEFUVVNf SU5URVJNRURJQVRFOgorCQlkZXNjX3Njc2lfc3RhdHVzID0gImludGVybWVkaWF0ZSI7CisJCWJy ZWFrOworCWNhc2UgTVBJMl9TQ1NJX1NUQVRVU19JTlRFUk1FRElBVEVfQ09ORE1FVDoKKwkJZGVz Y19zY3NpX3N0YXR1cyA9ICJpbnRlcm1lZGlhdGUgY29uZG1ldCI7CisJCWJyZWFrOworCWNhc2Ug TVBJMl9TQ1NJX1NUQVRVU19SRVNFUlZBVElPTl9DT05GTElDVDoKKwkJZGVzY19zY3NpX3N0YXR1 cyA9ICJyZXNlcnZhdGlvbiBjb25mbGljdCI7CisJCWJyZWFrOworCWNhc2UgTVBJMl9TQ1NJX1NU QVRVU19DT01NQU5EX1RFUk1JTkFURUQ6CisJCWRlc2Nfc2NzaV9zdGF0dXMgPSAiY29tbWFuZCB0 ZXJtaW5hdGVkIjsKKwkJYnJlYWs7CisJY2FzZSBNUEkyX1NDU0lfU1RBVFVTX1RBU0tfU0VUX0ZV TEw6CisJCWRlc2Nfc2NzaV9zdGF0dXMgPSAidGFzayBzZXQgZnVsbCI7CisJCWJyZWFrOworCWNh c2UgTVBJMl9TQ1NJX1NUQVRVU19BQ0FfQUNUSVZFOgorCQlkZXNjX3Njc2lfc3RhdHVzID0gImFj YSBhY3RpdmUiOworCQlicmVhazsKKwljYXNlIE1QSTJfU0NTSV9TVEFUVVNfVEFTS19BQk9SVEVE OgorCQlkZXNjX3Njc2lfc3RhdHVzID0gInRhc2sgYWJvcnRlZCI7CisJCWJyZWFrOworCWRlZmF1 bHQ6CisJCWRlc2Nfc2NzaV9zdGF0dXMgPSAidW5rbm93biI7CisJCWJyZWFrOworCX0KKworCWRl c2Nfc2NzaV9zdGF0ZVswXSA9ICdcMCc7CisJaWYgKCFzY3NpX3N0YXRlKQorCQlkZXNjX3Njc2lf c3RhdGUgPSAiICI7CisJaWYgKHNjc2lfc3RhdGUgJiBNUEkyX1NDU0lfU1RBVEVfUkVTUE9OU0Vf SU5GT19WQUxJRCkKKwkJc3RyY2F0KGRlc2Nfc2NzaV9zdGF0ZSwgInJlc3BvbnNlIGluZm8gIik7 CisJaWYgKHNjc2lfc3RhdGUgJiBNUEkyX1NDU0lfU1RBVEVfVEVSTUlOQVRFRCkKKwkJc3RyY2F0 KGRlc2Nfc2NzaV9zdGF0ZSwgInN0YXRlIHRlcm1pbmF0ZWQgIik7CisJaWYgKHNjc2lfc3RhdGUg JiBNUEkyX1NDU0lfU1RBVEVfTk9fU0NTSV9TVEFUVVMpCisJCXN0cmNhdChkZXNjX3Njc2lfc3Rh dGUsICJubyBzdGF0dXMgIik7CisJaWYgKHNjc2lfc3RhdGUgJiBNUEkyX1NDU0lfU1RBVEVfQVVU T1NFTlNFX0ZBSUxFRCkKKwkJc3RyY2F0KGRlc2Nfc2NzaV9zdGF0ZSwgImF1dG9zZW5zZSBmYWls ZWQgIik7CisJaWYgKHNjc2lfc3RhdGUgJiBNUEkyX1NDU0lfU1RBVEVfQVVUT1NFTlNFX1ZBTElE KQorCQlzdHJjYXQoZGVzY19zY3NpX3N0YXRlLCAiYXV0b3NlbnNlIHZhbGlkICIpOworCisJbXBz X2RwcmludChzYywgTVBTX0lORk8sICJcdGhhbmRsZSgweCUwNHgpLCBpb2Nfc3RhdHVzKCVzKSgw eCUwNHgpLCBcbiIsCisJCWxlMTZ0b2gobXBpX3JlcGx5LT5EZXZIYW5kbGUpLAorCSAgICBkZXNj X2lvY19zdGF0ZSwgaW9jX3N0YXR1cyk7CisJLyogV2UgY2FuIGFkZCBtb3JlIGRldGFpbCBhYm91 dCB1bmRlcmZsb3cgZGF0YSBoZXJlCisJICogVE8tRE8KKwkgKiAqLworCW1wc19kcHJpbnQoc2Ms IE1QU19JTkZPLCAiXHRzY3NpX3N0YXR1cyglcykoMHglMDJ4KSwgIgorCSAgICAic2NzaV9zdGF0 ZSglcykoMHglMDJ4KVxuIiwgZGVzY19zY3NpX3N0YXR1cywKKwkgICAgc2NzaV9zdGF0dXMsIGRl c2Nfc2NzaV9zdGF0ZSwgc2NzaV9zdGF0ZSk7CisKKwlpZiAoc2MtPm1wc19kZWJ1ZyAmIE1QU19J TkZPICYmCisJCXNjc2lfc3RhdGUgJiBNUEkyX1NDU0lfU1RBVEVfQVVUT1NFTlNFX1ZBTElEKSB7 CisJCW1wc19kcHJpbnQoc2MsIE1QU19JTkZPLCAiLT4gU2Vuc2UgQnVmZmVyIERhdGEgOiBTdGFy dCA6XG4iKTsKKwkJc2NzaV9zZW5zZV9wcmludChjc2lvKTsKKwkJbXBzX2RwcmludChzYywgTVBT X0lORk8sICItPiBTZW5zZSBCdWZmZXIgRGF0YSA6IEVuZCA6XG4iKTsKKwl9CisKKwlpZiAoc2Nz aV9zdGF0ZSAmIE1QSTJfU0NTSV9TVEFURV9SRVNQT05TRV9JTkZPX1ZBTElEKSB7CisJCXJlc3Bv bnNlX2luZm8gPSBsZTMydG9oKG1waV9yZXBseS0+UmVzcG9uc2VJbmZvKTsKKwkJcmVzcG9uc2Vf Ynl0ZXMgPSAodTggKikmcmVzcG9uc2VfaW5mbzsKKwkJbXBzX3Jlc3BvbnNlX2NvZGUoc2MscmVz cG9uc2VfYnl0ZXNbMF0pOworCX0KK30KKworc3RhdGljIHZvaWQKIG1wc3Nhc19zY3NpaW9fY29t cGxldGUoc3RydWN0IG1wc19zb2Z0YyAqc2MsIHN0cnVjdCBtcHNfY29tbWFuZCAqY20pCiB7CiAJ TVBJMl9TQ1NJX0lPX1JFUExZICpyZXA7CkBAIC0xOTc2LDYgKzIyNzcsOCBAQCBtcHNzYXNfc2Nz aWlvX2NvbXBsZXRlKHN0cnVjdCBtcHNfc29mdGMgCiAJCWNjYi0+Y2NiX2guc3RhdHVzID0gQ0FN X1JFUV9DTVBfRVJSOwogCQlicmVhazsKIAl9CisJCisJbXBzX3NjX2ZhaWxlZF9pb19pbmZvKHNj LGNzaW8scmVwKTsKIAogCWlmIChzYXNzYy0+ZmxhZ3MgJiBNUFNTQVNfUVVFVUVfRlJPWkVOKSB7 CiAJCWNjYi0+Y2NiX2guc3RhdHVzIHw9IENBTV9SRUxFQVNFX1NJTVE7CkBAIC0yNzU0LDE3ICsz MDU3LDI2IEBAIG1wc3Nhc19zY2FubmVyX3RocmVhZCh2b2lkICphcmcpCiAKIAltcHNfbG9jayhz Yyk7CiAJZm9yICg7OykgeworCQkvKiBTbGVlcCBmb3IgMSBzZWNvbmQgYW5kIGNoZWNrIHRoZSBx dWV1ZSBzdGF0dXMqLwogCQltc2xlZXAoJnNhc3NjLT5jY2Jfc2NhbnEsICZzYy0+bXBzX210eCwg UFJJQklPLAotCQkgICAgICAgIm1wc19zY2FucSIsIDApOworCQkgICAgICAgIm1wc19zY2FucSIs IDEgKiBoeik7CiAJCWlmIChzYXNzYy0+ZmxhZ3MgJiBNUFNTQVNfU0hVVERPV04pIHsKIAkJCW1w c19kcHJpbnQoc2MsIE1QU19UUkFDRSwgIlNjYW5uZXIgc2h1dHRpbmcgZG93blxuIik7CiAJCQli cmVhazsKIAkJfQorbmV4dF93b3JrOgorCQkvLyBHZXQgZmlyc3Qgd29yay4KIAkJY2NiID0gKHVu aW9uIGNjYiAqKVRBSUxRX0ZJUlNUKCZzYXNzYy0+Y2NiX3NjYW5xKTsKIAkJaWYgKGNjYiA9PSBO VUxMKQogCQkJY29udGludWU7CisJCS8vIEdvdCBmaXJzdCB3b3JrLgogCQlUQUlMUV9SRU1PVkUo JnNhc3NjLT5jY2Jfc2NhbnEsICZjY2ItPmNjYl9oLCBzaW1fbGlua3MudHFlKTsKIAkJeHB0X2Fj dGlvbihjY2IpOworCQlpZiAoc2Fzc2MtPmZsYWdzICYgTVBTU0FTX1NIVVRET1dOKSB7CisJCQlt cHNfZHByaW50KHNjLCBNUFNfVFJBQ0UsICJTY2FubmVyIHNodXR0aW5nIGRvd25cbiIpOworCQkJ YnJlYWs7CisJCX0KKwkJZ290byBuZXh0X3dvcms7CiAJfQogCiAJc2Fzc2MtPmZsYWdzICY9IH5N UFNTQVNfU0NBTlRIUkVBRDsKQEAgLTI4MjcsNyArMzEzOSw3IEBAIG1wc3Nhc19jaGVja19lZWRw KHN0cnVjdCBtcHNzYXNfc29mdGMgKnMKIAkJZG8gewogCQkJcmNhcF9idWYgPQogCQkJICAgIG1h bGxvYyhzaXplb2Yoc3RydWN0IHNjc2lfcmVhZF9jYXBhY2l0eV9lZWRwKSwKLQkJCSAgICBNX01Q VDIsIE1fV0FJVE9LIHwgTV9aRVJPKTsKKwkJCSAgICBNX01QVDIsIE1fTk9XQUlUfCBNX1pFUk8p OwogCQkJaWYgKHJjYXBfYnVmID09IE5VTEwpIHsKIAkJCQltcHNfZHByaW50KHNjLCBNUFNfRkFV TFQsICJVbmFibGUgdG8gYWxsb2MgcmVhZCAiCiAJCQkJICAgICJjYXBhY2l0eSBidWZmZXIgZm9y IEVFRFAgc3VwcG9ydC5cbiIpOwpAQCAtMjg2OSw3ICszMTgxLDcgQEAgbXBzc2FzX2NoZWNrX2Vl ZHAoc3RydWN0IG1wc3Nhc19zb2Z0YyAqcwogCQkJCX0KIAkJCQlpZiAoIWZvdW5kX2x1bikgewog CQkJCQlsdW4gPSBtYWxsb2Moc2l6ZW9mKHN0cnVjdCBtcHNzYXNfbHVuKSwKLQkJCQkJICAgIE1f TVBUMiwgTV9XQUlUT0sgfCBNX1pFUk8pOworCQkJCQkgICAgTV9NUFQyLCBNX05PV0FJVCB8IE1f WkVSTyk7CiAJCQkJCWlmIChsdW4gPT0gTlVMTCkgewogCQkJCQkJbXBzX2RwcmludChzYywgTVBT X0ZBVUxULAogCQkJCQkJICAgICJVbmFibGUgdG8gYWxsb2MgTFVOIGZvciAiCkBAIC0yOTQzLDYg KzMyNTUsMjAgQEAgbXBzc2FzX3JlYWRfY2FwX2RvbmUoc3RydWN0IGNhbV9wZXJpcGggKgogCiAJ aWYgKGRvbmVfY2NiID09IE5VTEwpCiAJCXJldHVybjsKKwkKKwkvKiBEcml2ZXIgbmVlZCB0byBy ZWxlYXNlIGRldnEsIGl0IFNjc2kgY29tbWFuZCBpcworCSAqIGdlbmVyYXRlZCBieSBkcml2ZXIg aW50ZXJuYWxseS4KKwkgKiBDdXJyZW50bHkgdGhlcmUgaXMgYSBzaW5nbGUgcGxhY2Ugd2hlcmUg ZHJpdmVyCisJICogY2FsbHMgc2NzaSBjb21tYW5kIGludGVybmFsbHkuIEluIGZ1dHVyZSBpZiBk cml2ZXIKKwkgKiBjYWxscyBtb3JlIHNjc2kgY29tbWFuZCBpbnRlcm5hbGx5LCBpdCBuZWVkcyB0 byByZWxlYXNlCisJICogZGV2cSBpbnRlcm5hbGx5LCBzaW5jZSB0aG9zZSBjb21tYW5kIHdpbGwg bm90IGdvIGJhY2sgdG8KKwkgKiBjYW1fcGVyaXBoLgorCSAqLworCWlmICgoZG9uZV9jY2ItPmNj Yl9oLnN0YXR1cyAmIENBTV9ERVZfUUZSWk4pICkgeworICAgICAgICAJZG9uZV9jY2ItPmNjYl9o LnN0YXR1cyAmPSB+Q0FNX0RFVl9RRlJaTjsKKwkJeHB0X3JlbGVhc2VfZGV2cShkb25lX2NjYi0+ Y2NiX2gucGF0aCwKKwkJCSAgICAgICAJLypjb3VudCovIDEsIC8qcnVuX3F1ZXVlKi9UUlVFKTsK Kwl9CiAKIAkvKgogCSAqIEdldCB0aGUgTFVOIElEIGZvciB0aGUgcGF0aCBhbmQgbG9vayBpdCB1 cCBpbiB0aGUgTFVOIGxpc3QgZm9yIHRoZQpkaWZmIC1hdXJwIEZSRUVCU0QtU0FTMi0xMi4wMC4w MC4wMS9tcHNsc2ktc291cmNlLTEyLjAwLjAwLjAxL3N5cy9kZXYvbXBzL21wc19zYXMuaCBGUkVF QlNELVNBUzItMTIuMjU1LjAwLjAyL21wc2xzaS1zb3VyY2UtMTIuMjU1LjAwLjAyL3N5cy9kZXYv bXBzL21wc19zYXMuaAotLS0gRlJFRUJTRC1TQVMyLTEyLjAwLjAwLjAxL21wc2xzaS1zb3VyY2Ut MTIuMDAuMDAuMDEvc3lzL2Rldi9tcHMvbXBzX3Nhcy5oCTIwMTItMDEtMzAgMjA6NDk6MDkuMDAw MDAwMDAwICswNTMwCisrKyBGUkVFQlNELVNBUzItMTIuMjU1LjAwLjAyL21wc2xzaS1zb3VyY2Ut MTIuMjU1LjAwLjAyL3N5cy9kZXYvbXBzL21wc19zYXMuaAkyMDEyLTAxLTE3IDA0OjMyOjE1LjAw MDAwMDAwMCArMDUzMApAQCAtNDksOCArNDksMTEgQEAgc3RydWN0IG1wc3Nhc190YXJnZXQgewog I2RlZmluZSBNUFNTQVNfVEFSR0VUX0lOUkVTRVQJKDEgPDwgMSkKICNkZWZpbmUgTVBTU0FTX1RB UkdFVF9JTkRJQUdSRVNFVCAoMSA8PCAyKQogI2RlZmluZSBNUFNTQVNfVEFSR0VUX0lOUkVNT1ZB TAkoMSA8PCAzKQorI2RlZmluZSBNUFNfVEFSR0VUX0ZMQUdTX1JBSURfQ09NUE9ORU5UICgxIDw8 IDQpCisjZGVmaW5lIE1QU19UQVJHRVRfRkxBR1NfVk9MVU1FICAgICAgICAgKDEgPDwgNSkKICNk ZWZpbmUgTVBTU0FTX1RBUkdFVF9JTlJFQ09WRVJZIChNUFNTQVNfVEFSR0VUX0lOQUJPUlQgfCBc CiAgICAgTVBTU0FTX1RBUkdFVF9JTlJFU0VUIHwgTVBTU0FTX1RBUkdFVF9JTkNISVBSRVNFVCkK KwogI2RlZmluZSBNUFNTQVNfVEFSR0VUX0FERCAgICAgICAoMSA8PCAyOSkKICNkZWZpbmUgTVBT U0FTX1RBUkdFVF9SRU1PVkUgICAgKDEgPDwgMzApCiAJdWludDE2X3QJdGlkOwpkaWZmIC1hdXJw IEZSRUVCU0QtU0FTMi0xMi4wMC4wMC4wMS9tcHNsc2ktc291cmNlLTEyLjAwLjAwLjAxL3N5cy9k ZXYvbXBzL21wc19zYXNfbHNpLmMgRlJFRUJTRC1TQVMyLTEyLjI1NS4wMC4wMi9tcHNsc2ktc291 cmNlLTEyLjI1NS4wMC4wMi9zeXMvZGV2L21wcy9tcHNfc2FzX2xzaS5jCi0tLSBGUkVFQlNELVNB UzItMTIuMDAuMDAuMDEvbXBzbHNpLXNvdXJjZS0xMi4wMC4wMC4wMS9zeXMvZGV2L21wcy9tcHNf c2FzX2xzaS5jCTIwMTItMDEtMzAgMjA6NDk6MDkuMDAwMDAwMDAwICswNTMwCisrKyBGUkVFQlNE LVNBUzItMTIuMjU1LjAwLjAyL21wc2xzaS1zb3VyY2UtMTIuMjU1LjAwLjAyL3N5cy9kZXYvbXBz L21wc19zYXNfbHNpLmMJMjAxMi0wMS0xNyAwNDozMjoxNS4wMDAwMDAwMDAgKzA1MzAKQEAgLTEw Nyw3ICsxMDcsNyBAQCBzdHJ1Y3QgX2F0YV9pZGVudGlmeV9kZXZpY2VfZGF0YSB7CiAJdTE2IG1v ZGVsX251bWJlclsyMF07CS8qIDI3LTQ2Ki8KIAl1MTYgcmVzZXJ2ZWQzWzIwOV07CS8qIDQ3LTI1 NSovCiB9OwotCitzdGF0aWMgdTMyIGV2ZW50X2NvdW50Owogc3RhdGljIHZvaWQgbXBzc2FzX2Z3 X3dvcmsoc3RydWN0IG1wc19zb2Z0YyAqc2MsCiAgICAgc3RydWN0IG1wc19md19ldmVudF93b3Jr ICpmd19ldmVudCk7CiBzdGF0aWMgdm9pZCBtcHNzYXNfZndfZXZlbnRfZnJlZShzdHJ1Y3QgbXBz X3NvZnRjICosCkBAIC0xMTksNyArMTE5LDcgQEAgc3RhdGljIGludCBtcHNzYXNfZ2V0X3NhdGFf aWRlbnRpZnkoc3RydQogaW50IG1wc3Nhc19nZXRfc2FzX2FkZHJlc3NfZm9yX3NhdGFfZGlzayhz dHJ1Y3QgbXBzX3NvZnRjICpzYywKICAgICB1NjQgKnNhc19hZGRyZXNzLCB1MTYgaGFuZGxlLCB1 MzIgZGV2aWNlX2luZm8pOwogc3RhdGljIGludCBtcHNzYXNfdm9sdW1lX2FkZChzdHJ1Y3QgbXBz X3NvZnRjICpzYywKLSAgICBNcGkyRXZlbnRJckNvbmZpZ0VsZW1lbnRfdCAqZWxlbWVudCk7Cisg ICAgdTE2IGhhbmRsZSk7CiAKIHZvaWQKIG1wc3Nhc19ldnRfaGFuZGxlcihzdHJ1Y3QgbXBzX3Nv ZnRjICpzYywgdWludHB0cl90IGRhdGEsCkBAIC0xOTEsNiArMTkxLDggQEAgbXBzc2FzX2Z3X3dv cmsoc3RydWN0IG1wc19zb2Z0YyAqc2MsIHN0cgogCXN0cnVjdCBtcHNzYXNfc29mdGMgKnNhc3Nj OwogCXNhc3NjID0gc2MtPnNhc3NjOwogCisJbXBzX2RwcmludChzYywgTVBTX0lORk8sICIoJWQp LT4oJXMpIFdvcmtpbmcgb24gIEV2ZW50OiBbJXhdXG4iLAorCQkJZXZlbnRfY291bnQrKyxfX2Z1 bmNfXyxmd19ldmVudC0+ZXZlbnQpOwogCXN3aXRjaCAoZndfZXZlbnQtPmV2ZW50KSB7CiAJY2Fz ZSBNUEkyX0VWRU5UX1NBU19UT1BPTE9HWV9DSEFOR0VfTElTVDogCiAJewpAQCAtMjg0LDcgKzI4 Niw3IEBAIG1wc3Nhc19md193b3JrKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHIKIAkJCWNhc2Ug TVBJMl9FVkVOVF9JUl9DSEFOR0VfUkNfVk9MVU1FX0NSRUFURUQ6CiAJCQljYXNlIE1QSTJfRVZF TlRfSVJfQ0hBTkdFX1JDX0FEREVEOgogCQkJCWlmICghZm9yZWlnbl9jb25maWcpIHsKLQkJCQkJ aWYgKG1wc3Nhc192b2x1bWVfYWRkKHNjLCBlbGVtZW50KSkgeworCQkJCQlpZiAobXBzc2FzX3Zv bHVtZV9hZGQoc2MsIGxlMTZ0b2goZWxlbWVudC0+Vm9sRGV2SGFuZGxlKSkpewogCQkJCQkJcHJp bnRmKCIlczogZmFpbGVkIHRvIGFkZCBSQUlEICIKIAkJCQkJCSAgICAidm9sdW1lIHdpdGggaGFu ZGxlIDB4JXhcbiIsCiAJCQkJCQkgICAgX19mdW5jX18sIGxlMTZ0b2goZWxlbWVudC0+CkBAIC0z MTksMTIgKzMyMSwxOCBAQCBtcHNzYXNfZndfd29yayhzdHJ1Y3QgbXBzX3NvZnRjICpzYywgc3Ry CiAJCQkJfQogCQkJCWJyZWFrOwogCQkJY2FzZSBNUEkyX0VWRU5UX0lSX0NIQU5HRV9SQ19QRF9D UkVBVEVEOgorCQkJY2FzZSBNUEkyX0VWRU5UX0lSX0NIQU5HRV9SQ19ISURFOgogCQkJCS8qCiAJ CQkJICogUGh5cyBEaXNrIG9mIGEgdm9sdW1lIGhhcyBiZWVuIGNyZWF0ZWQuICBIaWRlCiAJCQkJ ICogaXQgZnJvbSB0aGUgT1MuCiAJCQkJICovCi0JCQkJbXBzc2FzX3ByZXBhcmVfcmVtb3ZlKHNh c3NjLCBlbGVtZW50LT4KLQkJCQkgICAgUGh5c0Rpc2tEZXZIYW5kbGUpOworCQkJCXRhcmcgPSBt cHNzYXNfZmluZF90YXJnZXRfYnlfaGFuZGxlKHNhc3NjLCAwLCBlbGVtZW50LT5QaHlzRGlza0Rl dkhhbmRsZSk7CisJCQkJaWYgKHRhcmcgPT0gTlVMTCkgCisJCQkJCWJyZWFrOworCisJCQkJdGFy Zy0+ZmxhZ3MgfD0gTVBTX1RBUkdFVF9GTEFHU19SQUlEX0NPTVBPTkVOVDsKKwkJCQltcHNzYXNf cmVzY2FuX3RhcmdldChzYywgdGFyZyk7CisJCQkJCiAJCQkJYnJlYWs7CiAJCQljYXNlIE1QSTJf RVZFTlRfSVJfQ0hBTkdFX1JDX1BEX0RFTEVURUQ6CiAJCQkJLyoKQEAgLTM3OSw2ICszODcsMzUg QEAgbXBzc2FzX2Z3X3dvcmsoc3RydWN0IG1wc19zb2Z0YyAqc2MsIHN0cgogCQkJICAgICJoYW5k bGUgMHgleCIsIGV2ZW50X2RhdGEtPlByZXZpb3VzVmFsdWUsCiAJCQkgICAgZXZlbnRfZGF0YS0+ TmV3VmFsdWUsCiAJCQkgICAgZXZlbnRfZGF0YS0+Vm9sRGV2SGFuZGxlKTsKKwkJCQl1MzIgc3Rh dGU7CisJCQkJc3RydWN0IG1wc3Nhc190YXJnZXQgKnRhcmc7CisJCQkJc3RhdGUgPSBsZTMydG9o KGV2ZW50X2RhdGEtPk5ld1ZhbHVlKTsKKwkJCQlzd2l0Y2ggKHN0YXRlKSB7CisJCQkJY2FzZSBN UEkyX1JBSURfVk9MX1NUQVRFX01JU1NJTkc6CisJCQkJY2FzZSBNUEkyX1JBSURfVk9MX1NUQVRF X0ZBSUxFRDoKKwkJCQkJbXBzc2FzX3ByZXBhcmVfdm9sdW1lX3JlbW92ZShzYXNzYywgZXZlbnRf ZGF0YS0+CisJCQkJCQkJVm9sRGV2SGFuZGxlKTsKKwkJCQkJYnJlYWs7CisJCSAKKwkJCQljYXNl IE1QSTJfUkFJRF9WT0xfU1RBVEVfT05MSU5FOgorCQkJCWNhc2UgTVBJMl9SQUlEX1ZPTF9TVEFU RV9ERUdSQURFRDoKKwkJCQljYXNlIE1QSTJfUkFJRF9WT0xfU1RBVEVfT1BUSU1BTDoKKwkJCQkJ dGFyZyA9IG1wc3Nhc19maW5kX3RhcmdldF9ieV9oYW5kbGUoc2Fzc2MsIDAsIGV2ZW50X2RhdGEt PlZvbERldkhhbmRsZSk7CisJCQkJCWlmICh0YXJnKSB7CisJCQkJCQlwcmludGYoIiVzICVkOiBW b2x1bWUgaGFuZGxlIDB4JXggaXMgYWxyZWFkeSBhZGRlZCBcbiIsCisJCQkJCQkJICAgICAgIAlf X2Z1bmNfXywgX19MSU5FX18gLCBldmVudF9kYXRhLT5Wb2xEZXZIYW5kbGUpOworCQkJCQkJYnJl YWs7CisJCQkJCX0KKwkJCQkJaWYgKG1wc3Nhc192b2x1bWVfYWRkKHNjLCBsZTE2dG9oKGV2ZW50 X2RhdGEtPlZvbERldkhhbmRsZSkpKSB7CisJCQkJCQlwcmludGYoIiVzOiBmYWlsZWQgdG8gYWRk IFJBSUQgIgorCQkJCQkJCSJ2b2x1bWUgd2l0aCBoYW5kbGUgMHgleFxuIiwKKwkJCQkJCQlfX2Z1 bmNfXywgbGUxNnRvaChldmVudF9kYXRhLT4KKwkJCQkJCQlWb2xEZXZIYW5kbGUpKTsKKwkJCQkJ fQorCQkJCQlicmVhazsKKwkJCQlkZWZhdWx0OgorCQkJCQlicmVhazsKKwkJCQl9CiAJCQlicmVh azsKIAkJZGVmYXVsdDoKIAkJCWJyZWFrOwpAQCAtMzg5LDYgKzQyNiw3IEBAIG1wc3Nhc19md193 b3JrKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHIKIAl7CiAJCU1waTJFdmVudERhdGFJclBoeXNp Y2FsRGlza190ICpldmVudF9kYXRhID0KIAkJICAgIGZ3X2V2ZW50LT5ldmVudF9kYXRhOworCQlz dHJ1Y3QgbXBzc2FzX3RhcmdldCAqdGFyZzsKIAogCQkvKgogCQkgKiBJbmZvcm1hdGlvbmFsIG9u bHkuCkBAIC0zOTksNyArNDM3LDcgQEAgbXBzc2FzX2Z3X3dvcmsoc3RydWN0IG1wc19zb2Z0YyAq c2MsIHN0cgogCQkJbXBzX2RwcmludChzYywgTVBTX0lORk8sICIgICBQaHlzIERpc2sgU2V0dGlu Z3MgIgogCQkJICAgICJjaGFuZ2VkIGZyb20gMHgleCB0byAweCV4IGZvciBQaHlzIERpc2sgTnVt YmVyICIKIAkJCSAgICAiJWQgYW5kIGhhbmRsZSAweCV4IGF0IEVuY2xvc3VyZSBoYW5kbGUgMHgl eCwgU2xvdCAiCi0JCQkgICAgIiVkIiwgZXZlbnRfZGF0YS0+UHJldmlvdXNWYWx1ZSwKKwkJCSAg ICAiJWRcbiIsIGV2ZW50X2RhdGEtPlByZXZpb3VzVmFsdWUsCiAJCQkgICAgZXZlbnRfZGF0YS0+ TmV3VmFsdWUsIGV2ZW50X2RhdGEtPlBoeXNEaXNrTnVtLAogCQkJICAgIGV2ZW50X2RhdGEtPlBo eXNEaXNrRGV2SGFuZGxlLAogCQkJICAgIGV2ZW50X2RhdGEtPkVuY2xvc3VyZUhhbmRsZSwgZXZl bnRfZGF0YS0+U2xvdCk7CkBAIC00MDcsNyArNDQ1LDcgQEAgbXBzc2FzX2Z3X3dvcmsoc3RydWN0 IG1wc19zb2Z0YyAqc2MsIHN0cgogCQljYXNlIE1QSTJfRVZFTlRfSVJfUEhZU0RJU0tfUkNfU1RB VFVTX0ZMQUdTX0NIQU5HRUQ6CiAJCQltcHNfZHByaW50KHNjLCBNUFNfSU5GTywgIiAgIFBoeXMg RGlzayBTdGF0dXMgY2hhbmdlZCAiCiAJCQkgICAgImZyb20gMHgleCB0byAweCV4IGZvciBQaHlz IERpc2sgTnVtYmVyICVkIGFuZCAiCi0JCQkgICAgImhhbmRsZSAweCV4IGF0IEVuY2xvc3VyZSBo YW5kbGUgMHgleCwgU2xvdCAlZCIsCisJCQkgICAgImhhbmRsZSAweCV4IGF0IEVuY2xvc3VyZSBo YW5kbGUgMHgleCwgU2xvdCAlZFxuIiwKIAkJCSAgICBldmVudF9kYXRhLT5QcmV2aW91c1ZhbHVl LCBldmVudF9kYXRhLT5OZXdWYWx1ZSwKIAkJCSAgICBldmVudF9kYXRhLT5QaHlzRGlza051bSwK IAkJCSAgICBldmVudF9kYXRhLT5QaHlzRGlza0RldkhhbmRsZSwKQEAgLTQxNiwxMiArNDU0LDM4 IEBAIG1wc3Nhc19md193b3JrKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBzdHIKIAkJY2FzZSBNUEky X0VWRU5UX0lSX1BIWVNESVNLX1JDX1NUQVRFX0NIQU5HRUQ6CiAJCQltcHNfZHByaW50KHNjLCBN UFNfSU5GTywgIiAgIFBoeXMgRGlzayBTdGF0ZSBjaGFuZ2VkICIKIAkJCSAgICAiZnJvbSAweCV4 IHRvIDB4JXggZm9yIFBoeXMgRGlzayBOdW1iZXIgJWQgYW5kICIKLQkJCSAgICAiaGFuZGxlIDB4 JXggYXQgRW5jbG9zdXJlIGhhbmRsZSAweCV4LCBTbG90ICVkIiwKKwkJCSAgICAiaGFuZGxlIDB4 JXggYXQgRW5jbG9zdXJlIGhhbmRsZSAweCV4LCBTbG90ICVkXG4iLAogCQkJICAgIGV2ZW50X2Rh dGEtPlByZXZpb3VzVmFsdWUsIGV2ZW50X2RhdGEtPk5ld1ZhbHVlLAogCQkJICAgIGV2ZW50X2Rh dGEtPlBoeXNEaXNrTnVtLAogCQkJICAgIGV2ZW50X2RhdGEtPlBoeXNEaXNrRGV2SGFuZGxlLAog CQkJICAgIGV2ZW50X2RhdGEtPkVuY2xvc3VyZUhhbmRsZSwgZXZlbnRfZGF0YS0+U2xvdCk7Ci0J CQlicmVhazsKKwkJCXN3aXRjaCAoZXZlbnRfZGF0YS0+TmV3VmFsdWUpIHsKKwkJCQljYXNlIE1Q STJfUkFJRF9QRF9TVEFURV9PTkxJTkU6CisJCQkJY2FzZSBNUEkyX1JBSURfUERfU1RBVEVfREVH UkFERUQ6CisJCQkJY2FzZSBNUEkyX1JBSURfUERfU1RBVEVfUkVCVUlMRElORzoKKwkJCQljYXNl IE1QSTJfUkFJRF9QRF9TVEFURV9PUFRJTUFMOgorCQkJCWNhc2UgTVBJMl9SQUlEX1BEX1NUQVRF X0hPVF9TUEFSRToKKwkJCQkJdGFyZyA9IG1wc3Nhc19maW5kX3RhcmdldF9ieV9oYW5kbGUoc2Fz c2MsIDAsIAorCQkJCQkJCWV2ZW50X2RhdGEtPlBoeXNEaXNrRGV2SGFuZGxlKTsKKwkJCQkJaWYg KHRhcmcpIHsKKwkJCQkJCXRhcmctPmZsYWdzIHw9IE1QU19UQVJHRVRfRkxBR1NfUkFJRF9DT01Q T05FTlQ7CisJCQkJCQlwcmludGYoIiVzICVkOiBGb3VuZCBUYXJnZXQgZm9yIGhhbmRsZSAweCV4 LiAgXG4iLAorCQkJCQkJX19mdW5jX18sIF9fTElORV9fICwgZXZlbnRfZGF0YS0+UGh5c0Rpc2tE ZXZIYW5kbGUpOworCQkJCQl9CisJCQkJYnJlYWs7CisJCQkJY2FzZSBNUEkyX1JBSURfUERfU1RB VEVfT0ZGTElORToKKwkJCQljYXNlIE1QSTJfUkFJRF9QRF9TVEFURV9OT1RfQ09ORklHVVJFRDoK KwkJCQljYXNlIE1QSTJfUkFJRF9QRF9TVEFURV9OT1RfQ09NUEFUSUJMRToKKwkJCQlkZWZhdWx0 OgorCQkJCQl0YXJnID0gbXBzc2FzX2ZpbmRfdGFyZ2V0X2J5X2hhbmRsZShzYXNzYywgMCwgCisJ CQkJCQkJZXZlbnRfZGF0YS0+UGh5c0Rpc2tEZXZIYW5kbGUpOworCQkJCQlpZiAodGFyZykgewor CQkJCQkJdGFyZy0+ZmxhZ3MgfD0gfk1QU19UQVJHRVRfRkxBR1NfUkFJRF9DT01QT05FTlQ7CisJ CQkJCQlwcmludGYoIiVzICVkOiBGb3VuZCBUYXJnZXQgZm9yIGhhbmRsZSAweCV4LiAgXG4iLAor CQkJCQkJX19mdW5jX18sIF9fTElORV9fICwgZXZlbnRfZGF0YS0+UGh5c0Rpc2tEZXZIYW5kbGUp OworCQkJCQl9CisJCQkJYnJlYWs7CisJCQl9CiAJCWRlZmF1bHQ6CiAJCQlicmVhazsKIAkJfQpA QCAtNDk0LDYgKzU1OCw3IEBAIG1wc3Nhc19md193b3JrKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBz dHIKIAkJYnJlYWs7CiAKIAl9CisJbXBzX2RwcmludChzYywgTVBTX0lORk8sICIoJWQpLT4oJXMp IEV2ZW50IEZyZWU6IFsleF1cbiIsZXZlbnRfY291bnQsX19mdW5jX18sIGZ3X2V2ZW50LT5ldmVu dCk7CiAJbXBzc2FzX2Z3X2V2ZW50X2ZyZWUoc2MsIGZ3X2V2ZW50KTsKIH0KIApAQCAtNTg0LDcg KzY0OSw3IEBAIG1wc3Nhc19hZGRfZGV2aWNlKHN0cnVjdCBtcHNfc29mdGMgKnNjLCAKIAkJZXJy b3IgPSBFTlhJTzsKIAkJZ290byBvdXQ7CiAJfQotCW1wc192cHJpbnRmKHNjLCAiU0FTIEFkZHJl c3MgZnJvbSBTQVMgZGV2aWNlIHBhZ2UwID0gJWp4XG4iLAorCW1wc19kcHJpbnQoc2MsIE1QU19J TkZPLCAiU0FTIEFkZHJlc3MgZnJvbSBTQVMgZGV2aWNlIHBhZ2UwID0gJWp4XG4iLAogCSAgICBz YXNfYWRkcmVzcyk7CiAJdGFyZyA9ICZzYXNzYy0+dGFyZ2V0c1tpZF07CiAJdGFyZy0+ZGV2aW5m byA9IGRldmljZV9pbmZvOwpAQCAtNjA1LDEyICs2NzAsMTIgQEAgbXBzc2FzX2FkZF9kZXZpY2Uo c3RydWN0IG1wc19zb2Z0YyAqc2MsIAogCVRBSUxRX0lOSVQoJnRhcmctPnRpbWVkb3V0X2NvbW1h bmRzKTsKIAlTTElTVF9JTklUKCZ0YXJnLT5sdW5zKTsKIAltcHNfZGVzY3JpYmVfZGV2aW5mbyh0 YXJnLT5kZXZpbmZvLCBkZXZzdHJpbmcsIDgwKTsKLQltcHNfdnByaW50ZihzYywgIkZvdW5kIGRl dmljZSA8JXM+IDwlcz4gPDB4JTA0eD4gPCVkLyVkPlxuIiwgZGV2c3RyaW5nLAorCW1wc19kcHJp bnQoc2MsIE1QU19JTkZPLCAiRm91bmQgZGV2aWNlIDwlcz4gPCVzPiA8MHglMDR4PiA8JWQvJWQ+ XG4iLCBkZXZzdHJpbmcsCiAJICAgIG1wc19kZXNjcmliZV90YWJsZShtcHNfbGlua3JhdGVfbmFt ZXMsIHRhcmctPmxpbmtyYXRlKSwKIAkgICAgdGFyZy0+aGFuZGxlLCB0YXJnLT5lbmNsX2hhbmRs ZSwgdGFyZy0+ZW5jbF9zbG90KTsKIAlpZiAoKHNhc3NjLT5mbGFncyAmIE1QU1NBU19JTl9TVEFS VFVQKSA9PSAwKQogCQltcHNzYXNfcmVzY2FuX3RhcmdldChzYywgdGFyZyk7Ci0JbXBzX3Zwcmlu dGYoc2MsICJUYXJnZXQgaWQgMHgleCBhZGRlZFxuIiwgdGFyZy0+dGlkKTsKKwltcHNfZHByaW50 KHNjLCBNUFNfSU5GTywgIlRhcmdldCBpZCAweCV4IGFkZGVkXG4iLCB0YXJnLT50aWQpOwogb3V0 OgogCW1wc3Nhc19zdGFydHVwX2RlY3JlbWVudChzYXNzYyk7CiAJcmV0dXJuIChlcnJvcik7CkBA IC03NTEsMTIgKzgxNiwxMSBAQCBvdXQ6CiB9CiAKIHN0YXRpYyBpbnQKLW1wc3Nhc192b2x1bWVf YWRkKHN0cnVjdCBtcHNfc29mdGMgKnNjLCBNcGkyRXZlbnRJckNvbmZpZ0VsZW1lbnRfdCAqZWxl bWVudCkKK21wc3Nhc192b2x1bWVfYWRkKHN0cnVjdCBtcHNfc29mdGMgKnNjLCB1MTYgaGFuZGxl KQogewogCXN0cnVjdCBtcHNzYXNfc29mdGMgKnNhc3NjOwogCXN0cnVjdCBtcHNzYXNfdGFyZ2V0 ICp0YXJnOwogCXU2NCB3d2lkOwotCXUxNiBoYW5kbGUgPSBsZTE2dG9oKGVsZW1lbnQtPlZvbERl dkhhbmRsZSk7CiAJdW5zaWduZWQgaW50IGlkOwogCWludCBlcnJvciA9IDA7CiAKQEAgLTg1NSw3 ICs5MTksOSBAQCBtcHNzYXNfaXJfc2h1dGRvd24oc3RydWN0IG1wc19zb2Z0YyAqc2MpCiAJYWN0 aW9uLT5GdW5jdGlvbiA9IE1QSTJfRlVOQ1RJT05fUkFJRF9BQ1RJT047CiAJYWN0aW9uLT5BY3Rp b24gPSBNUEkyX1JBSURfQUNUSU9OX1NZU1RFTV9TSFVURE9XTl9JTklUSUFURUQ7CiAJY20tPmNt X2Rlc2MuRGVmYXVsdC5SZXF1ZXN0RmxhZ3MgPSBNUEkyX1JFUV9ERVNDUklQVF9GTEFHU19ERUZB VUxUX1RZUEU7CisJbXBzX2xvY2soc2MpOwogCW1wc19yZXF1ZXN0X3BvbGxlZChzYywgY20pOwor CW1wc191bmxvY2soc2MpOwogCiAJLyoKIAkgKiBEb24ndCBjaGVjayBmb3IgcmVwbHksIGp1c3Qg bGVhdmUuCmRpZmYgLWF1cnAgRlJFRUJTRC1TQVMyLTEyLjAwLjAwLjAxL21wc2xzaS1zb3VyY2Ut MTIuMDAuMDAuMDEvc3lzL2Rldi9tcHMvbXBzX3VzZXIuYyBGUkVFQlNELVNBUzItMTIuMjU1LjAw LjAyL21wc2xzaS1zb3VyY2UtMTIuMjU1LjAwLjAyL3N5cy9kZXYvbXBzL21wc191c2VyLmMKLS0t IEZSRUVCU0QtU0FTMi0xMi4wMC4wMC4wMS9tcHNsc2ktc291cmNlLTEyLjAwLjAwLjAxL3N5cy9k ZXYvbXBzL21wc191c2VyLmMJMjAxMi0wMS0zMCAyMDo0OTowOS4wMDAwMDAwMDAgKzA1MzAKKysr IEZSRUVCU0QtU0FTMi0xMi4yNTUuMDAuMDIvbXBzbHNpLXNvdXJjZS0xMi4yNTUuMDAuMDIvc3lz L2Rldi9tcHMvbXBzX3VzZXIuYwkyMDEyLTAxLTE3IDA0OjMyOjE1LjAwMDAwMDAwMCArMDUzMApA QCAtNzEyLDcgKzcxMiw3IEBAIG1wc191c2VyX2NvbW1hbmQoc3RydWN0IG1wc19zb2Z0YyAqc2Ms IHMKIAljbS0+Y21fZGVzYy5EZWZhdWx0LlJlcXVlc3RGbGFncyA9IE1QSTJfUkVRX0RFU0NSSVBU X0ZMQUdTX0RFRkFVTFRfVFlQRTsKIAogCW1wc19sb2NrKHNjKTsKLQllcnIgPSBtcHNfd2FpdF9j b21tYW5kKHNjLCBjbSwgMCk7CisJZXJyID0gbXBzX3dhaXRfY29tbWFuZChzYywgY20sIDMwKTsK IAogCWlmIChlcnIpIHsKIAkJbXBzX3ByaW50ZihzYywgIiVzOiBpbnZhbGlkIHJlcXVlc3Q6IGVy cm9yICVkXG4iLApAQCAtODQyLDcgKzg0Miw3IEBAIG1wc191c2VyX3Bhc3NfdGhydShzdHJ1Y3Qg bXBzX3NvZnRjICpzYywKIAkJY20tPmNtX2NvbXBsZXRlID0gTlVMTDsKIAkJY20tPmNtX2NvbXBs ZXRlX2RhdGEgPSBOVUxMOwogCi0JCWVyciA9IG1wc193YWl0X2NvbW1hbmQoc2MsIGNtLCAwKTsK KwkJZXJyID0gbXBzX3dhaXRfY29tbWFuZChzYywgY20sIDMwKTsKIAogCQlpZiAoZXJyICE9IDAp IHsKIAkJCWVyciA9IEVJTzsKQEAgLTk3OSw3ICs5NzksNyBAQCBtcHNfdXNlcl9wYXNzX3RocnUo c3RydWN0IG1wc19zb2Z0YyAqc2MsCiAKIAltcHNfbG9jayhzYyk7CiAKLQllcnIgPSBtcHNfd2Fp dF9jb21tYW5kKHNjLCBjbSwgMCk7CisJZXJyID0gbXBzX3dhaXRfY29tbWFuZChzYywgY20sIDMw KTsKIAogCWlmIChlcnIpIHsKIAkJbXBzX3ByaW50ZihzYywgIiVzOiBpbnZhbGlkIHJlcXVlc3Q6 IGVycm9yICVkXG4iLCBfX2Z1bmNfXywKQEAgLTEwOTgsMTAgKzEwOTgsMTIgQEAgbXBzX3VzZXJf Z2V0X2FkYXB0ZXJfZGF0YShzdHJ1Y3QgbXBzX3NvZgogCSAqIE5lZWQgdG8gZ2V0IEJJT1MgQ29u ZmlnIFBhZ2UgMyBmb3IgdGhlIEJJT1MgVmVyc2lvbi4KIAkgKi8KIAlkYXRhLT5CaW9zVmVyc2lv biA9IDA7CisJbXBzX2xvY2soc2MpOwogCWlmIChtcHNfY29uZmlnX2dldF9iaW9zX3BnMyhzYywg Jm1waV9yZXBseSwgJmNvbmZpZ19wYWdlKSkKIAkJcHJpbnRmKCIlczogRXJyb3Igd2hpbGUgcmV0 cmlldmluZyBCSU9TIFZlcnNpb25cbiIsIF9fZnVuY19fKTsKIAllbHNlCiAJCWRhdGEtPkJpb3NW ZXJzaW9uID0gY29uZmlnX3BhZ2UuQmlvc1ZlcnNpb247CisJbXBzX3VubG9jayhzYyk7CiB9CiAK IHN0YXRpYyB2b2lkCkBAIC0xMTk0LDcgKzExOTYsNyBAQCBtcHNfcG9zdF9md19kaWFnX2J1ZmZl cihzdHJ1Y3QgbXBzX3NvZnRjCiAJLyoKIAkgKiBTZW5kIGNvbW1hbmQgc3luY2hyb25vdXNseS4K IAkgKi8KLQlzdGF0dXMgPSBtcHNfd2FpdF9jb21tYW5kKHNjLCBjbSwgMCk7CisJc3RhdHVzID0g bXBzX3dhaXRfY29tbWFuZChzYywgY20sIDMwKTsKIAlpZiAoc3RhdHVzKSB7CiAJCW1wc19wcmlu dGYoc2MsICIlczogaW52YWxpZCByZXF1ZXN0OiBlcnJvciAlZFxuIiwgX19mdW5jX18sCiAJCSAg ICBzdGF0dXMpOwpAQCAtMTI3OCw3ICsxMjgwLDcgQEAgbXBzX3JlbGVhc2VfZndfZGlhZ19idWZm ZXIoc3RydWN0IG1wc19zbwogCS8qCiAJICogU2VuZCBjb21tYW5kIHN5bmNocm9ub3VzbHkuCiAJ ICovCi0Jc3RhdHVzID0gbXBzX3dhaXRfY29tbWFuZChzYywgY20sIDApOworCXN0YXR1cyA9IG1w c193YWl0X2NvbW1hbmQoc2MsIGNtLCAzMCk7CiAJaWYgKHN0YXR1cykgewogCQltcHNfcHJpbnRm KHNjLCAiJXM6IGludmFsaWQgcmVxdWVzdDogZXJyb3IgJWRcbiIsIF9fZnVuY19fLAogCQkgICAg c3RhdHVzKTsKZGlmZiAtYXVycCBGUkVFQlNELVNBUzItMTIuMDAuMDAuMDEvbXBzbHNpLXNvdXJj ZS0xMi4wMC4wMC4wMS9zeXMvZGV2L21wcy9tcHN2YXIuaCBGUkVFQlNELVNBUzItMTIuMjU1LjAw LjAyL21wc2xzaS1zb3VyY2UtMTIuMjU1LjAwLjAyL3N5cy9kZXYvbXBzL21wc3Zhci5oCi0tLSBG UkVFQlNELVNBUzItMTIuMDAuMDAuMDEvbXBzbHNpLXNvdXJjZS0xMi4wMC4wMC4wMS9zeXMvZGV2 L21wcy9tcHN2YXIuaAkyMDEyLTAxLTMwIDIwOjQ5OjA5LjAwMDAwMDAwMCArMDUzMAorKysgRlJF RUJTRC1TQVMyLTEyLjI1NS4wMC4wMi9tcHNsc2ktc291cmNlLTEyLjI1NS4wMC4wMi9zeXMvZGV2 L21wcy9tcHN2YXIuaAkyMDEyLTAxLTE3IDA0OjMyOjE1LjAwMDAwMDAwMCArMDUzMApAQCAtNzgs NiArNzgsNyBAQAogI2RlZmluZSBNUFNfUEVSSU9ESUNfREVMQVkJMQkvKiAxIHNlY29uZCBoZWFy dGJlYXQvd2F0Y2hkb2cgY2hlY2sgKi8KIAogI2RlZmluZSBNUFNfU0NTSV9SSV9JTlZBTElEX0ZS QU1FCSgweDAwMDAwMDAyKQorI2RlZmluZSBNUFNfU1RSSU5HX0xFTkdUSCAgICAgICAgICAgICAg IDY0CiAKIC8qCiAgKiBob3N0IG1hcHBpbmcgcmVsYXRlZCBtYWNybyBkZWZpbml0aW9ucwpAQCAt MzA4LDcgKzMwOSw3IEBAIHN0cnVjdCBtcHNfc29mdGMgewogCXN0cnVjdCBjYWxsb3V0CQkJcGVy aW9kaWM7CiAKIAlzdHJ1Y3QgbXBzc2FzX3NvZnRjCQkqc2Fzc2M7Ci0KKwljaGFyICAgICAgICAg ICAgdG1wX3N0cmluZ1tNUFNfU1RSSU5HX0xFTkdUSF07CiAJVEFJTFFfSEVBRCgsIG1wc19jb21t YW5kKQlyZXFfbGlzdDsKIAlUQUlMUV9IRUFEKCwgbXBzX2NvbW1hbmQpCWhpZ2hfcHJpb3JpdHlf cmVxX2xpc3Q7CiAJVEFJTFFfSEVBRCgsIG1wc19jaGFpbikJCWNoYWluX2xpc3Q7CkBAIC01MjEs NiArNTIyLDEyIEBAIG1wc19mcmVlX2NvbW1hbmQoc3RydWN0IG1wc19zb2Z0YyAqc2MsIHMKIAlj bS0+Y21fbWF4X3NlZ3MgPSAwOwogCWNtLT5jbV9sdW4gPSAwOwogCWNtLT5jbV9zdGF0ZSA9IE1Q U19DTV9TVEFURV9GUkVFOworCWNtLT5jbV9kYXRhID0gTlVMTDsKKwljbS0+Y21fbGVuZ3RoID0g MDsKKwljbS0+Y21fb3V0X2xlbiA9IDA7CisJY20tPmNtX3NnbHNpemUgPSAwOworCWNtLT5jbV9z Z2UgPSBOVUxMOworCiAJVEFJTFFfRk9SRUFDSF9TQUZFKGNoYWluLCAmY20tPmNtX2NoYWluX2xp c3QsIGNoYWluX2xpbmssIGNoYWluX3RlbXApIHsKIAkJVEFJTFFfUkVNT1ZFKCZjbS0+Y21fY2hh aW5fbGlzdCwgY2hhaW4sIGNoYWluX2xpbmspOwogCQltcHNfZnJlZV9jaGFpbihzYywgY2hhaW4p OwpAQCAtNzQ5LDcgKzc1Niw5IEBAIHZvaWQgbXBzX21hcHBpbmdfaXJfY29uZmlnX2NoYW5nZV9l dmVudCgKIHZvaWQgbXBzc2FzX2V2dF9oYW5kbGVyKHN0cnVjdCBtcHNfc29mdGMgKnNjLCB1aW50 cHRyX3QgZGF0YSwKICAgICBNUEkyX0VWRU5UX05PVElGSUNBVElPTl9SRVBMWSAqZXZlbnQpOwog dm9pZCBtcHNzYXNfcHJlcGFyZV9yZW1vdmUoc3RydWN0IG1wc3Nhc19zb2Z0YyAqc2Fzc2MsIHVp bnQxNl90IGhhbmRsZSk7Cit2b2lkIG1wc3Nhc19wcmVwYXJlX3ZvbHVtZV9yZW1vdmUoc3RydWN0 IG1wc3Nhc19zb2Z0YyAqc2Fzc2MsIHVpbnQxNl90IGhhbmRsZSk7CiBpbnQgbXBzc2FzX3N0YXJ0 dXAoc3RydWN0IG1wc19zb2Z0YyAqc2MpOworc3RydWN0IG1wc3Nhc190YXJnZXQgKiBtcHNzYXNf ZmluZF90YXJnZXRfYnlfaGFuZGxlKHN0cnVjdCBtcHNzYXNfc29mdGMgKiwgaW50LCB1aW50MTZf dCk7CiAKIFNZU0NUTF9ERUNMKF9od19tcHMpOwogCiAK --_002_B2FD678A64EAAD45B089B123FDFC3ED729A3414E2Einbmail01lsic_-- From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:25:06 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A6321065675 for ; Fri, 3 Feb 2012 15:25:06 +0000 (UTC) (envelope-from debeuk@gmail.com) Received: from mail-qw0-f47.google.com (mail-qw0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 6547D8FC17 for ; Fri, 3 Feb 2012 15:25:01 +0000 (UTC) Received: by qadz30 with SMTP id z30so932414qad.13 for ; Fri, 03 Feb 2012 07:25:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=LSJm97nYo64ZlPI/zHvHkwJkKi8qQ59j/vudGum/40E=; b=A7/dXvzEfOnDGEdeZ5KqWLvBxeAma8XFew06VuHBFnSSdBFFtYX1QD/5RlHXHtlxu6 nE23e0NVWUqa6IUh+lKKWuJVFXDU8aLlnN+oDn1vV712kU9gK99YkbiG+SeoHt19mIi/ OmV/X5b/UoIyZCdRl2xaVKRN8lPh2KTk59NkA= MIME-Version: 1.0 Received: by 10.229.77.78 with SMTP id f14mr2914623qck.67.1328281229910; Fri, 03 Feb 2012 07:00:29 -0800 (PST) Received: by 10.229.248.75 with HTTP; Fri, 3 Feb 2012 07:00:29 -0800 (PST) In-Reply-To: References: Date: Fri, 3 Feb 2012 16:00:29 +0100 Message-ID: From: Sven To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:25:06 -0000 On Fri, Feb 3, 2012 at 1:25 PM, Pete French wrote: > So, I was trying to create a disc witha sector size of 4096 bytes, and I > assumed that simply creating a zvol with that blocksize would do the trick. > But it appears that whatever the blocksize is on the xvol, diskinfo is > reporting the sector size as 512 bytes. > > I this the intended behaviour ? I dont have a Solaris system to hand to > test it on, so I have no ida if this is BSD specific or not. > > cheers, > > -pete. > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > You can use the method described here to create a zvol with 4k sector size: http://lists.freebsd.org/pipermail/freebsd-fs/2010-December/010350.html -- :wq From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:47:26 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DD441065670 for ; Fri, 3 Feb 2012 15:47:26 +0000 (UTC) (envelope-from dmagda@ee.ryerson.ca) Received: from eccles.ee.ryerson.ca (eccles.ee.ryerson.ca [141.117.1.2]) by mx1.freebsd.org (Postfix) with ESMTP id 59BCC8FC08 for ; Fri, 3 Feb 2012 15:47:26 +0000 (UTC) Received: from webmail.ee.ryerson.ca (eccles [172.16.1.2]) by eccles.ee.ryerson.ca (8.14.4/8.14.4) with ESMTP id q13FlLG1033270; Fri, 3 Feb 2012 10:47:21 -0500 (EST) (envelope-from dmagda@ee.ryerson.ca) Received: from 206.108.127.2 (SquirrelMail authenticated user dmagda) by webmail.ee.ryerson.ca with HTTP; Fri, 3 Feb 2012 10:47:21 -0500 Message-ID: <01775b9823b5bacb14d03315a6321d61.squirrel@webmail.ee.ryerson.ca> In-Reply-To: References: Date: Fri, 3 Feb 2012 10:47:21 -0500 From: "David Magda" To: "Pete French" User-Agent: SquirrelMail/1.4.20 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:47:26 -0000 On Fri, February 3, 2012 10:03, Pete French wrote: > [...] But what I am talking about is the sector size > presneted by the 'fake' disc that a ZVOL creates - that always seems > to be 512 bytes, despite the fact that the zvol blocksize is 8k. Seems > odd to me (and that 8k size os alterable, but just doesnt seem to > be reflected in the zvol). As it stands I can make a zpool on top > of 4k discs, a ZVOL using 8k blocks on top of that, but the things > talking to it will use 512 byte chunks, which surely impacts performance ? Try the following from the zfs(1M) man page: zfs create [-ps] [-b blocksize] [-o property=value] ... -V size volume [...] -b blocksize Equivalent to -o volblocksize=blocksize. If this option is specified in conjunction with -o volblocksize, the resulting behavior is undefined. http://www.freebsd.org/cgi/man.cgi?query=zfs Did use "blocksize" or "volblocksize" in your "zfs create" command? A thread for zfs-discus on "volblocksize": http://mail.opensolaris.org/pipermail/zfs-discuss/2005-November/000450.html From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:56:19 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 963CB1065674; Fri, 3 Feb 2012 15:56:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 202628FC1A; Fri, 3 Feb 2012 15:56:19 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q13FuIPw014362; Fri, 3 Feb 2012 15:56:18 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q13FuIuw014293; Fri, 3 Feb 2012 15:56:18 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 15:56:18 GMT Message-Id: <201202031556.q13FuIuw014293@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 15:56:19 -0000 TB --- 2012-02-03 15:07:14 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 15:07:14 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-03 15:07:14 - cleaning the object tree TB --- 2012-02-03 15:07:29 - cvsupping the source tree TB --- 2012-02-03 15:07:29 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-03 15:12:52 - building world TB --- 2012-02-03 15:12:52 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:12:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:12:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:12:52 - SRCCONF=/dev/null TB --- 2012-02-03 15:12:52 - TARGET=mips TB --- 2012-02-03 15:12:52 - TARGET_ARCH=mips TB --- 2012-02-03 15:12:52 - TZ=UTC TB --- 2012-02-03 15:12:52 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:12:52 - cd /src TB --- 2012-02-03 15:12:52 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 15:12:53 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 15:49:28 UTC 2012 TB --- 2012-02-03 15:49:28 - cd /src/sys/mips/conf TB --- 2012-02-03 15:49:28 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 15:49:28 - building ADM5120 kernel TB --- 2012-02-03 15:49:28 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:49:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:49:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:49:28 - SRCCONF=/dev/null TB --- 2012-02-03 15:49:28 - TARGET=mips TB --- 2012-02-03 15:49:28 - TARGET_ARCH=mips TB --- 2012-02-03 15:49:28 - TZ=UTC TB --- 2012-02-03 15:49:28 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:49:28 - cd /src TB --- 2012-02-03 15:49:28 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 15:49:28 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 15:50:39 UTC 2012 TB --- 2012-02-03 15:50:39 - cd /src/sys/mips/conf TB --- 2012-02-03 15:50:39 - /usr/sbin/config -m IDT TB --- 2012-02-03 15:50:39 - building IDT kernel TB --- 2012-02-03 15:50:39 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:50:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:50:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:50:39 - SRCCONF=/dev/null TB --- 2012-02-03 15:50:39 - TARGET=mips TB --- 2012-02-03 15:50:39 - TARGET_ARCH=mips TB --- 2012-02-03 15:50:39 - TZ=UTC TB --- 2012-02-03 15:50:39 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:50:39 - cd /src TB --- 2012-02-03 15:50:39 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Fri Feb 3 15:50:39 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Fri Feb 3 15:52:15 UTC 2012 TB --- 2012-02-03 15:52:15 - cd /src/sys/mips/conf TB --- 2012-02-03 15:52:15 - /usr/sbin/config -m MALTA TB --- 2012-02-03 15:52:15 - building MALTA kernel TB --- 2012-02-03 15:52:15 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:52:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:52:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:52:15 - SRCCONF=/dev/null TB --- 2012-02-03 15:52:15 - TARGET=mips TB --- 2012-02-03 15:52:15 - TARGET_ARCH=mips TB --- 2012-02-03 15:52:15 - TZ=UTC TB --- 2012-02-03 15:52:15 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:52:15 - cd /src TB --- 2012-02-03 15:52:15 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Fri Feb 3 15:52:15 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Fri Feb 3 15:53:42 UTC 2012 TB --- 2012-02-03 15:53:42 - cd /src/sys/mips/conf TB --- 2012-02-03 15:53:42 - /usr/sbin/config -m QEMU TB --- 2012-02-03 15:53:42 - building QEMU kernel TB --- 2012-02-03 15:53:42 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:53:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:53:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:53:42 - SRCCONF=/dev/null TB --- 2012-02-03 15:53:42 - TARGET=mips TB --- 2012-02-03 15:53:42 - TARGET_ARCH=mips TB --- 2012-02-03 15:53:42 - TZ=UTC TB --- 2012-02-03 15:53:42 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:53:42 - cd /src TB --- 2012-02-03 15:53:42 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Fri Feb 3 15:53:42 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Fri Feb 3 15:54:56 UTC 2012 TB --- 2012-02-03 15:54:56 - cd /src/sys/mips/conf TB --- 2012-02-03 15:54:56 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-03 15:54:56 - building SENTRY5 kernel TB --- 2012-02-03 15:54:56 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 15:54:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 15:54:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 15:54:56 - SRCCONF=/dev/null TB --- 2012-02-03 15:54:56 - TARGET=mips TB --- 2012-02-03 15:54:56 - TARGET_ARCH=mips TB --- 2012-02-03 15:54:56 - TZ=UTC TB --- 2012-02-03 15:54:56 - __MAKE_CONF=/dev/null TB --- 2012-02-03 15:54:56 - cd /src TB --- 2012-02-03 15:54:56 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Fri Feb 3 15:54:56 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 15:56:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 15:56:18 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-03 15:56:18 - 1984.59 user 427.02 system 2944.02 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 15:59:49 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEF0B1065673 for ; Fri, 3 Feb 2012 15:59:49 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (constantine.ingresso.co.uk [IPv6:2a02:b90:3002:e550::3]) by mx1.freebsd.org (Postfix) with ESMTP id 6BB7B8FC0A for ; Fri, 3 Feb 2012 15:59:49 +0000 (UTC) Received: from dilbert.london-internal.ingresso.co.uk ([10.64.50.6] helo=dilbert.ingresso.co.uk) by constantine.ingresso.co.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtLXx-00053j-31; Fri, 03 Feb 2012 15:59:33 +0000 Received: from petefrench by dilbert.ingresso.co.uk with local (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtLXx-0000h9-2H; Fri, 03 Feb 2012 15:59:33 +0000 To: dmagda@ee.ryerson.ca, petefrench@ingresso.co.uk In-Reply-To: <01775b9823b5bacb14d03315a6321d61.squirrel@webmail.ee.ryerson.ca> Message-Id: From: Pete French Date: Fri, 03 Feb 2012 15:59:33 +0000 Cc: freebsd-stable@freebsd.org Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 15:59:49 -0000 > Try the following from the zfs(1M) man page: > > zfs create [-ps] [-b blocksize] [-o property=value] ... -V size volume > [...] > -b blocksize > > Equivalent to -o volblocksize=blocksize. If this option is > specified in conjunction with -o volblocksize, the resulting > behavior is undefined. Yes, thats the parameter I have been playing around with - whether you set it with -b or -o volblocksize, the zvol still presents itself as being 512 bytes. This is what is puzzling me. Quick example: # zfs create -V 1G -b 512 tank/test1 # zfs create -V 1G -b 4k tank/test2 # zfs create -V 1G tank/test3 # zfs get volblocksize tank/test1 tank/test2 tank/test3 NAME PROPERTY VALUE SOURCE tank/test1 volblocksize 512 - tank/test2 volblocksize 4K - tank/test3 volblocksize 8K - # diskinfo /dev/zvol/tank/test* /dev/zvol/tank/test1 512 1073741824 2097152 0 0 /dev/zvol/tank/test2 512 1073741824 2097152 0 0 /dev/zvol/tank/test3 512 1073741824 2097152 0 0 As you can see, the blocksize is being set properly in the volume, but in the actial device it's always 512. Now the reason behind this was to share out a 4k block sizes iscsi target, and I have subsequently discovered that I can set that parameter on istgt which should mitigate the effect, but I still think it is odd. cheers, -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 16:05:18 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C8C4106566B for ; Fri, 3 Feb 2012 16:05:18 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (constantine.ingresso.co.uk [IPv6:2a02:b90:3002:e550::3]) by mx1.freebsd.org (Postfix) with ESMTP id 39CC68FC0A for ; Fri, 3 Feb 2012 16:05:18 +0000 (UTC) Received: from dilbert.london-internal.ingresso.co.uk ([10.64.50.6] helo=dilbert.ingresso.co.uk) by constantine.ingresso.co.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtLdU-000595-CU; Fri, 03 Feb 2012 16:05:16 +0000 Received: from petefrench by dilbert.ingresso.co.uk with local (Exim 4.76 (FreeBSD)) (envelope-from ) id 1RtLdU-0000kI-Bm; Fri, 03 Feb 2012 16:05:16 +0000 To: debeuk@gmail.com, freebsd-stable@freebsd.org In-Reply-To: Message-Id: From: Pete French Date: Fri, 03 Feb 2012 16:05:16 +0000 Cc: Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 16:05:18 -0000 > You can use the method described here to create a zvol with 4k sector size: > http://lists.freebsd.org/pipermail/freebsd-fs/2010-December/010350.html I saw that, but it describes setting up a zpool, not a zvol - or are you saying that a zvol created on such a zpool will have 4k sectors ? Unfortunately I am not at liberty to recreate the pool on the server, so I cant try it, but thanks for the tip... -pete. From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 16:14:00 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9878A106566C for ; Fri, 3 Feb 2012 16:14:00 +0000 (UTC) (envelope-from dmagda@ee.ryerson.ca) Received: from eccles.ee.ryerson.ca (eccles.ee.ryerson.ca [141.117.1.2]) by mx1.freebsd.org (Postfix) with ESMTP id 569BD8FC0A for ; Fri, 3 Feb 2012 16:13:59 +0000 (UTC) Received: from webmail.ee.ryerson.ca (eccles [172.16.1.2]) by eccles.ee.ryerson.ca (8.14.4/8.14.4) with ESMTP id q13GDtet035123; Fri, 3 Feb 2012 11:13:55 -0500 (EST) (envelope-from dmagda@ee.ryerson.ca) Received: from 206.108.127.2 (SquirrelMail authenticated user dmagda) by webmail.ee.ryerson.ca with HTTP; Fri, 3 Feb 2012 11:13:55 -0500 Message-ID: <13f13562be5cec2df7eba0010e8e7a3c.squirrel@webmail.ee.ryerson.ca> In-Reply-To: References: Date: Fri, 3 Feb 2012 11:13:55 -0500 From: "David Magda" To: "Pete French" User-Agent: SquirrelMail/1.4.20 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org, debeuk@gmail.com Subject: Re: Sector size of a zvol X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 16:14:00 -0000 On Fri, February 3, 2012 11:05, Pete French wrote: >> You can use the method described here to create a zvol with 4k sector >> size: >> http://lists.freebsd.org/pipermail/freebsd-fs/2010-December/010350.html > > I saw that, but it describes setting up a zpool, not a zvol - or are > you saying that a zvol created on such a zpool will have 4k sectors ? > Unfortunately I am not at liberty to recreate the pool on the server, > so I cant try it, but thanks for the tip... No, I think it's just that few folks work with/ask about zvols that most people's brains short-circuit and go straight to thinking about only zpools and datasets--regardless of the text of the subject line. :) From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 16:31:58 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5D5E106566B for ; Fri, 3 Feb 2012 16:31:58 +0000 (UTC) (envelope-from joh.hendriks@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3F7378FC12 for ; Fri, 3 Feb 2012 16:31:57 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4367699wib.13 for ; Fri, 03 Feb 2012 08:31:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=J4X33T++cq0GQUfsU21GbZVHf2H0Wd8hz90YidtRMpQ=; b=R97nNR8ICdVe1zpdELnBKcaOGNdk7DkLZrx6AZkWxe9nQnUjAMJ3q4i09w6n0OBAbS 4YUeCl/1us3Fa1bOa382lg+7OMXQMczg5b0r0vFQr4XOSl2LemvO8tr+TE6O7M7JgI5O tvfgYcdXdiWJt3ngycN9rN5cy6gEIUXMAYjFo= Received: by 10.180.81.66 with SMTP id y2mr12527560wix.20.1328286717086; Fri, 03 Feb 2012 08:31:57 -0800 (PST) Received: from [192.168.50.103] (double-l.xs4all.nl. [80.126.205.144]) by mx.google.com with ESMTPS id t15sm7674292wiv.6.2012.02.03.08.31.55 (version=SSLv3 cipher=OTHER); Fri, 03 Feb 2012 08:31:56 -0800 (PST) Message-ID: <4F2C0BF6.8050701@gmail.com> Date: Fri, 03 Feb 2012 17:31:50 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20120129 Thunderbird/10.0 MIME-Version: 1.0 To: "Desai, Kashyap" References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 16:31:58 -0000 Desai, Kashyap schreef: > Try attached patch.! (This patch is not taken against upstream code, so you may see some hunk fail.) > > ~ Kashyap > >> -----Original Message----- >> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] >> Sent: Friday, February 03, 2012 8:42 PM >> To: Desai, Kashyap >> Cc: freebsd-stable >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >> >> Desai, Kashyap schreef: >>> Hi Johan, >>> >>> I have already figure out this issue in our lab. >>> >>> I also have fix for this issue. (Just don't want to create regression, >> that is why I have not posted outside) >>> Since you have seen similar issue, It is worth to try my patch. >>> >>> My machine is not getting IP right now. I will send you patch once my >> machine is in network ? >>> ~ Kashyap >>> >>> >>>> -----Original Message----- >>>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- >>>> stable@freebsd.org] On Behalf Of Johan Hendriks >>>> Sent: Friday, February 03, 2012 8:13 PM >>>> To: Kenneth D. Merry >>>> Cc: freebsd-stable >>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >>>> >>>> Kenneth D. Merry schreef: >>>>> Hi folks, >>>>> >>>>> The LSI-supported version of the mps(4) driver that supports their >> 6Gb >>>> SAS >>>>> HBAs as well as WarpDrive controllers, is now in stable/9 and >>>> stable/8. >>>>> Please test it out and let me and Kashyap (CCed) know if you run >> into >>>>> any problems. >>>>> >>>>> In addition to supporting WarpDrive, the driver also supports >>>> Integrated >>>>> RAID. >>>>> >>>>> Thanks to LSI for doing the work on this driver! >>>>> >>>>> Note that the CAM infrastructure changes that went into FreeBSD/head >>>> along >>>>> with this driver have not gone into either stable/9 or stable/8. >> Only >>>> the >>>>> driver itself has been merged. >>>>> >>>>> The CAM infrastructure changes depend on some other da(4) driver >>>> changes >>>>> that will need to get merged before they can go back. If that merge >>>>> happens, it will probably only be into stable/9. >>>>> >>>>> A couple of notes about issues with this driver: >>>>> >>>>> - Unlike the previous mps(4) driver, it probes sequentially. If >> you >>>> have >>>>> a lot of drives in your system, it will take a while to probe >> them >>>> all. >>>>> - You may see warning messages like this: >>>>> >>>>> _mapping_add_new_device: failed to add the device with handle 0x0019 >>>> to persiste >>>>> nt table because there is no free space available >>>>> _mapping_add_new_device: failed to add the device with handle 0x001a >>>> to persiste >>>>> nt table because there is no free space available >>>>> >>>>> - The driver is not endian safe. (It assumes a little endian >>>> machine.) >>>>> This is not new, the previous version of the driver had the >> same >>>> issue. >>>>> The LSI folks know about these issues. The driver has passed their >>>> testing >>>>> process. >>>>> >>>>> Many thanks to LSI for going through the effort to support FreeBSD. >>>>> >>>>> Ken >>>> Hello Ken. >>>> >>>> Just updated our 16 bay server. did a csup today. >>>> did try some commands, it looked like the drives got husseled. >>>> >>>> But after giving the command camcontrol rescan all it does not give >> back >>>> the prompt. >>>> Also top shows me the following. >>>> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% >>>> camcontrol >>>> >>>> # on another console things works >>>> filer01# camcontrol devlist >>>> at scbus0 target 8 lun 0 >> (pass0,da0) >>>> at scbus0 target 9 lun 0 >> (pass1,da1) >>>> at scbus0 target 10 lun 0 >> (pass2,da2) >>>> at scbus0 target 11 lun 0 >> (pass3,da3) >>>> at scbus0 target 12 lun 0 >> (pass4,da4) >>>> at scbus0 target 13 lun 0 >> (pass5,da5) >>>> at scbus0 target 16 lun 0 >>>> (probe16,ses0,pass6) >>>> at scbus0 target 17 lun 0 >> (pass7,da6) >>>> at scbus0 target 18 lun 0 >> (pass8,da7) >>>> at scbus0 target 19 lun 0 >> (pass9,da8) >>>> at scbus0 target 20 lun 0 >>>> (pass10,da9) >>>> at scbus0 target 21 lun 0 >>>> (pass11,da10) >>>> at scbus0 target 22 lun 0 >>>> (pass12,da11) >>>> at scbus0 target 23 lun 0 >>>> (pass13,da12) >>>> at scbus0 target 24 lun 0 >>>> (pass14,da13) >>>> at scbus0 target 27 lun 0 >>>> (pass15,da14) >>>> at scbus0 target 28 lun 0 >>>> (pass16,da15) >>>> at scbus1 target 0 lun 0 >>>> (ada0,pass17) >>>> at scbus3 target 0 lun 0 >> (pass18,cd0) >>>> The controller is a LSI 9211-8i with IT firmware. >>>> >>>> here is the dmesg >>>> Copyright (c) 1992-2012 The FreeBSD Project. >>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, >> 1994 >>>> The Regents of the University of California. All rights >>>> reserved. >>>> FreeBSD is a registered trademark of The FreeBSD Foundation. >>>> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 >>>> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 >>>> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class CPU) >>>> Origin = "GenuineIntel" Id = 0x206a7 Family = 6 Model = 2a >>>> Stepping = 7 >>>> >>>> >> Features=0xbfebfbff>>> ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> >>>> >>>> >> Features2=0x15bae3ff>>> SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> >>>> AMD Features=0x28100800 >>>> AMD Features2=0x1 >>>> TSC: P-state invariant, performance statistics >>>> real memory = 17179869184 (16384 MB) >>>> avail memory = 16493441024 (15729 MB) >>>> Event timer "LAPIC" quality 600 >>>> ACPI APIC Table: >>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs >>>> FreeBSD/SMP: 1 package(s) x 4 core(s) >>>> cpu0 (BSP): APIC ID: 0 >>>> cpu1 (AP): APIC ID: 2 >>>> cpu2 (AP): APIC ID: 4 >>>> cpu3 (AP): APIC ID: 6 >>>> ioapic0 irqs 0-23 on motherboard >>>> kbd1 at kbdmux0 >>>> acpi0: on motherboard >>>> acpi0: Power Button (fixed) >>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 >>>> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 >>>> cpu0: on acpi0 >>>> cpu1: on acpi0 >>>> cpu2: on acpi0 >>>> cpu3: on acpi0 >>>> pcib0: port 0xcf8-0xcff on acpi0 >>>> pci0: on pcib0 >>>> pcib1: irq 19 at device 6.0 on pci0 >>>> pci1: on pcib1 >>>> mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff irq >> 19 >>>> at device 0.0 on pci1 >>>> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd >>>> mps0: IOCCapabilities: >>>> >> 1285c>>> c> >>>> em0: port 0xf020-0xf03f >> mem >>>> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 on >>>> pci0 >>>> em0: Using an MSI interrupt >>>> em0: Ethernet address: 00:25:90:57:20:bd >>>> ehci0: mem 0xfb823000-0xfb8233ff >> irq >>>> 16 at device 26.0 on pci0 >>>> usbus0: EHCI version 1.0 >>>> usbus0: on ehci0 >>>> pcib2: irq 17 at device 28.0 on pci0 >>>> pci2: on pcib2 >>>> pcib3: irq 17 at device 28.4 on pci0 >>>> pci3: on pcib3 >>>> em1: port 0xd000-0xd01f >> mem >>>> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on >> pci3 >>>> em1: Using MSIX interrupts with 3 vectors >>>> em1: Ethernet address: 00:25:90:57:20:bc >>>> ehci1: mem 0xfb822000-0xfb8223ff >> irq >>>> 23 at device 29.0 on pci0 >>>> usbus1: EHCI version 1.0 >>>> usbus1: on ehci1 >>>> pcib4: at device 30.0 on pci0 >>>> pci4: on pcib4 >>>> vgapci0: mem >>>> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff irq >> 23 >>>> at device 3.0 on pci4 >>>> isab0: at device 31.0 on pci0 >>>> isa0: on isab0 >>>> ahci0: port >>>> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000-0xf01f >>>> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 >>>> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported >>>> ahcich0: at channel 0 on ahci0 >>>> ahcich1: at channel 1 on ahci0 >>>> ahcich2: at channel 2 on ahci0 >>>> ahcich3: at channel 3 on ahci0 >>>> ahcich4: at channel 4 on ahci0 >>>> ahcich5: at channel 5 on ahci0 >>>> pci0: at device 31.3 (no driver attached) >>>> acpi_button0: on acpi0 >>>> hpet0: iomem 0xfed00000-0xfed003ff on >> acpi0 >>>> ahcich0: at channel 0 on ahci0 >>>> ahcich1: at channel 1 on ahci0 >>>> ahcich2: at channel 2 on ahci0 >>>> ahcich3: at channel 3 on ahci0 >>>> ahcich4: at channel 4 on ahci0 >>>> ahcich5: at channel 5 on ahci0 >>>> pci0: at device 31.3 (no driver attached) >>>> acpi_button0: on acpi0 >>>> hpet0: iomem 0xfed00000-0xfed003ff on >> acpi0 >>>> Timecounter "HPET" frequency 14318180 Hz quality 950 >>>> Event timer "HPET" frequency 14318180 Hz quality 550 >>>> Event timer "HPET1" frequency 14318180 Hz quality 440 >>>> Event timer "HPET2" frequency 14318180 Hz quality 440 >>>> Event timer "HPET3" frequency 14318180 Hz quality 440 >>>> Event timer "HPET4" frequency 14318180 Hz quality 440 >>>> attimer0: port 0x40-0x43 irq 0 on acpi0 >>>> Timecounter "i8254" frequency 1193182 Hz quality 0 >>>> Event timer "i8254" frequency 1193182 Hz quality 100 >>>> atrtc0: port 0x70-0x71 irq 8 on acpi0 >>>> Event timer "RTC" frequency 32768 Hz quality 0 >>>> atkbdc0: port 0x60,0x64 irq 1 on acpi0 >>>> atkbd0: irq 1 on atkbdc0 >>>> kbd0 at atkbd0 >>>> atkbd0: [GIANT-LOCKED] >>>> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on >> acpi0 >>>> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 >>>> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 >>>> orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff on >> isa0 >>>> sc0: at flags 0x100 on isa0 >>>> sc0: VGA<16 virtual consoles, flags=0x300> >>>> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on >>>> isa0 >>>> ppc0: cannot reserve I/O port range >>>> est0: on cpu0 >>>> p4tcc0: on cpu0 >>>> est1: on cpu1 >>>> p4tcc1: on cpu1 >>>> est2: on cpu2 >>>> p4tcc2: on cpu2 >>>> est3: on cpu3 >>>> p4tcc3: on cpu3 >>>> ZFS filesystem version 5 >>>> ZFS storage pool version 28 >>>> Timecounters tick every 1.000 msec >>>> usbus0: 480Mbps High Speed USB v2.0 >>>> usbus1: 480Mbps High Speed USB v2.0 >>>> ugen0.1: at usbus0 >>>> uhub0: on >> usbus0 >>>> ugen1.1: at usbus1 >>>> uhub1: on >> usbus1 >>>> da0 at mps0 bus 0 scbus0 target 8 lun 0 >>>> da0: Fixed Direct Access SCSI-6 device >>>> da0: 300.000MB/s transfers >>>> da0: Command Queueing enabled >>>> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da1 at mps0 bus 0 scbus0 target 9 lun 0 >>>> da1: Fixed Direct Access SCSI-6 device >>>> da1: 300.000MB/s transfers >>>> da1: Command Queueing enabled >>>> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da2 at mps0 bus 0 scbus0 target 10 lun 0 >>>> da2: Fixed Direct Access SCSI-6 device >>>> da2: 300.000MB/s transfers >>>> da2: Command Queueing enabled >>>> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da3 at mps0 bus 0 scbus0 target 11 lun 0 >>>> da3: Fixed Direct Access SCSI-6 device >>>> da3: 300.000MB/s transfers >>>> da3: Command Queueing enabled >>>> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da4 at mps0 bus 0 scbus0 target 12 lun 0 >>>> da4: Fixed Direct Access SCSI-6 device >>>> da4: 300.000MB/s transfers >>>> da4: Command Queueing enabled >>>> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da5 at mps0 bus 0 scbus0 target 13 lun 0 >>>> da5: Fixed Direct Access SCSI-6 device >>>> da5: 150.000MB/s transfers >>>> da5: Command Queueing enabled >>>> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da8 at mps0 bus 0 scbus0 target 19 lun 0 >>>> da8: Fixed Direct Access SCSI-6 device >>>> da8: 300.000MB/s transfers >>>> da8: Command Queueing enabled >>>> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da9 at mps0 bus 0 scbus0 target 20 lun 0 >>>> da9: Fixed Direct Access SCSI-6 device >>>> da9: 300.000MB/s transfers >>>> da9: Command Queueing enabled >>>> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da11 at mps0 bus 0 scbus0 target 22 lun 0 >>>> da11: Fixed Direct Access SCSI-6 device >>>> da11: 150.000MB/s transfers >>>> da11: Command Queueing enabled >>>> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da12 at mps0 bus 0 scbus0 target 23 lun 0 >>>> da12: Fixed Direct Access SCSI-6 device >>>> da12: 150.000MB/s transfers >>>> da12: Command Queueing enabled >>>> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da13 at mps0 bus 0 scbus0 target 24 lun 0 >>>> da13: Fixed Direct Access SCSI-6 device >>>> da13: 150.000MB/s transfers >>>> da13: Command Queueing enabled >>>> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da14 at mps0 bus 0 scbus0 target 27 lun 0 >>>> da14: Fixed Direct Access SCSI-6 device >>>> da14: 300.000MB/s transfers >>>> da14: Command Queueing enabled >>>> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> da15 at mps0 bus 0 scbus0 target 28 lun 0 >>>> da15: Fixed Direct Access SCSI-6 device >>>> da15: 150.000MB/s transfers >>>> da15: Command Queueing enabled >>>> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> ses0 at mps0 bus 0 scbus0 target 16 lun 0 >>>> ses0: Fixed Enclosure Services SCSI-5 device >>>> ses0: 600.000MB/s transfers >>>> ses0: Command Queueing enabled >>>> ses0: SCSI-3 SES Device >>>> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 >>>> ada0: ATA-7 SATA 1.x device >>>> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) >>>> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) >>>> ada0: Previously was known as ad4 >>>> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 >>>> SMP: AP CPU #3 Launched! >>>> cd0: Removable CD-ROM SCSI-0 device >>>> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO >>>> 8192bytes) >>>> cd0: Attempt to query device size failed: NOT READY, Medium not >> present >>>> - tray closed >>>> SMP: AP CPU #2 Launched! >>>> SMP: AP CPU #1 Launched! >>>> da6 at mps0 bus 0 scbus0 target 17 lun 0 >>>> da6: Fixed Direct Access SCSI-6 device >>>> da6: 150.000MB/s transfers >>>> da6: Command Queueing enabled >>>> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da7 at mps0 bus 0 scbus0 target 18 lun 0 >>>> da7: Fixed Direct Access SCSI-6 device >>>> da7: 150.000MB/s transfers >>>> da7: Command Queueing enabled >>>> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>> da10 at mps0 bus 0 scbus0 target 21 lun 0 >>>> da10: Fixed Direct Access SCSI-6 device >>>> da10: 300.000MB/s transfers >>>> da10: Command Queueing enabled >>>> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>> GEOM: da15s1: geometry does not match label (16h,63s != 255h,63s). >>>> uhub1: 2 ports with 2 removable, self powered >>>> uhub0: 2 ports with 2 removable, self powered >>>> Root mount waiting for: usbus1 usbus0 >>>> ugen0.2: at usbus0 >>>> uhub2:> 2> >>>> on usbus0 >>>> ugen1.2: at usbus1 >>>> uhub3:> 2> >>>> on usbus1 >>>> Root mount waiting for: usbus1 usbus0 >>>> uhub3: 6 ports with 6 removable, self powered >>>> uhub2: 6 ports with 6 removable, self powered >>>> ugen0.3: at usbus0 >>>> ums0:>>> rev 1.10/0.01, addr 3> on usbus0 >>>> ums0: 3 buttons and [Z] coordinates ID=0 >>>> ukbd0:> 0/0, >>>> rev 1.10/0.01, addr 3> on usbus0 >>>> kbd2 at ukbd0 >>>> Trying to mount root from ufs:/dev/ada0p2 [rw]... >>>> em0: link state changed to UP >>>> >>>> thanks for your work. >>>> >>>> regards >>>> Johan >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> freebsd-stable@freebsd.org mailing list >>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >>>> To unsubscribe, send any mail to "freebsd-stable- >>>> unsubscribe@freebsd.org" >> Ok i will try the patch, no hurry, i am back at the office on monday... >> regards >> Johan Ok i applied the patch, hopefully i did it right. I saw some failed hunk, but forgot to save the .rej files. But the camcontrol rescan all command came back. filer01# camcontrol rescan all Re-scan of bus 0 was successful Re-scan of bus 1 was successful Re-scan of bus 2 was successful Re-scan of bus 3 was successful Re-scan of bus 4 was successful Re-scan of bus 5 was successful Re-scan of bus 6 was successful if you need more info, let me know. regards Johan From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 16:57:57 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F280A106566B; Fri, 3 Feb 2012 16:57:57 +0000 (UTC) (envelope-from max@mxcrypt.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 92D258FC13; Fri, 3 Feb 2012 16:57:57 +0000 (UTC) Received: by vbbfa15 with SMTP id fa15so4168962vbb.13 for ; Fri, 03 Feb 2012 08:57:56 -0800 (PST) Received: by 10.52.88.144 with SMTP id bg16mr3862294vdb.64.1328286572359; Fri, 03 Feb 2012 08:29:32 -0800 (PST) MIME-Version: 1.0 Received: by 10.220.118.144 with HTTP; Fri, 3 Feb 2012 08:29:01 -0800 (PST) In-Reply-To: References: <4F267B14.4060200@ateamsystems.com> <20120130120643.GA46785@icarus.home.lan> From: Maxim Khitrov Date: Fri, 3 Feb 2012 11:29:01 -0500 Message-ID: To: Ivan Voras Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 9 crash/deadlock when dump(8)ing file system with journaling enabled. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 16:57:58 -0000 On Mon, Jan 30, 2012 at 9:38 AM, Ivan Voras wrote: > On 30/01/2012 13:06, Jeremy Chadwick wrote: > >>> For now I've turned off journaling (soft updates seem fine) and that >>> works around the issue. >>> >>> Let me know if I can provide more details etc! >> >> >> I'm not sure, but this may be an after-effect of known problems right >> now with SU+J on 9.0. =C2=A0It would help if you could state if you're u= sing >> "dump -L" or not. >> >> I've seen the "deadlock" behaviour you describe on older FreeBSD >> versions (dating back to at least 7.x) when using "dump -L", which >> generates a fs snapshot. =C2=A0Obviously 7.x does not have SU+J, so I'm = a >> little surprised disabling journalling fixes the problem for you. > > > It's a known bug: SU+J currently deadlocks when used with UFS snapshots. Is there any additional information somewhere on when this is expected to be fixed? Seems like a fairly significant problem to me, especially since SU+J is the default when creating new file systems with bsdinstall. - Max From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 16:58:50 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 750CB106564A for ; Fri, 3 Feb 2012 16:58:50 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog102.obsmtp.com (na3sys009aog102.obsmtp.com [74.125.149.69]) by mx1.freebsd.org (Postfix) with ESMTP id AC8D28FC19 for ; Fri, 3 Feb 2012 16:58:49 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob102.postini.com ([74.125.148.12]) with SMTP ID DSNKTywSSDad3UZza/DP4OlxXI3vwiOtSwPl@postini.com; Fri, 03 Feb 2012 08:58:49 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 12:01:56 -0500 Received: from inbexch01.lsi.com (135.36.98.37) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 11:57:26 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch01.lsi.com ([135.36.98.37]) with mapi; Fri, 3 Feb 2012 22:27:23 +0530 From: "Desai, Kashyap" To: Johan Hendriks Date: Fri, 3 Feb 2012 22:27:21 +0530 Thread-Topic: LSI supported mps(4) driver in stable/9 and stable/8 Thread-Index: AczikV0nEd1pryaaSWyo7z0zVrxYVgAAvzow Message-ID: References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> <4F2C0BF6.8050701@gmail.com> In-Reply-To: <4F2C0BF6.8050701@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: freebsd-stable Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 16:58:50 -0000 > -----Original Message----- > From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > Sent: Friday, February 03, 2012 10:02 PM > To: Desai, Kashyap > Cc: freebsd-stable > Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > Desai, Kashyap schreef: > > Try attached patch.! (This patch is not taken against upstream code, > so you may see some hunk fail.) > > > > ~ Kashyap > > > >> -----Original Message----- > >> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > >> Sent: Friday, February 03, 2012 8:42 PM > >> To: Desai, Kashyap > >> Cc: freebsd-stable > >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >> > >> Desai, Kashyap schreef: > >>> Hi Johan, > >>> > >>> I have already figure out this issue in our lab. > >>> > >>> I also have fix for this issue. (Just don't want to create > regression, > >> that is why I have not posted outside) > >>> Since you have seen similar issue, It is worth to try my patch. > >>> > >>> My machine is not getting IP right now. I will send you patch once > my > >> machine is in network ? > >>> ~ Kashyap > >>> > >>> > >>>> -----Original Message----- > >>>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > >>>> stable@freebsd.org] On Behalf Of Johan Hendriks > >>>> Sent: Friday, February 03, 2012 8:13 PM > >>>> To: Kenneth D. Merry > >>>> Cc: freebsd-stable > >>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >>>> > >>>> Kenneth D. Merry schreef: > >>>>> Hi folks, > >>>>> > >>>>> The LSI-supported version of the mps(4) driver that supports their > >> 6Gb > >>>> SAS > >>>>> HBAs as well as WarpDrive controllers, is now in stable/9 and > >>>> stable/8. > >>>>> Please test it out and let me and Kashyap (CCed) know if you run > >> into > >>>>> any problems. > >>>>> > >>>>> In addition to supporting WarpDrive, the driver also supports > >>>> Integrated > >>>>> RAID. > >>>>> > >>>>> Thanks to LSI for doing the work on this driver! > >>>>> > >>>>> Note that the CAM infrastructure changes that went into > FreeBSD/head > >>>> along > >>>>> with this driver have not gone into either stable/9 or stable/8. > >> Only > >>>> the > >>>>> driver itself has been merged. > >>>>> > >>>>> The CAM infrastructure changes depend on some other da(4) driver > >>>> changes > >>>>> that will need to get merged before they can go back. If that > merge > >>>>> happens, it will probably only be into stable/9. > >>>>> > >>>>> A couple of notes about issues with this driver: > >>>>> > >>>>> - Unlike the previous mps(4) driver, it probes sequentially. > If > >> you > >>>> have > >>>>> a lot of drives in your system, it will take a while to > probe > >> them > >>>> all. > >>>>> - You may see warning messages like this: > >>>>> > >>>>> _mapping_add_new_device: failed to add the device with handle > 0x0019 > >>>> to persiste > >>>>> nt table because there is no free space available > >>>>> _mapping_add_new_device: failed to add the device with handle > 0x001a > >>>> to persiste > >>>>> nt table because there is no free space available > >>>>> > >>>>> - The driver is not endian safe. (It assumes a little endian > >>>> machine.) > >>>>> This is not new, the previous version of the driver had the > >> same > >>>> issue. > >>>>> The LSI folks know about these issues. The driver has passed > their > >>>> testing > >>>>> process. > >>>>> > >>>>> Many thanks to LSI for going through the effort to support > FreeBSD. > >>>>> > >>>>> Ken > >>>> Hello Ken. > >>>> > >>>> Just updated our 16 bay server. did a csup today. > >>>> did try some commands, it looked like the drives got husseled. > >>>> > >>>> But after giving the command camcontrol rescan all it does not give > >> back > >>>> the prompt. > >>>> Also top shows me the following. > >>>> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% > >>>> camcontrol > >>>> > >>>> # on another console things works > >>>> filer01# camcontrol devlist > >>>> at scbus0 target 8 lun 0 > >> (pass0,da0) > >>>> at scbus0 target 9 lun 0 > >> (pass1,da1) > >>>> at scbus0 target 10 lun 0 > >> (pass2,da2) > >>>> at scbus0 target 11 lun 0 > >> (pass3,da3) > >>>> at scbus0 target 12 lun 0 > >> (pass4,da4) > >>>> at scbus0 target 13 lun 0 > >> (pass5,da5) > >>>> at scbus0 target 16 lun 0 > >>>> (probe16,ses0,pass6) > >>>> at scbus0 target 17 lun 0 > >> (pass7,da6) > >>>> at scbus0 target 18 lun 0 > >> (pass8,da7) > >>>> at scbus0 target 19 lun 0 > >> (pass9,da8) > >>>> at scbus0 target 20 lun 0 > >>>> (pass10,da9) > >>>> at scbus0 target 21 lun 0 > >>>> (pass11,da10) > >>>> at scbus0 target 22 lun 0 > >>>> (pass12,da11) > >>>> at scbus0 target 23 lun 0 > >>>> (pass13,da12) > >>>> at scbus0 target 24 lun 0 > >>>> (pass14,da13) > >>>> at scbus0 target 27 lun 0 > >>>> (pass15,da14) > >>>> at scbus0 target 28 lun 0 > >>>> (pass16,da15) > >>>> at scbus1 target 0 lun 0 > >>>> (ada0,pass17) > >>>> at scbus3 target 0 lun 0 > >> (pass18,cd0) > >>>> The controller is a LSI 9211-8i with IT firmware. > >>>> > >>>> here is the dmesg > >>>> Copyright (c) 1992-2012 The FreeBSD Project. > >>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, > >> 1994 > >>>> The Regents of the University of California. All rights > >>>> reserved. > >>>> FreeBSD is a registered trademark of The FreeBSD Foundation. > >>>> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 > >>>> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 > >>>> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class > CPU) > >>>> Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 6 Model = =3D 2a > >>>> Stepping =3D 7 > >>>> > >>>> > >> > Features=3D0xbfebfbff >>>> > ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > >>>> > >>>> > >> > Features2=3D0x15bae3ff >>>> > SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> > >>>> AMD Features=3D0x28100800 > >>>> AMD Features2=3D0x1 > >>>> TSC: P-state invariant, performance statistics > >>>> real memory =3D 17179869184 (16384 MB) > >>>> avail memory =3D 16493441024 (15729 MB) > >>>> Event timer "LAPIC" quality 600 > >>>> ACPI APIC Table: > >>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs > >>>> FreeBSD/SMP: 1 package(s) x 4 core(s) > >>>> cpu0 (BSP): APIC ID: 0 > >>>> cpu1 (AP): APIC ID: 2 > >>>> cpu2 (AP): APIC ID: 4 > >>>> cpu3 (AP): APIC ID: 6 > >>>> ioapic0 irqs 0-23 on motherboard > >>>> kbd1 at kbdmux0 > >>>> acpi0: on motherboard > >>>> acpi0: Power Button (fixed) > >>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > >>>> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on > acpi0 > >>>> cpu0: on acpi0 > >>>> cpu1: on acpi0 > >>>> cpu2: on acpi0 > >>>> cpu3: on acpi0 > >>>> pcib0: port 0xcf8-0xcff on acpi0 > >>>> pci0: on pcib0 > >>>> pcib1: irq 19 at device 6.0 on pci0 > >>>> pci1: on pcib1 > >>>> mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff > irq > >> 19 > >>>> at device 0.0 on pci1 > >>>> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd > >>>> mps0: IOCCapabilities: > >>>> > >> > 1285c >>>> c> > >>>> em0: port 0xf020- > 0xf03f > >> mem > >>>> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 > on > >>>> pci0 > >>>> em0: Using an MSI interrupt > >>>> em0: Ethernet address: 00:25:90:57:20:bd > >>>> ehci0: mem 0xfb823000- > 0xfb8233ff > >> irq > >>>> 16 at device 26.0 on pci0 > >>>> usbus0: EHCI version 1.0 > >>>> usbus0: on ehci0 > >>>> pcib2: irq 17 at device 28.0 on pci0 > >>>> pci2: on pcib2 > >>>> pcib3: irq 17 at device 28.4 on pci0 > >>>> pci3: on pcib3 > >>>> em1: port 0xd000- > 0xd01f > >> mem > >>>> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on > >> pci3 > >>>> em1: Using MSIX interrupts with 3 vectors > >>>> em1: Ethernet address: 00:25:90:57:20:bc > >>>> ehci1: mem 0xfb822000- > 0xfb8223ff > >> irq > >>>> 23 at device 29.0 on pci0 > >>>> usbus1: EHCI version 1.0 > >>>> usbus1: on ehci1 > >>>> pcib4: at device 30.0 on pci0 > >>>> pci4: on pcib4 > >>>> vgapci0: mem > >>>> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff > irq > >> 23 > >>>> at device 3.0 on pci4 > >>>> isab0: at device 31.0 on pci0 > >>>> isa0: on isab0 > >>>> ahci0: port > >>>> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000- > 0xf01f > >>>> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 > >>>> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported > >>>> ahcich0: at channel 0 on ahci0 > >>>> ahcich1: at channel 1 on ahci0 > >>>> ahcich2: at channel 2 on ahci0 > >>>> ahcich3: at channel 3 on ahci0 > >>>> ahcich4: at channel 4 on ahci0 > >>>> ahcich5: at channel 5 on ahci0 > >>>> pci0: at device 31.3 (no driver attached) > >>>> acpi_button0: on acpi0 > >>>> hpet0: iomem 0xfed00000-0xfed003ff on > >> acpi0 > >>>> ahcich0: at channel 0 on ahci0 > >>>> ahcich1: at channel 1 on ahci0 > >>>> ahcich2: at channel 2 on ahci0 > >>>> ahcich3: at channel 3 on ahci0 > >>>> ahcich4: at channel 4 on ahci0 > >>>> ahcich5: at channel 5 on ahci0 > >>>> pci0: at device 31.3 (no driver attached) > >>>> acpi_button0: on acpi0 > >>>> hpet0: iomem 0xfed00000-0xfed003ff on > >> acpi0 > >>>> Timecounter "HPET" frequency 14318180 Hz quality 950 > >>>> Event timer "HPET" frequency 14318180 Hz quality 550 > >>>> Event timer "HPET1" frequency 14318180 Hz quality 440 > >>>> Event timer "HPET2" frequency 14318180 Hz quality 440 > >>>> Event timer "HPET3" frequency 14318180 Hz quality 440 > >>>> Event timer "HPET4" frequency 14318180 Hz quality 440 > >>>> attimer0: port 0x40-0x43 irq 0 on acpi0 > >>>> Timecounter "i8254" frequency 1193182 Hz quality 0 > >>>> Event timer "i8254" frequency 1193182 Hz quality 100 > >>>> atrtc0: port 0x70-0x71 irq 8 on acpi0 > >>>> Event timer "RTC" frequency 32768 Hz quality 0 > >>>> atkbdc0: port 0x60,0x64 irq 1 on > acpi0 > >>>> atkbd0: irq 1 on atkbdc0 > >>>> kbd0 at atkbd0 > >>>> atkbd0: [GIANT-LOCKED] > >>>> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on > >> acpi0 > >>>> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 > >>>> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 > >>>> orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff > on > >> isa0 > >>>> sc0: at flags 0x100 on isa0 > >>>> sc0: VGA<16 virtual consoles, flags=3D0x300> > >>>> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff > on > >>>> isa0 > >>>> ppc0: cannot reserve I/O port range > >>>> est0: on cpu0 > >>>> p4tcc0: on cpu0 > >>>> est1: on cpu1 > >>>> p4tcc1: on cpu1 > >>>> est2: on cpu2 > >>>> p4tcc2: on cpu2 > >>>> est3: on cpu3 > >>>> p4tcc3: on cpu3 > >>>> ZFS filesystem version 5 > >>>> ZFS storage pool version 28 > >>>> Timecounters tick every 1.000 msec > >>>> usbus0: 480Mbps High Speed USB v2.0 > >>>> usbus1: 480Mbps High Speed USB v2.0 > >>>> ugen0.1: at usbus0 > >>>> uhub0: on > >> usbus0 > >>>> ugen1.1: at usbus1 > >>>> uhub1: on > >> usbus1 > >>>> da0 at mps0 bus 0 scbus0 target 8 lun 0 > >>>> da0: Fixed Direct Access SCSI-6 device > >>>> da0: 300.000MB/s transfers > >>>> da0: Command Queueing enabled > >>>> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da1 at mps0 bus 0 scbus0 target 9 lun 0 > >>>> da1: Fixed Direct Access SCSI-6 device > >>>> da1: 300.000MB/s transfers > >>>> da1: Command Queueing enabled > >>>> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da2 at mps0 bus 0 scbus0 target 10 lun 0 > >>>> da2: Fixed Direct Access SCSI-6 device > >>>> da2: 300.000MB/s transfers > >>>> da2: Command Queueing enabled > >>>> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da3 at mps0 bus 0 scbus0 target 11 lun 0 > >>>> da3: Fixed Direct Access SCSI-6 device > >>>> da3: 300.000MB/s transfers > >>>> da3: Command Queueing enabled > >>>> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da4 at mps0 bus 0 scbus0 target 12 lun 0 > >>>> da4: Fixed Direct Access SCSI-6 device > >>>> da4: 300.000MB/s transfers > >>>> da4: Command Queueing enabled > >>>> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da5 at mps0 bus 0 scbus0 target 13 lun 0 > >>>> da5: Fixed Direct Access SCSI-6 device > >>>> da5: 150.000MB/s transfers > >>>> da5: Command Queueing enabled > >>>> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da8 at mps0 bus 0 scbus0 target 19 lun 0 > >>>> da8: Fixed Direct Access SCSI-6 device > >>>> da8: 300.000MB/s transfers > >>>> da8: Command Queueing enabled > >>>> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da9 at mps0 bus 0 scbus0 target 20 lun 0 > >>>> da9: Fixed Direct Access SCSI-6 device > >>>> da9: 300.000MB/s transfers > >>>> da9: Command Queueing enabled > >>>> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da11 at mps0 bus 0 scbus0 target 22 lun 0 > >>>> da11: Fixed Direct Access SCSI-6 device > >>>> da11: 150.000MB/s transfers > >>>> da11: Command Queueing enabled > >>>> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da12 at mps0 bus 0 scbus0 target 23 lun 0 > >>>> da12: Fixed Direct Access SCSI-6 device > >>>> da12: 150.000MB/s transfers > >>>> da12: Command Queueing enabled > >>>> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da13 at mps0 bus 0 scbus0 target 24 lun 0 > >>>> da13: Fixed Direct Access SCSI-6 device > >>>> da13: 150.000MB/s transfers > >>>> da13: Command Queueing enabled > >>>> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da14 at mps0 bus 0 scbus0 target 27 lun 0 > >>>> da14: Fixed Direct Access SCSI-6 device > >>>> da14: 300.000MB/s transfers > >>>> da14: Command Queueing enabled > >>>> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> da15 at mps0 bus 0 scbus0 target 28 lun 0 > >>>> da15: Fixed Direct Access SCSI-6 device > >>>> da15: 150.000MB/s transfers > >>>> da15: Command Queueing enabled > >>>> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> ses0 at mps0 bus 0 scbus0 target 16 lun 0 > >>>> ses0: Fixed Enclosure Services SCSI-5 > device > >>>> ses0: 600.000MB/s transfers > >>>> ses0: Command Queueing enabled > >>>> ses0: SCSI-3 SES Device > >>>> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 > >>>> ada0: ATA-7 SATA 1.x device > >>>> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) > >>>> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) > >>>> ada0: Previously was known as ad4 > >>>> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 > >>>> SMP: AP CPU #3 Launched! > >>>> cd0: Removable CD-ROM SCSI-0 > device > >>>> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO > >>>> 8192bytes) > >>>> cd0: Attempt to query device size failed: NOT READY, Medium not > >> present > >>>> - tray closed > >>>> SMP: AP CPU #2 Launched! > >>>> SMP: AP CPU #1 Launched! > >>>> da6 at mps0 bus 0 scbus0 target 17 lun 0 > >>>> da6: Fixed Direct Access SCSI-6 device > >>>> da6: 150.000MB/s transfers > >>>> da6: Command Queueing enabled > >>>> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da7 at mps0 bus 0 scbus0 target 18 lun 0 > >>>> da7: Fixed Direct Access SCSI-6 device > >>>> da7: 150.000MB/s transfers > >>>> da7: Command Queueing enabled > >>>> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>> da10 at mps0 bus 0 scbus0 target 21 lun 0 > >>>> da10: Fixed Direct Access SCSI-6 device > >>>> da10: 300.000MB/s transfers > >>>> da10: Command Queueing enabled > >>>> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>> GEOM: da15s1: geometry does not match label (16h,63s !=3D 255h,63s). > >>>> uhub1: 2 ports with 2 removable, self powered > >>>> uhub0: 2 ports with 2 removable, self powered > >>>> Root mount waiting for: usbus1 usbus0 > >>>> ugen0.2: at usbus0 > >>>> uhub2: >> 2> > >>>> on usbus0 > >>>> ugen1.2: at usbus1 > >>>> uhub3: >> 2> > >>>> on usbus1 > >>>> Root mount waiting for: usbus1 usbus0 > >>>> uhub3: 6 ports with 6 removable, self powered > >>>> uhub2: 6 ports with 6 removable, self powered > >>>> ugen0.3: at usbus0 > >>>> ums0: 0/0, > >>>> rev 1.10/0.01, addr 3> on usbus0 > >>>> ums0: 3 buttons and [Z] coordinates ID=3D0 > >>>> ukbd0: >> 0/0, > >>>> rev 1.10/0.01, addr 3> on usbus0 > >>>> kbd2 at ukbd0 > >>>> Trying to mount root from ufs:/dev/ada0p2 [rw]... > >>>> em0: link state changed to UP > >>>> > >>>> thanks for your work. > >>>> > >>>> regards > >>>> Johan > >>>> > >>>> > >>>> > >>>> > >>>> _______________________________________________ > >>>> freebsd-stable@freebsd.org mailing list > >>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable > >>>> To unsubscribe, send any mail to "freebsd-stable- > >>>> unsubscribe@freebsd.org" > >> Ok i will try the patch, no hurry, i am back at the office on > monday... > >> regards > >> Johan > > Ok i applied the patch, hopefully i did it right. > I saw some failed hunk, but forgot to save the .rej files. You can observe if those hunk failure and if those are minor, we can ignore= it. > > But the camcontrol rescan all command came back. > filer01# camcontrol rescan all > Re-scan of bus 0 was successful > Re-scan of bus 1 was successful > Re-scan of bus 2 was successful > Re-scan of bus 3 was successful > Re-scan of bus 4 was successful > Re-scan of bus 5 was successful > Re-scan of bus 6 was successful > I will post this logical changes to freebsd current. ~ Kashyap > if you need more info, let me know. Nope. Since things are working for your I don't need any details. :-) > > regards > Johan From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 17:23:26 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5514E106566B for ; Fri, 3 Feb 2012 17:23:26 +0000 (UTC) (envelope-from joh.hendriks@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id D0E458FC08 for ; Fri, 3 Feb 2012 17:23:25 +0000 (UTC) Received: by werm13 with SMTP id m13so4550456wer.13 for ; Fri, 03 Feb 2012 09:23:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=T9/F50Kzu3F2RtCS+afXiDN3eQr1xVLD2b1tyB17c2g=; b=rPATN7Vkeb2jkYV5TZcYCofICAu/SiwJng6CNyul+BFknGfv+L5R22M0ZQ+Zihrqai sNjmnvivLm4lY3ihSnJyEUD5l4Ba46iy1/yQzkKTomhoeaOTihbpm3HhGCTn6zzlTWes IAP9Rzqc/bXlC7hSOEG1rAP8TmwJQhHpFgCm0= Received: by 10.216.139.161 with SMTP id c33mr6704254wej.53.1328289804616; Fri, 03 Feb 2012 09:23:24 -0800 (PST) Received: from [192.168.50.103] (double-l.xs4all.nl. [80.126.205.144]) by mx.google.com with ESMTPS id q2sm7962249wiy.7.2012.02.03.09.23.23 (version=SSLv3 cipher=OTHER); Fri, 03 Feb 2012 09:23:24 -0800 (PST) Message-ID: <4F2C1805.60209@gmail.com> Date: Fri, 03 Feb 2012 18:23:17 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0) Gecko/20120129 Thunderbird/10.0 MIME-Version: 1.0 To: "Desai, Kashyap" References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> <4F2C0BF6.8050701@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 17:23:26 -0000 Desai, Kashyap schreef: > >> -----Original Message----- >> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] >> Sent: Friday, February 03, 2012 10:02 PM >> To: Desai, Kashyap >> Cc: freebsd-stable >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >> >> Desai, Kashyap schreef: >>> Try attached patch.! (This patch is not taken against upstream code, >> so you may see some hunk fail.) >>> ~ Kashyap >>> >>>> -----Original Message----- >>>> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] >>>> Sent: Friday, February 03, 2012 8:42 PM >>>> To: Desai, Kashyap >>>> Cc: freebsd-stable >>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >>>> >>>> Desai, Kashyap schreef: >>>>> Hi Johan, >>>>> >>>>> I have already figure out this issue in our lab. >>>>> >>>>> I also have fix for this issue. (Just don't want to create >> regression, >>>> that is why I have not posted outside) >>>>> Since you have seen similar issue, It is worth to try my patch. >>>>> >>>>> My machine is not getting IP right now. I will send you patch once >> my >>>> machine is in network ? >>>>> ~ Kashyap >>>>> >>>>> >>>>>> -----Original Message----- >>>>>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- >>>>>> stable@freebsd.org] On Behalf Of Johan Hendriks >>>>>> Sent: Friday, February 03, 2012 8:13 PM >>>>>> To: Kenneth D. Merry >>>>>> Cc: freebsd-stable >>>>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 >>>>>> >>>>>> Kenneth D. Merry schreef: >>>>>>> Hi folks, >>>>>>> >>>>>>> The LSI-supported version of the mps(4) driver that supports their >>>> 6Gb >>>>>> SAS >>>>>>> HBAs as well as WarpDrive controllers, is now in stable/9 and >>>>>> stable/8. >>>>>>> Please test it out and let me and Kashyap (CCed) know if you run >>>> into >>>>>>> any problems. >>>>>>> >>>>>>> In addition to supporting WarpDrive, the driver also supports >>>>>> Integrated >>>>>>> RAID. >>>>>>> >>>>>>> Thanks to LSI for doing the work on this driver! >>>>>>> >>>>>>> Note that the CAM infrastructure changes that went into >> FreeBSD/head >>>>>> along >>>>>>> with this driver have not gone into either stable/9 or stable/8. >>>> Only >>>>>> the >>>>>>> driver itself has been merged. >>>>>>> >>>>>>> The CAM infrastructure changes depend on some other da(4) driver >>>>>> changes >>>>>>> that will need to get merged before they can go back. If that >> merge >>>>>>> happens, it will probably only be into stable/9. >>>>>>> >>>>>>> A couple of notes about issues with this driver: >>>>>>> >>>>>>> - Unlike the previous mps(4) driver, it probes sequentially. >> If >>>> you >>>>>> have >>>>>>> a lot of drives in your system, it will take a while to >> probe >>>> them >>>>>> all. >>>>>>> - You may see warning messages like this: >>>>>>> >>>>>>> _mapping_add_new_device: failed to add the device with handle >> 0x0019 >>>>>> to persiste >>>>>>> nt table because there is no free space available >>>>>>> _mapping_add_new_device: failed to add the device with handle >> 0x001a >>>>>> to persiste >>>>>>> nt table because there is no free space available >>>>>>> >>>>>>> - The driver is not endian safe. (It assumes a little endian >>>>>> machine.) >>>>>>> This is not new, the previous version of the driver had the >>>> same >>>>>> issue. >>>>>>> The LSI folks know about these issues. The driver has passed >> their >>>>>> testing >>>>>>> process. >>>>>>> >>>>>>> Many thanks to LSI for going through the effort to support >> FreeBSD. >>>>>>> Ken >>>>>> Hello Ken. >>>>>> >>>>>> Just updated our 16 bay server. did a csup today. >>>>>> did try some commands, it looked like the drives got husseled. >>>>>> >>>>>> But after giving the command camcontrol rescan all it does not give >>>> back >>>>>> the prompt. >>>>>> Also top shows me the following. >>>>>> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% >>>>>> camcontrol >>>>>> >>>>>> # on another console things works >>>>>> filer01# camcontrol devlist >>>>>> at scbus0 target 8 lun 0 >>>> (pass0,da0) >>>>>> at scbus0 target 9 lun 0 >>>> (pass1,da1) >>>>>> at scbus0 target 10 lun 0 >>>> (pass2,da2) >>>>>> at scbus0 target 11 lun 0 >>>> (pass3,da3) >>>>>> at scbus0 target 12 lun 0 >>>> (pass4,da4) >>>>>> at scbus0 target 13 lun 0 >>>> (pass5,da5) >>>>>> at scbus0 target 16 lun 0 >>>>>> (probe16,ses0,pass6) >>>>>> at scbus0 target 17 lun 0 >>>> (pass7,da6) >>>>>> at scbus0 target 18 lun 0 >>>> (pass8,da7) >>>>>> at scbus0 target 19 lun 0 >>>> (pass9,da8) >>>>>> at scbus0 target 20 lun 0 >>>>>> (pass10,da9) >>>>>> at scbus0 target 21 lun 0 >>>>>> (pass11,da10) >>>>>> at scbus0 target 22 lun 0 >>>>>> (pass12,da11) >>>>>> at scbus0 target 23 lun 0 >>>>>> (pass13,da12) >>>>>> at scbus0 target 24 lun 0 >>>>>> (pass14,da13) >>>>>> at scbus0 target 27 lun 0 >>>>>> (pass15,da14) >>>>>> at scbus0 target 28 lun 0 >>>>>> (pass16,da15) >>>>>> at scbus1 target 0 lun 0 >>>>>> (ada0,pass17) >>>>>> at scbus3 target 0 lun 0 >>>> (pass18,cd0) >>>>>> The controller is a LSI 9211-8i with IT firmware. >>>>>> >>>>>> here is the dmesg >>>>>> Copyright (c) 1992-2012 The FreeBSD Project. >>>>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, >>>> 1994 >>>>>> The Regents of the University of California. All rights >>>>>> reserved. >>>>>> FreeBSD is a registered trademark of The FreeBSD Foundation. >>>>>> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 >>>>>> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL amd64 >>>>>> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class >> CPU) >>>>>> Origin = "GenuineIntel" Id = 0x206a7 Family = 6 Model = 2a >>>>>> Stepping = 7 >>>>>> >>>>>> >> Features=0xbfebfbff> ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> >>>>>> >> Features2=0x15bae3ff> SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> >>>>>> AMD Features=0x28100800 >>>>>> AMD Features2=0x1 >>>>>> TSC: P-state invariant, performance statistics >>>>>> real memory = 17179869184 (16384 MB) >>>>>> avail memory = 16493441024 (15729 MB) >>>>>> Event timer "LAPIC" quality 600 >>>>>> ACPI APIC Table: >>>>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs >>>>>> FreeBSD/SMP: 1 package(s) x 4 core(s) >>>>>> cpu0 (BSP): APIC ID: 0 >>>>>> cpu1 (AP): APIC ID: 2 >>>>>> cpu2 (AP): APIC ID: 4 >>>>>> cpu3 (AP): APIC ID: 6 >>>>>> ioapic0 irqs 0-23 on motherboard >>>>>> kbd1 at kbdmux0 >>>>>> acpi0: on motherboard >>>>>> acpi0: Power Button (fixed) >>>>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 >>>>>> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on >> acpi0 >>>>>> cpu0: on acpi0 >>>>>> cpu1: on acpi0 >>>>>> cpu2: on acpi0 >>>>>> cpu3: on acpi0 >>>>>> pcib0: port 0xcf8-0xcff on acpi0 >>>>>> pci0: on pcib0 >>>>>> pcib1: irq 19 at device 6.0 on pci0 >>>>>> pci1: on pcib1 >>>>>> mps0: port 0xe000-0xe0ff mem 0xfb600000-0xfb603fff >> irq >>>> 19 >>>>>> at device 0.0 on pci1 >>>>>> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd >>>>>> mps0: IOCCapabilities: >>>>>> >> 1285c>>>>> c> >>>>>> em0: port 0xf020- >> 0xf03f >>>> mem >>>>>> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 >> on >>>>>> pci0 >>>>>> em0: Using an MSI interrupt >>>>>> em0: Ethernet address: 00:25:90:57:20:bd >>>>>> ehci0: mem 0xfb823000- >> 0xfb8233ff >>>> irq >>>>>> 16 at device 26.0 on pci0 >>>>>> usbus0: EHCI version 1.0 >>>>>> usbus0: on ehci0 >>>>>> pcib2: irq 17 at device 28.0 on pci0 >>>>>> pci2: on pcib2 >>>>>> pcib3: irq 17 at device 28.4 on pci0 >>>>>> pci3: on pcib3 >>>>>> em1: port 0xd000- >> 0xd01f >>>> mem >>>>>> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 on >>>> pci3 >>>>>> em1: Using MSIX interrupts with 3 vectors >>>>>> em1: Ethernet address: 00:25:90:57:20:bc >>>>>> ehci1: mem 0xfb822000- >> 0xfb8223ff >>>> irq >>>>>> 23 at device 29.0 on pci0 >>>>>> usbus1: EHCI version 1.0 >>>>>> usbus1: on ehci1 >>>>>> pcib4: at device 30.0 on pci0 >>>>>> pci4: on pcib4 >>>>>> vgapci0: mem >>>>>> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff >> irq >>>> 23 >>>>>> at device 3.0 on pci4 >>>>>> isab0: at device 31.0 on pci0 >>>>>> isa0: on isab0 >>>>>> ahci0: port >>>>>> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000- >> 0xf01f >>>>>> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 >>>>>> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported >>>>>> ahcich0: at channel 0 on ahci0 >>>>>> ahcich1: at channel 1 on ahci0 >>>>>> ahcich2: at channel 2 on ahci0 >>>>>> ahcich3: at channel 3 on ahci0 >>>>>> ahcich4: at channel 4 on ahci0 >>>>>> ahcich5: at channel 5 on ahci0 >>>>>> pci0: at device 31.3 (no driver attached) >>>>>> acpi_button0: on acpi0 >>>>>> hpet0: iomem 0xfed00000-0xfed003ff on >>>> acpi0 >>>>>> ahcich0: at channel 0 on ahci0 >>>>>> ahcich1: at channel 1 on ahci0 >>>>>> ahcich2: at channel 2 on ahci0 >>>>>> ahcich3: at channel 3 on ahci0 >>>>>> ahcich4: at channel 4 on ahci0 >>>>>> ahcich5: at channel 5 on ahci0 >>>>>> pci0: at device 31.3 (no driver attached) >>>>>> acpi_button0: on acpi0 >>>>>> hpet0: iomem 0xfed00000-0xfed003ff on >>>> acpi0 >>>>>> Timecounter "HPET" frequency 14318180 Hz quality 950 >>>>>> Event timer "HPET" frequency 14318180 Hz quality 550 >>>>>> Event timer "HPET1" frequency 14318180 Hz quality 440 >>>>>> Event timer "HPET2" frequency 14318180 Hz quality 440 >>>>>> Event timer "HPET3" frequency 14318180 Hz quality 440 >>>>>> Event timer "HPET4" frequency 14318180 Hz quality 440 >>>>>> attimer0: port 0x40-0x43 irq 0 on acpi0 >>>>>> Timecounter "i8254" frequency 1193182 Hz quality 0 >>>>>> Event timer "i8254" frequency 1193182 Hz quality 100 >>>>>> atrtc0: port 0x70-0x71 irq 8 on acpi0 >>>>>> Event timer "RTC" frequency 32768 Hz quality 0 >>>>>> atkbdc0: port 0x60,0x64 irq 1 on >> acpi0 >>>>>> atkbd0: irq 1 on atkbdc0 >>>>>> kbd0 at atkbd0 >>>>>> atkbd0: [GIANT-LOCKED] >>>>>> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on >>>> acpi0 >>>>>> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 >>>>>> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 >>>>>> orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xcdfff >> on >>>> isa0 >>>>>> sc0: at flags 0x100 on isa0 >>>>>> sc0: VGA<16 virtual consoles, flags=0x300> >>>>>> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff >> on >>>>>> isa0 >>>>>> ppc0: cannot reserve I/O port range >>>>>> est0: on cpu0 >>>>>> p4tcc0: on cpu0 >>>>>> est1: on cpu1 >>>>>> p4tcc1: on cpu1 >>>>>> est2: on cpu2 >>>>>> p4tcc2: on cpu2 >>>>>> est3: on cpu3 >>>>>> p4tcc3: on cpu3 >>>>>> ZFS filesystem version 5 >>>>>> ZFS storage pool version 28 >>>>>> Timecounters tick every 1.000 msec >>>>>> usbus0: 480Mbps High Speed USB v2.0 >>>>>> usbus1: 480Mbps High Speed USB v2.0 >>>>>> ugen0.1: at usbus0 >>>>>> uhub0: on >>>> usbus0 >>>>>> ugen1.1: at usbus1 >>>>>> uhub1: on >>>> usbus1 >>>>>> da0 at mps0 bus 0 scbus0 target 8 lun 0 >>>>>> da0: Fixed Direct Access SCSI-6 device >>>>>> da0: 300.000MB/s transfers >>>>>> da0: Command Queueing enabled >>>>>> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da1 at mps0 bus 0 scbus0 target 9 lun 0 >>>>>> da1: Fixed Direct Access SCSI-6 device >>>>>> da1: 300.000MB/s transfers >>>>>> da1: Command Queueing enabled >>>>>> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da2 at mps0 bus 0 scbus0 target 10 lun 0 >>>>>> da2: Fixed Direct Access SCSI-6 device >>>>>> da2: 300.000MB/s transfers >>>>>> da2: Command Queueing enabled >>>>>> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da3 at mps0 bus 0 scbus0 target 11 lun 0 >>>>>> da3: Fixed Direct Access SCSI-6 device >>>>>> da3: 300.000MB/s transfers >>>>>> da3: Command Queueing enabled >>>>>> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da4 at mps0 bus 0 scbus0 target 12 lun 0 >>>>>> da4: Fixed Direct Access SCSI-6 device >>>>>> da4: 300.000MB/s transfers >>>>>> da4: Command Queueing enabled >>>>>> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da5 at mps0 bus 0 scbus0 target 13 lun 0 >>>>>> da5: Fixed Direct Access SCSI-6 device >>>>>> da5: 150.000MB/s transfers >>>>>> da5: Command Queueing enabled >>>>>> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da8 at mps0 bus 0 scbus0 target 19 lun 0 >>>>>> da8: Fixed Direct Access SCSI-6 device >>>>>> da8: 300.000MB/s transfers >>>>>> da8: Command Queueing enabled >>>>>> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da9 at mps0 bus 0 scbus0 target 20 lun 0 >>>>>> da9: Fixed Direct Access SCSI-6 device >>>>>> da9: 300.000MB/s transfers >>>>>> da9: Command Queueing enabled >>>>>> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da11 at mps0 bus 0 scbus0 target 22 lun 0 >>>>>> da11: Fixed Direct Access SCSI-6 device >>>>>> da11: 150.000MB/s transfers >>>>>> da11: Command Queueing enabled >>>>>> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da12 at mps0 bus 0 scbus0 target 23 lun 0 >>>>>> da12: Fixed Direct Access SCSI-6 device >>>>>> da12: 150.000MB/s transfers >>>>>> da12: Command Queueing enabled >>>>>> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da13 at mps0 bus 0 scbus0 target 24 lun 0 >>>>>> da13: Fixed Direct Access SCSI-6 device >>>>>> da13: 150.000MB/s transfers >>>>>> da13: Command Queueing enabled >>>>>> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da14 at mps0 bus 0 scbus0 target 27 lun 0 >>>>>> da14: Fixed Direct Access SCSI-6 device >>>>>> da14: 300.000MB/s transfers >>>>>> da14: Command Queueing enabled >>>>>> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> da15 at mps0 bus 0 scbus0 target 28 lun 0 >>>>>> da15: Fixed Direct Access SCSI-6 device >>>>>> da15: 150.000MB/s transfers >>>>>> da15: Command Queueing enabled >>>>>> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> ses0 at mps0 bus 0 scbus0 target 16 lun 0 >>>>>> ses0: Fixed Enclosure Services SCSI-5 >> device >>>>>> ses0: 600.000MB/s transfers >>>>>> ses0: Command Queueing enabled >>>>>> ses0: SCSI-3 SES Device >>>>>> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 >>>>>> ada0: ATA-7 SATA 1.x device >>>>>> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) >>>>>> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) >>>>>> ada0: Previously was known as ad4 >>>>>> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 >>>>>> SMP: AP CPU #3 Launched! >>>>>> cd0: Removable CD-ROM SCSI-0 >> device >>>>>> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO >>>>>> 8192bytes) >>>>>> cd0: Attempt to query device size failed: NOT READY, Medium not >>>> present >>>>>> - tray closed >>>>>> SMP: AP CPU #2 Launched! >>>>>> SMP: AP CPU #1 Launched! >>>>>> da6 at mps0 bus 0 scbus0 target 17 lun 0 >>>>>> da6: Fixed Direct Access SCSI-6 device >>>>>> da6: 150.000MB/s transfers >>>>>> da6: Command Queueing enabled >>>>>> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da7 at mps0 bus 0 scbus0 target 18 lun 0 >>>>>> da7: Fixed Direct Access SCSI-6 device >>>>>> da7: 150.000MB/s transfers >>>>>> da7: Command Queueing enabled >>>>>> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) >>>>>> da10 at mps0 bus 0 scbus0 target 21 lun 0 >>>>>> da10: Fixed Direct Access SCSI-6 device >>>>>> da10: 300.000MB/s transfers >>>>>> da10: Command Queueing enabled >>>>>> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) >>>>>> GEOM: da15s1: geometry does not match label (16h,63s != 255h,63s). >>>>>> uhub1: 2 ports with 2 removable, self powered >>>>>> uhub0: 2 ports with 2 removable, self powered >>>>>> Root mount waiting for: usbus1 usbus0 >>>>>> ugen0.2: at usbus0 >>>>>> uhub2:>>> 2> >>>>>> on usbus0 >>>>>> ugen1.2: at usbus1 >>>>>> uhub3:>>> 2> >>>>>> on usbus1 >>>>>> Root mount waiting for: usbus1 usbus0 >>>>>> uhub3: 6 ports with 6 removable, self powered >>>>>> uhub2: 6 ports with 6 removable, self powered >>>>>> ugen0.3: at usbus0 >>>>>> ums0:> 0/0, >>>>>> rev 1.10/0.01, addr 3> on usbus0 >>>>>> ums0: 3 buttons and [Z] coordinates ID=0 >>>>>> ukbd0:>>> 0/0, >>>>>> rev 1.10/0.01, addr 3> on usbus0 >>>>>> kbd2 at ukbd0 >>>>>> Trying to mount root from ufs:/dev/ada0p2 [rw]... >>>>>> em0: link state changed to UP >>>>>> >>>>>> thanks for your work. >>>>>> >>>>>> regards >>>>>> Johan >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> freebsd-stable@freebsd.org mailing list >>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >>>>>> To unsubscribe, send any mail to "freebsd-stable- >>>>>> unsubscribe@freebsd.org" >>>> Ok i will try the patch, no hurry, i am back at the office on >> monday... >>>> regards >>>> Johan >> Ok i applied the patch, hopefully i did it right. >> I saw some failed hunk, but forgot to save the .rej files. > You can observe if those hunk failure and if those are minor, we can ignore it. > >> But the camcontrol rescan all command came back. >> filer01# camcontrol rescan all >> Re-scan of bus 0 was successful >> Re-scan of bus 1 was successful >> Re-scan of bus 2 was successful >> Re-scan of bus 3 was successful >> Re-scan of bus 4 was successful >> Re-scan of bus 5 was successful >> Re-scan of bus 6 was successful >> > I will post this logical changes to freebsd current. > > ~ Kashyap > > >> if you need more info, let me know. > Nope. Since things are working for your I don't need any details. :-) > >> regards >> Johan i looked for .rej files on my system, and this is the only one. vi /usr/src/sys/dev/mps/mps_sas.c.rej it contains the following *************** *** 2852,2858 **** do { rcap_buf = malloc(sizeof(struct scsi_read_capacity_eedp), - M_MPT2, M_WAITOK | M_ZERO); if (rcap_buf == NULL) { mps_dprint(sc, MPS_FAULT, "Unable to alloc read " "capacity buffer for EEDP support.\n"); --- 3164,3170 ---- do { rcap_buf = malloc(sizeof(struct scsi_read_capacity_eedp), + M_MPT2, M_NOWAIT| M_ZERO); if (rcap_buf == NULL) { mps_dprint(sc, MPS_FAULT, "Unable to alloc read " "capacity buffer for EEDP support.\n"); ~ regards Johan From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 17:29:08 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4F801065670 for ; Fri, 3 Feb 2012 17:29:08 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog111.obsmtp.com (na3sys009aog111.obsmtp.com [74.125.149.205]) by mx1.freebsd.org (Postfix) with ESMTP id 0538E8FC12 for ; Fri, 3 Feb 2012 17:29:07 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob111.postini.com ([74.125.148.12]) with SMTP ID DSNKTywZY+N/gJEvbHVJ+mW+bGfZR76+s8Un@postini.com; Fri, 03 Feb 2012 09:29:08 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 12:33:34 -0500 Received: from inbexch01.lsi.com (135.36.98.37) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Fri, 3 Feb 2012 12:29:04 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch01.lsi.com ([135.36.98.37]) with mapi; Fri, 3 Feb 2012 22:59:01 +0530 From: "Desai, Kashyap" To: Johan Hendriks Date: Fri, 3 Feb 2012 22:59:00 +0530 Thread-Topic: LSI supported mps(4) driver in stable/9 and stable/8 Thread-Index: AczimIzhkYv4QRX9RyqLUlYCVI154AAAKo+g Message-ID: References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> <4F2C0BF6.8050701@gmail.com> <4F2C1805.60209@gmail.com> In-Reply-To: <4F2C1805.60209@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: freebsd-stable Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 17:29:08 -0000 > -----Original Message----- > From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > Sent: Friday, February 03, 2012 10:53 PM > To: Desai, Kashyap > Cc: freebsd-stable > Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > Desai, Kashyap schreef: > > > >> -----Original Message----- > >> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > >> Sent: Friday, February 03, 2012 10:02 PM > >> To: Desai, Kashyap > >> Cc: freebsd-stable > >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >> > >> Desai, Kashyap schreef: > >>> Try attached patch.! (This patch is not taken against upstream code, > >> so you may see some hunk fail.) > >>> ~ Kashyap > >>> > >>>> -----Original Message----- > >>>> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > >>>> Sent: Friday, February 03, 2012 8:42 PM > >>>> To: Desai, Kashyap > >>>> Cc: freebsd-stable > >>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >>>> > >>>> Desai, Kashyap schreef: > >>>>> Hi Johan, > >>>>> > >>>>> I have already figure out this issue in our lab. > >>>>> > >>>>> I also have fix for this issue. (Just don't want to create > >> regression, > >>>> that is why I have not posted outside) > >>>>> Since you have seen similar issue, It is worth to try my patch. > >>>>> > >>>>> My machine is not getting IP right now. I will send you patch once > >> my > >>>> machine is in network ? > >>>>> ~ Kashyap > >>>>> > >>>>> > >>>>>> -----Original Message----- > >>>>>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > >>>>>> stable@freebsd.org] On Behalf Of Johan Hendriks > >>>>>> Sent: Friday, February 03, 2012 8:13 PM > >>>>>> To: Kenneth D. Merry > >>>>>> Cc: freebsd-stable > >>>>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > >>>>>> > >>>>>> Kenneth D. Merry schreef: > >>>>>>> Hi folks, > >>>>>>> > >>>>>>> The LSI-supported version of the mps(4) driver that supports > their > >>>> 6Gb > >>>>>> SAS > >>>>>>> HBAs as well as WarpDrive controllers, is now in stable/9 and > >>>>>> stable/8. > >>>>>>> Please test it out and let me and Kashyap (CCed) know if you run > >>>> into > >>>>>>> any problems. > >>>>>>> > >>>>>>> In addition to supporting WarpDrive, the driver also supports > >>>>>> Integrated > >>>>>>> RAID. > >>>>>>> > >>>>>>> Thanks to LSI for doing the work on this driver! > >>>>>>> > >>>>>>> Note that the CAM infrastructure changes that went into > >> FreeBSD/head > >>>>>> along > >>>>>>> with this driver have not gone into either stable/9 or stable/8. > >>>> Only > >>>>>> the > >>>>>>> driver itself has been merged. > >>>>>>> > >>>>>>> The CAM infrastructure changes depend on some other da(4) driver > >>>>>> changes > >>>>>>> that will need to get merged before they can go back. If that > >> merge > >>>>>>> happens, it will probably only be into stable/9. > >>>>>>> > >>>>>>> A couple of notes about issues with this driver: > >>>>>>> > >>>>>>> - Unlike the previous mps(4) driver, it probes > sequentially. > >> If > >>>> you > >>>>>> have > >>>>>>> a lot of drives in your system, it will take a while to > >> probe > >>>> them > >>>>>> all. > >>>>>>> - You may see warning messages like this: > >>>>>>> > >>>>>>> _mapping_add_new_device: failed to add the device with handle > >> 0x0019 > >>>>>> to persiste > >>>>>>> nt table because there is no free space available > >>>>>>> _mapping_add_new_device: failed to add the device with handle > >> 0x001a > >>>>>> to persiste > >>>>>>> nt table because there is no free space available > >>>>>>> > >>>>>>> - The driver is not endian safe. (It assumes a little > endian > >>>>>> machine.) > >>>>>>> This is not new, the previous version of the driver had > the > >>>> same > >>>>>> issue. > >>>>>>> The LSI folks know about these issues. The driver has passed > >> their > >>>>>> testing > >>>>>>> process. > >>>>>>> > >>>>>>> Many thanks to LSI for going through the effort to support > >> FreeBSD. > >>>>>>> Ken > >>>>>> Hello Ken. > >>>>>> > >>>>>> Just updated our 16 bay server. did a csup today. > >>>>>> did try some commands, it looked like the drives got husseled. > >>>>>> > >>>>>> But after giving the command camcontrol rescan all it does not > give > >>>> back > >>>>>> the prompt. > >>>>>> Also top shows me the following. > >>>>>> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 0.00% > >>>>>> camcontrol > >>>>>> > >>>>>> # on another console things works > >>>>>> filer01# camcontrol devlist > >>>>>> at scbus0 target 8 lun 0 > >>>> (pass0,da0) > >>>>>> at scbus0 target 9 lun 0 > >>>> (pass1,da1) > >>>>>> at scbus0 target 10 lun 0 > >>>> (pass2,da2) > >>>>>> at scbus0 target 11 lun 0 > >>>> (pass3,da3) > >>>>>> at scbus0 target 12 lun 0 > >>>> (pass4,da4) > >>>>>> at scbus0 target 13 lun 0 > >>>> (pass5,da5) > >>>>>> at scbus0 target 16 lun 0 > >>>>>> (probe16,ses0,pass6) > >>>>>> at scbus0 target 17 lun 0 > >>>> (pass7,da6) > >>>>>> at scbus0 target 18 lun 0 > >>>> (pass8,da7) > >>>>>> at scbus0 target 19 lun 0 > >>>> (pass9,da8) > >>>>>> at scbus0 target 20 lun 0 > >>>>>> (pass10,da9) > >>>>>> at scbus0 target 21 lun 0 > >>>>>> (pass11,da10) > >>>>>> at scbus0 target 22 lun 0 > >>>>>> (pass12,da11) > >>>>>> at scbus0 target 23 lun 0 > >>>>>> (pass13,da12) > >>>>>> at scbus0 target 24 lun 0 > >>>>>> (pass14,da13) > >>>>>> at scbus0 target 27 lun 0 > >>>>>> (pass15,da14) > >>>>>> at scbus0 target 28 lun 0 > >>>>>> (pass16,da15) > >>>>>> at scbus1 target 0 lun 0 > >>>>>> (ada0,pass17) > >>>>>> at scbus3 target 0 lun 0 > >>>> (pass18,cd0) > >>>>>> The controller is a LSI 9211-8i with IT firmware. > >>>>>> > >>>>>> here is the dmesg > >>>>>> Copyright (c) 1992-2012 The FreeBSD Project. > >>>>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, > 1993, > >>>> 1994 > >>>>>> The Regents of the University of California. All > rights > >>>>>> reserved. > >>>>>> FreeBSD is a registered trademark of The FreeBSD Foundation. > >>>>>> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 > >>>>>> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL > amd64 > >>>>>> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8-class > >> CPU) > >>>>>> Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 6 Mod= el =3D > 2a > >>>>>> Stepping =3D 7 > >>>>>> > >>>>>> > >> > Features=3D0xbfebfbff >> ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > >>>>>> > >> > Features2=3D0x15bae3ff >> SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> > >>>>>> AMD Features=3D0x28100800 > >>>>>> AMD Features2=3D0x1 > >>>>>> TSC: P-state invariant, performance statistics > >>>>>> real memory =3D 17179869184 (16384 MB) > >>>>>> avail memory =3D 16493441024 (15729 MB) > >>>>>> Event timer "LAPIC" quality 600 > >>>>>> ACPI APIC Table: > >>>>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs > >>>>>> FreeBSD/SMP: 1 package(s) x 4 core(s) > >>>>>> cpu0 (BSP): APIC ID: 0 > >>>>>> cpu1 (AP): APIC ID: 2 > >>>>>> cpu2 (AP): APIC ID: 4 > >>>>>> cpu3 (AP): APIC ID: 6 > >>>>>> ioapic0 irqs 0-23 on motherboard > >>>>>> kbd1 at kbdmux0 > >>>>>> acpi0: on motherboard > >>>>>> acpi0: Power Button (fixed) > >>>>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > >>>>>> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b on > >> acpi0 > >>>>>> cpu0: on acpi0 > >>>>>> cpu1: on acpi0 > >>>>>> cpu2: on acpi0 > >>>>>> cpu3: on acpi0 > >>>>>> pcib0: port 0xcf8-0xcff on acpi0 > >>>>>> pci0: on pcib0 > >>>>>> pcib1: irq 19 at device 6.0 on pci0 > >>>>>> pci1: on pcib1 > >>>>>> mps0: port 0xe000-0xe0ff mem 0xfb600000- > 0xfb603fff > >> irq > >>>> 19 > >>>>>> at device 0.0 on pci1 > >>>>>> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd > >>>>>> mps0: IOCCapabilities: > >>>>>> > >> > 1285c >>>>>> c> > >>>>>> em0: port 0xf020- > >> 0xf03f > >>>> mem > >>>>>> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device 25.0 > >> on > >>>>>> pci0 > >>>>>> em0: Using an MSI interrupt > >>>>>> em0: Ethernet address: 00:25:90:57:20:bd > >>>>>> ehci0: mem 0xfb823000- > >> 0xfb8233ff > >>>> irq > >>>>>> 16 at device 26.0 on pci0 > >>>>>> usbus0: EHCI version 1.0 > >>>>>> usbus0: on ehci0 > >>>>>> pcib2: irq 17 at device 28.0 on pci0 > >>>>>> pci2: on pcib2 > >>>>>> pcib3: irq 17 at device 28.4 on pci0 > >>>>>> pci3: on pcib3 > >>>>>> em1: port 0xd000- > >> 0xd01f > >>>> mem > >>>>>> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device 0.0 > on > >>>> pci3 > >>>>>> em1: Using MSIX interrupts with 3 vectors > >>>>>> em1: Ethernet address: 00:25:90:57:20:bc > >>>>>> ehci1: mem 0xfb822000- > >> 0xfb8223ff > >>>> irq > >>>>>> 23 at device 29.0 on pci0 > >>>>>> usbus1: EHCI version 1.0 > >>>>>> usbus1: on ehci1 > >>>>>> pcib4: at device 30.0 on pci0 > >>>>>> pci4: on pcib4 > >>>>>> vgapci0: mem > >>>>>> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000-0xfaffffff > >> irq > >>>> 23 > >>>>>> at device 3.0 on pci4 > >>>>>> isab0: at device 31.0 on pci0 > >>>>>> isa0: on isab0 > >>>>>> ahci0: port > >>>>>> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000- > >> 0xf01f > >>>>>> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 > >>>>>> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not > supported > >>>>>> ahcich0: at channel 0 on ahci0 > >>>>>> ahcich1: at channel 1 on ahci0 > >>>>>> ahcich2: at channel 2 on ahci0 > >>>>>> ahcich3: at channel 3 on ahci0 > >>>>>> ahcich4: at channel 4 on ahci0 > >>>>>> ahcich5: at channel 5 on ahci0 > >>>>>> pci0: at device 31.3 (no driver attached) > >>>>>> acpi_button0: on acpi0 > >>>>>> hpet0: iomem 0xfed00000-0xfed003ff > on > >>>> acpi0 > >>>>>> ahcich0: at channel 0 on ahci0 > >>>>>> ahcich1: at channel 1 on ahci0 > >>>>>> ahcich2: at channel 2 on ahci0 > >>>>>> ahcich3: at channel 3 on ahci0 > >>>>>> ahcich4: at channel 4 on ahci0 > >>>>>> ahcich5: at channel 5 on ahci0 > >>>>>> pci0: at device 31.3 (no driver attached) > >>>>>> acpi_button0: on acpi0 > >>>>>> hpet0: iomem 0xfed00000-0xfed003ff > on > >>>> acpi0 > >>>>>> Timecounter "HPET" frequency 14318180 Hz quality 950 > >>>>>> Event timer "HPET" frequency 14318180 Hz quality 550 > >>>>>> Event timer "HPET1" frequency 14318180 Hz quality 440 > >>>>>> Event timer "HPET2" frequency 14318180 Hz quality 440 > >>>>>> Event timer "HPET3" frequency 14318180 Hz quality 440 > >>>>>> Event timer "HPET4" frequency 14318180 Hz quality 440 > >>>>>> attimer0: port 0x40-0x43 irq 0 on acpi0 > >>>>>> Timecounter "i8254" frequency 1193182 Hz quality 0 > >>>>>> Event timer "i8254" frequency 1193182 Hz quality 100 > >>>>>> atrtc0: port 0x70-0x71 irq 8 on acpi0 > >>>>>> Event timer "RTC" frequency 32768 Hz quality 0 > >>>>>> atkbdc0: port 0x60,0x64 irq 1 on > >> acpi0 > >>>>>> atkbd0: irq 1 on atkbdc0 > >>>>>> kbd0 at atkbd0 > >>>>>> atkbd0: [GIANT-LOCKED] > >>>>>> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 > on > >>>> acpi0 > >>>>>> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 > >>>>>> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 > >>>>>> orm0: at iomem 0xc0000-0xc7fff,0xc8000- > 0xcdfff > >> on > >>>> isa0 > >>>>>> sc0: at flags 0x100 on isa0 > >>>>>> sc0: VGA<16 virtual consoles, flags=3D0x300> > >>>>>> vga0: at port 0x3c0-0x3df iomem 0xa0000- > 0xbffff > >> on > >>>>>> isa0 > >>>>>> ppc0: cannot reserve I/O port range > >>>>>> est0: on cpu0 > >>>>>> p4tcc0: on cpu0 > >>>>>> est1: on cpu1 > >>>>>> p4tcc1: on cpu1 > >>>>>> est2: on cpu2 > >>>>>> p4tcc2: on cpu2 > >>>>>> est3: on cpu3 > >>>>>> p4tcc3: on cpu3 > >>>>>> ZFS filesystem version 5 > >>>>>> ZFS storage pool version 28 > >>>>>> Timecounters tick every 1.000 msec > >>>>>> usbus0: 480Mbps High Speed USB v2.0 > >>>>>> usbus1: 480Mbps High Speed USB v2.0 > >>>>>> ugen0.1: at usbus0 > >>>>>> uhub0: > on > >>>> usbus0 > >>>>>> ugen1.1: at usbus1 > >>>>>> uhub1: > on > >>>> usbus1 > >>>>>> da0 at mps0 bus 0 scbus0 target 8 lun 0 > >>>>>> da0: Fixed Direct Access SCSI-6 > device > >>>>>> da0: 300.000MB/s transfers > >>>>>> da0: Command Queueing enabled > >>>>>> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da1 at mps0 bus 0 scbus0 target 9 lun 0 > >>>>>> da1: Fixed Direct Access SCSI-6 > device > >>>>>> da1: 300.000MB/s transfers > >>>>>> da1: Command Queueing enabled > >>>>>> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da2 at mps0 bus 0 scbus0 target 10 lun 0 > >>>>>> da2: Fixed Direct Access SCSI-6 > device > >>>>>> da2: 300.000MB/s transfers > >>>>>> da2: Command Queueing enabled > >>>>>> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da3 at mps0 bus 0 scbus0 target 11 lun 0 > >>>>>> da3: Fixed Direct Access SCSI-6 > device > >>>>>> da3: 300.000MB/s transfers > >>>>>> da3: Command Queueing enabled > >>>>>> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da4 at mps0 bus 0 scbus0 target 12 lun 0 > >>>>>> da4: Fixed Direct Access SCSI-6 > device > >>>>>> da4: 300.000MB/s transfers > >>>>>> da4: Command Queueing enabled > >>>>>> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da5 at mps0 bus 0 scbus0 target 13 lun 0 > >>>>>> da5: Fixed Direct Access SCSI-6 device > >>>>>> da5: 150.000MB/s transfers > >>>>>> da5: Command Queueing enabled > >>>>>> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da8 at mps0 bus 0 scbus0 target 19 lun 0 > >>>>>> da8: Fixed Direct Access SCSI-6 > device > >>>>>> da8: 300.000MB/s transfers > >>>>>> da8: Command Queueing enabled > >>>>>> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da9 at mps0 bus 0 scbus0 target 20 lun 0 > >>>>>> da9: Fixed Direct Access SCSI-6 > device > >>>>>> da9: 300.000MB/s transfers > >>>>>> da9: Command Queueing enabled > >>>>>> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da11 at mps0 bus 0 scbus0 target 22 lun 0 > >>>>>> da11: Fixed Direct Access SCSI-6 device > >>>>>> da11: 150.000MB/s transfers > >>>>>> da11: Command Queueing enabled > >>>>>> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da12 at mps0 bus 0 scbus0 target 23 lun 0 > >>>>>> da12: Fixed Direct Access SCSI-6 device > >>>>>> da12: 150.000MB/s transfers > >>>>>> da12: Command Queueing enabled > >>>>>> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da13 at mps0 bus 0 scbus0 target 24 lun 0 > >>>>>> da13: Fixed Direct Access SCSI-6 device > >>>>>> da13: 150.000MB/s transfers > >>>>>> da13: Command Queueing enabled > >>>>>> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da14 at mps0 bus 0 scbus0 target 27 lun 0 > >>>>>> da14: Fixed Direct Access SCSI-6 device > >>>>>> da14: 300.000MB/s transfers > >>>>>> da14: Command Queueing enabled > >>>>>> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> da15 at mps0 bus 0 scbus0 target 28 lun 0 > >>>>>> da15: Fixed Direct Access SCSI-6 device > >>>>>> da15: 150.000MB/s transfers > >>>>>> da15: Command Queueing enabled > >>>>>> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> ses0 at mps0 bus 0 scbus0 target 16 lun 0 > >>>>>> ses0: Fixed Enclosure Services SCSI-5 > >> device > >>>>>> ses0: 600.000MB/s transfers > >>>>>> ses0: Command Queueing enabled > >>>>>> ses0: SCSI-3 SES Device > >>>>>> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 > >>>>>> ada0: ATA-7 SATA 1.x device > >>>>>> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) > >>>>>> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) > >>>>>> ada0: Previously was known as ad4 > >>>>>> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 > >>>>>> SMP: AP CPU #3 Launched! > >>>>>> cd0: Removable CD-ROM SCSI-0 > >> device > >>>>>> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO > >>>>>> 8192bytes) > >>>>>> cd0: Attempt to query device size failed: NOT READY, Medium not > >>>> present > >>>>>> - tray closed > >>>>>> SMP: AP CPU #2 Launched! > >>>>>> SMP: AP CPU #1 Launched! > >>>>>> da6 at mps0 bus 0 scbus0 target 17 lun 0 > >>>>>> da6: Fixed Direct Access SCSI-6 > device > >>>>>> da6: 150.000MB/s transfers > >>>>>> da6: Command Queueing enabled > >>>>>> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da7 at mps0 bus 0 scbus0 target 18 lun 0 > >>>>>> da7: Fixed Direct Access SCSI-6 > device > >>>>>> da7: 150.000MB/s transfers > >>>>>> da7: Command Queueing enabled > >>>>>> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > >>>>>> da10 at mps0 bus 0 scbus0 target 21 lun 0 > >>>>>> da10: Fixed Direct Access SCSI-6 device > >>>>>> da10: 300.000MB/s transfers > >>>>>> da10: Command Queueing enabled > >>>>>> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > >>>>>> GEOM: da15s1: geometry does not match label (16h,63s !=3D > 255h,63s). > >>>>>> uhub1: 2 ports with 2 removable, self powered > >>>>>> uhub0: 2 ports with 2 removable, self powered > >>>>>> Root mount waiting for: usbus1 usbus0 > >>>>>> ugen0.2: at usbus0 > >>>>>> uhub2: addr > >>>> 2> > >>>>>> on usbus0 > >>>>>> ugen1.2: at usbus1 > >>>>>> uhub3: addr > >>>> 2> > >>>>>> on usbus1 > >>>>>> Root mount waiting for: usbus1 usbus0 > >>>>>> uhub3: 6 ports with 6 removable, self powered > >>>>>> uhub2: 6 ports with 6 removable, self powered > >>>>>> ugen0.3: at usbus0 > >>>>>> ums0: >> 0/0, > >>>>>> rev 1.10/0.01, addr 3> on usbus0 > >>>>>> ums0: 3 buttons and [Z] coordinates ID=3D0 > >>>>>> ukbd0: >>>> 0/0, > >>>>>> rev 1.10/0.01, addr 3> on usbus0 > >>>>>> kbd2 at ukbd0 > >>>>>> Trying to mount root from ufs:/dev/ada0p2 [rw]... > >>>>>> em0: link state changed to UP > >>>>>> > >>>>>> thanks for your work. > >>>>>> > >>>>>> regards > >>>>>> Johan > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> _______________________________________________ > >>>>>> freebsd-stable@freebsd.org mailing list > >>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable > >>>>>> To unsubscribe, send any mail to "freebsd-stable- > >>>>>> unsubscribe@freebsd.org" > >>>> Ok i will try the patch, no hurry, i am back at the office on > >> monday... > >>>> regards > >>>> Johan > >> Ok i applied the patch, hopefully i did it right. > >> I saw some failed hunk, but forgot to save the .rej files. > > You can observe if those hunk failure and if those are minor, we can > ignore it. > > > >> But the camcontrol rescan all command came back. > >> filer01# camcontrol rescan all > >> Re-scan of bus 0 was successful > >> Re-scan of bus 1 was successful > >> Re-scan of bus 2 was successful > >> Re-scan of bus 3 was successful > >> Re-scan of bus 4 was successful > >> Re-scan of bus 5 was successful > >> Re-scan of bus 6 was successful > >> > > I will post this logical changes to freebsd current. > > > > ~ Kashyap > > > > > >> if you need more info, let me know. > > Nope. Since things are working for your I don't need any details. :-) > > > >> regards > >> Johan > i looked for .rej files on my system, and this is the only one. > > vi /usr/src/sys/dev/mps/mps_sas.c.rej > > it contains the following > *************** > *** 2852,2858 **** > do { > rcap_buf =3D > malloc(sizeof(struct scsi_read_capacity_eedp), > - M_MPT2, M_WAITOK | M_ZERO); > if (rcap_buf =3D=3D NULL) { > mps_dprint(sc, MPS_FAULT, "Unable to alloc read " > "capacity buffer for EEDP support.\n"); > --- 3164,3170 ---- > do { > rcap_buf =3D > malloc(sizeof(struct scsi_read_capacity_eedp), > + M_MPT2, M_NOWAIT| M_ZERO); > if (rcap_buf =3D=3D NULL) { > mps_dprint(sc, MPS_FAULT, "Unable to alloc read " > "capacity buffer for EEDP support.\n"); > ~ This failed because above changes is already part of upstream. In my tree, = I have back ported those change from upstream. So patch applied clean. ` Kashyap > > regards > Johan > > From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 18:03:19 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76E25106566B; Fri, 3 Feb 2012 18:03:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 114DE8FC1C; Fri, 3 Feb 2012 18:03:18 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q13I3IGX073551; Fri, 3 Feb 2012 18:03:18 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q13I3HfW073431; Fri, 3 Feb 2012 18:03:17 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 18:03:17 GMT Message-Id: <201202031803.q13I3HfW073431@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 18:03:19 -0000 TB --- 2012-02-03 17:24:15 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 17:24:15 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-03 17:24:15 - cleaning the object tree TB --- 2012-02-03 17:24:23 - cvsupping the source tree TB --- 2012-02-03 17:24:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-03 17:24:34 - building world TB --- 2012-02-03 17:24:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 17:24:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 17:24:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 17:24:34 - SRCCONF=/dev/null TB --- 2012-02-03 17:24:34 - TARGET=mips TB --- 2012-02-03 17:24:34 - TARGET_ARCH=mips TB --- 2012-02-03 17:24:34 - TZ=UTC TB --- 2012-02-03 17:24:34 - __MAKE_CONF=/dev/null TB --- 2012-02-03 17:24:34 - cd /src TB --- 2012-02-03 17:24:34 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 17:24:34 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 18:00:54 UTC 2012 TB --- 2012-02-03 18:00:54 - cd /src/sys/mips/conf TB --- 2012-02-03 18:00:54 - /usr/sbin/config -m ADM5120 TB --- 2012-02-03 18:00:54 - building ADM5120 kernel TB --- 2012-02-03 18:00:54 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 18:00:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 18:00:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 18:00:54 - SRCCONF=/dev/null TB --- 2012-02-03 18:00:54 - TARGET=mips TB --- 2012-02-03 18:00:54 - TARGET_ARCH=mips TB --- 2012-02-03 18:00:54 - TZ=UTC TB --- 2012-02-03 18:00:54 - __MAKE_CONF=/dev/null TB --- 2012-02-03 18:00:54 - cd /src TB --- 2012-02-03 18:00:54 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Fri Feb 3 18:00:54 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Fri Feb 3 18:02:07 UTC 2012 TB --- 2012-02-03 18:02:07 - cd /src/sys/mips/conf TB --- 2012-02-03 18:02:07 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-03 18:02:07 - building ALCHEMY kernel TB --- 2012-02-03 18:02:07 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 18:02:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 18:02:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 18:02:07 - SRCCONF=/dev/null TB --- 2012-02-03 18:02:07 - TARGET=mips TB --- 2012-02-03 18:02:07 - TARGET_ARCH=mips TB --- 2012-02-03 18:02:07 - TZ=UTC TB --- 2012-02-03 18:02:07 - __MAKE_CONF=/dev/null TB --- 2012-02-03 18:02:07 - cd /src TB --- 2012-02-03 18:02:07 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Fri Feb 3 18:02:07 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 18:03:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 18:03:17 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-03 18:03:17 - 1754.59 user 371.88 system 2341.79 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 19:06:02 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA143106564A; Fri, 3 Feb 2012 19:06:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 604818FC0C; Fri, 3 Feb 2012 19:06:02 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q13J61Zj047488; Fri, 3 Feb 2012 19:06:01 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q13J61hu047405; Fri, 3 Feb 2012 19:06:01 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 19:06:01 GMT Message-Id: <201202031906.q13J61hu047405@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 19:06:02 -0000 TB --- 2012-02-03 17:50:25 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 17:50:25 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-03 17:50:25 - cleaning the object tree TB --- 2012-02-03 17:50:54 - cvsupping the source tree TB --- 2012-02-03 17:50:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-03 17:52:00 - building world TB --- 2012-02-03 17:52:00 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 17:52:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 17:52:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 17:52:00 - SRCCONF=/dev/null TB --- 2012-02-03 17:52:00 - TARGET=powerpc TB --- 2012-02-03 17:52:00 - TARGET_ARCH=powerpc TB --- 2012-02-03 17:52:00 - TZ=UTC TB --- 2012-02-03 17:52:00 - __MAKE_CONF=/dev/null TB --- 2012-02-03 17:52:00 - cd /src TB --- 2012-02-03 17:52:00 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 17:52:00 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 18:38:05 UTC 2012 TB --- 2012-02-03 18:38:05 - generating LINT kernel config TB --- 2012-02-03 18:38:05 - cd /src/sys/powerpc/conf TB --- 2012-02-03 18:38:05 - /usr/bin/make -B LINT TB --- 2012-02-03 18:38:05 - cd /src/sys/powerpc/conf TB --- 2012-02-03 18:38:05 - /usr/sbin/config -m LINT TB --- 2012-02-03 18:38:05 - building LINT kernel TB --- 2012-02-03 18:38:05 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 18:38:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 18:38:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 18:38:05 - SRCCONF=/dev/null TB --- 2012-02-03 18:38:05 - TARGET=powerpc TB --- 2012-02-03 18:38:05 - TARGET_ARCH=powerpc TB --- 2012-02-03 18:38:05 - TZ=UTC TB --- 2012-02-03 18:38:05 - __MAKE_CONF=/dev/null TB --- 2012-02-03 18:38:05 - cd /src TB --- 2012-02-03 18:38:05 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 18:38:05 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Fri Feb 3 18:53:29 UTC 2012 TB --- 2012-02-03 18:53:29 - cd /src/sys/powerpc/conf TB --- 2012-02-03 18:53:29 - /usr/sbin/config -m GENERIC TB --- 2012-02-03 18:53:29 - building GENERIC kernel TB --- 2012-02-03 18:53:29 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 18:53:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 18:53:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 18:53:29 - SRCCONF=/dev/null TB --- 2012-02-03 18:53:29 - TARGET=powerpc TB --- 2012-02-03 18:53:29 - TARGET_ARCH=powerpc TB --- 2012-02-03 18:53:29 - TZ=UTC TB --- 2012-02-03 18:53:29 - __MAKE_CONF=/dev/null TB --- 2012-02-03 18:53:29 - cd /src TB --- 2012-02-03 18:53:29 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri Feb 3 18:53:29 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Fri Feb 3 19:04:00 UTC 2012 TB --- 2012-02-03 19:04:00 - cd /src/sys/powerpc/conf TB --- 2012-02-03 19:04:00 - /usr/sbin/config -m MPC85XX TB --- 2012-02-03 19:04:00 - building MPC85XX kernel TB --- 2012-02-03 19:04:00 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 19:04:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 19:04:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 19:04:00 - SRCCONF=/dev/null TB --- 2012-02-03 19:04:00 - TARGET=powerpc TB --- 2012-02-03 19:04:00 - TARGET_ARCH=powerpc TB --- 2012-02-03 19:04:00 - TZ=UTC TB --- 2012-02-03 19:04:00 - __MAKE_CONF=/dev/null TB --- 2012-02-03 19:04:00 - cd /src TB --- 2012-02-03 19:04:00 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Fri Feb 3 19:04:00 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 19:06:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 19:06:01 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-03 19:06:01 - 3546.74 user 578.65 system 4536.53 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 19:37:39 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D92F3106566C for ; Fri, 3 Feb 2012 19:37:39 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id 8F4208FC0A for ; Fri, 3 Feb 2012 19:37:39 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYU005BD16Q4U80@thalia-smout.broadpark.no>; Fri, 03 Feb 2012 20:37:38 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYU00BZ816PZM60@terra-smin.broadpark.no>; Fri, 03 Feb 2012 20:37:38 +0100 (CET) Date: Fri, 03 Feb 2012 20:37:37 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org, Doug Barton Message-id: <20120203203737.5ebc0406.torfinn.ingolfsen@broadpark.no> In-reply-to: <4F2B7476.1090907@FreeBSD.org> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <4F2B7476.1090907@FreeBSD.org> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Cc: Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 19:37:39 -0000 On Thu, 02 Feb 2012 21:45:26 -0800 Doug Barton wrote: > > Actually all the OP needs to do is to make sure the src tree is up to > date and run mergemaster. I MFC'ed the relevant changes to rc.d/devd > last April. Strange, my machine was rebuilt later than that (yes, I always run mergemaster as part of the the "make world"): root@kg-v7# uname -a FreeBSD kg-v7.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #7: Sat Jul 9 23:00:31 CEST 2011 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-v7# root@kg-v7# head -3 /etc/rc.subr # $NetBSD: rc.subr,v 1.67 2006/10/07 11:25:15 elad Exp $ # $FreeBSD: src/etc/rc.subr,v 1.88.2.16 2011/04/29 20:31:52 dougb Exp $ # root@kg-v7# head -3 /etc/rc.d/devd #!/bin/sh # # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ Another machine which also has the same problem: root@kg-v2# uname -a FreeBSD kg-v2.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #4: Sat Jul 16 02:07:14 CEST 2011 root@kg-v2.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-v2# head -3 /etc/rc.subr # $NetBSD: rc.subr,v 1.67 2006/10/07 11:25:15 elad Exp $ # $FreeBSD: src/etc/rc.subr,v 1.88.2.17 2011/07/03 16:32:03 jilles Exp $ # root@kg-v2# head -3 /etc/rc.d/devd #!/bin/sh # # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ Is that the versions you are referring to? I have a machine with world built in December, it seems to have the same versions of the files: (note: i have not tried restarting devd on that machine) root@kg-vm# uname -a FreeBSD kg-vm.kg4.no 8.2-STABLE FreeBSD 8.2-STABLE #4: Sat Dec 17 17:47:43 CET 2011 root@kg-vm.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-vm# head -3 /etc/rc.subr # $NetBSD: rc.subr,v 1.67 2006/10/07 11:25:15 elad Exp $ # $FreeBSD: src/etc/rc.subr,v 1.88.2.17 2011/07/03 16:32:03 jilles Exp $ # root@kg-vm# head -3 /etc/rc.d/devd #!/bin/sh # # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ -- Regards, Torfinn Ingolfsen From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 19:41:21 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F1971065670 for ; Fri, 3 Feb 2012 19:41:21 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id 358668FC0A for ; Fri, 3 Feb 2012 19:41:20 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYU005TH1CN4U80@thalia-smout.broadpark.no> for freebsd-stable@freebsd.org; Fri, 03 Feb 2012 20:41:11 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYU00B1S1CMZM70@terra-smin.broadpark.no> for freebsd-stable@freebsd.org; Fri, 03 Feb 2012 20:41:11 +0100 (CET) Date: Fri, 03 Feb 2012 20:41:10 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> In-reply-to: References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 03 Feb 2012 19:41:21 -0000 On Fri, 03 Feb 2012 08:34:10 +0300 Sergey Kandaurov wrote: > Please apply this patch and report how it goes for you. > http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?r1=1.12;r2=1.13 > > This is not in 8-STABLE yet. It looks like it (or almost the same) is here already: root@kg-v2# more /etc/rc.d/devd #!/bin/sh # # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ # # PROVIDE: devd # REQUIRE: netif network_ipv6 # BEFORE: NETWORKING mountcritremote # KEYWORD: nojail shutdown . /etc/rc.subr name="devd" rcvar=`set_rcvar` command="/sbin/${name}" start_precmd=${name}_prestart stop_precmd=find_pidfile find_pidfile() { if get_pidfile_from_conf pid-file /etc/devd.conf; then pidfile="$_pidfile_from_conf" else pidfile="/var/run/${name}.pid" fi } devd_prestart () { find_pidfile # If devd is disabled, turn it off in the kernel to avoid memory leaks. if ! checkyesno ${rcvar}; then $SYSCTL hw.bus.devctl_disable=1 fi } load_rc_config $name run_rc_command "$1" HTH -- Torfinn From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 19:50:04 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7D4D1065673; Fri, 3 Feb 2012 19:50:03 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 99B538FC13; Fri, 3 Feb 2012 19:50:03 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q13Jo3oj061987; Fri, 3 Feb 2012 19:50:03 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q13Jo3Ol061985; Fri, 3 Feb 2012 19:50:03 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Feb 2012 19:50:03 GMT Message-Id: <201202031950.q13Jo3Ol061985@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 tinderbox] failure on i386/i386 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 19:50:04 -0000 TB --- 2012-02-03 18:49:49 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-03 18:49:49 - starting RELENG_8 tinderbox run for i386/i386 TB --- 2012-02-03 18:49:49 - cleaning the object tree TB --- 2012-02-03 18:50:19 - cvsupping the source tree TB --- 2012-02-03 18:50:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/i386/i386/supfile TB --- 2012-02-03 18:51:13 - building world TB --- 2012-02-03 18:51:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 18:51:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 18:51:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 18:51:13 - SRCCONF=/dev/null TB --- 2012-02-03 18:51:13 - TARGET=i386 TB --- 2012-02-03 18:51:13 - TARGET_ARCH=i386 TB --- 2012-02-03 18:51:13 - TZ=UTC TB --- 2012-02-03 18:51:13 - __MAKE_CONF=/dev/null TB --- 2012-02-03 18:51:13 - cd /src TB --- 2012-02-03 18:51:13 - /usr/bin/make -B buildworld >>> World build started on Fri Feb 3 18:51:14 UTC 2012 >>> 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 >>> World build completed on Fri Feb 3 19:38:19 UTC 2012 TB --- 2012-02-03 19:38:19 - generating LINT kernel config TB --- 2012-02-03 19:38:19 - cd /src/sys/i386/conf TB --- 2012-02-03 19:38:19 - /usr/bin/make -B LINT TB --- 2012-02-03 19:38:19 - cd /src/sys/i386/conf TB --- 2012-02-03 19:38:19 - /usr/sbin/config -m LINT TB --- 2012-02-03 19:38:19 - building LINT kernel TB --- 2012-02-03 19:38:19 - CROSS_BUILD_TESTING=YES TB --- 2012-02-03 19:38:19 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-03 19:38:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-03 19:38:19 - SRCCONF=/dev/null TB --- 2012-02-03 19:38:19 - TARGET=i386 TB --- 2012-02-03 19:38:19 - TARGET_ARCH=i386 TB --- 2012-02-03 19:38:19 - TZ=UTC TB --- 2012-02-03 19:38:19 - __MAKE_CONF=/dev/null TB --- 2012-02-03 19:38:19 - cd /src TB --- 2012-02-03 19:38:19 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Feb 3 19:38:19 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] :> hack.c cc -shared -nostdlib hack.c -o hack.So rm -f hack.c MAKE=/usr/bin/make sh /src/sys/conf/newvers.sh LINT cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue vers.c linking kernel ld: kernel: Not enough room for program headers (allocated 5, need 6) ld: final link failed: Bad value *** Error code 1 Stop in /obj/i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-03 19:50:03 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-03 19:50:03 - ERROR: failed to build LINT kernel TB --- 2012-02-03 19:50:03 - 2773.73 user 494.55 system 3613.59 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Fri Feb 3 23:59:54 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27C211065673 for ; Fri, 3 Feb 2012 23:59:54 +0000 (UTC) (envelope-from sureprofit@gmail.com) Received: from mail.eyes-e-tools.net (mail.eyes-e-tools.net [212.123.22.194]) by mx1.freebsd.org (Postfix) with ESMTP id B24B08FC17 for ; Fri, 3 Feb 2012 23:59:53 +0000 (UTC) Received: from smtp.axmatrix.be ([192.168.1.80]) by mail.eyes-e-tools.net with Microsoft SMTPSVC(6.0.3790.4675); Sat, 4 Feb 2012 00:48:48 +0100 Received: from apoc ([192.168.1.235]) by smtp.axmatrix.be with Microsoft SMTPSVC(6.0.3790.4675); Sat, 4 Feb 2012 00:48:48 +0100 MIME-Version: 1.0 From: "Eyes-e-tools.net namens Steven Rounds" To: freebsd-stable@freebsd.org Date: 4 Feb 2012 00:48:48 +0100 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-ID: X-OriginalArrivalTime: 03 Feb 2012 23:48:48.0523 (UTC) FILETIME=[5FCBBDB0:01CCE2CE] Subject: Interessante pagina op www.eyes-e-tools.net X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Steven Rounds List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 23:59:54 -0000 Beste Friend,=0D=0A=0D=0ASteven Rounds doorbladerde www.eyes-e-tools.net= en vond informatie die u zou kunnen interesseren:=0D=0Ahttp://www.eyes-e-tools.net/site/= =0D=0A=0D=0ASteven Rounds zegt hierover:=0D=0ADear Friend, =0D=0A=0D=0A= =0D=0AFrom: Steven Rounds 'Ex PayPal Guy'=0D=0A=0D=0AEx Paypal Insider Creats= Underground Software =0D=0AThat FORCED Him To Profit.Up TO $35,000 A Month!= =0D=0A =0D=0AIm About To Show You How It Works.So Anyone,=0D=0AEven You= Can Make Money 3 Minutes Now.=0D=0A=0D=0AHERE'S PAYPAL CERTIFIED PROOF!= That's $5,311 =0D=0A$7,490 And $5,837 In Just 9 Days!=0D=0A=0D=0AThe Beauty= Is...The Software Works For You.=0D=0AYou're Not Glued To Your Computer= 24/7=0D=0A=0D=0AI Was Constanly Staring At Millions Of Dollars =0D=0AIn= Cash And None Of It Was Mine.=0D=0A=0D=0AImagine Your bank Account Always= Flush With =0D=0ACold Hard Cash..All Your Bills Are Paid On Time...=0D=0AAnd= The Fat Chunk Of Money In Your Bank Is Your'=0D=0As To Do With Whatever= You Please...=0D=0A=0D=0ABecause You Had The Only Software That Actually= =0D=0ABrings Money To You.To Live Your Dreams.=0D=0A=0D=0A=0D=0A=3D=3D>>= http://www.paygear.com/2584/sureprofit/=0D=0A=0D=0A=0D=0AI don't know you.= =0D=0A=0D=0AYou don't know me. Yet. But one thing you and I both =0D=0Aknow.= Somehow you found this page because you want out.=0D=0A=0D=0AOut of your= current financial situation.=0D=0A=0D=0AOut of living paycheck to paycheck.= =0D=0A=0D=0AOut of struggling to pay the bills.=0D=0A=0D=0AOut of the 9-5= grind.=0D=0A=0D=0AOut of long rush hour traffic.=0D=0A=0D=0AOut of your= job.=0D=0A=0D=0AOut of whatever is holding you back from making =0D=0Amore= money a month than 99.999999% of the =0D=0Arest of the world makes in a= year.=0D=0A=0D=0AYou're in luck if any of the above is YOU.=0D=0A=0D=0A= =0D=0A=3D=3D>> http://www.paygear.com/2584/sureprofit/=0D=0A=0D=0A=0D=0ABecause= you somehow just landed on the one single page =0D=0Aonline that has the= answer to all of those problems.=0D=0A=0D=0AI would know.=0D=0A=0D=0ABecause= I created the only software that actually forces =0D=0Ayou to profit in= world that doesn't involve gaming Google =0D=0Awith autobloggers or spinning= endless articles into a =0D=0Amassive web of worthless content that nobody= cares about.=0D=0A=0D=0A=0D=0AThis software taps into a little known but= ASTRONOMIC =0D=0Asource of traffic that only the most elite Super =0D=0AAffiliates= know about and literally makes you make money.=0D=0A=0D=0AHow much money?= =0D=0A=0D=0AIt's entirely up to you...=0D=0A=0D=0A=0D=0ASuccess,Steven Rounds= =0D=0A=0D=0A9547 colgate way, hamilton, OH 45011, USA =0D=0A=0D=0A=0D=0A= =0D=0A=0D=0A=0D=0A=0D=0A=0D=0AMet vriendelijke groeten,=0D=0A=0D=0AanaXis= =0D=0A=0D=0Ahttp://www.eyes-e-tools.net From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 02:19:39 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33CDE106566C; Sat, 4 Feb 2012 02:19:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id D11108FC16; Sat, 4 Feb 2012 02:19:38 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q142Jcwn039922; Sat, 4 Feb 2012 02:19:38 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q142Jb2d039873; Sat, 4 Feb 2012 02:19:37 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 02:19:37 GMT Message-Id: <201202040219.q142Jb2d039873@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 02:19:39 -0000 TB --- 2012-02-04 01:30:58 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 01:30:58 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-04 01:30:58 - cleaning the object tree TB --- 2012-02-04 01:31:06 - cvsupping the source tree TB --- 2012-02-04 01:31:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-04 01:36:33 - building world TB --- 2012-02-04 01:36:33 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 01:36:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 01:36:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 01:36:33 - SRCCONF=/dev/null TB --- 2012-02-04 01:36:33 - TARGET=mips TB --- 2012-02-04 01:36:33 - TARGET_ARCH=mips TB --- 2012-02-04 01:36:33 - TZ=UTC TB --- 2012-02-04 01:36:33 - __MAKE_CONF=/dev/null TB --- 2012-02-04 01:36:33 - cd /src TB --- 2012-02-04 01:36:33 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 01:36:33 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 02:12:47 UTC 2012 TB --- 2012-02-04 02:12:47 - cd /src/sys/mips/conf TB --- 2012-02-04 02:12:47 - /usr/sbin/config -m ADM5120 TB --- 2012-02-04 02:12:47 - building ADM5120 kernel TB --- 2012-02-04 02:12:47 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 02:12:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 02:12:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 02:12:47 - SRCCONF=/dev/null TB --- 2012-02-04 02:12:47 - TARGET=mips TB --- 2012-02-04 02:12:47 - TARGET_ARCH=mips TB --- 2012-02-04 02:12:47 - TZ=UTC TB --- 2012-02-04 02:12:47 - __MAKE_CONF=/dev/null TB --- 2012-02-04 02:12:47 - cd /src TB --- 2012-02-04 02:12:47 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Sat Feb 4 02:12:47 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Sat Feb 4 02:13:58 UTC 2012 TB --- 2012-02-04 02:13:58 - cd /src/sys/mips/conf TB --- 2012-02-04 02:13:58 - /usr/sbin/config -m IDT TB --- 2012-02-04 02:13:58 - building IDT kernel TB --- 2012-02-04 02:13:58 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 02:13:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 02:13:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 02:13:58 - SRCCONF=/dev/null TB --- 2012-02-04 02:13:58 - TARGET=mips TB --- 2012-02-04 02:13:58 - TARGET_ARCH=mips TB --- 2012-02-04 02:13:58 - TZ=UTC TB --- 2012-02-04 02:13:58 - __MAKE_CONF=/dev/null TB --- 2012-02-04 02:13:58 - cd /src TB --- 2012-02-04 02:13:58 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Sat Feb 4 02:13:58 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Sat Feb 4 02:15:36 UTC 2012 TB --- 2012-02-04 02:15:36 - cd /src/sys/mips/conf TB --- 2012-02-04 02:15:36 - /usr/sbin/config -m MALTA TB --- 2012-02-04 02:15:36 - building MALTA kernel TB --- 2012-02-04 02:15:36 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 02:15:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 02:15:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 02:15:36 - SRCCONF=/dev/null TB --- 2012-02-04 02:15:36 - TARGET=mips TB --- 2012-02-04 02:15:36 - TARGET_ARCH=mips TB --- 2012-02-04 02:15:36 - TZ=UTC TB --- 2012-02-04 02:15:36 - __MAKE_CONF=/dev/null TB --- 2012-02-04 02:15:36 - cd /src TB --- 2012-02-04 02:15:36 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Sat Feb 4 02:15:36 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Sat Feb 4 02:17:02 UTC 2012 TB --- 2012-02-04 02:17:02 - cd /src/sys/mips/conf TB --- 2012-02-04 02:17:02 - /usr/sbin/config -m QEMU TB --- 2012-02-04 02:17:02 - building QEMU kernel TB --- 2012-02-04 02:17:02 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 02:17:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 02:17:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 02:17:02 - SRCCONF=/dev/null TB --- 2012-02-04 02:17:02 - TARGET=mips TB --- 2012-02-04 02:17:02 - TARGET_ARCH=mips TB --- 2012-02-04 02:17:02 - TZ=UTC TB --- 2012-02-04 02:17:02 - __MAKE_CONF=/dev/null TB --- 2012-02-04 02:17:02 - cd /src TB --- 2012-02-04 02:17:02 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Sat Feb 4 02:17:02 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Sat Feb 4 02:18:16 UTC 2012 TB --- 2012-02-04 02:18:16 - cd /src/sys/mips/conf TB --- 2012-02-04 02:18:16 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-04 02:18:16 - building SENTRY5 kernel TB --- 2012-02-04 02:18:16 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 02:18:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 02:18:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 02:18:16 - SRCCONF=/dev/null TB --- 2012-02-04 02:18:16 - TARGET=mips TB --- 2012-02-04 02:18:16 - TARGET_ARCH=mips TB --- 2012-02-04 02:18:16 - TZ=UTC TB --- 2012-02-04 02:18:16 - __MAKE_CONF=/dev/null TB --- 2012-02-04 02:18:16 - cd /src TB --- 2012-02-04 02:18:16 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Sat Feb 4 02:18:17 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 02:19:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 02:19:37 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-04 02:19:37 - 1974.45 user 424.34 system 2919.03 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 03:35:16 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id 97A6F1065672; Sat, 4 Feb 2012 03:35:16 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from 172-17-150-251.globalsuite.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id 26C2514F4AA; Sat, 4 Feb 2012 03:35:15 +0000 (UTC) Message-ID: <4F2CA772.4060902@FreeBSD.org> Date: Fri, 03 Feb 2012 19:35:14 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0) Gecko/20120201 Thunderbird/10.0 MIME-Version: 1.0 To: John Baldwin References: <201202022037.q12Kb66S041860@freebsd-legacy2.sentex.ca> <4F2B278A.3080502@m5p.com> <201202030834.54072.jhb@freebsd.org> In-Reply-To: <201202030834.54072.jhb@freebsd.org> X-Enigmail-Version: 1.3.5 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= , George Mitchell , freebsd-stable@freebsd.org, Colin Percival Subject: Re: [releng_8_2 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 03:35:16 -0000 On 02/03/2012 05:34, John Baldwin wrote: > On Thursday, February 02, 2012 7:17:14 pm George Mitchell wrote: >> On 02/02/12 15:37, FreeBSD Tinderbox wrote: >>> [... one of three errors it's been reporting repeatedly for days ...] >> Talk about a lack of focus! Apparently two or three people have all >> recently checked in code without first verifying that it compiled (let >> alone ran), or else possibly did not completely commit their changes, >> and then absconded to a place where they fail to receive these emails >> about the problems. Can someone please either diagnose these errors or >> else revert the deficient commits? -- George Mitchell > > No, it is more that the tinderbox for 8 wasn't actually checking these > kernels before (they have been broken since 8.1 and 8.2 were released) and > they are on less-used platforms. Shouldn't whoever asked for that to be enabled take responsibility for cleaning them up then? > I do agree it needs to be cleaned up one way > or another. Given the reticence to commit changes to release branches, They're already broken. It's hard to see how fixing the problems could make things worse. :) Doug -- It's always a long day; 86400 doesn't fit into a short. Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 04:34:01 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED408106566B; Sat, 4 Feb 2012 04:34:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 93C468FC12; Sat, 4 Feb 2012 04:34:01 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q144Y14a083999; Sat, 4 Feb 2012 04:34:01 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q144XxJ4083127; Sat, 4 Feb 2012 04:33:59 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 04:33:59 GMT Message-Id: <201202040433.q144XxJ4083127@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 04:34:02 -0000 TB --- 2012-02-04 03:54:57 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 03:54:57 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-04 03:54:57 - cleaning the object tree TB --- 2012-02-04 03:55:06 - cvsupping the source tree TB --- 2012-02-04 03:55:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-04 03:55:21 - building world TB --- 2012-02-04 03:55:21 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 03:55:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 03:55:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 03:55:21 - SRCCONF=/dev/null TB --- 2012-02-04 03:55:21 - TARGET=mips TB --- 2012-02-04 03:55:21 - TARGET_ARCH=mips TB --- 2012-02-04 03:55:21 - TZ=UTC TB --- 2012-02-04 03:55:21 - __MAKE_CONF=/dev/null TB --- 2012-02-04 03:55:21 - cd /src TB --- 2012-02-04 03:55:21 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 03:55:21 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 04:31:41 UTC 2012 TB --- 2012-02-04 04:31:41 - cd /src/sys/mips/conf TB --- 2012-02-04 04:31:41 - /usr/sbin/config -m ADM5120 TB --- 2012-02-04 04:31:41 - building ADM5120 kernel TB --- 2012-02-04 04:31:41 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 04:31:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 04:31:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 04:31:41 - SRCCONF=/dev/null TB --- 2012-02-04 04:31:41 - TARGET=mips TB --- 2012-02-04 04:31:41 - TARGET_ARCH=mips TB --- 2012-02-04 04:31:41 - TZ=UTC TB --- 2012-02-04 04:31:41 - __MAKE_CONF=/dev/null TB --- 2012-02-04 04:31:41 - cd /src TB --- 2012-02-04 04:31:41 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Sat Feb 4 04:31:41 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Sat Feb 4 04:32:52 UTC 2012 TB --- 2012-02-04 04:32:52 - cd /src/sys/mips/conf TB --- 2012-02-04 04:32:52 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-04 04:32:52 - building ALCHEMY kernel TB --- 2012-02-04 04:32:52 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 04:32:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 04:32:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 04:32:52 - SRCCONF=/dev/null TB --- 2012-02-04 04:32:52 - TARGET=mips TB --- 2012-02-04 04:32:52 - TARGET_ARCH=mips TB --- 2012-02-04 04:32:52 - TZ=UTC TB --- 2012-02-04 04:32:52 - __MAKE_CONF=/dev/null TB --- 2012-02-04 04:32:52 - cd /src TB --- 2012-02-04 04:32:52 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Sat Feb 4 04:32:52 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 04:33:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 04:33:59 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-04 04:33:59 - 1749.23 user 363.69 system 2341.76 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 05:03:40 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A0E71065672 for ; Sat, 4 Feb 2012 05:03:40 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id BDF088FC12 for ; Sat, 4 Feb 2012 05:03:39 +0000 (UTC) Received: by iaeo4 with SMTP id o4so8811776iae.13 for ; Fri, 03 Feb 2012 21:03:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=P5p8fXAyoabZIxza9/xgZgejlKYCMg/l1jEbQ/hk/QQ=; b=LIcGoFX27g8aKI2KWO2LeLsR4ecRB0nUJvgZHXCSLRtCT//0IPjnJ1YV9zKcA2uEYj WjEvl9Ddai+4YqkBoQc6tgGqiKzx962vkmHXTFYRhffZbruZE477dF/QOU3/p/pRVabn 5R+HaCJ6kjD+GuFYWYxmokcm/wpHQ9NcVpWQg= Received: by 10.50.95.166 with SMTP id dl6mr11457261igb.27.1328330282620; Fri, 03 Feb 2012 20:38:02 -0800 (PST) Received: from DataIX.net (adsl-99-181-135-57.dsl.klmzmi.sbcglobal.net. [99.181.135.57]) by mx.google.com with ESMTPS id bj3sm7801715igb.4.2012.02.03.20.38.00 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 03 Feb 2012 20:38:01 -0800 (PST) Sender: Jason Hellenthal Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q144bvD3042733 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Feb 2012 23:37:57 -0500 (EST) (envelope-from jhell@DataIX.net) Received: (from jhell@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q144bu1D042637; Fri, 3 Feb 2012 23:37:56 -0500 (EST) (envelope-from jhell@DataIX.net) Date: Fri, 3 Feb 2012 23:37:56 -0500 From: Jason Hellenthal To: Torfinn Ingolfsen Message-ID: <20120204043756.GA67863@DataIX.net> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 05:03:40 -0000 Just because of what I read already is pretty terse I am top-posting for a reason. $ su - # /etc/rc.d/devd stop # pgrep -l devd (This should show nothing if so kill the results) # /sbin/devd -D -d (Paste the results) On Fri, Feb 03, 2012 at 08:41:10PM +0100, Torfinn Ingolfsen wrote: > On Fri, 03 Feb 2012 08:34:10 +0300 > Sergey Kandaurov wrote: > > > Please apply this patch and report how it goes for you. > > http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?r1=1.12;r2=1.13 > > > > This is not in 8-STABLE yet. > > It looks like it (or almost the same) is here already: > root@kg-v2# more /etc/rc.d/devd > #!/bin/sh > # > # $FreeBSD: src/etc/rc.d/devd,v 1.11.2.2 2011/04/29 20:31:52 dougb Exp $ > # > > # PROVIDE: devd > # REQUIRE: netif network_ipv6 > # BEFORE: NETWORKING mountcritremote > # KEYWORD: nojail shutdown > > . /etc/rc.subr > > name="devd" > rcvar=`set_rcvar` > command="/sbin/${name}" > > start_precmd=${name}_prestart > stop_precmd=find_pidfile > > find_pidfile() > { > if get_pidfile_from_conf pid-file /etc/devd.conf; then > pidfile="$_pidfile_from_conf" > else > pidfile="/var/run/${name}.pid" > fi > } > > devd_prestart () > { > find_pidfile > > # If devd is disabled, turn it off in the kernel to avoid memory leaks. > if ! checkyesno ${rcvar}; then > $SYSCTL hw.bus.devctl_disable=1 > fi > } > > load_rc_config $name > run_rc_command "$1" > > HTH > -- > Torfinn > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" -- ;s =; From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 05:27:45 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAEEC106566B; Sat, 4 Feb 2012 05:27:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 946AA8FC18; Sat, 4 Feb 2012 05:27:45 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q145RjYh035005; Sat, 4 Feb 2012 05:27:45 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q145RjYb035000; Sat, 4 Feb 2012 05:27:45 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 05:27:45 GMT Message-Id: <201202040527.q145RjYb035000@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 05:27:46 -0000 TB --- 2012-02-04 04:13:46 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 04:13:46 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-04 04:13:46 - cleaning the object tree TB --- 2012-02-04 04:14:14 - cvsupping the source tree TB --- 2012-02-04 04:14:14 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-04 04:14:30 - building world TB --- 2012-02-04 04:14:30 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 04:14:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 04:14:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 04:14:30 - SRCCONF=/dev/null TB --- 2012-02-04 04:14:30 - TARGET=powerpc TB --- 2012-02-04 04:14:30 - TARGET_ARCH=powerpc TB --- 2012-02-04 04:14:30 - TZ=UTC TB --- 2012-02-04 04:14:30 - __MAKE_CONF=/dev/null TB --- 2012-02-04 04:14:30 - cd /src TB --- 2012-02-04 04:14:30 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 04:14:30 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 05:00:17 UTC 2012 TB --- 2012-02-04 05:00:17 - generating LINT kernel config TB --- 2012-02-04 05:00:17 - cd /src/sys/powerpc/conf TB --- 2012-02-04 05:00:17 - /usr/bin/make -B LINT TB --- 2012-02-04 05:00:17 - cd /src/sys/powerpc/conf TB --- 2012-02-04 05:00:17 - /usr/sbin/config -m LINT TB --- 2012-02-04 05:00:17 - building LINT kernel TB --- 2012-02-04 05:00:17 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 05:00:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 05:00:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 05:00:17 - SRCCONF=/dev/null TB --- 2012-02-04 05:00:17 - TARGET=powerpc TB --- 2012-02-04 05:00:17 - TARGET_ARCH=powerpc TB --- 2012-02-04 05:00:17 - TZ=UTC TB --- 2012-02-04 05:00:17 - __MAKE_CONF=/dev/null TB --- 2012-02-04 05:00:17 - cd /src TB --- 2012-02-04 05:00:17 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Feb 4 05:00:17 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Sat Feb 4 05:15:31 UTC 2012 TB --- 2012-02-04 05:15:31 - cd /src/sys/powerpc/conf TB --- 2012-02-04 05:15:31 - /usr/sbin/config -m GENERIC TB --- 2012-02-04 05:15:31 - building GENERIC kernel TB --- 2012-02-04 05:15:31 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 05:15:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 05:15:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 05:15:31 - SRCCONF=/dev/null TB --- 2012-02-04 05:15:31 - TARGET=powerpc TB --- 2012-02-04 05:15:31 - TARGET_ARCH=powerpc TB --- 2012-02-04 05:15:31 - TZ=UTC TB --- 2012-02-04 05:15:31 - __MAKE_CONF=/dev/null TB --- 2012-02-04 05:15:31 - cd /src TB --- 2012-02-04 05:15:31 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sat Feb 4 05:15:31 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Sat Feb 4 05:25:45 UTC 2012 TB --- 2012-02-04 05:25:45 - cd /src/sys/powerpc/conf TB --- 2012-02-04 05:25:45 - /usr/sbin/config -m MPC85XX TB --- 2012-02-04 05:25:45 - building MPC85XX kernel TB --- 2012-02-04 05:25:45 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 05:25:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 05:25:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 05:25:45 - SRCCONF=/dev/null TB --- 2012-02-04 05:25:45 - TARGET=powerpc TB --- 2012-02-04 05:25:45 - TARGET_ARCH=powerpc TB --- 2012-02-04 05:25:45 - TZ=UTC TB --- 2012-02-04 05:25:45 - __MAKE_CONF=/dev/null TB --- 2012-02-04 05:25:45 - cd /src TB --- 2012-02-04 05:25:45 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Sat Feb 4 05:25:45 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 05:27:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 05:27:45 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-04 05:27:45 - 3519.41 user 561.59 system 4438.53 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 08:06:24 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0E46106564A; Sat, 4 Feb 2012 08:06:24 +0000 (UTC) (envelope-from Kashyap.Desai@lsi.com) Received: from na3sys009aog120.obsmtp.com (na3sys009aog120.obsmtp.com [74.125.149.140]) by mx1.freebsd.org (Postfix) with ESMTP id EDF948FC15; Sat, 4 Feb 2012 08:06:23 +0000 (UTC) Received: from paledge01.lsi.com ([192.19.193.42]) (using TLSv1) by na3sys009aob120.postini.com ([74.125.148.12]) with SMTP ID DSNKTyzm/rIrejiWJg85kVrOpYGEZBMuArz3@postini.com; Sat, 04 Feb 2012 00:06:24 PST Received: from PALHUB01.lsi.com (128.94.213.114) by PALEDGE01.lsi.com (192.19.193.42) with Microsoft SMTP Server (TLS) id 8.3.213.0; Sat, 4 Feb 2012 03:10:49 -0500 Received: from inbexch02.lsi.com (135.36.98.40) by PALHUB01.lsi.com (128.94.213.114) with Microsoft SMTP Server (TLS) id 8.3.213.0; Sat, 4 Feb 2012 03:06:21 -0500 Received: from inbmail01.lsi.com ([135.36.98.64]) by inbexch02.lsi.com ([135.36.98.40]) with mapi; Sat, 4 Feb 2012 13:36:17 +0530 From: "Desai, Kashyap" To: Johan Hendriks , "freebsd-scsi@freebsd.org" Date: Sat, 4 Feb 2012 13:36:13 +0530 Thread-Topic: LSI supported mps(4) driver in stable/9 and stable/8 Thread-Index: AczimIzhkYv4QRX9RyqLUlYCVI154AAAKo+gAB6cvxA= Message-ID: References: <20120202191105.GA55719@nargothrond.kdm.org> <4F2BF270.70303@gmail.com> <4F2BF93F.4060407@gmail.com> <4F2C0BF6.8050701@gmail.com> <4F2C1805.60209@gmail.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "delphij@delphij.net" , freebsd-stable Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 08:06:24 -0000 There is one more instance of similar issue reported on freebsd-scsi mailin= g list. ~ Kashyap > -----Original Message----- > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > stable@freebsd.org] On Behalf Of Desai, Kashyap > Sent: Friday, February 03, 2012 10:59 PM > To: Johan Hendriks > Cc: freebsd-stable > Subject: RE: LSI supported mps(4) driver in stable/9 and stable/8 > > > > > -----Original Message----- > > From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > > Sent: Friday, February 03, 2012 10:53 PM > > To: Desai, Kashyap > > Cc: freebsd-stable > > Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > > > Desai, Kashyap schreef: > > > > > >> -----Original Message----- > > >> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > > >> Sent: Friday, February 03, 2012 10:02 PM > > >> To: Desai, Kashyap > > >> Cc: freebsd-stable > > >> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > >> > > >> Desai, Kashyap schreef: > > >>> Try attached patch.! (This patch is not taken against upstream > code, > > >> so you may see some hunk fail.) > > >>> ~ Kashyap > > >>> > > >>>> -----Original Message----- > > >>>> From: Johan Hendriks [mailto:joh.hendriks@gmail.com] > > >>>> Sent: Friday, February 03, 2012 8:42 PM > > >>>> To: Desai, Kashyap > > >>>> Cc: freebsd-stable > > >>>> Subject: Re: LSI supported mps(4) driver in stable/9 and stable/8 > > >>>> > > >>>> Desai, Kashyap schreef: > > >>>>> Hi Johan, > > >>>>> > > >>>>> I have already figure out this issue in our lab. > > >>>>> > > >>>>> I also have fix for this issue. (Just don't want to create > > >> regression, > > >>>> that is why I have not posted outside) > > >>>>> Since you have seen similar issue, It is worth to try my patch. > > >>>>> > > >>>>> My machine is not getting IP right now. I will send you patch > once > > >> my > > >>>> machine is in network ? > > >>>>> ~ Kashyap > > >>>>> > > >>>>> > > >>>>>> -----Original Message----- > > >>>>>> From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd- > > >>>>>> stable@freebsd.org] On Behalf Of Johan Hendriks > > >>>>>> Sent: Friday, February 03, 2012 8:13 PM > > >>>>>> To: Kenneth D. Merry > > >>>>>> Cc: freebsd-stable > > >>>>>> Subject: Re: LSI supported mps(4) driver in stable/9 and > stable/8 > > >>>>>> > > >>>>>> Kenneth D. Merry schreef: > > >>>>>>> Hi folks, > > >>>>>>> > > >>>>>>> The LSI-supported version of the mps(4) driver that supports > > their > > >>>> 6Gb > > >>>>>> SAS > > >>>>>>> HBAs as well as WarpDrive controllers, is now in stable/9 and > > >>>>>> stable/8. > > >>>>>>> Please test it out and let me and Kashyap (CCed) know if you > run > > >>>> into > > >>>>>>> any problems. > > >>>>>>> > > >>>>>>> In addition to supporting WarpDrive, the driver also supports > > >>>>>> Integrated > > >>>>>>> RAID. > > >>>>>>> > > >>>>>>> Thanks to LSI for doing the work on this driver! > > >>>>>>> > > >>>>>>> Note that the CAM infrastructure changes that went into > > >> FreeBSD/head > > >>>>>> along > > >>>>>>> with this driver have not gone into either stable/9 or > stable/8. > > >>>> Only > > >>>>>> the > > >>>>>>> driver itself has been merged. > > >>>>>>> > > >>>>>>> The CAM infrastructure changes depend on some other da(4) > driver > > >>>>>> changes > > >>>>>>> that will need to get merged before they can go back. If that > > >> merge > > >>>>>>> happens, it will probably only be into stable/9. > > >>>>>>> > > >>>>>>> A couple of notes about issues with this driver: > > >>>>>>> > > >>>>>>> - Unlike the previous mps(4) driver, it probes > > sequentially. > > >> If > > >>>> you > > >>>>>> have > > >>>>>>> a lot of drives in your system, it will take a while to > > >> probe > > >>>> them > > >>>>>> all. > > >>>>>>> - You may see warning messages like this: > > >>>>>>> > > >>>>>>> _mapping_add_new_device: failed to add the device with handle > > >> 0x0019 > > >>>>>> to persiste > > >>>>>>> nt table because there is no free space available > > >>>>>>> _mapping_add_new_device: failed to add the device with handle > > >> 0x001a > > >>>>>> to persiste > > >>>>>>> nt table because there is no free space available > > >>>>>>> > > >>>>>>> - The driver is not endian safe. (It assumes a little > > endian > > >>>>>> machine.) > > >>>>>>> This is not new, the previous version of the driver had > > the > > >>>> same > > >>>>>> issue. > > >>>>>>> The LSI folks know about these issues. The driver has passed > > >> their > > >>>>>> testing > > >>>>>>> process. > > >>>>>>> > > >>>>>>> Many thanks to LSI for going through the effort to support > > >> FreeBSD. > > >>>>>>> Ken > > >>>>>> Hello Ken. > > >>>>>> > > >>>>>> Just updated our 16 bay server. did a csup today. > > >>>>>> did try some commands, it looked like the drives got husseled. > > >>>>>> > > >>>>>> But after giving the command camcontrol rescan all it does not > > give > > >>>> back > > >>>>>> the prompt. > > >>>>>> Also top shows me the following. > > >>>>>> 1589 root 1 20 0 16384K 1376K cbwait 3 0:00 > 0.00% > > >>>>>> camcontrol > > >>>>>> > > >>>>>> # on another console things works > > >>>>>> filer01# camcontrol devlist > > >>>>>> at scbus0 target 8 lun 0 > > >>>> (pass0,da0) > > >>>>>> at scbus0 target 9 lun 0 > > >>>> (pass1,da1) > > >>>>>> at scbus0 target 10 lun 0 > > >>>> (pass2,da2) > > >>>>>> at scbus0 target 11 lun 0 > > >>>> (pass3,da3) > > >>>>>> at scbus0 target 12 lun 0 > > >>>> (pass4,da4) > > >>>>>> at scbus0 target 13 lun 0 > > >>>> (pass5,da5) > > >>>>>> at scbus0 target 16 lun 0 > > >>>>>> (probe16,ses0,pass6) > > >>>>>> at scbus0 target 17 lun 0 > > >>>> (pass7,da6) > > >>>>>> at scbus0 target 18 lun 0 > > >>>> (pass8,da7) > > >>>>>> at scbus0 target 19 lun 0 > > >>>> (pass9,da8) > > >>>>>> at scbus0 target 20 lun 0 > > >>>>>> (pass10,da9) > > >>>>>> at scbus0 target 21 lun 0 > > >>>>>> (pass11,da10) > > >>>>>> at scbus0 target 22 lun 0 > > >>>>>> (pass12,da11) > > >>>>>> at scbus0 target 23 lun 0 > > >>>>>> (pass13,da12) > > >>>>>> at scbus0 target 24 lun 0 > > >>>>>> (pass14,da13) > > >>>>>> at scbus0 target 27 lun 0 > > >>>>>> (pass15,da14) > > >>>>>> at scbus0 target 28 lun 0 > > >>>>>> (pass16,da15) > > >>>>>> at scbus1 target 0 lun 0 > > >>>>>> (ada0,pass17) > > >>>>>> at scbus3 target 0 lun 0 > > >>>> (pass18,cd0) > > >>>>>> The controller is a LSI 9211-8i with IT firmware. > > >>>>>> > > >>>>>> here is the dmesg > > >>>>>> Copyright (c) 1992-2012 The FreeBSD Project. > > >>>>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, > > 1993, > > >>>> 1994 > > >>>>>> The Regents of the University of California. All > > rights > > >>>>>> reserved. > > >>>>>> FreeBSD is a registered trademark of The FreeBSD Foundation. > > >>>>>> FreeBSD 9.0-STABLE #0: Fri Feb 3 10:27:18 CET 2012 > > >>>>>> root@filer01.neuteboom.local:/usr/obj/usr/src/sys/KRNL > > amd64 > > >>>>>> CPU: Intel(R) Xeon(R) CPU E31220 @ 3.10GHz (3093.04-MHz K8- > class > > >> CPU) > > >>>>>> Origin =3D "GenuineIntel" Id =3D 0x206a7 Family =3D 6 M= odel > =3D > > 2a > > >>>>>> Stepping =3D 7 > > >>>>>> > > >>>>>> > > >> > > > Features=3D0xbfebfbff > >> > ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > > >>>>>> > > >> > > > Features2=3D0x15bae3ff > >> > SE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,XSAVE,AVX> > > >>>>>> AMD Features=3D0x28100800 > > >>>>>> AMD Features2=3D0x1 > > >>>>>> TSC: P-state invariant, performance statistics > > >>>>>> real memory =3D 17179869184 (16384 MB) > > >>>>>> avail memory =3D 16493441024 (15729 MB) > > >>>>>> Event timer "LAPIC" quality 600 > > >>>>>> ACPI APIC Table: > > >>>>>> FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs > > >>>>>> FreeBSD/SMP: 1 package(s) x 4 core(s) > > >>>>>> cpu0 (BSP): APIC ID: 0 > > >>>>>> cpu1 (AP): APIC ID: 2 > > >>>>>> cpu2 (AP): APIC ID: 4 > > >>>>>> cpu3 (AP): APIC ID: 6 > > >>>>>> ioapic0 irqs 0-23 on motherboard > > >>>>>> kbd1 at kbdmux0 > > >>>>>> acpi0: on motherboard > > >>>>>> acpi0: Power Button (fixed) > > >>>>>> Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > > >>>>>> acpi_timer0:<24-bit timer at 3.579545MHz> port 0x408-0x40b > on > > >> acpi0 > > >>>>>> cpu0: on acpi0 > > >>>>>> cpu1: on acpi0 > > >>>>>> cpu2: on acpi0 > > >>>>>> cpu3: on acpi0 > > >>>>>> pcib0: port 0xcf8-0xcff on acpi0 > > >>>>>> pci0: on pcib0 > > >>>>>> pcib1: irq 19 at device 6.0 on pci0 > > >>>>>> pci1: on pcib1 > > >>>>>> mps0: port 0xe000-0xe0ff mem 0xfb600000- > > 0xfb603fff > > >> irq > > >>>> 19 > > >>>>>> at device 0.0 on pci1 > > >>>>>> mps0: Firmware: 11.00.00.00, Driver: 11.255.03.00-fbsd > > >>>>>> mps0: IOCCapabilities: > > >>>>>> > > >> > > > 1285c > >>>>>> c> > > >>>>>> em0: port > 0xf020- > > >> 0xf03f > > >>>> mem > > >>>>>> 0xfb800000-0xfb81ffff,0xfb824000-0xfb824fff irq 20 at device > 25.0 > > >> on > > >>>>>> pci0 > > >>>>>> em0: Using an MSI interrupt > > >>>>>> em0: Ethernet address: 00:25:90:57:20:bd > > >>>>>> ehci0: mem 0xfb823000- > > >> 0xfb8233ff > > >>>> irq > > >>>>>> 16 at device 26.0 on pci0 > > >>>>>> usbus0: EHCI version 1.0 > > >>>>>> usbus0: on ehci0 > > >>>>>> pcib2: irq 17 at device 28.0 on pci0 > > >>>>>> pci2: on pcib2 > > >>>>>> pcib3: irq 17 at device 28.4 on pci0 > > >>>>>> pci3: on pcib3 > > >>>>>> em1: port > 0xd000- > > >> 0xd01f > > >>>> mem > > >>>>>> 0xfb700000-0xfb71ffff,0xfb720000-0xfb723fff irq 16 at device > 0.0 > > on > > >>>> pci3 > > >>>>>> em1: Using MSIX interrupts with 3 vectors > > >>>>>> em1: Ethernet address: 00:25:90:57:20:bc > > >>>>>> ehci1: mem 0xfb822000- > > >> 0xfb8223ff > > >>>> irq > > >>>>>> 23 at device 29.0 on pci0 > > >>>>>> usbus1: EHCI version 1.0 > > >>>>>> usbus1: on ehci1 > > >>>>>> pcib4: at device 30.0 on pci0 > > >>>>>> pci4: on pcib4 > > >>>>>> vgapci0: mem > > >>>>>> 0xf9000000-0xf9ffffff,0xfb000000-0xfb003fff,0xfa800000- > 0xfaffffff > > >> irq > > >>>> 23 > > >>>>>> at device 3.0 on pci4 > > >>>>>> isab0: at device 31.0 on pci0 > > >>>>>> isa0: on isab0 > > >>>>>> ahci0: port > > >>>>>> 0xf070-0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf000- > > >> 0xf01f > > >>>>>> mem 0xfb821000-0xfb8217ff irq 19 at device 31.2 on pci0 > > >>>>>> ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not > > supported > > >>>>>> ahcich0: at channel 0 on ahci0 > > >>>>>> ahcich1: at channel 1 on ahci0 > > >>>>>> ahcich2: at channel 2 on ahci0 > > >>>>>> ahcich3: at channel 3 on ahci0 > > >>>>>> ahcich4: at channel 4 on ahci0 > > >>>>>> ahcich5: at channel 5 on ahci0 > > >>>>>> pci0: at device 31.3 (no driver attached) > > >>>>>> acpi_button0: on acpi0 > > >>>>>> hpet0: iomem 0xfed00000- > 0xfed003ff > > on > > >>>> acpi0 > > >>>>>> ahcich0: at channel 0 on ahci0 > > >>>>>> ahcich1: at channel 1 on ahci0 > > >>>>>> ahcich2: at channel 2 on ahci0 > > >>>>>> ahcich3: at channel 3 on ahci0 > > >>>>>> ahcich4: at channel 4 on ahci0 > > >>>>>> ahcich5: at channel 5 on ahci0 > > >>>>>> pci0: at device 31.3 (no driver attached) > > >>>>>> acpi_button0: on acpi0 > > >>>>>> hpet0: iomem 0xfed00000- > 0xfed003ff > > on > > >>>> acpi0 > > >>>>>> Timecounter "HPET" frequency 14318180 Hz quality 950 > > >>>>>> Event timer "HPET" frequency 14318180 Hz quality 550 > > >>>>>> Event timer "HPET1" frequency 14318180 Hz quality 440 > > >>>>>> Event timer "HPET2" frequency 14318180 Hz quality 440 > > >>>>>> Event timer "HPET3" frequency 14318180 Hz quality 440 > > >>>>>> Event timer "HPET4" frequency 14318180 Hz quality 440 > > >>>>>> attimer0: port 0x40-0x43 irq 0 on acpi0 > > >>>>>> Timecounter "i8254" frequency 1193182 Hz quality 0 > > >>>>>> Event timer "i8254" frequency 1193182 Hz quality 100 > > >>>>>> atrtc0: port 0x70-0x71 irq 8 on acpi0 > > >>>>>> Event timer "RTC" frequency 32768 Hz quality 0 > > >>>>>> atkbdc0: port 0x60,0x64 irq 1 > on > > >> acpi0 > > >>>>>> atkbd0: irq 1 on atkbdc0 > > >>>>>> kbd0 at atkbd0 > > >>>>>> atkbd0: [GIANT-LOCKED] > > >>>>>> uart0:<16550 or compatible> port 0x3f8-0x3ff irq 4 flags > 0x10 > > on > > >>>> acpi0 > > >>>>>> uart1:<16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0 > > >>>>>> uart2:<16550 or compatible> port 0x3e8-0x3ef irq 10 on acpi0 > > >>>>>> orm0: at iomem 0xc0000-0xc7fff,0xc8000- > > 0xcdfff > > >> on > > >>>> isa0 > > >>>>>> sc0: at flags 0x100 on isa0 > > >>>>>> sc0: VGA<16 virtual consoles, flags=3D0x300> > > >>>>>> vga0: at port 0x3c0-0x3df iomem 0xa0000- > > 0xbffff > > >> on > > >>>>>> isa0 > > >>>>>> ppc0: cannot reserve I/O port range > > >>>>>> est0: on cpu0 > > >>>>>> p4tcc0: on cpu0 > > >>>>>> est1: on cpu1 > > >>>>>> p4tcc1: on cpu1 > > >>>>>> est2: on cpu2 > > >>>>>> p4tcc2: on cpu2 > > >>>>>> est3: on cpu3 > > >>>>>> p4tcc3: on cpu3 > > >>>>>> ZFS filesystem version 5 > > >>>>>> ZFS storage pool version 28 > > >>>>>> Timecounters tick every 1.000 msec > > >>>>>> usbus0: 480Mbps High Speed USB v2.0 > > >>>>>> usbus1: 480Mbps High Speed USB v2.0 > > >>>>>> ugen0.1: at usbus0 > > >>>>>> uhub0: > > on > > >>>> usbus0 > > >>>>>> ugen1.1: at usbus1 > > >>>>>> uhub1: > > on > > >>>> usbus1 > > >>>>>> da0 at mps0 bus 0 scbus0 target 8 lun 0 > > >>>>>> da0: Fixed Direct Access SCSI-6 > > device > > >>>>>> da0: 300.000MB/s transfers > > >>>>>> da0: Command Queueing enabled > > >>>>>> da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da1 at mps0 bus 0 scbus0 target 9 lun 0 > > >>>>>> da1: Fixed Direct Access SCSI-6 > > device > > >>>>>> da1: 300.000MB/s transfers > > >>>>>> da1: Command Queueing enabled > > >>>>>> da1: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da2 at mps0 bus 0 scbus0 target 10 lun 0 > > >>>>>> da2: Fixed Direct Access SCSI-6 > > device > > >>>>>> da2: 300.000MB/s transfers > > >>>>>> da2: Command Queueing enabled > > >>>>>> da2: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da3 at mps0 bus 0 scbus0 target 11 lun 0 > > >>>>>> da3: Fixed Direct Access SCSI-6 > > device > > >>>>>> da3: 300.000MB/s transfers > > >>>>>> da3: Command Queueing enabled > > >>>>>> da3: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da4 at mps0 bus 0 scbus0 target 12 lun 0 > > >>>>>> da4: Fixed Direct Access SCSI-6 > > device > > >>>>>> da4: 300.000MB/s transfers > > >>>>>> da4: Command Queueing enabled > > >>>>>> da4: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da5 at mps0 bus 0 scbus0 target 13 lun 0 > > >>>>>> da5: Fixed Direct Access SCSI-6 device > > >>>>>> da5: 150.000MB/s transfers > > >>>>>> da5: Command Queueing enabled > > >>>>>> da5: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da8 at mps0 bus 0 scbus0 target 19 lun 0 > > >>>>>> da8: Fixed Direct Access SCSI-6 > > device > > >>>>>> da8: 300.000MB/s transfers > > >>>>>> da8: Command Queueing enabled > > >>>>>> da8: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da9 at mps0 bus 0 scbus0 target 20 lun 0 > > >>>>>> da9: Fixed Direct Access SCSI-6 > > device > > >>>>>> da9: 300.000MB/s transfers > > >>>>>> da9: Command Queueing enabled > > >>>>>> da9: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da11 at mps0 bus 0 scbus0 target 22 lun 0 > > >>>>>> da11: Fixed Direct Access SCSI-6 > device > > >>>>>> da11: 150.000MB/s transfers > > >>>>>> da11: Command Queueing enabled > > >>>>>> da11: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da12 at mps0 bus 0 scbus0 target 23 lun 0 > > >>>>>> da12: Fixed Direct Access SCSI-6 > device > > >>>>>> da12: 150.000MB/s transfers > > >>>>>> da12: Command Queueing enabled > > >>>>>> da12: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da13 at mps0 bus 0 scbus0 target 24 lun 0 > > >>>>>> da13: Fixed Direct Access SCSI-6 > device > > >>>>>> da13: 150.000MB/s transfers > > >>>>>> da13: Command Queueing enabled > > >>>>>> da13: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da14 at mps0 bus 0 scbus0 target 27 lun 0 > > >>>>>> da14: Fixed Direct Access SCSI-6 device > > >>>>>> da14: 300.000MB/s transfers > > >>>>>> da14: Command Queueing enabled > > >>>>>> da14: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> da15 at mps0 bus 0 scbus0 target 28 lun 0 > > >>>>>> da15: Fixed Direct Access SCSI-6 > device > > >>>>>> da15: 150.000MB/s transfers > > >>>>>> da15: Command Queueing enabled > > >>>>>> da15: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> ses0 at mps0 bus 0 scbus0 target 16 lun 0 > > >>>>>> ses0: Fixed Enclosure Services SCSI-5 > > >> device > > >>>>>> ses0: 600.000MB/s transfers > > >>>>>> ses0: Command Queueing enabled > > >>>>>> ses0: SCSI-3 SES Device > > >>>>>> ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 > > >>>>>> ada0: ATA-7 SATA 1.x device > > >>>>>> ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) > > >>>>>> ada0: 76319MB (156301488 512 byte sectors: 16H 63S/T 16383C) > > >>>>>> ada0: Previously was known as ad4 > > >>>>>> cd0 at ahcich2 bus 0 scbus3 target 0 lun 0 > > >>>>>> SMP: AP CPU #3 Launched! > > >>>>>> cd0: Removable CD-ROM SCSI-0 > > >> device > > >>>>>> cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO > > >>>>>> 8192bytes) > > >>>>>> cd0: Attempt to query device size failed: NOT READY, Medium not > > >>>> present > > >>>>>> - tray closed > > >>>>>> SMP: AP CPU #2 Launched! > > >>>>>> SMP: AP CPU #1 Launched! > > >>>>>> da6 at mps0 bus 0 scbus0 target 17 lun 0 > > >>>>>> da6: Fixed Direct Access SCSI-6 > > device > > >>>>>> da6: 150.000MB/s transfers > > >>>>>> da6: Command Queueing enabled > > >>>>>> da6: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da7 at mps0 bus 0 scbus0 target 18 lun 0 > > >>>>>> da7: Fixed Direct Access SCSI-6 > > device > > >>>>>> da7: 150.000MB/s transfers > > >>>>>> da7: Command Queueing enabled > > >>>>>> da7: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C) > > >>>>>> da10 at mps0 bus 0 scbus0 target 21 lun 0 > > >>>>>> da10: Fixed Direct Access SCSI-6 > device > > >>>>>> da10: 300.000MB/s transfers > > >>>>>> da10: Command Queueing enabled > > >>>>>> da10: 238475MB (488397168 512 byte sectors: 255H 63S/T 30401C) > > >>>>>> GEOM: da15s1: geometry does not match label (16h,63s !=3D > > 255h,63s). > > >>>>>> uhub1: 2 ports with 2 removable, self powered > > >>>>>> uhub0: 2 ports with 2 removable, self powered > > >>>>>> Root mount waiting for: usbus1 usbus0 > > >>>>>> ugen0.2: at usbus0 > > >>>>>> uhub2: > addr > > >>>> 2> > > >>>>>> on usbus0 > > >>>>>> ugen1.2: at usbus1 > > >>>>>> uhub3: > addr > > >>>> 2> > > >>>>>> on usbus1 > > >>>>>> Root mount waiting for: usbus1 usbus0 > > >>>>>> uhub3: 6 ports with 6 removable, self powered > > >>>>>> uhub2: 6 ports with 6 removable, self powered > > >>>>>> ugen0.3: at usbus0 > > >>>>>> ums0: class > > >> 0/0, > > >>>>>> rev 1.10/0.01, addr 3> on usbus0 > > >>>>>> ums0: 3 buttons and [Z] coordinates ID=3D0 > > >>>>>> ukbd0: class > > >>>> 0/0, > > >>>>>> rev 1.10/0.01, addr 3> on usbus0 > > >>>>>> kbd2 at ukbd0 > > >>>>>> Trying to mount root from ufs:/dev/ada0p2 [rw]... > > >>>>>> em0: link state changed to UP > > >>>>>> > > >>>>>> thanks for your work. > > >>>>>> > > >>>>>> regards > > >>>>>> Johan > > >>>>>> > > >>>>>> > > >>>>>> > > >>>>>> > > >>>>>> _______________________________________________ > > >>>>>> freebsd-stable@freebsd.org mailing list > > >>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > >>>>>> To unsubscribe, send any mail to "freebsd-stable- > > >>>>>> unsubscribe@freebsd.org" > > >>>> Ok i will try the patch, no hurry, i am back at the office on > > >> monday... > > >>>> regards > > >>>> Johan > > >> Ok i applied the patch, hopefully i did it right. > > >> I saw some failed hunk, but forgot to save the .rej files. > > > You can observe if those hunk failure and if those are minor, we can > > ignore it. > > > > > >> But the camcontrol rescan all command came back. > > >> filer01# camcontrol rescan all > > >> Re-scan of bus 0 was successful > > >> Re-scan of bus 1 was successful > > >> Re-scan of bus 2 was successful > > >> Re-scan of bus 3 was successful > > >> Re-scan of bus 4 was successful > > >> Re-scan of bus 5 was successful > > >> Re-scan of bus 6 was successful > > >> > > > I will post this logical changes to freebsd current. > > > > > > ~ Kashyap > > > > > > > > >> if you need more info, let me know. > > > Nope. Since things are working for your I don't need any details. :- > ) > > > > > >> regards > > >> Johan > > i looked for .rej files on my system, and this is the only one. > > > > vi /usr/src/sys/dev/mps/mps_sas.c.rej > > > > it contains the following > > *************** > > *** 2852,2858 **** > > do { > > rcap_buf =3D > > malloc(sizeof(struct scsi_read_capacity_eedp), > > - M_MPT2, M_WAITOK | M_ZERO); > > if (rcap_buf =3D=3D NULL) { > > mps_dprint(sc, MPS_FAULT, "Unable to alloc read " > > "capacity buffer for EEDP support.\n"); > > --- 3164,3170 ---- > > do { > > rcap_buf =3D > > malloc(sizeof(struct scsi_read_capacity_eedp), > > + M_MPT2, M_NOWAIT| M_ZERO); > > if (rcap_buf =3D=3D NULL) { > > mps_dprint(sc, MPS_FAULT, "Unable to alloc read " > > "capacity buffer for EEDP support.\n"); > > ~ > > This failed because above changes is already part of upstream. In my > tree, I have back ported those change from upstream. > So patch applied clean. > > ` Kashyap > > > > > regards > > Johan > > > > > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable- > unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 12:59:14 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EFC51065673; Sat, 4 Feb 2012 12:59:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F64C8FC17; Sat, 4 Feb 2012 12:59:13 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q14CxDQ8065675; Sat, 4 Feb 2012 12:59:13 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q14CxCbD065616; Sat, 4 Feb 2012 12:59:12 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 12:59:12 GMT Message-Id: <201202041259.q14CxCbD065616@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 12:59:14 -0000 TB --- 2012-02-04 12:10:29 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 12:10:29 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-04 12:10:29 - cleaning the object tree TB --- 2012-02-04 12:10:43 - cvsupping the source tree TB --- 2012-02-04 12:10:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-04 12:16:09 - building world TB --- 2012-02-04 12:16:09 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:16:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:16:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:16:09 - SRCCONF=/dev/null TB --- 2012-02-04 12:16:09 - TARGET=mips TB --- 2012-02-04 12:16:09 - TARGET_ARCH=mips TB --- 2012-02-04 12:16:09 - TZ=UTC TB --- 2012-02-04 12:16:09 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:16:09 - cd /src TB --- 2012-02-04 12:16:09 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 12:16:10 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 12:52:21 UTC 2012 TB --- 2012-02-04 12:52:21 - cd /src/sys/mips/conf TB --- 2012-02-04 12:52:21 - /usr/sbin/config -m ADM5120 TB --- 2012-02-04 12:52:21 - building ADM5120 kernel TB --- 2012-02-04 12:52:21 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:52:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:52:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:52:21 - SRCCONF=/dev/null TB --- 2012-02-04 12:52:21 - TARGET=mips TB --- 2012-02-04 12:52:21 - TARGET_ARCH=mips TB --- 2012-02-04 12:52:21 - TZ=UTC TB --- 2012-02-04 12:52:21 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:52:21 - cd /src TB --- 2012-02-04 12:52:21 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Sat Feb 4 12:52:21 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Sat Feb 4 12:53:33 UTC 2012 TB --- 2012-02-04 12:53:33 - cd /src/sys/mips/conf TB --- 2012-02-04 12:53:33 - /usr/sbin/config -m IDT TB --- 2012-02-04 12:53:33 - building IDT kernel TB --- 2012-02-04 12:53:33 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:53:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:53:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:53:33 - SRCCONF=/dev/null TB --- 2012-02-04 12:53:33 - TARGET=mips TB --- 2012-02-04 12:53:33 - TARGET_ARCH=mips TB --- 2012-02-04 12:53:33 - TZ=UTC TB --- 2012-02-04 12:53:33 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:53:33 - cd /src TB --- 2012-02-04 12:53:33 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Sat Feb 4 12:53:33 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Sat Feb 4 12:55:10 UTC 2012 TB --- 2012-02-04 12:55:10 - cd /src/sys/mips/conf TB --- 2012-02-04 12:55:10 - /usr/sbin/config -m MALTA TB --- 2012-02-04 12:55:10 - building MALTA kernel TB --- 2012-02-04 12:55:10 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:55:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:55:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:55:10 - SRCCONF=/dev/null TB --- 2012-02-04 12:55:10 - TARGET=mips TB --- 2012-02-04 12:55:10 - TARGET_ARCH=mips TB --- 2012-02-04 12:55:10 - TZ=UTC TB --- 2012-02-04 12:55:10 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:55:10 - cd /src TB --- 2012-02-04 12:55:10 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Sat Feb 4 12:55:10 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Sat Feb 4 12:56:39 UTC 2012 TB --- 2012-02-04 12:56:39 - cd /src/sys/mips/conf TB --- 2012-02-04 12:56:39 - /usr/sbin/config -m QEMU TB --- 2012-02-04 12:56:39 - building QEMU kernel TB --- 2012-02-04 12:56:39 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:56:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:56:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:56:39 - SRCCONF=/dev/null TB --- 2012-02-04 12:56:39 - TARGET=mips TB --- 2012-02-04 12:56:39 - TARGET_ARCH=mips TB --- 2012-02-04 12:56:39 - TZ=UTC TB --- 2012-02-04 12:56:39 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:56:39 - cd /src TB --- 2012-02-04 12:56:39 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Sat Feb 4 12:56:39 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Sat Feb 4 12:57:53 UTC 2012 TB --- 2012-02-04 12:57:53 - cd /src/sys/mips/conf TB --- 2012-02-04 12:57:53 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-04 12:57:53 - building SENTRY5 kernel TB --- 2012-02-04 12:57:53 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 12:57:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 12:57:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 12:57:53 - SRCCONF=/dev/null TB --- 2012-02-04 12:57:53 - TARGET=mips TB --- 2012-02-04 12:57:53 - TARGET_ARCH=mips TB --- 2012-02-04 12:57:53 - TZ=UTC TB --- 2012-02-04 12:57:53 - __MAKE_CONF=/dev/null TB --- 2012-02-04 12:57:53 - cd /src TB --- 2012-02-04 12:57:53 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Sat Feb 4 12:57:53 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 12:59:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 12:59:12 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-04 12:59:12 - 1974.49 user 421.66 system 2923.22 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 15:12:54 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60E5F1065672; Sat, 4 Feb 2012 15:12:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 048DF8FC12; Sat, 4 Feb 2012 15:12:53 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q14FCrh7082929; Sat, 4 Feb 2012 15:12:53 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q14FCraJ082907; Sat, 4 Feb 2012 15:12:53 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 15:12:53 GMT Message-Id: <201202041512.q14FCraJ082907@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 15:12:54 -0000 TB --- 2012-02-04 14:33:52 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 14:33:52 - starting RELENG_8_2 tinderbox run for mips/mips TB --- 2012-02-04 14:33:52 - cleaning the object tree TB --- 2012-02-04 14:34:00 - cvsupping the source tree TB --- 2012-02-04 14:34:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/mips/mips/supfile TB --- 2012-02-04 14:34:12 - building world TB --- 2012-02-04 14:34:12 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 14:34:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 14:34:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 14:34:12 - SRCCONF=/dev/null TB --- 2012-02-04 14:34:12 - TARGET=mips TB --- 2012-02-04 14:34:12 - TARGET_ARCH=mips TB --- 2012-02-04 14:34:12 - TZ=UTC TB --- 2012-02-04 14:34:12 - __MAKE_CONF=/dev/null TB --- 2012-02-04 14:34:12 - cd /src TB --- 2012-02-04 14:34:12 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 14:34:13 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 15:10:31 UTC 2012 TB --- 2012-02-04 15:10:31 - cd /src/sys/mips/conf TB --- 2012-02-04 15:10:31 - /usr/sbin/config -m ADM5120 TB --- 2012-02-04 15:10:31 - building ADM5120 kernel TB --- 2012-02-04 15:10:31 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 15:10:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 15:10:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 15:10:31 - SRCCONF=/dev/null TB --- 2012-02-04 15:10:31 - TARGET=mips TB --- 2012-02-04 15:10:31 - TARGET_ARCH=mips TB --- 2012-02-04 15:10:31 - TZ=UTC TB --- 2012-02-04 15:10:31 - __MAKE_CONF=/dev/null TB --- 2012-02-04 15:10:31 - cd /src TB --- 2012-02-04 15:10:31 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Sat Feb 4 15:10:31 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Sat Feb 4 15:11:43 UTC 2012 TB --- 2012-02-04 15:11:43 - cd /src/sys/mips/conf TB --- 2012-02-04 15:11:43 - /usr/sbin/config -m ALCHEMY TB --- 2012-02-04 15:11:43 - building ALCHEMY kernel TB --- 2012-02-04 15:11:43 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 15:11:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 15:11:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 15:11:43 - SRCCONF=/dev/null TB --- 2012-02-04 15:11:43 - TARGET=mips TB --- 2012-02-04 15:11:43 - TARGET_ARCH=mips TB --- 2012-02-04 15:11:43 - TZ=UTC TB --- 2012-02-04 15:11:43 - __MAKE_CONF=/dev/null TB --- 2012-02-04 15:11:43 - cd /src TB --- 2012-02-04 15:11:43 - /usr/bin/make -B buildkernel KERNCONF=ALCHEMY >>> Kernel build for ALCHEMY started on Sat Feb 4 15:11:43 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/ucmpdi2.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/udivdi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/libkern/umoddi3.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/kern/link_elf_obj.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/alchemy_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=1000 --param large-function-growth=100000 -EL -fno-pic -mno-abicalls -G0 -EL -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/alchemy/obio.c cc1: warnings being treated as errors /src/sys/mips/alchemy/obio.c:513: warning: pointer type mismatch in conditional expression *** Error code 1 Stop in /obj/mips/src/sys/ALCHEMY. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 15:12:53 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 15:12:53 - ERROR: failed to build ALCHEMY kernel TB --- 2012-02-04 15:12:53 - 1759.04 user 367.34 system 2340.78 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 15:44:55 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B9AC106566C for ; Sat, 4 Feb 2012 15:44:55 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id D23118FC0C for ; Sat, 4 Feb 2012 15:44:54 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYV00AY1L1ZDR40@thalia-smout.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 16:44:23 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYV00JERL1ZRN30@terra-smin.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 16:44:23 +0100 (CET) Date: Sat, 04 Feb 2012 16:44:23 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> In-reply-to: <20120204043756.GA67863@DataIX.net> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 15:44:55 -0000 On Fri, 03 Feb 2012 23:37:56 -0500 Jason Hellenthal wrote: > > Just because of what I read already is pretty terse I am top-posting for > a reason. > > $ su - > # /etc/rc.d/devd stop > # pgrep -l devd (This should show nothing if so kill the results) Done: root@kg-v2# /etc/rc.d/devd stop devd not running? root@kg-v2# pgrep -l devd root@kg-v2# > # /sbin/devd -D -d (Paste the results) The first output was longer than my scrollback buffer, so I tried it one more time. Now it just "hangs" here: root@kg-v2# /sbin/devd -D -d Parsing /etc/devd.conf setting scsi-controller-regex=(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)[0-9]+ Parsing files in /etc/devd Parsing /etc/devd/asus.conf Parsing /etc/devd/uath.conf Parsing /etc/devd/usb.conf Parsing files in /usr/local/etc/devd Parsing /usr/local/etc/devd/webcamd.conf Strange. I tried deinstalling webcamd (yes, a shot in the dark, I know), but it didn't help: root@kg-v2# pkg_deinstall webcamd-3.2.0.2 ---> Deinstalling 'webcamd-3.2.0.2' ==> You should manually remove the "webcamd" user. [Updating the pkgdb in /var/db/pkg ... - 954 packages found (-1 +0) (...) done] root@kg-v2# pgrep -l devd root@kg-v2# /sbin/devd -D -d Parsing /etc/devd.conf setting scsi-controller-regex=(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)[0-9]+ Parsing files in /etc/devd Parsing /etc/devd/asus.conf Parsing /etc/devd/uath.conf Parsing /etc/devd/usb.conf Parsing files in /usr/local/etc/devd -- Torfinn From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 15:49:14 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C9E3106566C for ; Sat, 4 Feb 2012 15:49:14 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta12.westchester.pa.mail.comcast.net (qmta12.westchester.pa.mail.comcast.net [76.96.59.227]) by mx1.freebsd.org (Postfix) with ESMTP id 114CB8FC15 for ; Sat, 4 Feb 2012 15:49:13 +0000 (UTC) Received: from omta06.westchester.pa.mail.comcast.net ([76.96.62.51]) by qmta12.westchester.pa.mail.comcast.net with comcast id Vrju1i00616LCl05CrpDXi; Sat, 04 Feb 2012 15:49:13 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta06.westchester.pa.mail.comcast.net with comcast id VrpC1i0161t3BNj3SrpDUv; Sat, 04 Feb 2012 15:49:13 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id BC8F6102C19; Sat, 4 Feb 2012 07:49:11 -0800 (PST) Date: Sat, 4 Feb 2012 07:49:11 -0800 From: Jeremy Chadwick To: Torfinn Ingolfsen Message-ID: <20120204154911.GA49690@icarus.home.lan> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 15:49:14 -0000 On Sat, Feb 04, 2012 at 04:44:23PM +0100, Torfinn Ingolfsen wrote: > On Fri, 03 Feb 2012 23:37:56 -0500 > Jason Hellenthal wrote: > > > Just because of what I read already is pretty terse I am top-posting for > > a reason. > > > > $ su - > > # /etc/rc.d/devd stop > > # pgrep -l devd (This should show nothing if so kill the results) > > Done: > root@kg-v2# /etc/rc.d/devd stop > devd not running? > root@kg-v2# pgrep -l devd > root@kg-v2# > > > # /sbin/devd -D -d (Paste the results) > > The first output was longer than my scrollback buffer, so I tried it one more time. > Now it just "hangs" here: > root@kg-v2# /sbin/devd -D -d > Parsing /etc/devd.conf > setting scsi-controller-regex=(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)[0-9]+ > Parsing files in /etc/devd > Parsing /etc/devd/asus.conf > Parsing /etc/devd/uath.conf > Parsing /etc/devd/usb.conf > Parsing files in /usr/local/etc/devd > Parsing /usr/local/etc/devd/webcamd.conf > > Strange. Why is this strange? Look at what the -d flag does. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 15:52:15 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6064106564A for ; Sat, 4 Feb 2012 15:52:15 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id 778D78FC1B for ; Sat, 4 Feb 2012 15:52:15 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYV0091SLF2PVC0@thalia-smout.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 16:52:14 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYV00I4QLF2OR30@terra-smin.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 16:52:14 +0100 (CET) Date: Sat, 04 Feb 2012 16:52:14 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> In-reply-to: <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 15:52:15 -0000 More data: root@kg-v2# service devd status devd is not running. root@kg-v2# service devd start Starting devd. devd: devd already running, pid: 808 /etc/rc.d/devd: WARNING: failed to start devd root@kg-v2# rm /var/run/devd.pid root@kg-v2# service devd start Starting devd. root@kg-v2# service devd status devd is running as pid 30165. root@kg-v2# service devd stop Stopping devd. root@kg-v2# service devd status devd is not running. root@kg-v2# ll /var/run/devd.pid -rw------- 1 root wheel 5 Feb 4 16:45 /var/run/devd.pid root@kg-v2# service devd start Starting devd. root@kg-v2# service devd status devd is running as pid 30206. Let me try to install the webcamd port again... done. Now testing again: root@kg-v2# service devd status devd is running as pid 30206. root@kg-v2# service devd stop Stopping devd. root@kg-v2# ll /var/run/devd.pid -rw------- 1 root wheel 5 Feb 4 16:48 /var/run/devd.pid root@kg-v2# service devd status devd is not running. root@kg-v2# service devd start Starting devd. root@kg-v2# service devd status devd is running as pid 35551. Not really sure what's going on here. -- Torfinn From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 16:13:57 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD8E1106566C; Sat, 4 Feb 2012 16:13:57 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 82A148FC0C; Sat, 4 Feb 2012 16:13:57 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q14GDum8032572; Sat, 4 Feb 2012 16:13:56 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q14GDueR032514; Sat, 4 Feb 2012 16:13:56 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 16:13:56 GMT Message-Id: <201202041613.q14GDueR032514@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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 powerpc/powerpc X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 16:13:58 -0000 TB --- 2012-02-04 14:58:57 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 14:58:57 - starting RELENG_8_2 tinderbox run for powerpc/powerpc TB --- 2012-02-04 14:58:57 - cleaning the object tree TB --- 2012-02-04 14:59:30 - cvsupping the source tree TB --- 2012-02-04 14:59:30 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_2/powerpc/powerpc/supfile TB --- 2012-02-04 14:59:45 - building world TB --- 2012-02-04 14:59:45 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 14:59:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 14:59:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 14:59:45 - SRCCONF=/dev/null TB --- 2012-02-04 14:59:45 - TARGET=powerpc TB --- 2012-02-04 14:59:45 - TARGET_ARCH=powerpc TB --- 2012-02-04 14:59:45 - TZ=UTC TB --- 2012-02-04 14:59:45 - __MAKE_CONF=/dev/null TB --- 2012-02-04 14:59:45 - cd /src TB --- 2012-02-04 14:59:45 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 14:59:46 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 15:46:06 UTC 2012 TB --- 2012-02-04 15:46:06 - generating LINT kernel config TB --- 2012-02-04 15:46:06 - cd /src/sys/powerpc/conf TB --- 2012-02-04 15:46:06 - /usr/bin/make -B LINT TB --- 2012-02-04 15:46:06 - cd /src/sys/powerpc/conf TB --- 2012-02-04 15:46:06 - /usr/sbin/config -m LINT TB --- 2012-02-04 15:46:06 - building LINT kernel TB --- 2012-02-04 15:46:06 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 15:46:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 15:46:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 15:46:06 - SRCCONF=/dev/null TB --- 2012-02-04 15:46:06 - TARGET=powerpc TB --- 2012-02-04 15:46:06 - TARGET_ARCH=powerpc TB --- 2012-02-04 15:46:06 - TZ=UTC TB --- 2012-02-04 15:46:06 - __MAKE_CONF=/dev/null TB --- 2012-02-04 15:46:06 - cd /src TB --- 2012-02-04 15:46:06 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Feb 4 15:46:06 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for LINT completed on Sat Feb 4 16:01:34 UTC 2012 TB --- 2012-02-04 16:01:34 - cd /src/sys/powerpc/conf TB --- 2012-02-04 16:01:34 - /usr/sbin/config -m GENERIC TB --- 2012-02-04 16:01:34 - building GENERIC kernel TB --- 2012-02-04 16:01:34 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 16:01:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 16:01:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 16:01:34 - SRCCONF=/dev/null TB --- 2012-02-04 16:01:34 - TARGET=powerpc TB --- 2012-02-04 16:01:34 - TARGET_ARCH=powerpc TB --- 2012-02-04 16:01:34 - TZ=UTC TB --- 2012-02-04 16:01:34 - __MAKE_CONF=/dev/null TB --- 2012-02-04 16:01:34 - cd /src TB --- 2012-02-04 16:01:34 - /usr/bin/make -B buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sat Feb 4 16:01:34 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Sat Feb 4 16:11:57 UTC 2012 TB --- 2012-02-04 16:11:57 - cd /src/sys/powerpc/conf TB --- 2012-02-04 16:11:57 - /usr/sbin/config -m MPC85XX TB --- 2012-02-04 16:11:57 - building MPC85XX kernel TB --- 2012-02-04 16:11:57 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 16:11:57 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 16:11:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 16:11:57 - SRCCONF=/dev/null TB --- 2012-02-04 16:11:57 - TARGET=powerpc TB --- 2012-02-04 16:11:57 - TARGET_ARCH=powerpc TB --- 2012-02-04 16:11:57 - TZ=UTC TB --- 2012-02-04 16:11:57 - __MAKE_CONF=/dev/null TB --- 2012-02-04 16:11:57 - cd /src TB --- 2012-02-04 16:11:57 - /usr/bin/make -B buildkernel KERNCONF=MPC85XX >>> Kernel build for MPC85XX started on Sat Feb 4 16:11:57 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/libkern/umoddi3.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/clock.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/copyinout.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/interrupt.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/machdep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/mp_cpudep.c cc -c -O -pipe -std=c99 -Wa,-me500 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -msoft-float -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/powerpc/booke/platform_bare.c /src/sys/powerpc/booke/platform_bare.c:82: error: expected '}' before ';' token *** Error code 1 Stop in /obj/powerpc/src/sys/MPC85XX. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 16:13:56 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 16:13:56 - ERROR: failed to build MPC85XX kernel TB --- 2012-02-04 16:13:56 - 3553.56 user 579.16 system 4498.88 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_2-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 17:34:22 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD143106567D for ; Sat, 4 Feb 2012 17:34:22 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 741228FC0C for ; Sat, 4 Feb 2012 17:34:22 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q14HYJMG059960; Sat, 4 Feb 2012 10:34:19 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q14HYJ8U059957; Sat, 4 Feb 2012 10:34:19 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sat, 4 Feb 2012 10:34:19 -0700 (MST) From: Warren Block To: Torfinn Ingolfsen In-Reply-To: <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> Message-ID: References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sat, 04 Feb 2012 10:34:20 -0700 (MST) Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 17:34:22 -0000 On Sat, 4 Feb 2012, Torfinn Ingolfsen wrote: > More data: > root@kg-v2# service devd status > devd is not running. > root@kg-v2# service devd start > Starting devd. > devd: devd already running, pid: 808 > /etc/rc.d/devd: WARNING: failed to start devd > root@kg-v2# rm /var/run/devd.pid > root@kg-v2# service devd start > Starting devd. > root@kg-v2# service devd status > devd is running as pid 30165. > root@kg-v2# service devd stop > Stopping devd. > root@kg-v2# service devd status > devd is not running. > root@kg-v2# ll /var/run/devd.pid > -rw------- 1 root wheel 5 Feb 4 16:45 /var/run/devd.pid > root@kg-v2# service devd start > Starting devd. > root@kg-v2# service devd status > devd is running as pid 30206. > > Let me try to install the webcamd port again... done. > Now testing again: > root@kg-v2# service devd status > devd is running as pid 30206. > root@kg-v2# service devd stop > Stopping devd. > root@kg-v2# ll /var/run/devd.pid > -rw------- 1 root wheel 5 Feb 4 16:48 /var/run/devd.pid > root@kg-v2# service devd status > devd is not running. > root@kg-v2# service devd start > Starting devd. > root@kg-v2# service devd status > devd is running as pid 35551. > > Not really sure what's going on here. Possibly relevant: http://www.freebsd.org/cgi/query-pr.cgi?pr=140462&cat= (Using DHCP from /etc/rc.conf leaves a lock on devd.pid. SYNCDHCP does not.) And the thread: http://lists.freebsd.org/pipermail/freebsd-current/2009-October/012749.html From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 17:57:41 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A78B106566B for ; Sat, 4 Feb 2012 17:57:41 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 069088FC13 for ; Sat, 4 Feb 2012 17:57:40 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q14Hveiu060096 for ; Sat, 4 Feb 2012 10:57:40 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q14HveKe060093 for ; Sat, 4 Feb 2012 10:57:40 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sat, 4 Feb 2012 10:57:40 -0700 (MST) From: Warren Block To: freebsd-stable@freebsd.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sat, 04 Feb 2012 10:57:40 -0700 (MST) Subject: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 17:57:41 -0000 Trying to build 8-stable i386 for the last couple of days gives this error when building the kernel: /usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c linking kernel.debug ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) ld: final link failed: Bad value *** Error code 1 1 error *** Error code 2 1 error *** Error code 2 1 error Use (or not) of ccache doesn't change the error. The kernel config file is include GENERIC nocpu I486_CPU ident LIGHTNING nooptions INET6 nooptions WITNESS nooptions INVARIANTS nodevice eisa nodevice fdc device ahci #options ATA_CAM ... (followed by a lot of nodevice and nooption entries to disable unneeded stuff from GENERIC). From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 18:29:00 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE032106566B for ; Sat, 4 Feb 2012 18:29:00 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id 780CA8FC14 for ; Sat, 4 Feb 2012 18:29:00 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so5335840wib.13 for ; Sat, 04 Feb 2012 10:28:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=2C+VuVGKvX7y+5KEixtXkVmyUADq3GFe2eA9chkz8b0=; b=mP+eqzmC/t3YJQy85kM+4Q4V/C9YRdJ730nEopgBahSn99ZCRigzbZjAga66h1Eij2 ZOzBLe+ADtEceYDHbG48f4zE2g7lK0VdR62hod5xOZE9QHWIcBJko270NyOTPFqfhbfX PUQcUAAbWkHI7/sO8J3BOFv0VImaK8dCpwrzs= MIME-Version: 1.0 Received: by 10.180.99.100 with SMTP id ep4mr18437099wib.7.1328378350251; Sat, 04 Feb 2012 09:59:10 -0800 (PST) Received: by 10.223.157.198 with HTTP; Sat, 4 Feb 2012 09:59:10 -0800 (PST) In-Reply-To: <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> Date: Sat, 4 Feb 2012 11:59:10 -0600 Message-ID: From: Adam Vande More To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 18:29:01 -0000 On Sat, Feb 4, 2012 at 9:52 AM, Torfinn Ingolfsen < torfinn.ingolfsen@broadpark.no> wrote: > More data: > root@kg-v2# service devd status > > > Not really sure what's going on here. > sh -x /etc/rc.d/devd restart should tell you what is going on. -- Adam Vande More From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 18:43:31 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9879C106566C for ; Sat, 4 Feb 2012 18:43:31 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5568FC1A for ; Sat, 4 Feb 2012 18:43:30 +0000 (UTC) Received: by iaeo4 with SMTP id o4so9817787iae.13 for ; Sat, 04 Feb 2012 10:43:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=wOTzGr9h9S1AHjbGN/yFjcqwQCj1GDyg92VKdfEPiwo=; b=DU5RxMTtSPbLwQmEFOoydlqkWCp2pyMSbMn3gsgWmZSXi7/GhUuC9D3DU5Te/HuUdG 5B3MmXgVw9WFthXHo2vCzhFKlUCGsAqHwyK9pktMqURLIwim8vyiPF4ltfkCgiQtoAlH z+FF2N2E5xz2Dic4q3boNRBzUsyRMhJm1VVqE= Received: by 10.50.41.131 with SMTP id f3mr3370997igl.28.1328381010493; Sat, 04 Feb 2012 10:43:30 -0800 (PST) Received: from DataIX.net ([99.181.135.57]) by mx.google.com with ESMTPS id xu6sm13483434igb.7.2012.02.04.10.43.28 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 04 Feb 2012 10:43:29 -0800 (PST) Sender: Jason Hellenthal Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q14IhPIX026515 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 4 Feb 2012 13:43:25 -0500 (EST) (envelope-from jhell@DataIX.net) Received: (from jhell@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q14IhPYv026486; Sat, 4 Feb 2012 13:43:25 -0500 (EST) (envelope-from jhell@DataIX.net) Date: Sat, 4 Feb 2012 13:43:24 -0500 From: Jason Hellenthal To: Warren Block Message-ID: <20120204184324.GA37724@DataIX.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: freebsd-stable@freebsd.org Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 18:43:31 -0000 On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > Trying to build 8-stable i386 for the last couple of days gives this > error when building the kernel: > > /usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c > linking kernel.debug > ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) > ld: final link failed: Bad value > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > > > Use (or not) of ccache doesn't change the error. > > The kernel config file is > > include GENERIC > nocpu I486_CPU > ident LIGHTNING > > nooptions INET6 > nooptions WITNESS > nooptions INVARIANTS > > nodevice eisa > > nodevice fdc > > device ahci > #options ATA_CAM > ... > (followed by a lot of nodevice and nooption entries to disable unneeded > stuff from GENERIC). Not sure if this has anything to do with it but (/usr/local/libexec/ccache/world/cc) My last kernel build completed perfectly (...completed on Sat Feb 4 11:18:21 EST 2012) You might have to clean your cache. -- ;s =; From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 18:45:19 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1657C106566B for ; Sat, 4 Feb 2012 18:45:19 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id C912A8FC08 for ; Sat, 4 Feb 2012 18:45:18 +0000 (UTC) Received: by iaeo4 with SMTP id o4so9820267iae.13 for ; Sat, 04 Feb 2012 10:45:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=qLQLcx/OUu0UsxUYcRE4ctVubaIPA//rttdeyms0QFE=; b=FkiWupgSOOUbIdR5qr7sXqsXQmKTxeunkM/GK0hRhr0OJJM9/gay2ifL3CyFFyz7bs Mw/C+9UOz7WocCgRRuFSDUsxWJWmyfhlwYhjygwPcmjDf020YPUvAwvJTy3FYmbeet6M x5Hx35NqjTqOxw2J7TL7mvWNBhZInfm/C1Peo= Received: by 10.50.203.100 with SMTP id kp4mr14121202igc.6.1328381118432; Sat, 04 Feb 2012 10:45:18 -0800 (PST) Received: from DataIX.net ([99.181.135.57]) by mx.google.com with ESMTPS id d15sm17698069ibf.7.2012.02.04.10.45.16 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 04 Feb 2012 10:45:17 -0800 (PST) Sender: Jason Hellenthal Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q14IjE7d076607 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 4 Feb 2012 13:45:14 -0500 (EST) (envelope-from jhell@DataIX.net) Received: (from jhell@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q14IjEWx076351; Sat, 4 Feb 2012 13:45:14 -0500 (EST) (envelope-from jhell@DataIX.net) Date: Sat, 4 Feb 2012 13:45:14 -0500 From: Jason Hellenthal To: Warren Block Message-ID: <20120204184514.GB37724@DataIX.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: freebsd-stable@freebsd.org Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 18:45:19 -0000 On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > Trying to build 8-stable i386 for the last couple of days gives this > error when building the kernel: > > /usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c > linking kernel.debug > ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) > ld: final link failed: Bad value > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > > > Use (or not) of ccache doesn't change the error. > > The kernel config file is > > include GENERIC > nocpu I486_CPU > ident LIGHTNING > > nooptions INET6 > nooptions WITNESS > nooptions INVARIANTS > > nodevice eisa > > nodevice fdc > > device ahci > #options ATA_CAM > ... > (followed by a lot of nodevice and nooption entries to disable unneeded > stuff from GENERIC). Aslso for reference: Path: /usr/src Working Copy Root Path: /usr/src URL: file:///exports/nsvn/stable/8 Repository Root: file:///exports/nsvn Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f Revision: 230983 Node Kind: directory Schedule: normal Last Changed Author: mav Last Changed Rev: 230983 Last Changed Date: 2012-02-04 10:43:16 -0500 (Sat, 04 Feb 2012) -- ;s =; From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 18:48:19 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D6FD10656AC for ; Sat, 4 Feb 2012 18:48:19 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta14.emeryville.ca.mail.comcast.net (qmta14.emeryville.ca.mail.comcast.net [76.96.27.212]) by mx1.freebsd.org (Postfix) with ESMTP id 96AA08FC0A for ; Sat, 4 Feb 2012 18:48:18 +0000 (UTC) Received: from omta12.emeryville.ca.mail.comcast.net ([76.96.30.44]) by qmta14.emeryville.ca.mail.comcast.net with comcast id Vuio1i0040x6nqcAEuoJdS; Sat, 04 Feb 2012 18:48:18 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta12.emeryville.ca.mail.comcast.net with comcast id VuoH1i00E1t3BNj8YuoHYZ; Sat, 04 Feb 2012 18:48:17 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id D99A5102C36; Sat, 4 Feb 2012 10:48:16 -0800 (PST) Date: Sat, 4 Feb 2012 10:48:16 -0800 From: Jeremy Chadwick To: Warren Block Message-ID: <20120204184816.GA52504@icarus.home.lan> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-stable@freebsd.org Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 18:48:19 -0000 On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > Trying to build 8-stable i386 for the last couple of days gives this > error when building the kernel: > > /usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c > linking kernel.debug > ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) > ld: final link failed: Bad value > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error The freebsd-stable mailing list has been filled with tinderbox failures for this exact problem with the LINT kernel, and it appears to be specific to RELENG_8 on i386. http://lists.freebsd.org/pipermail/freebsd-stable/2012-February/thread.html Start from the bottom and search upwards for the string: "[releng_8 tinderbox] failure on i386/i386" Point being: the problem is not you. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 19:07:08 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F1D2106566B for ; Sat, 4 Feb 2012 19:07:08 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3979F8FC08 for ; Sat, 4 Feb 2012 19:07:07 +0000 (UTC) Received: by iaeo4 with SMTP id o4so9848172iae.13 for ; Sat, 04 Feb 2012 11:07:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=lU/EGGhFJmImxccjspOqFrZ6vsAYlo3WZEI+e3rx2/E=; b=BV5JvWRSE0iJl2KsWwO0A/KuIU030Qd4yilNq7yymRbKrewAgJlLxn5f+EqM5t4U4M x10eQqQEPAOlsejwyFexRMCfst0egAhqSOWMYyBZ3a+idWWcq0H/L/FVLUkw2XN7qvoe ID7chruZM1PNmXTy0WTzSmt8QpH9YLURECIQs= Received: by 10.42.142.7 with SMTP id q7mr9052589icu.9.1328382427635; Sat, 04 Feb 2012 11:07:07 -0800 (PST) Received: from DataIX.net ([99.181.135.57]) by mx.google.com with ESMTPS id f26sm7549586ibc.9.2012.02.04.11.07.05 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 04 Feb 2012 11:07:06 -0800 (PST) Sender: Jason Hellenthal Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q14J721E027992 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 4 Feb 2012 14:07:03 -0500 (EST) (envelope-from jhell@DataIX.net) Received: (from jhell@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q14J72q2027790; Sat, 4 Feb 2012 14:07:02 -0500 (EST) (envelope-from jhell@DataIX.net) Date: Sat, 4 Feb 2012 14:07:02 -0500 From: Jason Hellenthal To: Jeremy Chadwick Message-ID: <20120204190702.GC37724@DataIX.net> References: <20120204184816.GA52504@icarus.home.lan> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline In-Reply-To: <20120204184816.GA52504@icarus.home.lan> Cc: Warren Block , freebsd-stable@freebsd.org Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 19:07:08 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 04, 2012 at 10:48:16AM -0800, Jeremy Chadwick wrote: > On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > > Trying to build 8-stable i386 for the last couple of days gives this > > error when building the kernel: > >=20 > > /usr/local/libexec/ccache/world/cc -c -O -pipe -march=3Dprescott -std= =3Dc99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/con= trib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno= -common -finline-limit=3D8000 --param inline-unit-growth=3D100 --param larg= e-function-growth=3D1000 -mno-align-long-strings -mpreferred-stack-boundar= y=3D2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fst= ack-protector -Werror vers.c > > linking kernel.debug > > ld: kernel.debug: Not enough room for program headers (allocated 5, nee= d 6) > > ld: final link failed: Bad value > > *** Error code 1 > > 1 error > > *** Error code 2 > > 1 error > > *** Error code 2 > > 1 error >=20 > The freebsd-stable mailing list has been filled with tinderbox failures > for this exact problem with the LINT kernel, and it appears to be > specific to RELENG_8 on i386. >=20 > http://lists.freebsd.org/pipermail/freebsd-stable/2012-February/thread.ht= ml >=20 > Start from the bottom and search upwards for the string: > "[releng_8 tinderbox] failure on i386/i386" >=20 > Point being: the problem is not you. >=20 This is why I don't like ccache. Technically the problem is there but also coexists within the source itself. For whatever reason I would believe a cached copy of already built source is having some collisions. As already stated "NO CCACHE" the kernel can be built with what I posted on three different machines. --=20 ;s =3D; --gKMricLos+KVdGMg Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJPLYHVAAoJEJBXh4mJ2FR+9V0H/jXTOQO8JjIDOe8qJvAbEXKu Im9rdogmcbqQ5TzUcvlCp9DFmIyF/OWrceLau99rCGKEvPYUDI8MgmKk+wTeeZrJ SokuYe1q4PJXqrAX3ktDFfymg5C8MRFefByc722Qkl9G1bQNxoNIDN39VoJZIQsD 5P8kcXeQTUwSuDaZBxYpnuUGx2WJcXgGggu2vUBRAEq+1Zy6Q2217RfFtBWv7Ozs dRf6W56D2/IqF1eud47tJY1W5OLTwz4ljJqyMzLIkgLmZklcGLKVTLFQem3BRLIW 65hepADHpIDxaJ9fM6m9mUZGRhroSp1ksLprwkrPUeET5zKDsxuDY3v/9rY9fgk= =ara/ -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 19:55:03 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BA6D106566B for ; Sat, 4 Feb 2012 19:55:03 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id A9B4F8FC0A for ; Sat, 4 Feb 2012 19:55:02 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q14JswSA061143; Sat, 4 Feb 2012 12:54:58 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q14JswnU061140; Sat, 4 Feb 2012 12:54:58 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sat, 4 Feb 2012 12:54:58 -0700 (MST) From: Warren Block To: Jason Hellenthal In-Reply-To: <20120204190702.GC37724@DataIX.net> Message-ID: References: <20120204184816.GA52504@icarus.home.lan> <20120204190702.GC37724@DataIX.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sat, 04 Feb 2012 12:54:58 -0700 (MST) Cc: freebsd-stable@freebsd.org, Jeremy Chadwick Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 19:55:03 -0000 On Sat, 4 Feb 2012, Jason Hellenthal wrote: > On Sat, Feb 04, 2012 at 10:48:16AM -0800, Jeremy Chadwick wrote: >> On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: >>> Trying to build 8-stable i386 for the last couple of days gives this >>> error when building the kernel: >>> >>> /usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c >>> linking kernel.debug >>> ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) >>> ld: final link failed: Bad value >>> *** Error code 1 >>> 1 error >>> *** Error code 2 >>> 1 error >>> *** Error code 2 >>> 1 error >> >> The freebsd-stable mailing list has been filled with tinderbox failures >> for this exact problem with the LINT kernel, and it appears to be >> specific to RELENG_8 on i386. >> >> http://lists.freebsd.org/pipermail/freebsd-stable/2012-February/thread.html >> >> Start from the bottom and search upwards for the string: >> "[releng_8 tinderbox] failure on i386/i386" >> >> Point being: the problem is not you. >> > > This is why I don't like ccache. Technically the problem is there but > also coexists within the source itself. For whatever reason I would > believe a cached copy of already built source is having some collisions. > As already stated "NO CCACHE" the kernel can be built with what I > posted on three different machines. But it still does (did) not build here with NOCCACHE set, so it's not a ccache problem. From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 19:59:02 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52B15106566B for ; Sat, 4 Feb 2012 19:59:02 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta11.emeryville.ca.mail.comcast.net (qmta11.emeryville.ca.mail.comcast.net [76.96.27.211]) by mx1.freebsd.org (Postfix) with ESMTP id 3264E8FC1F for ; Sat, 4 Feb 2012 19:59:01 +0000 (UTC) Received: from omta23.emeryville.ca.mail.comcast.net ([76.96.30.90]) by qmta11.emeryville.ca.mail.comcast.net with comcast id VvjU1i0011wfjNsABvz1x6; Sat, 04 Feb 2012 19:59:01 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta23.emeryville.ca.mail.comcast.net with comcast id Vvz01i0011t3BNj8jvz09Z; Sat, 04 Feb 2012 19:59:01 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id D6A6D102C19; Sat, 4 Feb 2012 11:58:59 -0800 (PST) Date: Sat, 4 Feb 2012 11:58:59 -0800 From: Jeremy Chadwick To: Warren Block Message-ID: <20120204195859.GA53760@icarus.home.lan> References: <20120204184816.GA52504@icarus.home.lan> <20120204190702.GC37724@DataIX.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Jason Hellenthal , freebsd-stable@freebsd.org Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 19:59:02 -0000 On Sat, Feb 04, 2012 at 12:54:58PM -0700, Warren Block wrote: > On Sat, 4 Feb 2012, Jason Hellenthal wrote: > > >On Sat, Feb 04, 2012 at 10:48:16AM -0800, Jeremy Chadwick wrote: > >>On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > >>>Trying to build 8-stable i386 for the last couple of days gives this > >>>error when building the kernel: > >>> > >>>/usr/local/libexec/ccache/world/cc -c -O -pipe -march=prescott -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror vers.c > >>>linking kernel.debug > >>>ld: kernel.debug: Not enough room for program headers (allocated 5, need 6) > >>>ld: final link failed: Bad value > >>>*** Error code 1 > >>>1 error > >>>*** Error code 2 > >>>1 error > >>>*** Error code 2 > >>>1 error > >> > >>The freebsd-stable mailing list has been filled with tinderbox failures > >>for this exact problem with the LINT kernel, and it appears to be > >>specific to RELENG_8 on i386. > >> > >>http://lists.freebsd.org/pipermail/freebsd-stable/2012-February/thread.html > >> > >>Start from the bottom and search upwards for the string: > >>"[releng_8 tinderbox] failure on i386/i386" > >> > >>Point being: the problem is not you. > >> > > > >This is why I don't like ccache. Technically the problem is there but > >also coexists within the source itself. For whatever reason I would > >believe a cached copy of already built source is having some collisions. > >As already stated "NO CCACHE" the kernel can be built with what I > >posted on three different machines. > > But it still does (did) not build here with NOCCACHE set, so it's > not a ccache problem. Correct. And from what I can tell, the tinderbox builds don't use ccache either, so I'm not sure what Jason is getting at. :-) -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB | From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 22:04:12 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E93F1065672 for ; Sat, 4 Feb 2012 22:04:12 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id B20028FC15 for ; Sat, 4 Feb 2012 22:04:11 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from terra-smin.broadpark.no ([80.202.8.13]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LYW00IIP2MYWH60@thalia-smout.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 23:04:10 +0100 (CET) Received: from kg-v2.kg4.no ([84.215.134.159]) by terra-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTPA id <0LYW00IH82MXOR60@terra-smin.broadpark.no> for freebsd-stable@freebsd.org; Sat, 04 Feb 2012 23:04:10 +0100 (CET) Date: Sat, 04 Feb 2012 23:04:09 +0100 From: Torfinn Ingolfsen To: freebsd-stable@freebsd.org Message-id: <20120204230409.338a597b.torfinn.ingolfsen@broadpark.no> In-reply-to: References: <20120202212222.e940f64c.torfinn.ingolfsen@broadpark.no> <20120203204110.cc933dc5.torfinn.ingolfsen@broadpark.no> <20120204043756.GA67863@DataIX.net> <20120204164423.ba815842.torfinn.ingolfsen@broadpark.no> <20120204165214.6f14f4a5.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd8.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD 8.2-stable: devd fails to restart X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 22:04:12 -0000 On Sat, 04 Feb 2012 10:34:19 -0700 (MST) Warren Block wrote: > > Possibly relevant: > http://www.freebsd.org/cgi/query-pr.cgi?pr=140462&cat= > > (Using DHCP from /etc/rc.conf leaves a lock on devd.pid. SYNCDHCP does > not.) > > And the thread: > http://lists.freebsd.org/pipermail/freebsd-current/2009-October/012749.html Yes, it seems to be that problem. Tested on my other machine, which hasn't changed since the problem was discovered: root@kg-v7# service devd status devd is not running. root@kg-v7# ll /var/run/devd.pid -rw------- 1 root wheel 3 Jan 12 20:40 /var/run/devd.pid root@kg-v7# lsof /var/run/devd.pid COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dhclient 1075 root 5w VREG 0,70 3 918547 /var/run/devd.pid dhclient 1091 _dhcp 5w VREG 0,70 3 918547 /var/run/devd.pid root@kg-v7# So, if this was worked on back in 2009, why isn't fixed yet? -- Torfinn From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 23:03:39 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24A23106566C for ; Sat, 4 Feb 2012 23:03:38 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9789A8FC08 for ; Sat, 4 Feb 2012 23:03:38 +0000 (UTC) Received: by iaeo4 with SMTP id o4so10111518iae.13 for ; Sat, 04 Feb 2012 15:03:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=+vJlnaW4Cv6vk7LfA+evWN11xciYpLpdsEmoDlx2ghc=; b=I2q7b30T3QVhaFbtPiWhCTwPnIIo94TsgZDQtC0DLQX1nKc0HdPA4L+mE5A1JV6bRD X7KabXQH7Uk+fQTZpmbSbWifbFX2aVqxeMaKx8QInA/df7/Qjmhm008ZuZ8JwCClad1+ 48ocix3KmCoyGxiKW0szTDDdGuW2KdncODy/8= Received: by 10.43.49.66 with SMTP id uz2mr11814468icb.38.1328396617950; Sat, 04 Feb 2012 15:03:37 -0800 (PST) Received: from DataIX.net (adsl-99-181-135-57.dsl.klmzmi.sbcglobal.net. [99.181.135.57]) by mx.google.com with ESMTPS id ey5sm667801igb.4.2012.02.04.15.03.35 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 04 Feb 2012 15:03:36 -0800 (PST) Sender: Jason Hellenthal Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q14N3Wtj013872 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 4 Feb 2012 18:03:33 -0500 (EST) (envelope-from jhell@DataIX.net) Received: (from jhell@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q14N3WHm013436; Sat, 4 Feb 2012 18:03:32 -0500 (EST) (envelope-from jhell@DataIX.net) Date: Sat, 4 Feb 2012 18:03:32 -0500 From: Jason Hellenthal To: Warren Block Message-ID: <20120204230332.GA582@DataIX.net> References: <20120204184816.GA52504@icarus.home.lan> <20120204190702.GC37724@DataIX.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: Cc: freebsd-stable@freebsd.org, Jeremy Chadwick Subject: Re: ld: kernel.debug: Not enough room for program headers X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 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, 04 Feb 2012 23:03:39 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 04, 2012 at 12:54:58PM -0700, Warren Block wrote: > On Sat, 4 Feb 2012, Jason Hellenthal wrote: >=20 > > On Sat, Feb 04, 2012 at 10:48:16AM -0800, Jeremy Chadwick wrote: > >> On Sat, Feb 04, 2012 at 10:57:40AM -0700, Warren Block wrote: > >>> Trying to build 8-stable i386 for the last couple of days gives this > >>> error when building the kernel: > >>> > >>> /usr/local/libexec/ccache/world/cc -c -O -pipe -march=3Dprescott -std= =3Dc99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/con= trib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno= -common -finline-limit=3D8000 --param inline-unit-growth=3D100 --param larg= e-function-growth=3D1000 -mno-align-long-strings -mpreferred-stack-boundar= y=3D2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fst= ack-protector -Werror vers.c > >>> linking kernel.debug > >>> ld: kernel.debug: Not enough room for program headers (allocated 5, n= eed 6) > >>> ld: final link failed: Bad value > >>> *** Error code 1 > >>> 1 error > >>> *** Error code 2 > >>> 1 error > >>> *** Error code 2 > >>> 1 error > >> > >> The freebsd-stable mailing list has been filled with tinderbox failures > >> for this exact problem with the LINT kernel, and it appears to be > >> specific to RELENG_8 on i386. > >> > >> http://lists.freebsd.org/pipermail/freebsd-stable/2012-February/thread= =2Ehtml > >> > >> Start from the bottom and search upwards for the string: > >> "[releng_8 tinderbox] failure on i386/i386" > >> > >> Point being: the problem is not you. > >> > > > > This is why I don't like ccache. Technically the problem is there but > > also coexists within the source itself. For whatever reason I would > > believe a cached copy of already built source is having some collisions. > > As already stated "NO CCACHE" the kernel can be built with what I > > posted on three different machines. >=20 > But it still does (did) not build here with NOCCACHE set, so it's not=20 > a ccache problem. I have seen ccache before run anyway even though .if statements are within make.conf to prevent it. It was something to do with make and friends built from world with ccache and after it would continue to use ccache regardless. This can be verified by watching the cache hits and misses during a compile with NOCCACHE set. Its tough to revert from this but involves removing ccache/distcc from the system. --=20 ;s =3D; --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJPLblDAAoJEJBXh4mJ2FR+aMUH/jrmYRawa4qoKsUD7/e7GWsq jlOY1y+MyY0U6qKuawxzxBRvnLZEvB6AUNnpD8ywLFy1Bwa8eMmhCOveqc0fGjK6 LFEPXaGZ3qFD9R53Y2wvZTEjr4fO2yVzQ9g6y8znMVBI3i+2veiCpodB3yrfFEkS J3f6M4lTbAEJ/MtyJ168qnVub0Tq0KHi+OmBBjQiBc1N+Tj/g61Lryy3lFQdbeZI YzihVZcF5ixvkMRVjnBYp1R+NGOyAgcsHN2eWdz7CsbnCTCle0TK5u2b7ZDStWfk eF+Ne3mBOv8qqziVbJDWm/GbsW3nco5AHmtuGU9HbhTriSmGUfTr67lO5SbOSMM= =gmST -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-freebsd-stable@FreeBSD.ORG Sat Feb 4 23:41:59 2012 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DDDB106566B; Sat, 4 Feb 2012 23:41:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 1A1D18FC08; Sat, 4 Feb 2012 23:41:59 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q14NfwGM069329; Sat, 4 Feb 2012 23:41:58 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q14NfwQ4069207; Sat, 4 Feb 2012 23:41:58 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Feb 2012 23:41:58 GMT Message-Id: <201202042341.q14NfwQ4069207@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.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_1 tinderbox] failure on mips/mips X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 23:41:59 -0000 TB --- 2012-02-04 22:53:14 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-02-04 22:53:14 - starting RELENG_8_1 tinderbox run for mips/mips TB --- 2012-02-04 22:53:14 - cleaning the object tree TB --- 2012-02-04 22:53:21 - cvsupping the source tree TB --- 2012-02-04 22:53:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8_1/mips/mips/supfile TB --- 2012-02-04 22:58:46 - building world TB --- 2012-02-04 22:58:46 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 22:58:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 22:58:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 22:58:46 - SRCCONF=/dev/null TB --- 2012-02-04 22:58:46 - TARGET=mips TB --- 2012-02-04 22:58:46 - TARGET_ARCH=mips TB --- 2012-02-04 22:58:46 - TZ=UTC TB --- 2012-02-04 22:58:46 - __MAKE_CONF=/dev/null TB --- 2012-02-04 22:58:46 - cd /src TB --- 2012-02-04 22:58:46 - /usr/bin/make -B buildworld >>> World build started on Sat Feb 4 22:58:46 UTC 2012 >>> 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 >>> World build completed on Sat Feb 4 23:35:13 UTC 2012 TB --- 2012-02-04 23:35:13 - cd /src/sys/mips/conf TB --- 2012-02-04 23:35:13 - /usr/sbin/config -m ADM5120 TB --- 2012-02-04 23:35:13 - building ADM5120 kernel TB --- 2012-02-04 23:35:13 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 23:35:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 23:35:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 23:35:13 - SRCCONF=/dev/null TB --- 2012-02-04 23:35:13 - TARGET=mips TB --- 2012-02-04 23:35:13 - TARGET_ARCH=mips TB --- 2012-02-04 23:35:13 - TZ=UTC TB --- 2012-02-04 23:35:13 - __MAKE_CONF=/dev/null TB --- 2012-02-04 23:35:13 - cd /src TB --- 2012-02-04 23:35:13 - /usr/bin/make -B buildkernel KERNCONF=ADM5120 >>> Kernel build for ADM5120 started on Sat Feb 4 23:35:13 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for ADM5120 completed on Sat Feb 4 23:36:24 UTC 2012 TB --- 2012-02-04 23:36:24 - cd /src/sys/mips/conf TB --- 2012-02-04 23:36:24 - /usr/sbin/config -m IDT TB --- 2012-02-04 23:36:24 - building IDT kernel TB --- 2012-02-04 23:36:24 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 23:36:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 23:36:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 23:36:24 - SRCCONF=/dev/null TB --- 2012-02-04 23:36:24 - TARGET=mips TB --- 2012-02-04 23:36:24 - TARGET_ARCH=mips TB --- 2012-02-04 23:36:24 - TZ=UTC TB --- 2012-02-04 23:36:24 - __MAKE_CONF=/dev/null TB --- 2012-02-04 23:36:24 - cd /src TB --- 2012-02-04 23:36:24 - /usr/bin/make -B buildkernel KERNCONF=IDT >>> Kernel build for IDT started on Sat Feb 4 23:36:24 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for IDT completed on Sat Feb 4 23:37:59 UTC 2012 TB --- 2012-02-04 23:37:59 - cd /src/sys/mips/conf TB --- 2012-02-04 23:37:59 - /usr/sbin/config -m MALTA TB --- 2012-02-04 23:37:59 - building MALTA kernel TB --- 2012-02-04 23:37:59 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 23:37:59 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 23:37:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 23:37:59 - SRCCONF=/dev/null TB --- 2012-02-04 23:37:59 - TARGET=mips TB --- 2012-02-04 23:37:59 - TARGET_ARCH=mips TB --- 2012-02-04 23:37:59 - TZ=UTC TB --- 2012-02-04 23:37:59 - __MAKE_CONF=/dev/null TB --- 2012-02-04 23:37:59 - cd /src TB --- 2012-02-04 23:37:59 - /usr/bin/make -B buildkernel KERNCONF=MALTA >>> Kernel build for MALTA started on Sat Feb 4 23:37:59 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for MALTA completed on Sat Feb 4 23:39:25 UTC 2012 TB --- 2012-02-04 23:39:25 - cd /src/sys/mips/conf TB --- 2012-02-04 23:39:25 - /usr/sbin/config -m QEMU TB --- 2012-02-04 23:39:25 - building QEMU kernel TB --- 2012-02-04 23:39:25 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 23:39:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 23:39:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 23:39:25 - SRCCONF=/dev/null TB --- 2012-02-04 23:39:25 - TARGET=mips TB --- 2012-02-04 23:39:25 - TARGET_ARCH=mips TB --- 2012-02-04 23:39:25 - TZ=UTC TB --- 2012-02-04 23:39:25 - __MAKE_CONF=/dev/null TB --- 2012-02-04 23:39:25 - cd /src TB --- 2012-02-04 23:39:25 - /usr/bin/make -B buildkernel KERNCONF=QEMU >>> Kernel build for QEMU started on Sat Feb 4 23:39:25 UTC 2012 >>> 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 >>> stage 3.2: building everything >>> Kernel build for QEMU completed on Sat Feb 4 23:40:39 UTC 2012 TB --- 2012-02-04 23:40:39 - cd /src/sys/mips/conf TB --- 2012-02-04 23:40:39 - /usr/sbin/config -m SENTRY5 TB --- 2012-02-04 23:40:39 - building SENTRY5 kernel TB --- 2012-02-04 23:40:39 - CROSS_BUILD_TESTING=YES TB --- 2012-02-04 23:40:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-02-04 23:40:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-02-04 23:40:39 - SRCCONF=/dev/null TB --- 2012-02-04 23:40:39 - TARGET=mips TB --- 2012-02-04 23:40:39 - TARGET_ARCH=mips TB --- 2012-02-04 23:40:39 - TZ=UTC TB --- 2012-02-04 23:40:39 - __MAKE_CONF=/dev/null TB --- 2012-02-04 23:40:39 - cd /src TB --- 2012-02-04 23:40:39 - /usr/bin/make -B buildkernel KERNCONF=SENTRY5 >>> Kernel build for SENTRY5 started on Sat Feb 4 23:40:39 UTC 2012 >>> 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 >>> stage 3.2: building everything [...] 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/cfe/cfe_console.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/s5_machdep.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/dev/siba/siba_pcib.c 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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -EL -fno-pic -mno-abicalls -G0 -march=mips32 -msoft-float -mno-dsp -ffreestanding -Werror /src/sys/mips/sentry5/siba_cc.c In file included from /src/sys/mips/sentry5/siba_cc.c:58: /src/sys/dev/siba/sibavar.h:487: error: field 'sd_id' has incomplete type /src/sys/dev/siba/sibavar.h:526: error: 'SIBA_MAX_CORES' undeclared here (not in a function) *** Error code 1 Stop in /obj/mips/src/sys/SENTRY5. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-02-04 23:41:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-02-04 23:41:58 - ERROR: failed to build SENTRY5 kernel TB --- 2012-02-04 23:41:58 - 1982.18 user 421.91 system 2924.21 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8_1-mips-mips.full