From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 08:06:56 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 610FD106564A for ; Sun, 20 Mar 2011 08:06:56 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id EABF28FC1E for ; Sun, 20 Mar 2011 08:06:55 +0000 (UTC) Received: by fxm11 with SMTP id 11so5562384fxm.13 for ; Sun, 20 Mar 2011 01:06:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=tDeVI4OuJLA+clFk4LnrwaePYA/Ly694HPwc8+HL4PU=; b=g2VMIque+xOQ3fRWR7DffD59hm0p4w97u/EnDVrIzmkm+In3K/Ov1AJosz+px51zDD IsTvrWxlV9m3s1Cf95EnZit0dntNddzgU3jNpaNGpLiaOXsG7mSyrnDbEnKBaTvHvEID l+fWQDh7BqW6zyAYwWUoofUiaC4GTmpzYFF9U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=n3veBtj90UM9OWQJVbp+glyxP/rH1U6x75nmfx1Qln+XcRQJWS8TPF/JW7f4woymY7 2EZcaCS1t9Uge72ACAJGXt6FsveOBtGLTsewrhiCnplhyKB7bF/XPLo6pLME39QFOfF3 /pjRMxlUqKhj2XIpV69jA7Kdx0fm0tbnzhcfM= Received: by 10.223.143.12 with SMTP id s12mr1932864fau.121.1300606561776; Sun, 20 Mar 2011 00:36:01 -0700 (PDT) Received: from Melon.malikania.fr (65.21.102-84.rev.gaoland.net [84.102.21.65]) by mx.google.com with ESMTPS id l4sm402578fan.14.2011.03.20.00.35.59 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 00:36:00 -0700 (PDT) Message-ID: <4D85AE1B.7010407@gmail.com> Date: Sun, 20 Mar 2011 08:34:51 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110306 Thunderbird/3.1.9 MIME-Version: 1.0 To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 08:06:56 -0000 Hello, I was surprised to see there is no ${MK_JAIL} conditional to remove old files on 8.2-RELEASE so I started to write it without watching if -CURRENT already make it in /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. .if ${MK_JAIL} == no OLD_FILES+=usr/sbin/jail OLD_FILES+=usr/sbin/jexec OLD_FILES+=usr/sbin/jls OLD_FILES+=usr/share/man/man8/jail.8.gz OLD_FILES+=usr/share/man/man8/jexec.8.gz OLD_FILES+=usr/share/man/man8/jls.8.gz .endif I personnaly added more files : OLD_LIBS+=lib/libjail.so.1 OLD_LIBS+=usr/lib/libjail.a OLD_LIBS+=usr/lib/libjail_p.a OLD_FILES+=usr/lib/libjail.so OLD_FILES+=etc/rc.d/jail (/usr/lib/libjail.so is a symbolic link) I think they should be removed too, thus can you merge it to -STABLE if it's not already done? (sorry I'm not used to the cvs web interface and I don't have -STABLE right now) Cheers, -- David Demelier From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 10:18:56 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id 2A6CF1065673; Sun, 20 Mar 2011 10:18:56 +0000 (UTC) Date: Sun, 20 Mar 2011 10:18:56 +0000 From: Alexander Best To: David Demelier Message-ID: <20110320101856.GA20122@freebsd.org> References: <4D85AE1B.7010407@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D85AE1B.7010407@gmail.com> Cc: freebsd-current@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 10:18:56 -0000 On Sun Mar 20 11, David Demelier wrote: > Hello, > > I was surprised to see there is no ${MK_JAIL} conditional to remove old > files on 8.2-RELEASE so I started to write it without watching if > -CURRENT already make it in > /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. i think it's best to post any OptionalObsoleteFiles.inc related additions as problem reports. i've also added quite a lot of files for not yet implemented WITHOUT_* knobs and sent them to freebsd-{current,hackers}, but nobody was willing to commit my patches. my experience so far has been: - for patches that fix bugs, it's better to send these to the mailinglists - for patches that implement any new functionality the problem report database is better suited and chances are much higher your patch will get picked up by somebody with commit rights cheers. alex > > .if ${MK_JAIL} == no > OLD_FILES+=usr/sbin/jail > OLD_FILES+=usr/sbin/jexec > OLD_FILES+=usr/sbin/jls > OLD_FILES+=usr/share/man/man8/jail.8.gz > OLD_FILES+=usr/share/man/man8/jexec.8.gz > OLD_FILES+=usr/share/man/man8/jls.8.gz > .endif > > I personnaly added more files : > > OLD_LIBS+=lib/libjail.so.1 > OLD_LIBS+=usr/lib/libjail.a > OLD_LIBS+=usr/lib/libjail_p.a > OLD_FILES+=usr/lib/libjail.so > OLD_FILES+=etc/rc.d/jail > > (/usr/lib/libjail.so is a symbolic link) > > I think they should be removed too, thus can you merge it to -STABLE if > it's not already done? (sorry I'm not used to the cvs web interface and > I don't have -STABLE right now) > > Cheers, > > -- > David Demelier -- a13x From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 13:36:12 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61CD6106566B; Sun, 20 Mar 2011 13:36:12 +0000 (UTC) (envelope-from ray@ddteam.net) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id C17A98FC19; Sun, 20 Mar 2011 13:36:11 +0000 (UTC) Received: by bwz12 with SMTP id 12so5002127bwz.13 for ; Sun, 20 Mar 2011 06:36:10 -0700 (PDT) Received: by 10.204.22.202 with SMTP id o10mr2770562bkb.70.1300628170000; Sun, 20 Mar 2011 06:36:10 -0700 (PDT) Received: from rnote.ddteam.net (170-87-133-95.pool.ukrtel.net [95.133.87.170]) by mx.google.com with ESMTPS id l1sm3580107bkl.1.2011.03.20.06.36.07 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 06:36:08 -0700 (PDT) Date: Sun, 20 Mar 2011 15:36:04 +0200 From: Aleksandr Rybalko To: "Sergey V. Dyatko" Message-Id: <20110320153604.e8245880.ray@ddteam.net> In-Reply-To: <20110317110700.05191e8f@gmail.com> References: <20110314162936.d3f8fd5b.ray@dlink.ua> <4D80EE33.7010703@janh.de> <20110317100804.2dde85ba@gmail.com> <20110317110700.05191e8f@gmail.com> X-Mailer: Sylpheed 3.1.0 (GTK+ 2.22.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Jan Henrik Sylvester , Aleksandr Rybalko , Adrian Chadd , current-list freebsd Subject: [CFT]RT28xx/RT30xx wireless was [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 13:36:12 -0000 Hi folks, new version of patch for wireless card based on Ralink RT2860 plus RT3090 that required testing. Main part: http://my.ddteam.net/files/2011-03-20_rt2860.patch sys/conf/(files|options), same as last: http://my.ddteam.net/files/2011-03-18_rt2860_invoking.patch Who use Ralink PCI/miniPCI/PCIE wireless cards, please test driver and send info about success or failures. Thanks. -- Aleksandr Rybalko From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 15:31:53 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 567CA1065670; Sun, 20 Mar 2011 15:31:53 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id E7DAD8FC24; Sun, 20 Mar 2011 15:31:52 +0000 (UTC) Received: by vxc34 with SMTP id 34so5347679vxc.13 for ; Sun, 20 Mar 2011 08:31:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=hokF0exBawLHJyjFiTzJd7IiIzpEuYB6Gri6GmYLXFk=; b=wmCWaTXGczZsAnhtHs05Zqt/4byhjxmnnzYUE2wdVI95mBFUheB6zlo6DL6jObrafF oOViNBraTMWiujANRjFVsb3hxxX6QhbifdDN19rYB03kYdsZT/eMKpbEW0cNUql11Ddh dUff1/gvxvkwLmuIhXvCM7/jkMFUNNADXnYmM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=VzB5cL4zvFubuHCVkUcKl6NcWwbVuJGU/QRugWwC17Oy4kBRMai7XNcscMJmV8hgVI VusSN8NtcBYVVOpd9GbmWVucHzRPlcIHYLigH75OXKwnTiF4NepXivma0bazanCkA6H3 8SYgweuYKW4YYw7ylLOktTBQj2IdRU/tKNFYI= MIME-Version: 1.0 Received: by 10.52.18.74 with SMTP id u10mr3311754vdd.216.1300635111838; Sun, 20 Mar 2011 08:31:51 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.52.165.34 with HTTP; Sun, 20 Mar 2011 08:31:51 -0700 (PDT) In-Reply-To: <20110314162936.d3f8fd5b.ray@dlink.ua> References: <20110314162936.d3f8fd5b.ray@dlink.ua> Date: Sun, 20 Mar 2011 23:31:51 +0800 X-Google-Sender-Auth: zk966uALnMllJAV0WL8mx2XgLrw Message-ID: From: Adrian Chadd To: Aleksandr Rybalko Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-current@freebsd.org, freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 15:31:53 -0000 Hi all, I plan on tidying up the initial support patch (removing some of the stuff that snuck in from the ethernet, switch and wifi parts) and committing this sometime in the next week or so. I don't (yet) have hardware to test it myself. I'll just do a compile run and try to make sure it hasn't broken anything. I'll then take responsibility in case it breaks anything else in the build. Aleksandr will take responsibility for fixing bugs. :) Thankyou for your hard work Aleksandr! Adrian On 14 March 2011 22:29, Aleksandr Rybalko wrote: > > Hello, all. > > I am pleased to present support for Ralink RT3050F/RT3052F MIPS SoC's for > FreeBSD. > > This patches add support of > 1. GPIO/Interrupt/System/UART controllers + internal bus > http://my.ddteam.net/files/2011-03-14_RT305xF_support.patch > 2. RT305xF embedded ethernet controller > http://my.ddteam.net/files/2011-03-14_RT305xF_ether_support.patch > 3. RT2860 802.11n controller authors Damien Bergamini and Alexander > Egorenkov > http://my.ddteam.net/files/2011-03-14_rt2860.patch > only modification to work with RT2872 (embedded to RT305[02]F) wrote > by me. > > Also supported DWC like USB OTG controller, not included now, because have > many issues: > 1. Don't support SPIT transactions (FS device on HS Hub) yet. > 2. Don't support ISOC transactions yet. > 3. And have problems with some devices, possibly timing problem. > You can found it at > http://my.ddteam.net/hg/BASE/file/dd632189c3a0/head/sys/dev/usb/controller/ files dotg* > > > Also supported internal switch, not included now, because this part of not > done Switch API project. > You can found it at > http://my.ddteam.net/hg/BASE/file/dd632189c3a0/head/sys/dev/switch/ > > Remaining issues: > RT2860 support only Open(no crypto) mode for RT305[02]F > > Comments are welcome. > Want to know, what I do right or what wrong :) > > -- > Alexandr Rybalko > aka Alex RAY > _______________________________________________ > freebsd-mips@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mips > To unsubscribe, send any mail to "freebsd-mips-unsubscribe@freebsd.org" > From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 16:32:03 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A72201065670 for ; Sun, 20 Mar 2011 16:32:03 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 6A3468FC12 for ; Sun, 20 Mar 2011 16:32:03 +0000 (UTC) Received: from outgoing.leidinger.net (p5B154CFB.dip.t-dialin.net [91.21.76.251]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 5417A84400E; Sun, 20 Mar 2011 17:31:59 +0100 (CET) Received: from unknown (IO.Leidinger.net [192.168.2.110]) by outgoing.leidinger.net (Postfix) with ESMTP id A30BD3F8A; Sun, 20 Mar 2011 17:31:56 +0100 (CET) Date: Sun, 20 Mar 2011 17:31:57 +0100 From: Alexander Leidinger To: David Demelier Message-ID: <20110320173157.00002024@unknown> In-Reply-To: <4D85AE1B.7010407@gmail.com> References: <4D85AE1B.7010407@gmail.com> X-Mailer: Claws Mail 3.7.8cvs47 (GTK+ 2.16.6; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 5417A84400E.A408F X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-0.923, required 6, autolearn=disabled, ALL_TRUSTED -1.00, TW_IB 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301243520.51949@n/HUoipTR8ICo7W8i3SjFA X-EBL-Spam-Status: No Cc: freebsd-current@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 16:32:03 -0000 On Sun, 20 Mar 2011 08:34:51 +0100 David Demelier wrote: > Hello, > > I was surprised to see there is no ${MK_JAIL} conditional to remove > old files on 8.2-RELEASE so I started to write it without watching if > -CURRENT already make it in > /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. > > .if ${MK_JAIL} == no > OLD_FILES+=usr/sbin/jail > OLD_FILES+=usr/sbin/jexec > OLD_FILES+=usr/sbin/jls > OLD_FILES+=usr/share/man/man8/jail.8.gz > OLD_FILES+=usr/share/man/man8/jexec.8.gz > OLD_FILES+=usr/share/man/man8/jls.8.gz > .endif > > I personnaly added more files : > > OLD_LIBS+=lib/libjail.so.1 > OLD_LIBS+=usr/lib/libjail.a > OLD_LIBS+=usr/lib/libjail_p.a > OLD_FILES+=usr/lib/libjail.so > OLD_FILES+=etc/rc.d/jail So if you do an installworld, do those files you added show up again or not? If they show up, they are wrong to be added there. Delete old is supposed to delete stuff which does not get installed during an installworld but was installed in some older version of FreeBSD. From my reading of the Makefile in src/lib/ (on -current) it looks like at least the libjail is installed regardless of the knob. I do not know if this is a bug or by design, this would have to be discussed on the mailinglist which is about FreeBSD jails. If those files are not installed during an installworld, it's obviously a bug which needs to be fixed (and I would have misunderstood the Makefile). > (/usr/lib/libjail.so is a symbolic link) > > I think they should be removed too, thus can you merge it to -STABLE > if it's not already done? (sorry I'm not used to the cvs web > interface and I don't have -STABLE right now) > > Cheers, > From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 19:41:42 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C84AE106564A; Sun, 20 Mar 2011 19:41:41 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.35]) by mx1.freebsd.org (Postfix) with ESMTP id 8AABD8FC0A; Sun, 20 Mar 2011 19:41:41 +0000 (UTC) Received: from [78.34.148.193] (helo=r500.local) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1Q1OVQ-0005tz-3A; Sun, 20 Mar 2011 20:41:40 +0100 Date: Sun, 20 Mar 2011 20:41:04 +0100 From: Fabian Keil To: Roman Divacky Message-ID: <20110320204104.2cc0ef74@r500.local> In-Reply-To: <20110314185943.GA98118@freebsd.org> References: <20110314185943.GA98118@freebsd.org> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; amd64-portbld-freebsd9.0) X-PGP-KEY-URL: http://www.fabiankeil.de/gpg-keys/freebsd-listen-2008-08-18.asc Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/4ZNq3+Y40E5FYlUvTUdNbaY"; protocol="application/pgp-signature" X-Df-Sender: 775067 Cc: current@freebsd.org Subject: Re: [TESTING]: boot2 compilation with -mregparm=3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 19:41:42 -0000 --Sig_/4ZNq3+Y40E5FYlUvTUdNbaY Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Roman Divacky wrote: > This patch: >=20 >=20 > http://lev.vlakno.cz/~rdivacky/boot2-mregparm.patch >=20 >=20 > makes boot2 to be compiled with -mregparm=3D3 (which shrinks it > some). It changes CFLAGS to include -mregparm=3D3 and also > rewrites sio.S to use register passing. >=20 > This survived my testing in qemu and jhb@s review. Works for me on amd64 with gcc, but I don't use either a serial console or gptboot/zfsboot. Fabian --Sig_/4ZNq3+Y40E5FYlUvTUdNbaY Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (FreeBSD) iEYEARECAAYFAk2GWFcACgkQBYqIVf93VJ2YzQCfQPC/ys9xa9AEQ0aW0klop3OB +7YAnR8gjr7YeA+gNMvVqETwkdrTZ+CW =hQ6P -----END PGP SIGNATURE----- --Sig_/4ZNq3+Y40E5FYlUvTUdNbaY-- From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 20:19:43 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7E841065672; Sun, 20 Mar 2011 20:19:43 +0000 (UTC) (envelope-from sergey.dyatko@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 183618FC0A; Sun, 20 Mar 2011 20:19:42 +0000 (UTC) Received: by bwz12 with SMTP id 12so5182297bwz.13 for ; Sun, 20 Mar 2011 13:19:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:in-reply-to :references:x-mailer:mime-version:content-type :content-transfer-encoding; bh=2kr2pkkm4bRsZLXXb9414vlI1ztFUWfKh2vYcWOZihA=; b=mmGKfogs7n5yn59uCGY+BwZcznd5z+juL87HMGHL/VtjZrpFNe0OHcGUG9mWUy/Iib WfVVBULot4MZBmmDok28KHJbH1CUC/n11SUL0MP1N3QzaN5MuLoYhfsjj8Luz8NF7GId Af/uNxPVyufIOlp3qekDp3dE8Tnr6fMQ61foQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=sBe7yr8fJb7KnzKB2l7yJGLsRcismLLSOP2EzOKQQgPr7s0ZQN/HAG8/fArUUv8sZP 0BHrS+HcU8mZenhca0l6Q6T5fc6NWzf5sn6Hb+ZQHDANPmqYEotx7Cps4dw1EfxMEZ/O tUie/cd6Ttpsz08K3a3BmSWy124g+OYF092Eg= Received: by 10.204.172.129 with SMTP id l1mr2949935bkz.99.1300652381164; Sun, 20 Mar 2011 13:19:41 -0700 (PDT) Received: from localhost ([178.125.242.167]) by mx.google.com with ESMTPS id 16sm554219bkm.18.2011.03.20.13.19.38 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 13:19:39 -0700 (PDT) Date: Sun, 20 Mar 2011 22:19:54 +0200 From: "Sergey V. Dyatko" To: Aleksandr Rybalko Message-ID: <20110320221954.7f295b48@gmail.com> In-Reply-To: <20110320153604.e8245880.ray@ddteam.net> References: <20110314162936.d3f8fd5b.ray@dlink.ua> <4D80EE33.7010703@janh.de> <20110317100804.2dde85ba@gmail.com> <20110317110700.05191e8f@gmail.com> <20110320153604.e8245880.ray@ddteam.net> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; i386-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Jan Henrik Sylvester , Aleksandr Rybalko , Adrian Chadd , current-list freebsd Subject: Re: [CFT]RT28xx/RT30xx wireless was [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 20:19:44 -0000 On Sun, 20 Mar 2011 15:36:04 +0200 Aleksandr Rybalko wrote: > Hi folks, > > new version of patch for wireless card based on Ralink RT2860 plus > RT3090 that required testing. > > Main part: > http://my.ddteam.net/files/2011-03-20_rt2860.patch > > sys/conf/(files|options), same as last: > http://my.ddteam.net/files/2011-03-18_rt2860_invoking.patch > > Who use Ralink PCI/miniPCI/PCIE wireless cards, please test driver and > send info about success or failures. > > Thanks. > Hi, Aleksandr good job, seems its works:) kldload/kldunload - ok kldload - http://tiger.ipfw.ru/files/dmesg_rt3090.txt ifconfig: rt28600: flags=8843 metric 0 mtu 2290 ether 00:26:82:3c:da:2a media: IEEE 802.11 Wireless Ethernet autoselect mode 11g status: associated wlan0: flags=8843 metric 0 mtu 1500 ether 00:26:82:3c:da:2a inet 192.168.1.11 netmask 0xffffff00 broadcast 192.168.1.255 media: IEEE 802.11 Wireless Ethernet OFDM/54Mbps mode 11g status: associated ssid ZyXEL channel 6 (2437 MHz 11g) bssid 00:13:49:d4:93:56 country US authmode WPA2/802.11i privacy ON deftxkey UNDEF AES-CCM 2:128-bit txpower 0 bmiss 7 scanvalid 450 bgscan bgscanintvl 300 bgscanidle 250 roam:rssi 7 roam:rate 5 protmode CTS wme burst roaming MANUAL [tiger@laptop]~%ifconfig wlan0 list scan SSID/MESH ID BSSID CHAN RATE S:N INT CAPS novik 00:1e:73:45:66:28 1 54M -58:-95 100 EP WPA ZyXEL 00:13:49:d4:93:56 6 54M -32:-95 100 EP RSN -- wbr, tiger From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 20:34:33 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8A97106564A; Sun, 20 Mar 2011 20:34:33 +0000 (UTC) (envelope-from sergey.dyatko@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id D42F48FC13; Sun, 20 Mar 2011 20:34:32 +0000 (UTC) Received: by bwz12 with SMTP id 12so5188635bwz.13 for ; Sun, 20 Mar 2011 13:34:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:in-reply-to :references:x-mailer:mime-version:content-type :content-transfer-encoding; bh=5LTvz4fMgblTVNUGjXaUIqob+143dYSjtznqvt+btfo=; b=HNmyVelZ09Sz5rIq7r/9FyuDjlUss6We+knFytE4JH6R893CsSyftYvogleNFGw0OU rQOaRsELYAfV11JLH7s9YaEKv+07z4nlApZswo9bdEjPPDQ2V2oYQf1wRBoURHi8WbZ4 5H5kKknW/HPhz0iZtg9wK+14GqVo5ZVTf0RJo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=c/owemQfC1eWI4p9XCMISXI+H1bzNhLVjjkTwPbXhlO2dD64nmZuOsmmIurQNwrtoj E9sA2DSzyK/hscdiyO1aqHr9B1rs9JPldCj4gKLmey8B0t5p2Gx62Uu1Ky46ztY775/B KtwH0yrMld8BZT4HzZ4LaFmYJUEv2APBAp1f4= Received: by 10.204.187.194 with SMTP id cx2mr407437bkb.167.1300652925591; Sun, 20 Mar 2011 13:28:45 -0700 (PDT) Received: from localhost ([178.125.242.167]) by mx.google.com with ESMTPS id 16sm560241bkm.6.2011.03.20.13.28.43 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 13:28:44 -0700 (PDT) Date: Sun, 20 Mar 2011 22:28:59 +0200 From: "Sergey V. Dyatko" To: Adrian Chadd Message-ID: <20110320222859.4cf96caf@gmail.com> In-Reply-To: References: <20110314162936.d3f8fd5b.ray@dlink.ua> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; i386-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Aleksandr Rybalko , freebsd-current@freebsd.org, freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 20:34:33 -0000 On Sun, 20 Mar 2011 23:31:51 +0800 Adrian Chadd wrote: > Hi all, > Hi, Adrian > I plan on tidying up the initial support patch (removing some of the > stuff that snuck in from the ethernet, switch and wifi parts) and > committing this sometime in the next week or so. > > I don't (yet) have hardware to test it myself. I'll just do a compile > run and try to make sure it hasn't broken anything. > > I'll then take responsibility in case it breaks anything else in the > build. Aleksandr will take responsibility for fixing bugs. :) > > Thankyou for your hard work Aleksandr! > Last patch from Aleksandr 'works fine for me', so... may be rt2860 should be replaced to 'rt' for example ? rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than rt28600: flags= > > Adrian > > On 14 March 2011 22:29, Aleksandr Rybalko wrote: > > > > > Hello, all. > > > > I am pleased to present support for Ralink RT3050F/RT3052F MIPS > > SoC's for FreeBSD. > > > > This patches add support of > > 1. GPIO/Interrupt/System/UART controllers + internal bus > > http://my.ddteam.net/files/2011-03-14_RT305xF_support.patch > > 2. RT305xF embedded ethernet controller > > http://my.ddteam.net/files/2011-03-14_RT305xF_ether_support.patch > > 3. RT2860 802.11n controller authors Damien Bergamini and Alexander > > Egorenkov > > http://my.ddteam.net/files/2011-03-14_rt2860.patch > > only modification to work with RT2872 (embedded to > > RT305[02]F) wrote by me. > > > > Also supported DWC like USB OTG controller, not included now, > > because have many issues: > > 1. Don't support SPIT transactions (FS device on HS Hub) yet. > > 2. Don't support ISOC transactions yet. > > 3. And have problems with some devices, possibly timing problem. > > You can found it at > > http://my.ddteam.net/hg/BASE/file/dd632189c3a0/head/sys/dev/usb/controller/ > > files dotg* > > > > > > Also supported internal switch, not included now, because this part > > of not done Switch API project. > > You can found it at > > http://my.ddteam.net/hg/BASE/file/dd632189c3a0/head/sys/dev/switch/ > > > > Remaining issues: > > RT2860 support only Open(no crypto) mode for RT305[02]F > > > > Comments are welcome. > > Want to know, what I do right or what wrong :) > > > > -- > > Alexandr Rybalko > > aka Alex RAY -- wbr, tiger From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 21:59:46 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83B05106566B; Sun, 20 Mar 2011 21:59:46 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 25FF78FC0C; Sun, 20 Mar 2011 21:59:45 +0000 (UTC) Received: by vxc34 with SMTP id 34so5502803vxc.13 for ; Sun, 20 Mar 2011 14:59:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=WfhJJ7fFUPvHIM8vlf7oV54j9qUv06oXox7mYVaBvUk=; b=fR5HIw14NJnwIrT+mtaKkbePNehw3Gknu2E6V5oBaNPgJJ19Y7qMjW55Wu6f4h9YcG YVF/rVxDWnRgcldfM/O9zFLxIfqVl5LoZOcDQk9jnzlWyrRTlG42GSmvVr9M7v1u2Lmo o0OZs0DcnFEYsvgtYQ2zuX+NodsuehXWrKSLM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=HL98DxRnpZsi/xqcx5PKn8bJZISnWL4ABx0mhbbn/OfdgbsX2HCA3PPU0ZiJ24srBj d3a0QH3mP3HY2WFmh19EmWLhFBnkFS8Z2GCOuval048h+q6VCKAmLzzzjW/49jSEPvNM gQSYIeZv4BIos0xHmRPGMZ060K3EljmVIn/lY= MIME-Version: 1.0 Received: by 10.52.18.74 with SMTP id u10mr3678828vdd.216.1300658385398; Sun, 20 Mar 2011 14:59:45 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.52.165.34 with HTTP; Sun, 20 Mar 2011 14:59:45 -0700 (PDT) In-Reply-To: <20110320222859.4cf96caf@gmail.com> References: <20110314162936.d3f8fd5b.ray@dlink.ua> <20110320222859.4cf96caf@gmail.com> Date: Mon, 21 Mar 2011 05:59:45 +0800 X-Google-Sender-Auth: 8nPI-v0K1z1oDpDj_bEMXeVFZ8o Message-ID: From: Adrian Chadd To: "Sergey V. Dyatko" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Aleksandr Rybalko , freebsd-current@freebsd.org, freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 21:59:46 -0000 On 21 March 2011 04:28, Sergey V. Dyatko wrote: > Last patch from Aleksandr 'works fine for me', so... may be rt2860 > should be replaced to 'rt' for example ? > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than > rt28600: flags= > Yup, that's a good idea. Aleksandr, can you please do that? Adrian From owner-freebsd-current@FreeBSD.ORG Sun Mar 20 23:16:08 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4440106566B; Sun, 20 Mar 2011 23:16:08 +0000 (UTC) (envelope-from ray@ddteam.net) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 335BA8FC14; Sun, 20 Mar 2011 23:16:07 +0000 (UTC) Received: by fxm11 with SMTP id 11so5943946fxm.13 for ; Sun, 20 Mar 2011 16:16:07 -0700 (PDT) Received: by 10.223.55.12 with SMTP id s12mr4082376fag.124.1300662966991; Sun, 20 Mar 2011 16:16:06 -0700 (PDT) Received: from rnote.ddteam.net (28-115-133-95.pool.ukrtel.net [95.133.115.28]) by mx.google.com with ESMTPS id c21sm1980389fac.22.2011.03.20.16.16.05 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 16:16:06 -0700 (PDT) Date: Mon, 21 Mar 2011 01:16:01 +0200 From: Aleksandr Rybalko To: Adrian Chadd Message-Id: <20110321011601.6e72f00f.ray@ddteam.net> In-Reply-To: References: <20110314162936.d3f8fd5b.ray@dlink.ua> <20110320222859.4cf96caf@gmail.com> X-Mailer: Sylpheed 3.1.0 (GTK+ 2.22.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Aleksandr Rybalko , "Sergey V. Dyatko" , freebsd-mips@freebsd.org, freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2011 23:16:09 -0000 On Mon, 21 Mar 2011 05:59:45 +0800 Adrian Chadd wrote: > On 21 March 2011 04:28, Sergey V. Dyatko > wrote: > > > > Last patch from Aleksandr 'works fine for me', so... may be rt2860 > > should be replaced to 'rt' for example ? > > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than > > rt28600: flags= > > > > Yup, that's a good idea. Aleksandr, can you please do that? Off-course I can, but seems better name will be rtw or rtn, because we already have if_rt (for RT3052 ether) which have iface name "rt". I think "rtn" is best. Maybe someone have better? > > > Adrian -- Aleksandr Rybalko From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 01:01:48 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 920F21065670 for ; Mon, 21 Mar 2011 01:01:48 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5DE6E8FC08 for ; Mon, 21 Mar 2011 01:01:47 +0000 (UTC) Received: by gwb15 with SMTP id 15so2566017gwb.13 for ; Sun, 20 Mar 2011 18:01:47 -0700 (PDT) Received: by 10.236.187.102 with SMTP id x66mr4401114yhm.159.1300667829826; Sun, 20 Mar 2011 17:37:09 -0700 (PDT) Received: from [10.0.1.198] ([72.253.42.56]) by mx.google.com with ESMTPS id p59sm768317yhm.46.2011.03.20.17.37.07 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 17:37:08 -0700 (PDT) Date: Sun, 20 Mar 2011 14:40:39 -1000 (HST) From: Jeff Roberson X-X-Sender: jroberson@desktop To: current@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 Cc: Subject: SUJ Bugs X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 01:01:48 -0000 Hello, I have lost track of what bugs are pesently outstanding in SUJ. If you have experienced a problem that prevented you from using SUJ please try again and report your issue to me directly. I don't always have the time to read current@ so mails sent without cc will get more attention. We had a solid bug busting push a few months ago. I have more time now to look at things again and I intend to address the few performance issues we've turned up as well. The goal is to make SUJ the default for 9.0 but we can only make this happen with your assistance. My apologies if I missed emails with issues. Thanks, Jeff From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 06:05:31 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D811E106566B for ; Mon, 21 Mar 2011 06:05:31 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 668818FC12 for ; Mon, 21 Mar 2011 06:05:30 +0000 (UTC) Received: by fxm11 with SMTP id 11so6125471fxm.13 for ; Sun, 20 Mar 2011 23:05:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=K0WNs7zQ7/eR3FGbUSEFMRFtTrVT7tt6w05yeg0Qh1g=; b=Ix/JFH+zJpCPu8zXaRWdoDx8gE2GXSBiA7ymXeDjPs61WIOdDNkD2NUAa1ioTBVUdO NfzGHI+eOR39TWXqA8shlXrviX6WSbIrZ+Q7t6OHQvJkyxTO7mLsB3ZtDv13v/M+S7R3 jhdl8LMg7oqO1dQ0gST8eTJBYbVFl/VMaxP9w= DomainKey-Signature: a=rsa-sha1; c=nofws; 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; b=EPjd95JQZEQF/G84wIjQ0euvw6bz5E7xQ88bIdEeG0IdJv+Hr3c8yt0UZJBPSTsYfc Lk95eHNXXAzyJ1oeUBTUja8iO35VesIZQvWJZZIAPzw+n1PKCwL6IpuRlK5cyt7IdNUu rD0WY1KOt/gfYN0fDlDj0JqdYSEsNn6VVX7NM= Received: by 10.223.91.69 with SMTP id l5mr4445408fam.32.1300687530321; Sun, 20 Mar 2011 23:05:30 -0700 (PDT) Received: from Melon.malikania.fr (65.21.102-84.rev.gaoland.net [84.102.21.65]) by mx.google.com with ESMTPS id o12sm2109404fav.6.2011.03.20.23.05.28 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 23:05:28 -0700 (PDT) Message-ID: <4D86EA62.9060506@gmail.com> Date: Mon, 21 Mar 2011 07:04:18 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110306 Thunderbird/3.1.9 MIME-Version: 1.0 To: Alexander Leidinger References: <4D85AE1B.7010407@gmail.com> <20110320173157.00002024@unknown> In-Reply-To: <20110320173157.00002024@unknown> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 06:05:32 -0000 On 20/03/2011 17:31, Alexander Leidinger wrote: > On Sun, 20 Mar 2011 08:34:51 +0100 David Demelier > wrote: > >> Hello, >> >> I was surprised to see there is no ${MK_JAIL} conditional to remove >> old files on 8.2-RELEASE so I started to write it without watching if >> -CURRENT already make it in >> /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. >> >> .if ${MK_JAIL} == no >> OLD_FILES+=usr/sbin/jail >> OLD_FILES+=usr/sbin/jexec >> OLD_FILES+=usr/sbin/jls >> OLD_FILES+=usr/share/man/man8/jail.8.gz >> OLD_FILES+=usr/share/man/man8/jexec.8.gz >> OLD_FILES+=usr/share/man/man8/jls.8.gz >> .endif >> >> I personnaly added more files : >> >> OLD_LIBS+=lib/libjail.so.1 >> OLD_LIBS+=usr/lib/libjail.a >> OLD_LIBS+=usr/lib/libjail_p.a >> OLD_FILES+=usr/lib/libjail.so >> OLD_FILES+=etc/rc.d/jail > > So if you do an installworld, do those files you added show up again or > not? If they show up, they are wrong to be added there. Delete old is > supposed to delete stuff which does not get installed during an > installworld but was installed in some older version of FreeBSD. From > my reading of the Makefile in src/lib/ (on -current) it looks like at > least the libjail is installed regardless of the knob. I do not know if > this is a bug or by design, this would have to be discussed on the > mailinglist which is about FreeBSD jails. > > If those files are not installed during an installworld, it's obviously > a bug which needs to be fixed (and I would have misunderstood the > Makefile). > >> (/usr/lib/libjail.so is a symbolic link) >> >> I think they should be removed too, thus can you merge it to -STABLE >> if it's not already done? (sorry I'm not used to the cvs web >> interface and I don't have -STABLE right now) >> >> Cheers, >> > No I understood why, that's because a lot of userland programs that can handle jails processes are linked to the libjail such as top, ifconfig, ... Cheers, -- David Demelier From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 06:09:21 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 808141065670; Mon, 21 Mar 2011 06:09:21 +0000 (UTC) (envelope-from bschmidt@techwires.net) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B06E08FC0C; Mon, 21 Mar 2011 06:09:20 +0000 (UTC) Received: by bwz12 with SMTP id 12so5415701bwz.13 for ; Sun, 20 Mar 2011 23:09:19 -0700 (PDT) Received: by 10.204.82.74 with SMTP id a10mr3396513bkl.96.1300687759425; Sun, 20 Mar 2011 23:09:19 -0700 (PDT) Received: from julie.lab.techwires.net (dslb-088-067-218-231.pools.arcor-ip.net [88.67.218.231]) by mx.google.com with ESMTPS id j13sm1034815faa.1.2011.03.20.23.09.17 (version=SSLv3 cipher=OTHER); Sun, 20 Mar 2011 23:09:18 -0700 (PDT) Sender: Bernhard Schmidt From: Bernhard Schmidt To: freebsd-current@freebsd.org Date: Mon, 21 Mar 2011 07:04:22 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.1-RELEASE; KDE/4.5.5; amd64; ; ) References: <20110314162936.d3f8fd5b.ray@dlink.ua> <20110321011601.6e72f00f.ray@ddteam.net> In-Reply-To: <20110321011601.6e72f00f.ray@ddteam.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201103210704.23220.bschmidt@freebsd.org> Cc: Aleksandr Rybalko , Aleksandr Rybalko , "Sergey V. Dyatko" , Adrian Chadd , freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 06:09:21 -0000 On Monday 21 March 2011 00:16:01 Aleksandr Rybalko wrote: > On Mon, 21 Mar 2011 05:59:45 +0800 > Adrian Chadd wrote: > > > On 21 March 2011 04:28, Sergey V. Dyatko > > wrote: > > > > > > > Last patch from Aleksandr 'works fine for me', so... may be rt2860 > > > should be replaced to 'rt' for example ? > > > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than > > > rt28600: flags= > > > > > > > Yup, that's a good idea. Aleksandr, can you please do that? > > Off-course I can, but seems better name will be rtw or rtn, because we > already have if_rt (for RT3052 ether) which have iface name "rt". > > I think "rtn" is best. > > Maybe someone have better? rtw is a name for a Realtek driver. I'd prefer if can keep this driver in sync with the OpenBSD one where it is clearly derived from. So, rt28xx and rt30xx support has to be an extension to ral(4). That shouldn't be to hard to do, just throw in the code into dev/ral/ and hook it to the pci/ops code. -- Bernhard From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 07:26:45 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A48CB106564A for ; Mon, 21 Mar 2011 07:26:45 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 494A28FC0C for ; Mon, 21 Mar 2011 07:26:45 +0000 (UTC) Received: from outgoing.leidinger.net (p5B155C3B.dip.t-dialin.net [91.21.92.59]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id ABEED844015; Mon, 21 Mar 2011 08:26:38 +0100 (CET) Received: from webmail.leidinger.net (webmail.Leidinger.net [IPv6:fd73:10c7:2053:1::2:102]) by outgoing.leidinger.net (Postfix) with ESMTP id 4C0E0108B; Mon, 21 Mar 2011 08:26:35 +0100 (CET) Received: (from www@localhost) by webmail.leidinger.net (8.14.4/8.13.8/Submit) id p2L7QJrP052723; Mon, 21 Mar 2011 08:26:19 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.ec.europa.eu (pslux.ec.europa.eu [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Mon, 21 Mar 2011 08:26:19 +0100 Message-ID: <20110321082619.97716qmve56zukdw@webmail.leidinger.net> Date: Mon, 21 Mar 2011 08:26:19 +0100 From: Alexander Leidinger To: David Demelier References: <4D85AE1B.7010407@gmail.com> <20110320173157.00002024@unknown> <4D86EA62.9060506@gmail.com> In-Reply-To: <4D86EA62.9060506@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.6) X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: ABEED844015.A3AE2 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=0.077, required 6, autolearn=disabled, TW_IB 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301297201.15828@MkBcW6hE280wrquulVpxCw X-EBL-Spam-Status: No Cc: stable@freebsd.org, freebsd-current@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 07:26:45 -0000 Quoting David Demelier (from Mon, 21 Mar 2011 07:04:18 +0100): > On 20/03/2011 17:31, Alexander Leidinger wrote: >> On Sun, 20 Mar 2011 08:34:51 +0100 David Demelier >> wrote: >> >>> Hello, >>> >>> I was surprised to see there is no ${MK_JAIL} conditional to remove >>> old files on 8.2-RELEASE so I started to write it without watching if >>> -CURRENT already make it in >>> /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. >>> >>> .if ${MK_JAIL} == no >>> I think they should be removed too, thus can you merge it to -STABLE >>> if it's not already done? (sorry I'm not used to the cvs web >>> interface and I don't have -STABLE right now) > No I understood why, that's because a lot of userland programs that > can handle jails processes are linked to the libjail such as top, > ifconfig, ... So it's just about merging to 8-stable. I made a diff between -current and 8-stable, and there are a lot of differences. Instead of merging just the entries for the jails, it would be better to merge nearly everything. The problem is that this requires a lot of testing (delete old files, installworld, check if files reappear -> need to be removed from the list to remove with delete-old/-libs) and the libs need to be checked for the correct version number too. Anyone out there willing to take the stuff in /usr/src/tools/build/mk/OptionalObsoleteFiles.inc from current for his favourite WITHOUT_xxx option and test it in the above described way? I do not have the resources (time/machine) to do it, but I would be willing to commit tested parts. Bye, Alexander. -- This login session: .99, but for you .88 http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 07:33:21 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC9821065676 for ; Mon, 21 Mar 2011 07:33:21 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9266A8FC15 for ; Mon, 21 Mar 2011 07:33:21 +0000 (UTC) Received: by yxl31 with SMTP id 31so2671397yxl.13 for ; Mon, 21 Mar 2011 00:33:20 -0700 (PDT) Received: by 10.101.181.27 with SMTP id i27mr2566649anp.20.1300692800708; Mon, 21 Mar 2011 00:33:20 -0700 (PDT) Received: from [10.0.1.198] ([72.253.42.56]) by mx.google.com with ESMTPS id 6sm3064232anx.46.2011.03.21.00.33.18 (version=SSLv3 cipher=OTHER); Mon, 21 Mar 2011 00:33:19 -0700 (PDT) Date: Sun, 20 Mar 2011 21:36:51 -1000 (HST) From: Jeff Roberson X-X-Sender: jroberson@desktop To: current@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 Cc: Subject: HEADS UP: OFED stack merge tonight. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 07:33:21 -0000 Hi Folks, Just a notice that the 1.5.3 OFED Infiniband stack will be committed as soon as a fresh buildworld/installworld completes on my test machine. This brings in new drivers and user code and a very small number of changes to system sources. OFED will not be built by default and WITH_OFED must be defined in /etc/make.conf to enable it. I would not expect any instability in non ofed systems from this import. Thanks, Jeff From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 08:41:39 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA478106566C; Mon, 21 Mar 2011 08:41:39 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by mx1.freebsd.org (Postfix) with ESMTP id A41938FC14; Mon, 21 Mar 2011 08:41:39 +0000 (UTC) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id F2EFF1C08E11; Mon, 21 Mar 2011 09:25:38 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id DD26F1C000BA; Mon, 21 Mar 2011 09:25:38 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id TXCDrMbujqvI; Mon, 21 Mar 2011 09:25:38 +0100 (CET) Received: from mail.reifenberger.com (ppp-93-104-103-45.dynamic.mnet-online.de [93.104.103.45]) by mail.mnet-online.de (Postfix) with ESMTP; Mon, 21 Mar 2011 09:25:37 +0100 (CET) Received: by mail.reifenberger.com (Postfix, from userid 1001) id 2AF6B18B34; Mon, 21 Mar 2011 09:25:36 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.reifenberger.com (Postfix) with ESMTP id 22F3C18B33; Mon, 21 Mar 2011 09:25:36 +0100 (CET) Date: Mon, 21 Mar 2011 09:25:36 +0100 (CET) From: Michael Reifenberger To: Nathan Whitehorn 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 Cc: FreeBSD-Current Subject: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 08:41:40 -0000 Hi, yesterday I tested the images listed in the subject and have the following remarks: - At least the memstick image contains an empty fstab - Does the usage of a "dangerously dedikated disklabel" give any advantage? - The usage of an UFS-Label for root mounting should be more flexible - The first dialog step should set the keyboard layout - The /etc is not writable which would greatly reduce the usefulness for the ISO image (no modified resolv.conf, sshd_config, ...) The usage of a nanobsd based base-installation would give a sufficient advanced Live-OS installation. You could take a look into src/tools/tools/nanobsd/rescue where I tried to address most of the issues above primary for rescuing GPT/ZFS installations (with still hardcoded keyboard though). With two nanobsd slices on one memstick you can actually produce combined i386/and64 Live-OS memsticks... I get both on a 2GiB memstick (Without packages). What do you think? Bye/2 --- Michael Reifenberger Michael@Reifenberger.com http://www.Reifenberger.com From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 09:29:19 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06796106564A; Mon, 21 Mar 2011 09:29:19 +0000 (UTC) (envelope-from ray@dlink.ua) Received: from dlink.ua (smtp.dlink.ua [193.138.187.146]) by mx1.freebsd.org (Postfix) with ESMTP id AE80B8FC19; Mon, 21 Mar 2011 09:29:18 +0000 (UTC) Received: from gw-lan1.kiev.dlink.ua ([192.168.10.10] helo=terran.dlink.ua) by dlink.ua with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1Q1bQ8-0000zO-15; Mon, 21 Mar 2011 11:29:04 +0200 Date: Mon, 21 Mar 2011 11:29:11 +0200 From: Aleksandr Rybalko To: Bernhard Schmidt Message-Id: <20110321112911.141e3548.ray@dlink.ua> In-Reply-To: <201103210704.23220.bschmidt@freebsd.org> References: <20110314162936.d3f8fd5b.ray@dlink.ua> <20110321011601.6e72f00f.ray@ddteam.net> <201103210704.23220.bschmidt@freebsd.org> Organization: D-Link X-Mailer: Sylpheed 2.7.1 (GTK+ 2.20.1; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Aleksandr Rybalko , "Sergey V. Dyatko" , Chadd , freebsd-current@freebsd.org, freebsd-mips@freebsd.org, Adrian Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 09:29:19 -0000 Hi, On Mon, 21 Mar 2011 07:04:22 +0100 Bernhard Schmidt wrote: >> On Monday 21 March 2011 00:16:01 Aleksandr Rybalko wrote: >> > On Mon, 21 Mar 2011 05:59:45 +0800 >> > Adrian Chadd wrote: >> > >> > > On 21 March 2011 04:28, Sergey V. Dyatko >> > > wrote: >> > > >> > > >> > > > Last patch from Aleksandr 'works fine for me', so... may be rt2860 >> > > > should be replaced to 'rt' for example ? >> > > > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than >> > > > rt28600: flags= >> > > > >> > > >> > > Yup, that's a good idea. Aleksandr, can you please do that? >> > >> > Off-course I can, but seems better name will be rtw or rtn, because we >> > already have if_rt (for RT3052 ether) which have iface name "rt". >> > >> > I think "rtn" is best. >> > >> > Maybe someone have better? >> >> rtw is a name for a Realtek driver. Realtek driver called urtw, but I agree with you to avoid confusion. >> >> I'd prefer if can keep this driver in sync with the OpenBSD one where >> it is clearly derived from. So, rt28xx and rt30xx support has to be an >> extension to ral(4). That shouldn't be to hard to do, just throw in the >> code into dev/ral/ and hook it to the pci/ops code. This driver closer to USB run(4), but this use USB and difference still big. In future, not so closer, I will try to join run, ral and my rt2860. But there is too much work and I need to find time for it. >> >> -- >> Bernhard So for now, best name is "rtn". If no objections, I send updated patch with new name. Thank you Bernhard! WBW -- Alexandr Rybalko aka Alex RAY From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 10:02:57 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EDF6106566C; Mon, 21 Mar 2011 10:02:57 +0000 (UTC) (envelope-from bschmidt@techwires.net) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4F8058FC14; Mon, 21 Mar 2011 10:02:55 +0000 (UTC) Received: by fxm11 with SMTP id 11so6268945fxm.13 for ; Mon, 21 Mar 2011 03:02:55 -0700 (PDT) Received: by 10.223.1.73 with SMTP id 9mr4735357fae.44.1300701679287; Mon, 21 Mar 2011 03:01:19 -0700 (PDT) Received: from jessie.localnet (p5B2ED396.dip0.t-ipconnect.de [91.46.211.150]) by mx.google.com with ESMTPS id e23sm2391449faa.18.2011.03.21.03.01.17 (version=SSLv3 cipher=OTHER); Mon, 21 Mar 2011 03:01:18 -0700 (PDT) Sender: Bernhard Schmidt From: Bernhard Schmidt To: freebsd-current@freebsd.org Date: Mon, 21 Mar 2011 11:00:49 +0100 User-Agent: KMail/1.13.5 (Linux/2.6.32-29-generic; KDE/4.4.5; i686; ; ) References: <20110314162936.d3f8fd5b.ray@dlink.ua> <201103210704.23220.bschmidt@freebsd.org> <20110321112911.141e3548.ray@dlink.ua> In-Reply-To: <20110321112911.141e3548.ray@dlink.ua> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201103211100.49504.bschmidt@freebsd.org> Cc: Aleksandr Rybalko , Aleksandr Rybalko , "Sergey V. Dyatko" , Chadd , freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bschmidt@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 10:02:57 -0000 On Monday, March 21, 2011 10:29:11 Aleksandr Rybalko wrote: > Hi, > > On Mon, 21 Mar 2011 07:04:22 +0100 > Bernhard Schmidt wrote: > > >> On Monday 21 March 2011 00:16:01 Aleksandr Rybalko wrote: > >> > On Mon, 21 Mar 2011 05:59:45 +0800 > >> > Adrian Chadd wrote: > >> > > >> > > On 21 March 2011 04:28, Sergey V. Dyatko > >> > > wrote: > >> > > > >> > > > >> > > > Last patch from Aleksandr 'works fine for me', so... may be rt2860 > >> > > > should be replaced to 'rt' for example ? > >> > > > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than > >> > > > rt28600: flags= > >> > > > > >> > > > >> > > Yup, that's a good idea. Aleksandr, can you please do that? > >> > > >> > Off-course I can, but seems better name will be rtw or rtn, because we > >> > already have if_rt (for RT3052 ether) which have iface name "rt". > >> > > >> > I think "rtn" is best. > >> > > >> > Maybe someone have better? > >> > >> rtw is a name for a Realtek driver. > Realtek driver called urtw, but I agree with you to avoid confusion. That rtw driver I'm speaking of is for older Realtek 8180/8185 PCI based chips. Granted, not in our tree, but it exists. urtw(4) is for 8187B/L USB chipsets. > >> > >> I'd prefer if can keep this driver in sync with the OpenBSD one where > >> it is clearly derived from. So, rt28xx and rt30xx support has to be an > >> extension to ral(4). That shouldn't be to hard to do, just throw in the > >> code into dev/ral/ and hook it to the pci/ops code. > This driver closer to USB run(4), but this use USB and difference still big. > > In future, not so closer, I will try to join run, ral and my rt2860. But there is too much work and I need to find time for it. Please don't. There is a reason the PCI and USB chipsets, even if derived from the same base chipset, have different drivers. The BUS specific implementation/restrictions are way too different/important. Trying to merge those will only make your head ache :) > > >> > > So for now, best name is "rtn". > > If no objections, I send updated patch with new name. I still don't think this is the way to go. Adding a totally independent driver now and replacing (or merging) it later simple won't work. Also, it is quite annoying from user point of view. I urge you to have a closer look at ral(4) and it's way of handling RT2500 and RT2600 specific differences. In it's simplest form you can copy the OpenBSD code 1:1 without any functional changes, heck, it's the source of this driver anyway. -- Bernhard From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 10:15:57 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 309DD1065677; Mon, 21 Mar 2011 10:15:57 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by mx1.freebsd.org (Postfix) with ESMTP id B334F8FC08; Mon, 21 Mar 2011 10:15:56 +0000 (UTC) Received: from frontend1.mail.m-online.net (frontend1.mail.intern.m-online.net [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id D69C6186DEE4; Mon, 21 Mar 2011 11:15:52 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id EB6DE1C00137; Mon, 21 Mar 2011 11:15:52 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id dPrJ3LN0heXm; Mon, 21 Mar 2011 11:15:52 +0100 (CET) Received: from mail.reifenberger.com (ppp-93-104-103-45.dynamic.mnet-online.de [93.104.103.45]) by mail.mnet-online.de (Postfix) with ESMTP; Mon, 21 Mar 2011 11:15:52 +0100 (CET) Received: by mail.reifenberger.com (Postfix, from userid 1001) id B78C118BA2; Mon, 21 Mar 2011 11:15:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.reifenberger.com (Postfix) with ESMTP id A047F18B9F; Mon, 21 Mar 2011 11:15:51 +0100 (CET) Date: Mon, 21 Mar 2011 11:15:51 +0100 (CET) From: Michael Reifenberger To: Lars Engels In-Reply-To: <20110321100428.GN90300@e.0x20.net> Message-ID: References: <20110321100428.GN90300@e.0x20.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Nathan Whitehorn , FreeBSD-Current Subject: Re: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 10:15:57 -0000 On Mon, 21 Mar 2011, Lars Engels wrote: > Date: Mon, 21 Mar 2011 11:04:28 +0100 > From: Lars Engels > To: Michael Reifenberger > Cc: Nathan Whitehorn , > FreeBSD-Current > Subject: Re: bsdinstall-amd64-20110313 remarks > > On Mon, Mar 21, 2011 at 09:25:36AM +0100, Michael Reifenberger wrote: >> Hi, >> yesterday I tested the images listed in the subject and have the following >> remarks: >> >> - At least the memstick image contains an empty fstab >> - Does the usage of a "dangerously dedikated disklabel" give any advantage? >> - The usage of an UFS-Label for root mounting should be more flexible > - UFS-labeling does not work > > I let bsdinstall partition the disk automatically and edited the > proposed partitions to add labels, but after the first boot, neither > fstab nor /dev/label showed any labels. > I did not mean to use UFS-Labels for the bsdinstall partitioner. I meant the use of UFS-Labels for the memstick image itself. BTW: The UFS labels should show up under /dev/ufs/... The cd9660 labels should show up under /dev/cd9660/... Bye/2 --- Michael Reifenberger Michael@Reifenberger.com http://www.Reifenberger.com From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 10:20:20 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 602C3106566B; Mon, 21 Mar 2011 10:20:20 +0000 (UTC) (envelope-from lars@e.0x20.net) Received: from mail.0x20.net (mail.0x20.net [217.69.67.217]) by mx1.freebsd.org (Postfix) with ESMTP id 251938FC16; Mon, 21 Mar 2011 10:20:19 +0000 (UTC) Received: by mail.0x20.net (Postfix, from userid 1002) id 71E2C36C8E; Mon, 21 Mar 2011 11:04:28 +0100 (CET) Date: Mon, 21 Mar 2011 11:04:28 +0100 From: Lars Engels To: Michael Reifenberger Message-ID: <20110321100428.GN90300@e.0x20.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Wh9K+VmLHGaPX0mq" Content-Disposition: inline In-Reply-To: X-Editor: VIM - Vi IMproved 7.2 X-Operation-System: FreeBSD 5.5-RELEASE-p19 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Nathan Whitehorn , FreeBSD-Current Subject: Re: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 10:20:20 -0000 --Wh9K+VmLHGaPX0mq Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 21, 2011 at 09:25:36AM +0100, Michael Reifenberger wrote: > Hi, > yesterday I tested the images listed in the subject and have the followin= g=20 > remarks: >=20 > - At least the memstick image contains an empty fstab > - Does the usage of a "dangerously dedikated disklabel" give any advantag= e? > - The usage of an UFS-Label for root mounting should be more flexible - UFS-labeling does not work I let bsdinstall partition the disk automatically and edited the proposed partitions to add labels, but after the first boot, neither fstab nor /dev/label showed any labels. --Wh9K+VmLHGaPX0mq Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAk2HIqwACgkQKc512sD3afizbQCeLSAjZNT4uB69h7YzQoSPiUOY KBEAn3MS+v+Y+Zk/BXhN7YQUc2+u65zA =u0GI -----END PGP SIGNATURE----- --Wh9K+VmLHGaPX0mq-- From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 10:53:05 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 806F8106564A; Mon, 21 Mar 2011 10:53:05 +0000 (UTC) (envelope-from ray@dlink.ua) Received: from dlink.ua (smtp.dlink.ua [193.138.187.146]) by mx1.freebsd.org (Postfix) with ESMTP id 0A40C8FC1C; Mon, 21 Mar 2011 10:53:04 +0000 (UTC) Received: from gw-lan1.kiev.dlink.ua ([192.168.10.10] helo=terran.dlink.ua) by dlink.ua with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1Q1cjG-0001sJ-FR; Mon, 21 Mar 2011 12:52:54 +0200 Date: Mon, 21 Mar 2011 12:52:57 +0200 From: Aleksandr Rybalko To: bschmidt@freebsd.org Message-Id: <20110321125257.7f81884b.ray@dlink.ua> In-Reply-To: <201103211100.49504.bschmidt@freebsd.org> References: <20110314162936.d3f8fd5b.ray@dlink.ua> <201103210704.23220.bschmidt@freebsd.org> <20110321112911.141e3548.ray@dlink.ua> <201103211100.49504.bschmidt@freebsd.org> Organization: D-Link X-Mailer: Sylpheed 2.7.1 (GTK+ 2.20.1; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Aleksandr Rybalko , freebsd-current@freebsd.org, "Sergey V. Dyatko" , Chadd , freebsd-mips@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 10:53:05 -0000 On Mon, 21 Mar 2011 11:00:49 +0100 Bernhard Schmidt wrote: >> On Monday, March 21, 2011 10:29:11 Aleksandr Rybalko wrote: >> > Hi, >> > >> > On Mon, 21 Mar 2011 07:04:22 +0100 >> > Bernhard Schmidt wrote: >> > >> > >> On Monday 21 March 2011 00:16:01 Aleksandr Rybalko wrote: >> > >> > On Mon, 21 Mar 2011 05:59:45 +0800 >> > >> > Adrian Chadd wrote: >> > >> > >> > >> > > On 21 March 2011 04:28, Sergey V. Dyatko >> > >> > > wrote: >> > >> > > >> > >> > > >> > >> > > > Last patch from Aleksandr 'works fine for me', so... may be rt2860 >> > >> > > > should be replaced to 'rt' for example ? >> > >> > > > rt0: flags= blah-blah-blah IHMO looks more .....nice(?) than >> > >> > > > rt28600: flags= >> > >> > > > >> > >> > > >> > >> > > Yup, that's a good idea. Aleksandr, can you please do that? >> > >> > >> > >> > Off-course I can, but seems better name will be rtw or rtn, because we >> > >> > already have if_rt (for RT3052 ether) which have iface name "rt". >> > >> > >> > >> > I think "rtn" is best. >> > >> > >> > >> > Maybe someone have better? >> > >> >> > >> rtw is a name for a Realtek driver. >> > Realtek driver called urtw, but I agree with you to avoid confusion. >> >> That rtw driver I'm speaking of is for older Realtek 8180/8185 PCI >> based chips. Granted, not in our tree, but it exists. urtw(4) is for >> 8187B/L USB chipsets. >> >> > >> >> > >> I'd prefer if can keep this driver in sync with the OpenBSD one where >> > >> it is clearly derived from. So, rt28xx and rt30xx support has to be an >> > >> extension to ral(4). That shouldn't be to hard to do, just throw in the >> > >> code into dev/ral/ and hook it to the pci/ops code. >> > This driver closer to USB run(4), but this use USB and difference still big. >> > >> > In future, not so closer, I will try to join run, ral and my rt2860. But there is too much work and I need to find time for >> > it. >> >> Please don't. There is a reason the PCI and USB chipsets, even if >> derived from the same base chipset, have different drivers. The BUS >> specific implementation/restrictions are way too different/important. >> Trying to merge those will only make your head ache :) >> >> > >> > >> >> > >> > So for now, best name is "rtn". >> > >> > If no objections, I send updated patch with new name. >> >> I still don't think this is the way to go. Adding a totally independent >> driver now and replacing (or merging) it later simple won't work. Also, >> it is quite annoying from user point of view. >> >> I urge you to have a closer look at ral(4) and it's way of handling >> RT2500 and RT2600 specific differences. In it's simplest form you can >> copy the OpenBSD code 1:1 without any functional changes, heck, it's >> the source of this driver anyway. >> >> -- >> Bernhard I've look on difference between RT2[56]00 and RT2860 some time ago, but done it again, and found that we can only place RT2860/RT3090 support under same name (ral), but hardware have too big difference. And in case I do this patch for RT3052F SoC, when I placing RT2860 into ral, i get completely different driver (because SoC don't use PCI interface). So can You (or someone else) hint me, how to done this? switch (what to do) { case 'Remake run to support PCI and SoC interface': Much work to make driver bus independent; case 'Port OpenBSD one': driver do not support SoC (SoC device don't have MCU); break; case 'Place my RT2860 under dev/ral': different device in same driver; break; } Hint me please. WBW -- Alexandr Rybalko aka Alex RAY From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 10:53:23 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A099C1065700; Mon, 21 Mar 2011 10:53:23 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 725918FC1C; Mon, 21 Mar 2011 10:53:23 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LArMLb098156; Mon, 21 Mar 2011 06:53:22 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LArMEO098131; Mon, 21 Mar 2011 10:53:22 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 10:53:22 GMT Message-Id: <201103211053.p2LArMEO098131@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 10:53:23 -0000 TB --- 2011-03-21 09:46:05 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 09:46:05 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-21 09:46:05 - cleaning the object tree TB --- 2011-03-21 09:46:16 - cvsupping the source tree TB --- 2011-03-21 09:46:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-21 09:46:30 - building world TB --- 2011-03-21 09:46:30 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 09:46:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 09:46:30 - TARGET=ia64 TB --- 2011-03-21 09:46:30 - TARGET_ARCH=ia64 TB --- 2011-03-21 09:46:30 - TZ=UTC TB --- 2011-03-21 09:46:30 - __MAKE_CONF=/dev/null TB --- 2011-03-21 09:46:30 - cd /src TB --- 2011-03-21 09:46:30 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 09:46:31 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 10:53:21 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 10:53:21 - ERROR: failed to build world TB --- 2011-03-21 10:53:21 - 3198.88 user 599.93 system 4036.41 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 11:04:40 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3B451065670 for ; Mon, 21 Mar 2011 11:04:40 +0000 (UTC) (envelope-from erob@gthcfoundation.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA198FC16 for ; Mon, 21 Mar 2011 11:04:40 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1 Received: from [192.168.0.100] ([184.162.50.38]) by vl-mh-mrz21.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0LIE008G3MQXLE20@vl-mh-mrz21.ip.videotron.ca> for freebsd-current@freebsd.org; Mon, 21 Mar 2011 07:04:10 -0400 (EDT) Message-id: <4D8730A1.1050602@gthcfoundation.org> Date: Mon, 21 Mar 2011 07:04:01 -0400 From: Etienne Robillard Organization: Green Tea Hackers Club User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 To: Aleksandr Rybalko References: <20110314162936.d3f8fd5b.ray@dlink.ua> <201103210704.23220.bschmidt@freebsd.org> <20110321112911.141e3548.ray@dlink.ua> <201103211100.49504.bschmidt@freebsd.org> <20110321125257.7f81884b.ray@dlink.ua> In-reply-to: <20110321125257.7f81884b.ray@dlink.ua> X-Enigmail-Version: 1.0.1 Cc: freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erob@gthcfoundation.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 11:04:40 -0000 > So can You (or someone else) hint me, how to done this? > > switch (what to do) { > case 'Remake run to support PCI and SoC interface': > Much work to make driver bus independent; > case 'Port OpenBSD one': > driver do not support SoC (SoC device don't have MCU); > break; > case 'Place my RT2860 under dev/ral': > different device in same driver; > break; > } > > Hint me please. > > WBW > Stop waffling please. I assume your not stupid and could perhaps explains better what you meant to say without the implicit assumptions you don't know what you're doing. -- Etienne Robillard Company: Green Tea Hackers Club Occupation: Software Developer (and CEO) E-mail: erob@gthcfoundation.org Work phone: 450-936-2123 Website (Company): https://gthc.org/ Website (Blog): https://gthc.org/blog/ PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C 7F17 A086 DDEC During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell If a free society cannot help the many who are poor, it cannot save the few who are rich. -- John F. Kennedy From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 11:43:34 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EFFD1065676; Mon, 21 Mar 2011 11:43:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E6C538FC08; Mon, 21 Mar 2011 11:43:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LBhXmk018965; Mon, 21 Mar 2011 07:43:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LBhXrk018917; Mon, 21 Mar 2011 11:43:33 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 11:43:33 GMT Message-Id: <201103211143.p2LBhXrk018917@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 11:43:34 -0000 TB --- 2011-03-21 10:53:22 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 10:53:22 - starting HEAD tinderbox run for mips/mips TB --- 2011-03-21 10:53:22 - cleaning the object tree TB --- 2011-03-21 10:53:32 - cvsupping the source tree TB --- 2011-03-21 10:53:32 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-03-21 10:54:16 - building world TB --- 2011-03-21 10:54:16 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 10:54:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 10:54:16 - TARGET=mips TB --- 2011-03-21 10:54:16 - TARGET_ARCH=mips TB --- 2011-03-21 10:54:16 - TZ=UTC TB --- 2011-03-21 10:54:16 - __MAKE_CONF=/dev/null TB --- 2011-03-21 10:54:16 - cd /src TB --- 2011-03-21 10:54:16 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 10:54:17 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 11:43:32 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 11:43:32 - ERROR: failed to build world TB --- 2011-03-21 11:43:32 - 2171.77 user 533.27 system 3010.11 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:17:55 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BBE8106566B; Mon, 21 Mar 2011 12:17:55 +0000 (UTC) (envelope-from erob@gthcfoundation.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 37F948FC14; Mon, 21 Mar 2011 12:17:55 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1 Received: from [192.168.0.100] ([184.162.50.38]) by VL-MR-MRZ22.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0LIE00KCTQ5UT9D0@VL-MR-MRZ22.ip.videotron.ca>; Mon, 21 Mar 2011 08:17:54 -0400 (EDT) Message-id: <4D8741D3.2040305@gthcfoundation.org> Date: Mon, 21 Mar 2011 08:17:23 -0400 From: Etienne Robillard Organization: Green Tea Hackers Club User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 To: owner-freebsd-security@freebsd.org References: In-reply-to: X-Enigmail-Version: 1.0.1 Cc: freebsd-current@freebsd.org, postmaster@freebsd.org Subject: Re: Request to mailing list freebsd-security rejected X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erob@gthcfoundation.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:17:55 -0000 On 21/03/11 08:12 AM, owner-freebsd-security@freebsd.org wrote: > Your request to the freebsd-security mailing list > > Posting of your message titled "[CFR] Multiple remote and local > vulnerabilities of high-speed USB WLAN > ethernet devices using high-speed OFDM modulation schemes." > > has been rejected by the list moderator. The moderator gave the > following reason for rejecting your request: > > "Your message has nothing to do with FreeBSD and vanishingly little to > do with security in any way, shape, or form. > > Since the nature of the error in your approach has been pointed out to > you on several occasions, it must be concluded that your apparent > ignorance on the topic is willful and deliberate -- if it's genuine, > rather than a pose adopted by a provocateur. > > There is no benefit to the FreeBSD project in an attempt to relegate > one of its technical mailing lists into a forum for a circus. If > that's what you wish to do, you are welcome to create or buy your own > forum for your own embarrassment: this is not a FreeBSD issue. > > -- postmaster@freebsd.org" > > Any questions or comments should be directed to the list administrator > at: > > freebsd-security-owner@freebsd.org > I would perhaps take this seriously if you would at least not cover under a anonymous alias but since it took one week to respond I assume its just your brain reacting to cognitive dissonance in a bizarre way so please quit trolling if you cannot second your comments with arguments and not opinions. Google "cognitive dissonance" for more info... Cheers! The truth is in the semantics of the language -:) -- Etienne Robillard Company: Green Tea Hackers Club Occupation: Software Developer (and CEO) E-mail: erob@gthcfoundation.org Work phone: 450-936-2123 Website (Company): https://gthc.org/ Website (Blog): https://gthc.org/blog/ PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C 7F17 A086 DDEC During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell If a free society cannot help the many who are poor, it cannot save the few who are rich. -- John F. Kennedy From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:42:12 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94B87106566B; Mon, 21 Mar 2011 12:42:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 699F18FC1C; Mon, 21 Mar 2011 12:42:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LCgBZ9072545; Mon, 21 Mar 2011 08:42:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LCgBGw072482; Mon, 21 Mar 2011 12:42:11 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 12:42:11 GMT Message-Id: <201103211242.p2LCgBGw072482@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:42:12 -0000 TB --- 2011-03-21 11:43:33 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 11:43:33 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-21 11:43:33 - cleaning the object tree TB --- 2011-03-21 11:43:50 - cvsupping the source tree TB --- 2011-03-21 11:43:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-21 11:44:06 - building world TB --- 2011-03-21 11:44:06 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 11:44:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 11:44:06 - TARGET=powerpc TB --- 2011-03-21 11:44:06 - TARGET_ARCH=powerpc64 TB --- 2011-03-21 11:44:06 - TZ=UTC TB --- 2011-03-21 11:44:06 - __MAKE_CONF=/dev/null TB --- 2011-03-21 11:44:06 - cd /src TB --- 2011-03-21 11:44:06 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 11:44:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 12:42:10 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 12:42:10 - ERROR: failed to build world TB --- 2011-03-21 12:42:10 - 2669.31 user 560.52 system 3517.47 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:45:11 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38403106566C; Mon, 21 Mar 2011 12:45:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0B2908FC1A; Mon, 21 Mar 2011 12:45:10 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LCjAPW089340; Mon, 21 Mar 2011 08:45:10 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LCjAu6089339; Mon, 21 Mar 2011 12:45:10 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 12:45:10 GMT Message-Id: <201103211245.p2LCjAu6089339@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:45:11 -0000 TB --- 2011-03-21 11:50:45 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 11:50:45 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-21 11:50:45 - cleaning the object tree TB --- 2011-03-21 11:50:57 - cvsupping the source tree TB --- 2011-03-21 11:50:57 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-21 11:51:15 - building world TB --- 2011-03-21 11:51:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 11:51:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 11:51:15 - TARGET=sparc64 TB --- 2011-03-21 11:51:15 - TARGET_ARCH=sparc64 TB --- 2011-03-21 11:51:15 - TZ=UTC TB --- 2011-03-21 11:51:15 - __MAKE_CONF=/dev/null TB --- 2011-03-21 11:51:15 - cd /src TB --- 2011-03-21 11:51:15 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 11:51:16 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 12:45:10 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 12:45:10 - ERROR: failed to build world TB --- 2011-03-21 12:45:10 - 2461.84 user 542.67 system 3264.95 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:47:28 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8016A106566C for ; Mon, 21 Mar 2011 12:47:28 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id C4CA08FC25 for ; Mon, 21 Mar 2011 12:47:27 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA27561; Mon, 21 Mar 2011 14:47:12 +0200 (EET) (envelope-from avg@freebsd.org) Message-ID: <4D8748D0.2050708@freebsd.org> Date: Mon, 21 Mar 2011 14:47:12 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110309 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: erob@gthcfoundation.org References: <20110314162936.d3f8fd5b.ray@dlink.ua> <201103210704.23220.bschmidt@freebsd.org> <20110321112911.141e3548.ray@dlink.ua> <201103211100.49504.bschmidt@freebsd.org> <20110321125257.7f81884b.ray@dlink.ua> <4D8730A1.1050602@gthcfoundation.org> In-Reply-To: <4D8730A1.1050602@gthcfoundation.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Aleksandr Rybalko , freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:47:28 -0000 on 21/03/2011 13:04 Etienne Robillard said the following: > >> So can You (or someone else) hint me, how to done this? >> >> switch (what to do) { >> case 'Remake run to support PCI and SoC interface': >> Much work to make driver bus independent; >> case 'Port OpenBSD one': >> driver do not support SoC (SoC device don't have MCU); >> break; >> case 'Place my RT2860 under dev/ral': >> different device in same driver; >> break; >> } >> >> Hint me please. >> >> WBW >> > > Stop waffling please. I assume your not stupid and could perhaps > explains better what you > meant to say without the implicit assumptions you don't know what you're > doing. I am not sure why this thread has deserved your attention - not everyone has as good mastery of English as you do. And sometimes some people are more prone to doubts. Maybe you can give Aleksandr some help with the code in addition to your advice? -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:53:34 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9C79106564A; Mon, 21 Mar 2011 12:53:33 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C09428FC08; Mon, 21 Mar 2011 12:53:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LCrWZg012505; Mon, 21 Mar 2011 08:53:32 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LCrWhx012500; Mon, 21 Mar 2011 12:53:32 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 12:53:32 GMT Message-Id: <201103211253.p2LCrWhx012500@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:53:34 -0000 TB --- 2011-03-21 11:22:09 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 11:22:09 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-21 11:22:09 - cleaning the object tree TB --- 2011-03-21 11:22:23 - cvsupping the source tree TB --- 2011-03-21 11:22:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-21 11:22:39 - building world TB --- 2011-03-21 11:22:39 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 11:22:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 11:22:39 - TARGET=powerpc TB --- 2011-03-21 11:22:39 - TARGET_ARCH=powerpc TB --- 2011-03-21 11:22:39 - TZ=UTC TB --- 2011-03-21 11:22:39 - __MAKE_CONF=/dev/null TB --- 2011-03-21 11:22:39 - cd /src TB --- 2011-03-21 11:22:39 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 11:22:40 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 12:53:32 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 12:53:32 - ERROR: failed to build world TB --- 2011-03-21 12:53:32 - 4436.25 user 735.06 system 5483.48 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:56:43 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCDD11065677 for ; Mon, 21 Mar 2011 12:56:43 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (m209-73.dsl.rawbw.com [198.144.209.73]) by mx1.freebsd.org (Postfix) with ESMTP id 7D1F08FC1B for ; Mon, 21 Mar 2011 12:56:43 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.4/8.14.4) with ESMTP id p2LCugNu009287; Mon, 21 Mar 2011 05:56:42 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.4/8.14.4/Submit) id p2LCugxM009286; Mon, 21 Mar 2011 05:56:42 -0700 (PDT) (envelope-from david) Date: Mon, 21 Mar 2011 05:56:42 -0700 From: David Wolfskill To: current@freebsd.org Message-ID: <20110321125642.GF1431@albert.catwhisker.org> Mail-Followup-To: David Wolfskill , current@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qoTlaiD+Y2fIM3Ll" Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: Subject: Error building src/sys/modules/mlx4 @r219821 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:56:43 -0000 --qoTlaiD+Y2fIM3Ll Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Sources actually updated to r219820; change from r219821 was hand-applied. That got me through the buildworld. :-} Building kernel modules fails, though: >>> stage 3.1: making dependencies =2E.. >>> stage 3.2: building everything =2E.. =3D=3D=3D> mlx (all) =2E.. =3D=3D=3D> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -n= ostdinc -I/usr/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/usr/src= /sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include= /common/S4/obj/usr/src/sys/CANARY/opt_global.h -I. -I@ -I@/contrib/altq -f= inline-limit=3D8000 --param inline-unit-growth=3D100 --param large-function= -growth=3D1000 -fno-common -g -I/common/S4/obj/usr/src/sys/CANARY -mno-ali= gn-long-strings -mpreferred-stack-boundary=3D2 -mno-mmx -mno-3dnow -mno-sse= -mno-sse2 -mno-sse3 -msoft-float -ffreestanding -fstack-protector -std=3Di= so9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -fformat-extensions -Wno-cast-qual -Wno-pointer-= arith -fms-extensions -c /usr/src/sys/modules/mlx4/../../ofed/drivers/net/m= lx4/alloc.c cc1: warnings being treated as errors In file included from /usr/src/sys/modules/mlx4/../../ofed/include/linux/sl= ab.h:37, from /usr/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4= /alloc.c:35: /usr/src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page= _address': /usr/src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast = to pointer from integer of different size *** Error code 1 Stop in /usr/src/sys/modules/mlx4. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /common/S4/obj/usr/src/sys/CANARY. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Building while running: FreeBSD g1-222.catwhisker.org. 9.0-CURRENT FreeBSD 9.0-CURRENT #172 r219794= : Sun Mar 20 05:25:47 PDT 2011 root@g1-222.catwhisker.org.:/usr/obj/usr= /src/sys/CANARY i386 Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --qoTlaiD+Y2fIM3Ll Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (FreeBSD) iEYEARECAAYFAk2HSwkACgkQmprOCmdXAD34LwCeJrap5e2Q7mcLf2PGYkihSlhA f6sAnAlgzGb3DHYgTZhaMquQ+lKFm6Ne =Ov6U -----END PGP SIGNATURE----- --qoTlaiD+Y2fIM3Ll-- From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 12:57:41 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FB4E106567C; Mon, 21 Mar 2011 12:57:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 3C3B78FC2D; Mon, 21 Mar 2011 12:57:40 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LCveug022657; Mon, 21 Mar 2011 08:57:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LCveSD022656; Mon, 21 Mar 2011 12:57:40 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 12:57:40 GMT Message-Id: <201103211257.p2LCveSD022656@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 12:57:41 -0000 TB --- 2011-03-21 12:04:28 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 12:04:28 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-21 12:04:28 - cleaning the object tree TB --- 2011-03-21 12:04:38 - cvsupping the source tree TB --- 2011-03-21 12:04:38 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-21 12:04:54 - building world TB --- 2011-03-21 12:04:54 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 12:04:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 12:04:54 - TARGET=sun4v TB --- 2011-03-21 12:04:54 - TARGET_ARCH=sparc64 TB --- 2011-03-21 12:04:54 - TZ=UTC TB --- 2011-03-21 12:04:54 - __MAKE_CONF=/dev/null TB --- 2011-03-21 12:04:54 - cd /src TB --- 2011-03-21 12:04:54 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 12:04:55 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_checksum.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_compression.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/hast_proto.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/hastctl.c cc1: warnings being treated as errors /src/sbin/hastctl/hastctl.c: In function 'main': /src/sbin/hastctl/hastctl.c:469: warning: passing argument 2 of 'proto_client' from incompatible pointer type /src/sbin/hastctl/hastctl.c:469: error: too few arguments to function 'proto_client' *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 12:57:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 12:57:40 - ERROR: failed to build world TB --- 2011-03-21 12:57:40 - 2453.98 user 536.29 system 3192.23 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 14:10:34 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF5971065670 for ; Mon, 21 Mar 2011 14:10:34 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from agogare.doit.wisc.edu (agogare.doit.wisc.edu [144.92.197.211]) by mx1.freebsd.org (Postfix) with ESMTP id A43118FC0C for ; Mon, 21 Mar 2011 14:10:34 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth2.wiscmail.wisc.edu by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LIE00002VDLIC00@smtpauth2.wiscmail.wisc.edu> for freebsd-current@freebsd.org; Mon, 21 Mar 2011 09:10:33 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.65.155]) by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LIE00ABPVDJ0630@smtpauth2.wiscmail.wisc.edu> for freebsd-current@freebsd.org; Mon, 21 Mar 2011 09:10:32 -0500 (CDT) Date: Mon, 21 Mar 2011 09:10:30 -0500 From: Nathan Whitehorn In-reply-to: To: freebsd-current@freebsd.org Message-id: <4D875C56.8030804@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.65.155 X-Spam-PmxInfo: Server=avs-9, Version=5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.3.21.135717, SenderIP=76.210.65.155 References: User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110305 Thunderbird/3.1.9 Subject: Re: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 14:10:34 -0000 On 03/21/11 03:25, Michael Reifenberger wrote: > Hi, > yesterday I tested the images listed in the subject and have the > following remarks: > > - At least the memstick image contains an empty fstab The memstick stuff is new and (mostly) untested, so I'll check that out. > - Does the usage of a "dangerously dedikated disklabel" give any > advantage? Not that I can think of -- I'm not sure about maximum disk sizes for pure BSD-label disks. It's a legitimate option, though, for people doing manual configuration. > - The usage of an UFS-Label for root mounting should be more flexible Yes. It is somewhat difficult however, to cross-correlate gpart labels for GPT, APM, and PC98, with the labeled provider names (the label is not UFS labels, but gpart ones). > - The first dialog step should set the keyboard layout That *is* the first step. > - The /etc is not writable which would greatly reduce the usefulness > for the ISO > image (no modified resolv.conf, sshd_config, ...) This is only partly true. /etc/resolv.conf is a symlink into /tmp, which allows DHCP and network configuration to work. > The usage of a nanobsd based base-installation would give a sufficient > advanced Live-OS installation. > > You could take a look into src/tools/tools/nanobsd/rescue where I > tried to address most of the issues above primary for rescuing GPT/ZFS > installations (with still hardcoded keyboard though). > > With two nanobsd slices on one memstick you can actually produce > combined i386/and64 Live-OS memsticks... > I get both on a 2GiB memstick (Without packages). > > What do you think? That's interesting, and I'll take a look around what you've done there when I get some spare time. -Nathan From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 15:10:18 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D65D106566C; Mon, 21 Mar 2011 15:10:18 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2B7A98FC18; Mon, 21 Mar 2011 15:10:17 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LFAHSI077750; Mon, 21 Mar 2011 11:10:17 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LFAHxK077749; Mon, 21 Mar 2011 15:10:17 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 15:10:17 GMT Message-Id: <201103211510.p2LFAHxK077749@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 15:10:18 -0000 TB --- 2011-03-21 13:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 13:00:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-21 13:00:00 - cleaning the object tree TB --- 2011-03-21 13:00:17 - cvsupping the source tree TB --- 2011-03-21 13:00:17 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-21 13:00:59 - building world TB --- 2011-03-21 13:00:59 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 13:00:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 13:00:59 - TARGET=pc98 TB --- 2011-03-21 13:00:59 - TARGET_ARCH=i386 TB --- 2011-03-21 13:00:59 - TZ=UTC TB --- 2011-03-21 13:00:59 - __MAKE_CONF=/dev/null TB --- 2011-03-21 13:00:59 - cd /src TB --- 2011-03-21 13:00:59 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 13:00:59 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 14:51:44 UTC 2011 TB --- 2011-03-21 14:51:44 - generating LINT kernel config TB --- 2011-03-21 14:51:44 - cd /src/sys/pc98/conf TB --- 2011-03-21 14:51:44 - /usr/bin/make -B LINT TB --- 2011-03-21 14:51:44 - building LINT kernel TB --- 2011-03-21 14:51:44 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 14:51:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 14:51:44 - TARGET=pc98 TB --- 2011-03-21 14:51:44 - TARGET_ARCH=i386 TB --- 2011-03-21 14:51:44 - TZ=UTC TB --- 2011-03-21 14:51:44 - __MAKE_CONF=/dev/null TB --- 2011-03-21 14:51:44 - cd /src TB --- 2011-03-21 14:51:44 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 14:51:44 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -DPC98 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/pc98.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 15:10:16 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 15:10:16 - ERROR: failed to build lint kernel TB --- 2011-03-21 15:10:16 - 6278.84 user 1066.53 system 7815.57 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 15:11:52 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B4771065670 for ; Mon, 21 Mar 2011 15:11:52 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from agogare.doit.wisc.edu (agogare.doit.wisc.edu [144.92.197.211]) by mx1.freebsd.org (Postfix) with ESMTP id D4CD38FC15 for ; Mon, 21 Mar 2011 15:11:51 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth2.wiscmail.wisc.edu by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LIE0000KVFRO100@smtpauth2.wiscmail.wisc.edu> for current@freebsd.org; Mon, 21 Mar 2011 09:11:51 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.65.155]) by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LIE00ADIVFL0630@smtpauth2.wiscmail.wisc.edu>; Mon, 21 Mar 2011 09:11:46 -0500 (CDT) Date: Mon, 21 Mar 2011 09:11:45 -0500 From: Nathan Whitehorn In-reply-to: <20110321100428.GN90300@e.0x20.net> To: Lars Engels Message-id: <4D875CA1.8020607@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.65.155 X-Spam-PmxInfo: Server=avs-13, Version=5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.3.21.140625, SenderIP=76.210.65.155 References: <20110321100428.GN90300@e.0x20.net> User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110305 Thunderbird/3.1.9 Cc: FreeBSD-Current Subject: Re: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 15:11:52 -0000 On 03/21/11 05:04, Lars Engels wrote: > On Mon, Mar 21, 2011 at 09:25:36AM +0100, Michael Reifenberger wrote: >> Hi, >> yesterday I tested the images listed in the subject and have the following >> remarks: >> >> - At least the memstick image contains an empty fstab >> - Does the usage of a "dangerously dedikated disklabel" give any advantage? >> - The usage of an UFS-Label for root mounting should be more flexible > - UFS-labeling does not work > > I let bsdinstall partition the disk automatically and edited the > proposed partitions to add labels, but after the first boot, neither > fstab nor /dev/label showed any labels. The labels are gpart labels, so they show up, e.g., under /dev/gpt. They aren't currently used to set up fstab, as it is somewhat difficult to predict their path. -Nathan From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 15:19:35 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6848106566B; Mon, 21 Mar 2011 15:19:35 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 167BC8FC0A; Mon, 21 Mar 2011 15:19:34 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LFJYSK034755; Mon, 21 Mar 2011 11:19:34 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LFJYAc034746; Mon, 21 Mar 2011 15:19:34 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 15:19:34 GMT Message-Id: <201103211519.p2LFJYAc034746@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 15:19:35 -0000 TB --- 2011-03-21 13:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 13:00:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-21 13:00:00 - cleaning the object tree TB --- 2011-03-21 13:00:23 - cvsupping the source tree TB --- 2011-03-21 13:00:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-21 13:05:49 - building world TB --- 2011-03-21 13:05:49 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 13:05:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 13:05:49 - TARGET=i386 TB --- 2011-03-21 13:05:49 - TARGET_ARCH=i386 TB --- 2011-03-21 13:05:49 - TZ=UTC TB --- 2011-03-21 13:05:49 - __MAKE_CONF=/dev/null TB --- 2011-03-21 13:05:49 - cd /src TB --- 2011-03-21 13:05:49 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 13:05:50 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 14:57:55 UTC 2011 TB --- 2011-03-21 14:57:55 - generating LINT kernel config TB --- 2011-03-21 14:57:55 - cd /src/sys/i386/conf TB --- 2011-03-21 14:57:55 - /usr/bin/make -B LINT TB --- 2011-03-21 14:57:55 - building LINT kernel TB --- 2011-03-21 14:57:55 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 14:57:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 14:57:55 - TARGET=i386 TB --- 2011-03-21 14:57:55 - TARGET_ARCH=i386 TB --- 2011-03-21 14:57:55 - TZ=UTC TB --- 2011-03-21 14:57:55 - __MAKE_CONF=/dev/null TB --- 2011-03-21 14:57:55 - cd /src TB --- 2011-03-21 14:57:55 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 14:57:55 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/i386.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/i386.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 15:19:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 15:19:33 - ERROR: failed to build lint kernel TB --- 2011-03-21 15:19:33 - 6470.12 user 1060.87 system 8372.88 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 15:46:41 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C70A9106564A; Mon, 21 Mar 2011 15:46:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 825048FC13; Mon, 21 Mar 2011 15:46:41 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LFkeDe059664; Mon, 21 Mar 2011 11:46:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LFkeh0059651; Mon, 21 Mar 2011 15:46:40 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 15:46:40 GMT Message-Id: <201103211546.p2LFkeh0059651@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 15:46:42 -0000 TB --- 2011-03-21 13:56:04 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 13:56:04 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-21 13:56:04 - cleaning the object tree TB --- 2011-03-21 13:56:10 - cvsupping the source tree TB --- 2011-03-21 13:56:10 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-21 13:57:10 - building world TB --- 2011-03-21 13:57:10 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 13:57:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 13:57:10 - TARGET=ia64 TB --- 2011-03-21 13:57:10 - TARGET_ARCH=ia64 TB --- 2011-03-21 13:57:10 - TZ=UTC TB --- 2011-03-21 13:57:10 - __MAKE_CONF=/dev/null TB --- 2011-03-21 13:57:10 - cd /src TB --- 2011-03-21 13:57:10 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 13:57:11 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 15:22:19 UTC 2011 TB --- 2011-03-21 15:22:19 - generating LINT kernel config TB --- 2011-03-21 15:22:19 - cd /src/sys/ia64/conf TB --- 2011-03-21 15:22:19 - /usr/bin/make -B LINT TB --- 2011-03-21 15:22:19 - building LINT kernel TB --- 2011-03-21 15:22:19 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 15:22:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 15:22:19 - TARGET=ia64 TB --- 2011-03-21 15:22:19 - TARGET_ARCH=ia64 TB --- 2011-03-21 15:22:19 - TZ=UTC TB --- 2011-03-21 15:22:19 - __MAKE_CONF=/dev/null TB --- 2011-03-21 15:22:19 - cd /src TB --- 2011-03-21 15:22:19 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 15:22:19 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 15:46:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 15:46:40 - ERROR: failed to build lint kernel TB --- 2011-03-21 15:46:40 - 5401.35 user 864.02 system 6635.37 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 15:52:50 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B31F7106566B for ; Mon, 21 Mar 2011 15:52:50 +0000 (UTC) (envelope-from erob@gthcfoundation.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4638FC18 for ; Mon, 21 Mar 2011 15:52:50 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1 Received: from [192.168.0.100] ([184.162.50.38]) by vl-mo-mrz23.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0LIF006RI037UJ50@vl-mo-mrz23.ip.videotron.ca>; Mon, 21 Mar 2011 11:52:19 -0400 (EDT) Message-id: <4D877439.60406@gthcfoundation.org> Date: Mon, 21 Mar 2011 11:52:25 -0400 From: Etienne Robillard Organization: Green Tea Hackers Club User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 To: Andriy Gapon References: <20110314162936.d3f8fd5b.ray@dlink.ua> <201103210704.23220.bschmidt@freebsd.org> <20110321112911.141e3548.ray@dlink.ua> <201103211100.49504.bschmidt@freebsd.org> <20110321125257.7f81884b.ray@dlink.ua> <4D8730A1.1050602@gthcfoundation.org> <4D8748D0.2050708@freebsd.org> In-reply-to: <4D8748D0.2050708@freebsd.org> X-Enigmail-Version: 1.0.1 Cc: freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erob@gthcfoundation.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 15:52:50 -0000 > I am not sure why this thread has deserved your attention - not everyone has as > good mastery of English as you do. And sometimes some people are more prone to > doubts. > > FYI im not very good in English as its not my main language too. However constructive comments are usually intelligible as opposed to unintelligible... ;-) > Maybe you can give Aleksandr some help with the code in addition to your advice? > In others words can we disable OFDM by default on the next-generation RTL8187 (rt2860) driver on FreeBSD? If not then I'd like suggesting Aleksandr a patch to add a 'WITHOUT_OFDM' and/or 'WITHOUT_FIRMWARE' option to disable compiling any BSD licensed driver code related to OFDM without the user explicit consent. kind regards, -- Etienne Robillard Company: Green Tea Hackers Club Occupation: Software Developer (and CEO) E-mail: erob@gthcfoundation.org Work phone: 450-936-2123 Website (Company): https://gthc.org/ Website (Blog): https://gthc.org/blog/ PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C 7F17 A086 DDEC During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell If a free society cannot help the many who are poor, it cannot save the few who are rich. -- John F. Kennedy From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 17:21:50 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B680A106566C; Mon, 21 Mar 2011 17:21:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 84D108FC13; Mon, 21 Mar 2011 17:21:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LHLnGg098216; Mon, 21 Mar 2011 13:21:49 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LHLnrd098207; Mon, 21 Mar 2011 17:21:49 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 17:21:49 GMT Message-Id: <201103211721.p2LHLnrd098207@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 17:21:50 -0000 TB --- 2011-03-21 15:19:34 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 15:19:34 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-21 15:19:34 - cleaning the object tree TB --- 2011-03-21 15:19:40 - cvsupping the source tree TB --- 2011-03-21 15:19:40 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-21 15:19:52 - building world TB --- 2011-03-21 15:19:52 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 15:19:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 15:19:52 - TARGET=powerpc TB --- 2011-03-21 15:19:52 - TARGET_ARCH=powerpc TB --- 2011-03-21 15:19:52 - TZ=UTC TB --- 2011-03-21 15:19:52 - __MAKE_CONF=/dev/null TB --- 2011-03-21 15:19:52 - cd /src TB --- 2011-03-21 15:19:52 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 15:19:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 17:04:50 UTC 2011 TB --- 2011-03-21 17:04:50 - generating LINT kernel config TB --- 2011-03-21 17:04:50 - cd /src/sys/powerpc/conf TB --- 2011-03-21 17:04:50 - /usr/bin/make -B LINT TB --- 2011-03-21 17:04:50 - building LINT kernel TB --- 2011-03-21 17:04:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:04:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:04:50 - TARGET=powerpc TB --- 2011-03-21 17:04:50 - TARGET_ARCH=powerpc TB --- 2011-03-21 17:04:50 - TZ=UTC TB --- 2011-03-21 17:04:50 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:04:50 - cd /src TB --- 2011-03-21 17:04:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 17:04:50 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 17:21:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 17:21:49 - ERROR: failed to build lint kernel TB --- 2011-03-21 17:21:49 - 5898.27 user 968.12 system 7334.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 17:31:32 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B3AD106566B; Mon, 21 Mar 2011 17:31:32 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4D06A8FC08; Mon, 21 Mar 2011 17:31:31 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LHVVoI042352; Mon, 21 Mar 2011 13:31:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LHVVuE042345; Mon, 21 Mar 2011 17:31:31 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 17:31:31 GMT Message-Id: <201103211731.p2LHVVuE042345@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 17:31:32 -0000 TB --- 2011-03-21 16:09:20 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 16:09:20 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-21 16:09:20 - cleaning the object tree TB --- 2011-03-21 16:09:25 - cvsupping the source tree TB --- 2011-03-21 16:09:25 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-21 16:09:38 - building world TB --- 2011-03-21 16:09:38 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 16:09:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 16:09:38 - TARGET=sun4v TB --- 2011-03-21 16:09:38 - TARGET_ARCH=sparc64 TB --- 2011-03-21 16:09:38 - TZ=UTC TB --- 2011-03-21 16:09:38 - __MAKE_CONF=/dev/null TB --- 2011-03-21 16:09:38 - cd /src TB --- 2011-03-21 16:09:38 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 16:09:38 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 17:14:22 UTC 2011 TB --- 2011-03-21 17:14:22 - generating LINT kernel config TB --- 2011-03-21 17:14:22 - cd /src/sys/sun4v/conf TB --- 2011-03-21 17:14:22 - /usr/bin/make -B LINT TB --- 2011-03-21 17:14:22 - building LINT kernel TB --- 2011-03-21 17:14:22 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:14:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:14:22 - TARGET=sun4v TB --- 2011-03-21 17:14:22 - TARGET_ARCH=sparc64 TB --- 2011-03-21 17:14:22 - TZ=UTC TB --- 2011-03-21 17:14:22 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:14:22 - cd /src TB --- 2011-03-21 17:14:22 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 17:14:22 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 17:31:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 17:31:31 - ERROR: failed to build lint kernel TB --- 2011-03-21 17:31:31 - 3834.81 user 764.54 system 4930.90 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 17:31:41 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8601B106564A; Mon, 21 Mar 2011 17:31:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 570AC8FC14; Mon, 21 Mar 2011 17:31:41 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LHVe0J042678; Mon, 21 Mar 2011 13:31:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LHVe30042677; Mon, 21 Mar 2011 17:31:40 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 17:31:40 GMT Message-Id: <201103211731.p2LHVe30042677@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 17:31:41 -0000 TB --- 2011-03-21 16:08:58 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 16:08:58 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-21 16:08:58 - cleaning the object tree TB --- 2011-03-21 16:09:04 - cvsupping the source tree TB --- 2011-03-21 16:09:04 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-21 16:09:18 - building world TB --- 2011-03-21 16:09:18 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 16:09:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 16:09:18 - TARGET=sparc64 TB --- 2011-03-21 16:09:18 - TARGET_ARCH=sparc64 TB --- 2011-03-21 16:09:18 - TZ=UTC TB --- 2011-03-21 16:09:18 - __MAKE_CONF=/dev/null TB --- 2011-03-21 16:09:18 - cd /src TB --- 2011-03-21 16:09:18 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 16:09:18 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 17:14:16 UTC 2011 TB --- 2011-03-21 17:14:16 - generating LINT kernel config TB --- 2011-03-21 17:14:16 - cd /src/sys/sparc64/conf TB --- 2011-03-21 17:14:16 - /usr/bin/make -B LINT TB --- 2011-03-21 17:14:16 - building LINT kernel TB --- 2011-03-21 17:14:16 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:14:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:14:16 - TARGET=sparc64 TB --- 2011-03-21 17:14:16 - TARGET_ARCH=sparc64 TB --- 2011-03-21 17:14:16 - TZ=UTC TB --- 2011-03-21 17:14:16 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:14:16 - cd /src TB --- 2011-03-21 17:14:16 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 17:14:16 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 17:31:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 17:31:40 - ERROR: failed to build lint kernel TB --- 2011-03-21 17:31:40 - 3851.09 user 765.52 system 4961.73 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 17:36:25 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FA12106566C; Mon, 21 Mar 2011 17:36:25 +0000 (UTC) (envelope-from hosting@syscare.sk) Received: from services.syscare.sk (services.syscare.sk [188.40.39.36]) by mx1.freebsd.org (Postfix) with ESMTP id 2323D8FC18; Mon, 21 Mar 2011 17:36:24 +0000 (UTC) Received: from services.syscare.sk (services [188.40.39.36]) by services.syscare.sk (Postfix) with ESMTP id C96808DB37; Mon, 21 Mar 2011 18:19:25 +0100 (CET) X-Virus-Scanned: amavisd-new at rulez.sk Received: from services.syscare.sk ([188.40.39.36]) by services.syscare.sk (services.rulez.sk [188.40.39.36]) (amavisd-new, port 10024) with ESMTP id qZm1XgtV6El2; Mon, 21 Mar 2011 18:19:23 +0100 (CET) Received: from hosting.syscare.sk (hosting [188.40.39.37]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by services.syscare.sk (Postfix) with ESMTPS id B5C2D8DB26; Mon, 21 Mar 2011 18:19:23 +0100 (CET) Received: (from www@localhost) by hosting.syscare.sk (8.14.4/8.14.4/Submit) id p2LHJNgO044442; Mon, 21 Mar 2011 18:19:23 +0100 (CET) (envelope-from hosting@syscare.sk) X-Authentication-Warning: hosting.syscare.sk: www set sender to hosting@syscare.sk using -f To: , X-PHP-Originating-Script: 0:func.inc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 21 Mar 2011 18:19:23 +0100 From: Daniel Gerzo Organization: The FreeBSD Project Mail-Followup-To: Message-ID: <9520844e1b99c3d38c96b33e5692eb8c@rulez.sk> X-Sender: danger@FreeBSD.org User-Agent: Roundcube Webmail/0.5.1 Cc: Subject: HEADSUP: Call for FreeBSD Status Reports - 1Q/2011 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 17:36:25 -0000 Dear all, I would like to remind you that the next round of status reports covering the first quarter of 2011 is due on April 15th, 2011. As this initiative is very popular among our users, I would like to ask you to submit your status reports soon, so that we can compile the report on time. Do not hesitate and write us a few lines; a short description about what you are working on, what your plans and goals are, or any other information that you consider interested is always welcome. This way we can inform our community about your great work! Check out the reports from the past to get some inspiration of what your submission should look like. If you know about a project that should be included in the status report, please let us know as well, so we can poke the responsible people to provide us with something useful. Updates to submissions from the last report are welcome too. Note that the submissions are accepted from anyone involved within the FreeBSD community, you do not have to be a FreeBSD committer. Anything related to FreeBSD can be covered. Please email us the filled-in XML template which can be found at http://www.freebsd.org/news/status/report-sample.xml to monthly@FreeBSD.org, or alternatively use our web based form located at http://www.freebsd.org/cgi/monthly.cgi. For more information, please visit http://www.freebsd.org/news/status/. We are looking forward to see your submissions! -- Kind regards Daniel Gerzo From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 17:41:18 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B11EF1065677; Mon, 21 Mar 2011 17:41:18 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7E5B88FC1D; Mon, 21 Mar 2011 17:41:18 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LHfHs8051885; Mon, 21 Mar 2011 13:41:17 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LHfHMI051884; Mon, 21 Mar 2011 17:41:17 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 17:41:17 GMT Message-Id: <201103211741.p2LHfHMI051884@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 17:41:18 -0000 TB --- 2011-03-21 15:46:41 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 15:46:41 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-21 15:46:41 - cleaning the object tree TB --- 2011-03-21 15:46:46 - cvsupping the source tree TB --- 2011-03-21 15:46:46 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-21 15:47:04 - building world TB --- 2011-03-21 15:47:04 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 15:47:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 15:47:04 - TARGET=powerpc TB --- 2011-03-21 15:47:04 - TARGET_ARCH=powerpc64 TB --- 2011-03-21 15:47:04 - TZ=UTC TB --- 2011-03-21 15:47:04 - __MAKE_CONF=/dev/null TB --- 2011-03-21 15:47:04 - cd /src TB --- 2011-03-21 15:47:04 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 15:47:04 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Mon Mar 21 17:24:15 UTC 2011 TB --- 2011-03-21 17:24:15 - generating LINT kernel config TB --- 2011-03-21 17:24:15 - cd /src/sys/powerpc/conf TB --- 2011-03-21 17:24:15 - /usr/bin/make -B LINT TB --- 2011-03-21 17:24:15 - building LINT kernel TB --- 2011-03-21 17:24:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:24:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:24:15 - TARGET=powerpc TB --- 2011-03-21 17:24:15 - TARGET_ARCH=powerpc64 TB --- 2011-03-21 17:24:15 - TZ=UTC TB --- 2011-03-21 17:24:15 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:24:15 - cd /src TB --- 2011-03-21 17:24:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 17:24:15 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 17:41:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 17:41:17 - ERROR: failed to build lint kernel TB --- 2011-03-21 17:41:17 - 5349.00 user 1060.22 system 6876.37 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 18:10:32 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA3F81065670; Mon, 21 Mar 2011 18:10:32 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr16.xs4all.nl (smtp-vbr16.xs4all.nl [194.109.24.36]) by mx1.freebsd.org (Postfix) with ESMTP id 4EE728FC1C; Mon, 21 Mar 2011 18:10:31 +0000 (UTC) Received: from slackbox.erewhon.net (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr16.xs4all.nl (8.13.8/8.13.8) with ESMTP id p2LHrjYV074633; Mon, 21 Mar 2011 18:53:45 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.erewhon.net (Postfix, from userid 1001) id BD082BA9C; Mon, 21 Mar 2011 18:53:44 +0100 (CET) Date: Mon, 21 Mar 2011 18:53:44 +0100 From: Roland Smith To: Alexander Leidinger Message-ID: <20110321175344.GA41347@slackbox.erewhon.net> References: <4D85AE1B.7010407@gmail.com> <20110320173157.00002024@unknown> <4D86EA62.9060506@gmail.com> <20110321082619.97716qmve56zukdw@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mYCpIKhGyMATD0i+" Content-Disposition: inline In-Reply-To: <20110321082619.97716qmve56zukdw@webmail.leidinger.net> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: by XS4ALL Virus Scanner X-Mailman-Approved-At: Mon, 21 Mar 2011 18:37:20 +0000 Cc: David Demelier , stable@freebsd.org, freebsd-current@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 18:10:32 -0000 --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 21, 2011 at 08:26:19AM +0100, Alexander Leidinger wrote: >=20 > Quoting David Demelier (from Mon, 21 Mar =20 > 2011 07:04:18 +0100): >=20 > > On 20/03/2011 17:31, Alexander Leidinger wrote: > >> On Sun, 20 Mar 2011 08:34:51 +0100 David Demelier > >> wrote: > >> > >>> Hello, > >>> > >>> I was surprised to see there is no ${MK_JAIL} conditional to remove > >>> old files on 8.2-RELEASE so I started to write it without watching if > >>> -CURRENT already make it in > >>> /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. > >>> > >>> .if ${MK_JAIL} =3D=3D no >=20 > >>> I think they should be removed too, thus can you merge it to -STABLE > >>> if it's not already done? (sorry I'm not used to the cvs web > >>> interface and I don't have -STABLE right now) >=20 > > No I understood why, that's because a lot of userland programs that =20 > > can handle jails processes are linked to the libjail such as top, =20 > > ifconfig, ... >=20 > So it's just about merging to 8-stable. >=20 > I made a diff between -current and 8-stable, and there are a lot of =20 > differences. Instead of merging just the entries for the jails, it =20 > would be better to merge nearly everything. The problem is that this =20 > requires a lot of testing (delete old files, installworld, check if =20 > files reappear -> need to be removed from the list to remove with =20 > delete-old/-libs) and the libs need to be checked for the correct =20 > version number too. Some months ago, I submitted an PR with an update for tools/build/mk/OptionalObsoleteFiles.inc;=20 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dmisc/149360 I added stuff to it by looking at the options in src.conf(5) and running 'm= ake -n install' in the relevant kernel directory and noting what was installed. The original file I started from (1.20.2.2.2.1 from 2010/06/14) = was 1162 lines. My enhanced version is 2610 lines. Maybe you can use this? Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --mYCpIKhGyMATD0i+ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (FreeBSD) iEYEARECAAYFAk2HkKgACgkQEnfvsMMhpyUoswCgnMHJ4LNVRo9dLJb//A9Hoe4a vaAAn3D3GwYEsE3IFa6QwOQZnEYJI5ZF =fj82 -----END PGP SIGNATURE----- --mYCpIKhGyMATD0i+-- From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 18:39:53 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0BAB106567B for ; Mon, 21 Mar 2011 18:39:53 +0000 (UTC) (envelope-from rdivacky@vlakno.cz) Received: from vlakno.cz (lev.vlakno.cz [77.93.215.190]) by mx1.freebsd.org (Postfix) with ESMTP id 8C1DA8FC12 for ; Mon, 21 Mar 2011 18:39:53 +0000 (UTC) Received: from lev.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id BA5339CB15F; Mon, 21 Mar 2011 19:21:43 +0100 (CET) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by lev.vlakno.cz (lev.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id E7CR4pyBQFx5; Mon, 21 Mar 2011 19:21:43 +0100 (CET) Received: by vlakno.cz (Postfix, from userid 1076) id 0ED239CB186; Mon, 21 Mar 2011 19:21:43 +0100 (CET) Date: Mon, 21 Mar 2011 19:21:43 +0100 From: Roman Divacky To: Fabian Keil Message-ID: <20110321182142.GA73111@freebsd.org> References: <20110314185943.GA98118@freebsd.org> <20110320204104.2cc0ef74@r500.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110320204104.2cc0ef74@r500.local> User-Agent: Mutt/1.4.2.3i Cc: current@freebsd.org Subject: Re: [TESTING]: boot2 compilation with -mregparm=3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 18:39:53 -0000 On Sun, Mar 20, 2011 at 08:41:04PM +0100, Fabian Keil wrote: > Roman Divacky wrote: > > > This patch: > > > > > > http://lev.vlakno.cz/~rdivacky/boot2-mregparm.patch > > > > > > makes boot2 to be compiled with -mregparm=3 (which shrinks it > > some). It changes CFLAGS to include -mregparm=3 and also > > rewrites sio.S to use register passing. > > > > This survived my testing in qemu and jhb@s review. > > Works for me on amd64 with gcc, but I don't use either > a serial console or gptboot/zfsboot. thank you for testing, although I really need someone to test this on serial console {gpt,zfs}boot it seems to work for me and fail for the other tester so I really dont know what to think roman From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 18:58:48 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B02F106564A; Mon, 21 Mar 2011 18:58:48 +0000 (UTC) (envelope-from lacombar@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id F3B4C8FC17; Mon, 21 Mar 2011 18:58:47 +0000 (UTC) Received: by iwn33 with SMTP id 33so7915790iwn.13 for ; Mon, 21 Mar 2011 11:58:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=q5BwkdUB9f59ZBI7VavxMQKHjZlYEsn952cYJ3uVxxU=; b=BjF7nkpJv25DBNg2hJD/QSs9FPs+/HGJLJ0YDe8Hg+LuLS0F+sa9yumN5dO5I0zgrz h/LKeTYbSmFD8w3/NkJ83TRw+yaSh27qrYP3QW/osVC77+otUAkJbBCV2OM2J4I0nm8b KWrxrWsIl71nj7xMq/MbFxT0Ggg7nJiKgLSqk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=AQYEHuyGfQwAz6AgxoiWHKRm8aGWHDE5+ZfTA9LGOM8JY38boHqFNfRMJwz0Ka+F+/ iM+jgRPO90mArNqbYIvqaQVGKTCP7sv6hcG5x4//OX5q49u4My86zMzP8Nm6GiKxsuMb AnYUP6adbehKvV74gCXIWrd/LTL3qP4079C50= MIME-Version: 1.0 Received: by 10.43.63.72 with SMTP id xd8mr7384180icb.215.1300732288438; Mon, 21 Mar 2011 11:31:28 -0700 (PDT) Received: by 10.42.146.72 with HTTP; Mon, 21 Mar 2011 11:31:28 -0700 (PDT) In-Reply-To: <4D86EA62.9060506@gmail.com> References: <4D85AE1B.7010407@gmail.com> <20110320173157.00002024@unknown> <4D86EA62.9060506@gmail.com> Date: Mon, 21 Mar 2011 14:31:28 -0400 Message-ID: From: Arnaud Lacombe To: David Demelier Content-Type: multipart/mixed; boundary=bcaec51d29f200109d049f025619 Cc: Alexander Leidinger , freebsd-current@freebsd.org, freebsd-jail@freebsd.org Subject: Re: WITHOUT_JAIL and make delete-old{,-libs} X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 18:58:48 -0000 --bcaec51d29f200109d049f025619 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, [added freebsd-jail@freebsd.org to CC: list] On Mon, Mar 21, 2011 at 2:04 AM, David Demelier wrote: > On 20/03/2011 17:31, Alexander Leidinger wrote: >> >> On Sun, 20 Mar 2011 08:34:51 +0100 David Demelier >> =A0wrote: >> >>> Hello, >>> >>> I was surprised to see there is no ${MK_JAIL} conditional to remove >>> old files on 8.2-RELEASE so I started to write it without watching if >>> -CURRENT already make it in >>> /usr/src/tools/build/mk/OptionalObsoleteFiles.inc. >>> >>> .if ${MK_JAIL} =3D=3D no >>> OLD_FILES+=3Dusr/sbin/jail >>> OLD_FILES+=3Dusr/sbin/jexec >>> OLD_FILES+=3Dusr/sbin/jls >>> OLD_FILES+=3Dusr/share/man/man8/jail.8.gz >>> OLD_FILES+=3Dusr/share/man/man8/jexec.8.gz >>> OLD_FILES+=3Dusr/share/man/man8/jls.8.gz >>> .endif >>> >>> I personnaly added more files : >>> >>> OLD_LIBS+=3Dlib/libjail.so.1 >>> OLD_LIBS+=3Dusr/lib/libjail.a >>> OLD_LIBS+=3Dusr/lib/libjail_p.a >>> OLD_FILES+=3Dusr/lib/libjail.so >>> OLD_FILES+=3Detc/rc.d/jail >> >> So if you do an installworld, do those files you added show up again or >> not? If they show up, they are wrong to be added there. Delete old is >> supposed to delete stuff which does not get installed during an >> installworld but was installed in some older version of FreeBSD. From >> my reading of the Makefile in src/lib/ (on -current) it looks like at >> least the libjail is installed regardless of the knob. I do not know if >> this is a bug or by design, this would have to be discussed on the >> mailinglist which is about FreeBSD jails. >> >> If those files are not installed during an installworld, it's obviously >> a bug which needs to be fixed (and I would have misunderstood the >> Makefile). >> >>> (/usr/lib/libjail.so is a symbolic link) >>> >>> I think they should be removed too, thus can you merge it to -STABLE >>> if it's not already done? (sorry I'm not used to the cvs web >>> interface and I don't have -STABLE right now) >>> >>> Cheers, >>> >> > > No I understood why, that's because a lot of userland programs that can > handle jails processes are linked to the libjail such as top, ifconfig, .= .. > I happened to have made a patch for ifconfig, see attachment. AFAIT, buildworld builds fine with WITHOUT_JAIL=3D1, so there should not be further build dependency. - Arnaud --bcaec51d29f200109d049f025619 Content-Type: application/octet-stream; name="honors-WITHOUT_JAIL.patch" Content-Disposition: attachment; filename="honors-WITHOUT_JAIL.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gljqelko0 RnJvbSBkZGUxYmNhYjYzYmE1NmEwMjAyZmVlMGIyZGM0YmQxMTVhYTE5MmEzIE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBBcm5hdWQgTGFjb21iZSA8bGFjb21iYXJAZ21haWwuY29tPgpE YXRlOiBGcmksIDE4IE1hciAyMDExIDE3OjM0OjIzIC0wNDAwClN1YmplY3Q6IFtQQVRDSF0gSG9u b3JzIFdJVEhPVVRfSkFJTAoKVGhpcyBwYXRjaCBmaXhlcyBidWlsZHdvcmxkIHdoZW4gbGliamFp bCBpcyBub3QgaW5jbHVkZWQgaW4gdGhlIGJ1aWxkLCBhcyBpdApzaG91bGQgYmUgaWYgV0lUSE9V VF9KQUlMIGRlZmluZWQuCgpDb21waWxlLXRlc3RlZCwgbm90IHJ1bnRpbWUgY2hlY2sgZG9uZS4K ClNpZ25lZC1vZmYtYnk6IEFybmF1ZCBMYWNvbWJlIDxsYWNvbWJhckBnbWFpbC5jb20+CgotLS0K IGxpYi9NYWtlZmlsZSAgICAgICAgICAgICB8ICAgIDYgKysrLQogc2Jpbi9pZmNvbmZpZy9NYWtl ZmlsZSAgIHwgICAxMCArKysrLQogc2Jpbi9pZmNvbmZpZy9pZmNvbmZpZy5jIHwgICAzMSAtLS0t LS0tLS0tLS0tLS0tCiBzYmluL2lmY29uZmlnL3ZuZXQuYyAgICAgfCAgIDkxICsrKysrKysrKysr KysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysKIDQgZmlsZXMgY2hhbmdlZCwgMTA0 IGluc2VydGlvbnMoKyksIDM0IGRlbGV0aW9ucygtKQogY3JlYXRlIG1vZGUgMTAwNjQ0IHNiaW4v aWZjb25maWcvdm5ldC5jCgpkaWZmIC0tZ2l0IGEvbGliL01ha2VmaWxlIGIvbGliL01ha2VmaWxl CmluZGV4IDRmZWYxYmIuLjlkODg4ODAgMTAwNjQ0Ci0tLSBhL2xpYi9NYWtlZmlsZQorKysgYi9s aWIvTWFrZWZpbGUKQEAgLTc3LDcgKzc3LDcgQEAgU1VCRElSPQkke1NVQkRJUl9PUkRFUkVEfSBc CiAJJHtfbGlicnBjc2VjX2dzc30gXAogCWxpYmlwc2VjIFwKIAkke19saWJpcHh9IFwKLQlsaWJq YWlsIFwKKwkke19saWJqYWlsfSBcCiAJbGlia2ljb252IFwKIAlsaWJsem1hIFwKIAlsaWJtYWdp YyBcCkBAIC0xNjUsNiArMTY1LDEwIEBAIF9saWJpY29udl9tb2R1bGVzPQlsaWJpY29udl9tb2R1 bGVzCiBfbGliaXB4PQlsaWJpcHgKIC5lbmRpZgogCisuaWYgJHtNS19KQUlMfSAhPSAibm8iCitf bGliamFpbD0JbGliamFpbAorLmVuZGlmCisKIC5pZiAke01LX0xJQlRIUn0gIT0gIm5vIgogX2xp YnRocj0JbGlidGhyCiAuZW5kaWYKZGlmZiAtLWdpdCBhL3NiaW4vaWZjb25maWcvTWFrZWZpbGUg Yi9zYmluL2lmY29uZmlnL01ha2VmaWxlCmluZGV4IDc3NDkxZjIuLjVmZjkyMDggMTAwNjQ0Ci0t LSBhL3NiaW4vaWZjb25maWcvTWFrZWZpbGUKKysrIGIvc2Jpbi9pZmNvbmZpZy9NYWtlZmlsZQpA QCAtMjgsOCArMjgsMTQgQEAgU1JDUys9CWlmZ3JlLmMJCQkjIEdSRSBrZXlzIGV0YwogU1JDUys9 CWlmZ2lmLmMJCQkjIEdJRiByZXZlcnNlZCBoZWFkZXIgd29ya2Fyb3VuZAogCiBTUkNTKz0JaWZp ZWVlODAyMTEuYyByZWdkb21haW4uYyAjIFNJT0NbR1NdSUVFRTgwMjExIHN1cHBvcnQKLURQQURE Kz0JJHtMSUJCU0RYTUx9ICR7TElCSkFJTH0gJHtMSUJTQlVGfQotTERBREQrPQktbGJzZHhtbCAt bGphaWwgLWxzYnVmCitEUEFERCs9CSR7TElCQlNEWE1MfSAke0xJQlNCVUZ9CitMREFERCs9CS1s YnNkeG1sIC1sc2J1ZgorCisuaWYgJHtNS19KQUlMfSAhPSAibm8iCitTUkNTKz0gdm5ldC5jCitE UEFERCs9CSR7TElCSkFJTH0KK0xEQUREKz0JLWxqYWlsCisuZW5kaWYKIAogU1JDUys9CWlmY2Fy cC5jCQkjIFNJT0NbR1NdVkggc3VwcG9ydAogU1JDUys9CWlmZ3JvdXAuYwkJIyAuLi4KZGlmZiAt LWdpdCBhL3NiaW4vaWZjb25maWcvaWZjb25maWcuYyBiL3NiaW4vaWZjb25maWcvaWZjb25maWcu YwppbmRleCA3YzVkMzUxLi4wMGM4ZDlmIDEwMDY0NAotLS0gYS9zYmluL2lmY29uZmlnL2lmY29u ZmlnLmMKKysrIGIvc2Jpbi9pZmNvbmZpZy9pZmNvbmZpZy5jCkBAIC02Niw3ICs2Niw2IEBAIHN0 YXRpYyBjb25zdCBjaGFyIHJjc2lkW10gPQogI2luY2x1ZGUgPGVyci5oPgogI2luY2x1ZGUgPGVy cm5vLmg+CiAjaW5jbHVkZSA8ZmNudGwuaD4KLSNpbmNsdWRlIDxqYWlsLmg+CiAjaW5jbHVkZSA8 c3RkaW8uaD4KICNpbmNsdWRlIDxzdGRsaWIuaD4KICNpbmNsdWRlIDxzdHJpbmcuaD4KQEAgLTY2 NCwzNCArNjYzLDYgQEAgZGVsZXRldHVubmVsKGNvbnN0IGNoYXIgKnZuYW1lLCBpbnQgcGFyYW0s IGludCBzLCBjb25zdCBzdHJ1Y3QgYWZzd3RjaCAqYWZwKQogfQogCiBzdGF0aWMgdm9pZAotc2V0 aWZ2bmV0KGNvbnN0IGNoYXIgKmpuYW1lLCBpbnQgZHVtbXkgX191bnVzZWQsIGludCBzLAotICAg IGNvbnN0IHN0cnVjdCBhZnN3dGNoICphZnApCi17Ci0Jc3RydWN0IGlmcmVxIG15X2lmcjsKLQot CW1lbWNweSgmbXlfaWZyLCAmaWZyLCBzaXplb2YobXlfaWZyKSk7Ci0JbXlfaWZyLmlmcl9qaWQg PSBqYWlsX2dldGlkKGpuYW1lKTsKLQlpZiAobXlfaWZyLmlmcl9qaWQgPCAwKQotCQllcnJ4KDEs ICIlcyIsIGphaWxfZXJybXNnKTsKLQlpZiAoaW9jdGwocywgU0lPQ1NJRlZORVQsICZteV9pZnIp IDwgMCkKLQkJZXJyKDEsICJTSU9DU0lGVk5FVCIpOwotfQotCi1zdGF0aWMgdm9pZAotc2V0aWZy dm5ldChjb25zdCBjaGFyICpqbmFtZSwgaW50IGR1bW15IF9fdW51c2VkLCBpbnQgcywKLSAgICBj b25zdCBzdHJ1Y3QgYWZzd3RjaCAqYWZwKQotewotCXN0cnVjdCBpZnJlcSBteV9pZnI7Ci0KLQlt ZW1jcHkoJm15X2lmciwgJmlmciwgc2l6ZW9mKG15X2lmcikpOwotCW15X2lmci5pZnJfamlkID0g amFpbF9nZXRpZChqbmFtZSk7Ci0JaWYgKG15X2lmci5pZnJfamlkIDwgMCkKLQkJZXJyeCgxLCAi JXMiLCBqYWlsX2Vycm1zZyk7Ci0JaWYgKGlvY3RsKHMsIFNJT0NTSUZSVk5FVCwgJm15X2lmcikg PCAwKQotCQllcnIoMSwgIlNJT0NTSUZSVk5FVCglZCwgJXMpIiwgbXlfaWZyLmlmcl9qaWQsIG15 X2lmci5pZnJfbmFtZSk7Ci19Ci0KLXN0YXRpYyB2b2lkCiBzZXRpZm5ldG1hc2soY29uc3QgY2hh ciAqYWRkciwgaW50IGR1bW15IF9fdW51c2VkLCBpbnQgcywKICAgICBjb25zdCBzdHJ1Y3QgYWZz d3RjaCAqYWZwKQogewpAQCAtMTEzMyw4ICsxMTA0LDYgQEAgc3RhdGljIHN0cnVjdCBjbWQgYmFz aWNfY21kc1tdID0gewogCURFRl9DTURfQVJHMigidHVubmVsIiwJCQlzZXR0dW5uZWwpLAogCURF Rl9DTUQoIi10dW5uZWwiLCAwLAkJCWRlbGV0ZXR1bm5lbCksCiAJREVGX0NNRCgiZGVsZXRldHVu bmVsIiwgMCwJCWRlbGV0ZXR1bm5lbCksCi0JREVGX0NNRF9BUkcoInZuZXQiLAkJCXNldGlmdm5l dCksCi0JREVGX0NNRF9BUkcoIi12bmV0IiwJCQlzZXRpZnJ2bmV0KSwKIAlERUZfQ01EKCJsaW5r MCIsCUlGRl9MSU5LMCwJc2V0aWZmbGFncyksCiAJREVGX0NNRCgiLWxpbmswIiwJLUlGRl9MSU5L MCwJc2V0aWZmbGFncyksCiAJREVGX0NNRCgibGluazEiLAlJRkZfTElOSzEsCXNldGlmZmxhZ3Mp LApkaWZmIC0tZ2l0IGEvc2Jpbi9pZmNvbmZpZy92bmV0LmMgYi9zYmluL2lmY29uZmlnL3ZuZXQu YwpuZXcgZmlsZSBtb2RlIDEwMDY0NAppbmRleCAwMDAwMDAwLi5kMzg2ZDE0Ci0tLSAvZGV2L251 bGwKKysrIGIvc2Jpbi9pZmNvbmZpZy92bmV0LmMKQEAgLTAsMCArMSw5MSBAQAorLyoKKyAqIENv cHlyaWdodCAoYykgMTk4MywgMTk5MworICoJVGhlIFJlZ2VudHMgb2YgdGhlIFVuaXZlcnNpdHkg b2YgQ2FsaWZvcm5pYS4gIEFsbCByaWdodHMgcmVzZXJ2ZWQuCisgKgorICogUmVkaXN0cmlidXRp b24gYW5kIHVzZSBpbiBzb3VyY2UgYW5kIGJpbmFyeSBmb3Jtcywgd2l0aCBvciB3aXRob3V0Cisg KiBtb2RpZmljYXRpb24sIGFyZSBwZXJtaXR0ZWQgcHJvdmlkZWQgdGhhdCB0aGUgZm9sbG93aW5n IGNvbmRpdGlvbnMKKyAqIGFyZSBtZXQ6CisgKiAxLiBSZWRpc3RyaWJ1dGlvbnMgb2Ygc291cmNl IGNvZGUgbXVzdCByZXRhaW4gdGhlIGFib3ZlIGNvcHlyaWdodAorICogICAgbm90aWNlLCB0aGlz IGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVyLgorICogMi4g UmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBj b3B5cmlnaHQKKyAqICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBm b2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGUKKyAqICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90 aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uCisgKiA0LiBOZWl0 aGVyIHRoZSBuYW1lIG9mIHRoZSBVbml2ZXJzaXR5IG5vciB0aGUgbmFtZXMgb2YgaXRzIGNvbnRy aWJ1dG9ycworICogICAgbWF5IGJlIHVzZWQgdG8gZW5kb3JzZSBvciBwcm9tb3RlIHByb2R1Y3Rz IGRlcml2ZWQgZnJvbSB0aGlzIHNvZnR3YXJlCisgKiAgICB3aXRob3V0IHNwZWNpZmljIHByaW9y IHdyaXR0ZW4gcGVybWlzc2lvbi4KKyAqCisgKiBUSElTIFNPRlRXQVJFIElTIFBST1ZJREVEIEJZ IFRIRSBSRUdFTlRTIEFORCBDT05UUklCVVRPUlMgYGBBUyBJUycnIEFORAorICogQU5ZIEVYUFJF U1MgT1IgSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBUTywg VEhFCisgKiBJTVBMSUVEIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZIEFORCBGSVRORVNT IEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRQorICogQVJFIERJU0NMQUlNRUQuICBJTiBOTyBFVkVO VCBTSEFMTCBUSEUgUkVHRU5UUyBPUiBDT05UUklCVVRPUlMgQkUgTElBQkxFCisgKiBGT1IgQU5Z IERJUkVDVCwgSU5ESVJFQ1QsIElOQ0lERU5UQUwsIFNQRUNJQUwsIEVYRU1QTEFSWSwgT1IgQ09O U0VRVUVOVElBTAorICogREFNQUdFUyAoSU5DTFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFBS T0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUgR09PRFMKKyAqIE9SIFNFUlZJQ0VTOyBMT1NTIE9GIFVT RSwgREFUQSwgT1IgUFJPRklUUzsgT1IgQlVTSU5FU1MgSU5URVJSVVBUSU9OKQorICogSE9XRVZF UiBDQVVTRUQgQU5EIE9OIEFOWSBUSEVPUlkgT0YgTElBQklMSVRZLCBXSEVUSEVSIElOIENPTlRS QUNULCBTVFJJQ1QKKyAqIExJQUJJTElUWSwgT1IgVE9SVCAoSU5DTFVESU5HIE5FR0xJR0VOQ0Ug T1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkKKyAqIE9VVCBPRiBUSEUgVVNFIE9GIFRI SVMgU09GVFdBUkUsIEVWRU4gSUYgQURWSVNFRCBPRiBUSEUgUE9TU0lCSUxJVFkgT0YKKyAqIFNV Q0ggREFNQUdFLgorICovCisKKyNpZm5kZWYgbGludAorc3RhdGljIGNvbnN0IGNoYXIgcmNzaWRb XSA9CisgICIkRnJlZUJTRCQiOworI2VuZGlmIC8qIG5vdCBsaW50ICovCisKKyNpbmNsdWRlIDxz eXMvcGFyYW0uaD4KKyNpbmNsdWRlIDxzeXMvc29ja2V0Lmg+CisjaW5jbHVkZSA8c3lzL2lvY3Rs Lmg+CisKKyNpbmNsdWRlIDxuZXQvaWYuaD4KKyNpbmNsdWRlIDxuZXQvaWZfdmFyLmg+CisKKyNp bmNsdWRlIDxlcnIuaD4KKyNpbmNsdWRlIDxzdHJpbmcuaD4KKyNpbmNsdWRlIDxqYWlsLmg+CisK KyNpbmNsdWRlICJpZmNvbmZpZy5oIgorCitzdGF0aWMgdm9pZAorc2V0aWZ2bmV0KGNvbnN0IGNo YXIgKmpuYW1lLCBpbnQgZHVtbXkgX191bnVzZWQsIGludCBzLAorICAgIGNvbnN0IHN0cnVjdCBh ZnN3dGNoICphZnApCit7CisJc3RydWN0IGlmcmVxIG15X2lmcjsKKworCW1lbWNweSgmbXlfaWZy LCAmaWZyLCBzaXplb2YobXlfaWZyKSk7CisJbXlfaWZyLmlmcl9qaWQgPSBqYWlsX2dldGlkKGpu YW1lKTsKKwlpZiAobXlfaWZyLmlmcl9qaWQgPCAwKQorCQllcnJ4KDEsICIlcyIsIGphaWxfZXJy bXNnKTsKKwlpZiAoaW9jdGwocywgU0lPQ1NJRlZORVQsICZteV9pZnIpIDwgMCkKKwkJZXJyKDEs ICJTSU9DU0lGVk5FVCIpOworfQorCitzdGF0aWMgdm9pZAorc2V0aWZydm5ldChjb25zdCBjaGFy ICpqbmFtZSwgaW50IGR1bW15IF9fdW51c2VkLCBpbnQgcywKKyAgICBjb25zdCBzdHJ1Y3QgYWZz d3RjaCAqYWZwKQoreworCXN0cnVjdCBpZnJlcSBteV9pZnI7CisKKwltZW1jcHkoJm15X2lmciwg Jmlmciwgc2l6ZW9mKG15X2lmcikpOworCW15X2lmci5pZnJfamlkID0gamFpbF9nZXRpZChqbmFt ZSk7CisJaWYgKG15X2lmci5pZnJfamlkIDwgMCkKKwkJZXJyeCgxLCAiJXMiLCBqYWlsX2Vycm1z Zyk7CisJaWYgKGlvY3RsKHMsIFNJT0NTSUZSVk5FVCwgJm15X2lmcikgPCAwKQorCQllcnIoMSwg IlNJT0NTSUZSVk5FVCglZCwgJXMpIiwgbXlfaWZyLmlmcl9qaWQsIG15X2lmci5pZnJfbmFtZSk7 Cit9CisKK3N0YXRpYyBzdHJ1Y3QgY21kIHZuZXRfY21kc1tdID0KK3sKKwlERUZfQ01EX0FSRygi dm5ldCIsCXNldGlmdm5ldCksCisJREVGX0NNRF9BUkcoIi12bmV0IiwJc2V0aWZydm5ldCksCit9 OworCitzdGF0aWMgX19jb25zdHJ1Y3RvciB2b2lkCit2bmV0X2N0b3Iodm9pZCkKK3sKKyNkZWZp bmUJTihhKQkoc2l6ZW9mKGEpIC8gc2l6ZW9mKGFbMF0pKQorCXNpemVfdCBpOworCisJZm9yIChp ID0gMDsgaSA8IE4odm5ldF9jbWRzKTsgIGkrKykKKwkJY21kX3JlZ2lzdGVyKCZ2bmV0X2NtZHNb aV0pOworI3VuZGVmIE4KK30KLS0gCjEuNy40LjEuMzEzLmdkN2M1OS5kaXJ0eQoK --bcaec51d29f200109d049f025619-- From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 20:00:27 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7567106566B; Mon, 21 Mar 2011 20:00:27 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A6E8A8FC12; Mon, 21 Mar 2011 20:00:27 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LK0QZ4096918; Mon, 21 Mar 2011 16:00:26 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LK0Q7A096905; Mon, 21 Mar 2011 20:00:26 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 20:00:26 GMT Message-Id: <201103212000.p2LK0Q7A096905@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 20:00:28 -0000 TB --- 2011-03-21 17:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 17:50:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-21 17:50:00 - cleaning the object tree TB --- 2011-03-21 17:50:13 - cvsupping the source tree TB --- 2011-03-21 17:50:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-21 17:50:55 - building world TB --- 2011-03-21 17:50:55 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:50:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:50:55 - TARGET=pc98 TB --- 2011-03-21 17:50:55 - TARGET_ARCH=i386 TB --- 2011-03-21 17:50:55 - TZ=UTC TB --- 2011-03-21 17:50:55 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:50:55 - cd /src TB --- 2011-03-21 17:50:55 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 17:50:55 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 19:41:42 UTC 2011 TB --- 2011-03-21 19:41:42 - generating LINT kernel config TB --- 2011-03-21 19:41:42 - cd /src/sys/pc98/conf TB --- 2011-03-21 19:41:42 - /usr/bin/make -B LINT TB --- 2011-03-21 19:41:42 - building LINT kernel TB --- 2011-03-21 19:41:42 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 19:41:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 19:41:42 - TARGET=pc98 TB --- 2011-03-21 19:41:42 - TARGET_ARCH=i386 TB --- 2011-03-21 19:41:42 - TZ=UTC TB --- 2011-03-21 19:41:42 - __MAKE_CONF=/dev/null TB --- 2011-03-21 19:41:42 - cd /src TB --- 2011-03-21 19:41:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 19:41:42 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -DPC98 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/pc98.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 20:00:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 20:00:25 - ERROR: failed to build lint kernel TB --- 2011-03-21 20:00:26 - 6281.72 user 1063.32 system 7825.31 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 20:03:53 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B48CE106564A; Mon, 21 Mar 2011 20:03:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 89AF88FC1E; Mon, 21 Mar 2011 20:03:53 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LK3qlQ015318; Mon, 21 Mar 2011 16:03:52 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LK3qwU015306; Mon, 21 Mar 2011 20:03:52 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 20:03:52 GMT Message-Id: <201103212003.p2LK3qwU015306@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 20:03:53 -0000 TB --- 2011-03-21 17:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 17:50:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-21 17:50:00 - cleaning the object tree TB --- 2011-03-21 17:50:13 - cvsupping the source tree TB --- 2011-03-21 17:50:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-21 17:50:55 - building world TB --- 2011-03-21 17:50:55 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 17:50:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 17:50:55 - TARGET=i386 TB --- 2011-03-21 17:50:55 - TARGET_ARCH=i386 TB --- 2011-03-21 17:50:55 - TZ=UTC TB --- 2011-03-21 17:50:55 - __MAKE_CONF=/dev/null TB --- 2011-03-21 17:50:55 - cd /src TB --- 2011-03-21 17:50:55 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 17:50:55 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 19:42:02 UTC 2011 TB --- 2011-03-21 19:42:02 - generating LINT kernel config TB --- 2011-03-21 19:42:02 - cd /src/sys/i386/conf TB --- 2011-03-21 19:42:02 - /usr/bin/make -B LINT TB --- 2011-03-21 19:42:02 - building LINT kernel TB --- 2011-03-21 19:42:02 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 19:42:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 19:42:02 - TARGET=i386 TB --- 2011-03-21 19:42:02 - TARGET_ARCH=i386 TB --- 2011-03-21 19:42:02 - TZ=UTC TB --- 2011-03-21 19:42:02 - __MAKE_CONF=/dev/null TB --- 2011-03-21 19:42:02 - cd /src TB --- 2011-03-21 19:42:02 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 19:42:02 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/i386.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/i386.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 20:03:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 20:03:52 - ERROR: failed to build lint kernel TB --- 2011-03-21 20:03:52 - 6470.66 user 1063.61 system 8031.83 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 20:36:33 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB243106564A; Mon, 21 Mar 2011 20:36:33 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 610758FC13; Mon, 21 Mar 2011 20:36:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LKaWAi088680; Mon, 21 Mar 2011 16:36:32 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LKaWHH088614; Mon, 21 Mar 2011 20:36:32 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 20:36:32 GMT Message-Id: <201103212036.p2LKaWHH088614@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 20:36:33 -0000 TB --- 2011-03-21 18:46:10 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 18:46:10 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-21 18:46:10 - cleaning the object tree TB --- 2011-03-21 18:46:19 - cvsupping the source tree TB --- 2011-03-21 18:46:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-21 18:46:39 - building world TB --- 2011-03-21 18:46:39 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 18:46:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 18:46:39 - TARGET=ia64 TB --- 2011-03-21 18:46:39 - TARGET_ARCH=ia64 TB --- 2011-03-21 18:46:39 - TZ=UTC TB --- 2011-03-21 18:46:39 - __MAKE_CONF=/dev/null TB --- 2011-03-21 18:46:39 - cd /src TB --- 2011-03-21 18:46:39 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 18:46:40 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 20:12:07 UTC 2011 TB --- 2011-03-21 20:12:08 - generating LINT kernel config TB --- 2011-03-21 20:12:08 - cd /src/sys/ia64/conf TB --- 2011-03-21 20:12:08 - /usr/bin/make -B LINT TB --- 2011-03-21 20:12:08 - building LINT kernel TB --- 2011-03-21 20:12:08 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 20:12:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 20:12:08 - TARGET=ia64 TB --- 2011-03-21 20:12:08 - TARGET_ARCH=ia64 TB --- 2011-03-21 20:12:08 - TZ=UTC TB --- 2011-03-21 20:12:08 - __MAKE_CONF=/dev/null TB --- 2011-03-21 20:12:08 - cd /src TB --- 2011-03-21 20:12:08 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 20:12:08 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 20:36:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 20:36:31 - ERROR: failed to build lint kernel TB --- 2011-03-21 20:36:31 - 5398.30 user 865.29 system 6620.95 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 20:56:16 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 890C7106564A for ; Mon, 21 Mar 2011 20:56:16 +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 DDD178FC1A for ; Mon, 21 Mar 2011 20:56:15 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id p2LKuBpT086444 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 21 Mar 2011 22:56:11 +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.4/8.14.4) with ESMTP id p2LKuBVG012535; Mon, 21 Mar 2011 22:56:11 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id p2LKuB31012534; Mon, 21 Mar 2011 22:56:11 +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: Mon, 21 Mar 2011 22:56:11 +0200 From: Kostik Belousov To: jeff@freebsd.org Message-ID: <20110321205611.GQ78089@deviant.kiev.zoral.com.ua> References: <201103212003.p2LK3qwU015306@freebsd-current.sentex.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u8GK5qt9ozrD+ZhJ" Content-Disposition: inline In-Reply-To: <201103212003.p2LK3qwU015306@freebsd-current.sentex.ca> 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.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: current@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 20:56:16 -0000 --u8GK5qt9ozrD+ZhJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 21, 2011 at 08:03:52PM +0000, FreeBSD Tinderbox wrote: > TB --- 2011-03-21 17:50:00 - tinderbox 2.6 running on freebsd-current.sen= tex.ca > TB --- 2011-03-21 17:50:00 - starting HEAD tinderbox run for i386/i386 > TB --- 2011-03-21 17:50:00 - cleaning the object tree > TB --- 2011-03-21 17:50:13 - cvsupping the source tree > TB --- 2011-03-21 17:50:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sente= x.ca /tinderbox/HEAD/i386/i386/supfile > TB --- 2011-03-21 17:50:55 - building world > TB --- 2011-03-21 17:50:55 - MAKEOBJDIRPREFIX=3D/obj > TB --- 2011-03-21 17:50:55 - PATH=3D/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2011-03-21 17:50:55 - TARGET=3Di386 > TB --- 2011-03-21 17:50:55 - TARGET_ARCH=3Di386 > TB --- 2011-03-21 17:50:55 - TZ=3DUTC > TB --- 2011-03-21 17:50:55 - __MAKE_CONF=3D/dev/null > TB --- 2011-03-21 17:50:55 - cd /src > TB --- 2011-03-21 17:50:55 - /usr/bin/make -B buildworld > >>> World build started on Mon Mar 21 17:50:55 UTC 2011 > >>> Rebuilding the temporary build tree > >>> stage 1.1: legacy release compatibility shims > >>> stage 1.2: bootstrap tools > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3: cross tools > >>> stage 4.1: building includes > >>> stage 4.2: building libraries > >>> stage 4.3: make dependencies > >>> stage 4.4: building everything > >>> World build completed on Mon Mar 21 19:42:02 UTC 2011 > TB --- 2011-03-21 19:42:02 - generating LINT kernel config > TB --- 2011-03-21 19:42:02 - cd /src/sys/i386/conf > TB --- 2011-03-21 19:42:02 - /usr/bin/make -B LINT > TB --- 2011-03-21 19:42:02 - building LINT kernel > TB --- 2011-03-21 19:42:02 - MAKEOBJDIRPREFIX=3D/obj > TB --- 2011-03-21 19:42:02 - PATH=3D/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2011-03-21 19:42:02 - TARGET=3Di386 > TB --- 2011-03-21 19:42:02 - TARGET_ARCH=3Di386 > TB --- 2011-03-21 19:42:02 - TZ=3DUTC > TB --- 2011-03-21 19:42:02 - __MAKE_CONF=3D/dev/null > TB --- 2011-03-21 19:42:02 - cd /src > TB --- 2011-03-21 19:42:02 - /usr/bin/make -B buildkernel KERNCONF=3DLINT > >>> Kernel build for LINT started on Mon Mar 21 19:42:02 UTC 2011 > >>> stage 1: configuring the kernel > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3.1: making dependencies > >>> stage 3.2: building everything > [...] > objcopy --strip-debug mlx.ko > =3D=3D=3D> mlx4 (all) > cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE = -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/m= odules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/= i386.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit= =3D8000 --param inline-unit-growth=3D100 --param large-function-growth=3D10= 00 -fno-common -I/obj/i386.i386/src/sys/LINT -fno-builtin -mno-align-long-= strings -mpreferred-stack-boundary=3D2 -mno-mmx -mno-3dnow -mno-sse -mno-ss= e2 -mno-sse3 -msoft-float -ffreestanding -fstack-protector -std=3Diso9899:1= 999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -fformat-extensions -Wno-cast-qual -Wno-pointer-arith -f= ms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c > cc1: warnings being treated as errors > In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab= .h:37, > from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/a= lloc.c:35: > /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_a= ddress': > /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to= pointer from integer of different size > *** Error code 1 >=20 > Stop in /src/sys/modules/mlx4. > *** Error code 1 >=20 > Stop in /src/sys/modules. > *** Error code 1 >=20 > Stop in /obj/i386.i386/src/sys/LINT. > *** Error code 1 >=20 > Stop in /src. > *** Error code 1 >=20 > Stop in /src. > TB --- 2011-03-21 20:03:52 - WARNING: /usr/bin/make returned exit code 1= =20 > TB --- 2011-03-21 20:03:52 - ERROR: failed to build lint kernel > TB --- 2011-03-21 20:03:52 - 6470.66 user 1063.61 system 8031.83 real >=20 The patch below allows me to finish the kernel compilation on i386, as well as on amd64. I do not have better idea for the ib_addr.h chunk. This leaves the ia64 failure unhandled. diff --git a/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c b/sys/ofed/d= rivers/infiniband/hw/mthca/mthca_main.c index 772cf8c..5401364 100644 --- a/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c +++ b/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c @@ -1228,8 +1228,8 @@ static int __devinit mthca_init_one(struct pci_dev *p= dev, } =20 if (id->driver_data >=3D ARRAY_SIZE(mthca_hca_table)) { - printk(KERN_ERR PFX "%s has invalid driver data %lx\n", - pci_name(pdev), id->driver_data); + printk(KERN_ERR PFX "%s has invalid driver data %jx\n", + pci_name(pdev), (uintmax_t)id->driver_data); mutex_unlock(&mthca_device_mutex); return -ENODEV; } diff --git a/sys/ofed/include/linux/gfp.h b/sys/ofed/include/linux/gfp.h index 7f8a24f..661ff41 100644 --- a/sys/ofed/include/linux/gfp.h +++ b/sys/ofed/include/linux/gfp.h @@ -56,7 +56,8 @@ page_address(struct page *page) =20 if (page->object !=3D kmem_object && page->object !=3D kernel_object) return (NULL); - return (void *)(VM_MIN_KERNEL_ADDRESS + IDX_TO_OFF(page->pindex)); + return ((void *)(uintptr_t)(VM_MIN_KERNEL_ADDRESS + + IDX_TO_OFF(page->pindex))); } =20 static inline unsigned long diff --git a/sys/ofed/include/linux/scatterlist.h b/sys/ofed/include/linux/= scatterlist.h index 611ad56..49dc31d 100644 --- a/sys/ofed/include/linux/scatterlist.h +++ b/sys/ofed/include/linux/scatterlist.h @@ -36,7 +36,7 @@ struct scatterlist { struct page *page; struct scatterlist *sg; } sl_un; - unsigned long address; + dma_addr_t address; unsigned long offset; uint32_t length; uint32_t flags; diff --git a/sys/ofed/include/rdma/ib_addr.h b/sys/ofed/include/rdma/ib_add= r.h index 61b0a7c..0783abe 100644 --- a/sys/ofed/include/rdma/ib_addr.h +++ b/sys/ofed/include/rdma/ib_addr.h @@ -247,6 +247,7 @@ static inline int iboe_get_rate(struct net_device *dev) #else static inline int iboe_get_rate(struct net_device *dev) { +#ifdef __amd64__ if (dev->if_baudrate >=3D IF_Gbps(40ULL)) return IB_RATE_40_GBPS; else if (dev->if_baudrate >=3D IF_Gbps(30ULL)) @@ -256,6 +257,7 @@ static inline int iboe_get_rate(struct net_device *dev) else if (dev->if_baudrate >=3D IF_Gbps(10ULL)) return IB_RATE_10_GBPS; else +#endif return IB_RATE_PORT_CURRENT; } #endif --u8GK5qt9ozrD+ZhJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2Hu2sACgkQC3+MBN1Mb4gUFQCdFqs4nDeGHKdLUOdLBmiSTmi0 u3gAnRqTmOZz9q3k0UbnwIGxZh8j471H =Yz6G -----END PGP SIGNATURE----- --u8GK5qt9ozrD+ZhJ-- From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 21:06:39 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8CD0106564A for ; Mon, 21 Mar 2011 21:06:39 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by mx1.freebsd.org (Postfix) with ESMTP id 2677E8FC14 for ; Mon, 21 Mar 2011 21:06:38 +0000 (UTC) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3857F1C08E1C; Mon, 21 Mar 2011 21:49:35 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id 2D4401C00120; Mon, 21 Mar 2011 21:49:35 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id GJ1HADC2JP4R; Mon, 21 Mar 2011 21:49:34 +0100 (CET) Received: from mail.reifenberger.com (ppp-93-104-103-45.dynamic.mnet-online.de [93.104.103.45]) by mail.mnet-online.de (Postfix) with ESMTP; Mon, 21 Mar 2011 21:49:34 +0100 (CET) Received: by mail.reifenberger.com (Postfix, from userid 1001) id E896B18DB9; Mon, 21 Mar 2011 21:49:33 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.reifenberger.com (Postfix) with ESMTP id E228D18DB8; Mon, 21 Mar 2011 21:49:33 +0100 (CET) Date: Mon, 21 Mar 2011 21:49:33 +0100 (CET) From: Michael Reifenberger To: Nathan Whitehorn In-Reply-To: <4D875C56.8030804@freebsd.org> Message-ID: References: <4D875C56.8030804@freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-current@freebsd.org Subject: Re: bsdinstall-amd64-20110313 remarks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 21:06:39 -0000 On Mon, 21 Mar 2011, Nathan Whitehorn wrote: ... >> - Does the usage of a "dangerously dedikated disklabel" give any advantage? > > Not that I can think of -- I'm not sure about maximum disk sizes for pure > BSD-label disks. It's a legitimate option, though, for people doing manual > configuration. > The question was only ment for the use of "dangerously dedikated disklabel" by the memstick itself. I have no opinion for use by the patitioner. >> - The usage of an UFS-Label for root mounting should be more flexible > > Yes. It is somewhat difficult however, to cross-correlate gpart labels for > GPT, APM, and PC98, with the labeled provider names (the label is not UFS > labels, but gpart ones). > ditto. >> - The first dialog step should set the keyboard layout > > That *is* the first step. > Inside the bsdinstaller, yes. The very first dialog step is the welcome page. Inside "Shell" or "Live CD" youl'll not get asked. >> - The /etc is not writable which would greatly reduce the usefulness for >> the ISO >> image (no modified resolv.conf, sshd_config, ...) > > This is only partly true. /etc/resolv.conf is a symlink into /tmp, which > allows DHCP and network configuration to work. > I still prefer a standard /etc with writable entries. Less special and more POLA. Thanks for your work on bsdinstaller anyhow! Bye/2 --- Michael Reifenberger Michael@Reifenberger.com http://www.Reifenberger.com From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 22:05:31 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6ECD0106566C; Mon, 21 Mar 2011 22:05:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 42C2B8FC0A; Mon, 21 Mar 2011 22:05:31 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LM5UtS074794; Mon, 21 Mar 2011 18:05:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LM5Ukp074721; Mon, 21 Mar 2011 22:05:30 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 22:05:30 GMT Message-Id: <201103212205.p2LM5Ukp074721@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 22:05:31 -0000 TB --- 2011-03-21 20:03:53 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 20:03:53 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-21 20:03:53 - cleaning the object tree TB --- 2011-03-21 20:04:02 - cvsupping the source tree TB --- 2011-03-21 20:04:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-21 20:04:15 - building world TB --- 2011-03-21 20:04:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 20:04:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 20:04:15 - TARGET=powerpc TB --- 2011-03-21 20:04:15 - TARGET_ARCH=powerpc TB --- 2011-03-21 20:04:15 - TZ=UTC TB --- 2011-03-21 20:04:15 - __MAKE_CONF=/dev/null TB --- 2011-03-21 20:04:15 - cd /src TB --- 2011-03-21 20:04:15 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 20:04:19 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 21:48:35 UTC 2011 TB --- 2011-03-21 21:48:35 - generating LINT kernel config TB --- 2011-03-21 21:48:35 - cd /src/sys/powerpc/conf TB --- 2011-03-21 21:48:35 - /usr/bin/make -B LINT TB --- 2011-03-21 21:48:35 - building LINT kernel TB --- 2011-03-21 21:48:35 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 21:48:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 21:48:35 - TARGET=powerpc TB --- 2011-03-21 21:48:35 - TARGET_ARCH=powerpc TB --- 2011-03-21 21:48:35 - TZ=UTC TB --- 2011-03-21 21:48:35 - __MAKE_CONF=/dev/null TB --- 2011-03-21 21:48:35 - cd /src TB --- 2011-03-21 21:48:35 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 21:48:36 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 22:05:29 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 22:05:29 - ERROR: failed to build lint kernel TB --- 2011-03-21 22:05:30 - 5899.70 user 969.41 system 7296.97 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 22:22:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63F83106564A; Mon, 21 Mar 2011 22:22:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 20C438FC1D; Mon, 21 Mar 2011 22:22:01 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LMM1XY067775; Mon, 21 Mar 2011 18:22:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LMM1fd067766; Mon, 21 Mar 2011 22:22:01 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 22:22:01 GMT Message-Id: <201103212222.p2LMM1fd067766@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 22:22:02 -0000 TB --- 2011-03-21 20:59:34 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 20:59:34 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-21 20:59:34 - cleaning the object tree TB --- 2011-03-21 20:59:43 - cvsupping the source tree TB --- 2011-03-21 20:59:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-21 21:00:14 - building world TB --- 2011-03-21 21:00:14 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 21:00:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 21:00:14 - TARGET=sparc64 TB --- 2011-03-21 21:00:14 - TARGET_ARCH=sparc64 TB --- 2011-03-21 21:00:14 - TZ=UTC TB --- 2011-03-21 21:00:14 - __MAKE_CONF=/dev/null TB --- 2011-03-21 21:00:14 - cd /src TB --- 2011-03-21 21:00:14 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 21:00:14 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 22:05:10 UTC 2011 TB --- 2011-03-21 22:05:10 - generating LINT kernel config TB --- 2011-03-21 22:05:10 - cd /src/sys/sparc64/conf TB --- 2011-03-21 22:05:10 - /usr/bin/make -B LINT TB --- 2011-03-21 22:05:10 - building LINT kernel TB --- 2011-03-21 22:05:10 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 22:05:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 22:05:10 - TARGET=sparc64 TB --- 2011-03-21 22:05:10 - TARGET_ARCH=sparc64 TB --- 2011-03-21 22:05:10 - TZ=UTC TB --- 2011-03-21 22:05:10 - __MAKE_CONF=/dev/null TB --- 2011-03-21 22:05:10 - cd /src TB --- 2011-03-21 22:05:10 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 22:05:10 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 22:22:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 22:22:00 - ERROR: failed to build lint kernel TB --- 2011-03-21 22:22:01 - 3846.27 user 755.52 system 4946.57 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 22:25:56 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81BD81065670; Mon, 21 Mar 2011 22:25:56 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 576668FC18; Mon, 21 Mar 2011 22:25:56 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LMPtfW076350; Mon, 21 Mar 2011 18:25:55 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LMPtVV076349; Mon, 21 Mar 2011 22:25:55 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 22:25:55 GMT Message-Id: <201103212225.p2LMPtVV076349@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 22:25:56 -0000 TB --- 2011-03-21 21:04:32 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 21:04:32 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-21 21:04:32 - cleaning the object tree TB --- 2011-03-21 21:04:42 - cvsupping the source tree TB --- 2011-03-21 21:04:42 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-21 21:04:54 - building world TB --- 2011-03-21 21:04:54 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 21:04:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 21:04:54 - TARGET=sun4v TB --- 2011-03-21 21:04:54 - TARGET_ARCH=sparc64 TB --- 2011-03-21 21:04:54 - TZ=UTC TB --- 2011-03-21 21:04:54 - __MAKE_CONF=/dev/null TB --- 2011-03-21 21:04:54 - cd /src TB --- 2011-03-21 21:04:54 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 21:04:54 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Mar 21 22:09:37 UTC 2011 TB --- 2011-03-21 22:09:37 - generating LINT kernel config TB --- 2011-03-21 22:09:37 - cd /src/sys/sun4v/conf TB --- 2011-03-21 22:09:37 - /usr/bin/make -B LINT TB --- 2011-03-21 22:09:37 - building LINT kernel TB --- 2011-03-21 22:09:37 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 22:09:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 22:09:37 - TARGET=sun4v TB --- 2011-03-21 22:09:37 - TARGET_ARCH=sparc64 TB --- 2011-03-21 22:09:37 - TZ=UTC TB --- 2011-03-21 22:09:37 - __MAKE_CONF=/dev/null TB --- 2011-03-21 22:09:37 - cd /src TB --- 2011-03-21 22:09:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 22:09:37 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 22:25:55 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 22:25:55 - ERROR: failed to build lint kernel TB --- 2011-03-21 22:25:55 - 3825.23 user 749.30 system 4883.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Mon Mar 21 22:30:10 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 706F0106566B; Mon, 21 Mar 2011 22:30:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 450FF8FC0C; Mon, 21 Mar 2011 22:30:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2LMU9tH081116; Mon, 21 Mar 2011 18:30:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2LMU9Q5081115; Mon, 21 Mar 2011 22:30:09 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 21 Mar 2011 22:30:09 GMT Message-Id: <201103212230.p2LMU9Q5081115@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2011 22:30:10 -0000 TB --- 2011-03-21 20:36:32 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 20:36:32 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-21 20:36:32 - cleaning the object tree TB --- 2011-03-21 20:36:45 - cvsupping the source tree TB --- 2011-03-21 20:36:45 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-21 20:37:02 - building world TB --- 2011-03-21 20:37:02 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 20:37:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 20:37:02 - TARGET=powerpc TB --- 2011-03-21 20:37:02 - TARGET_ARCH=powerpc64 TB --- 2011-03-21 20:37:02 - TZ=UTC TB --- 2011-03-21 20:37:02 - __MAKE_CONF=/dev/null TB --- 2011-03-21 20:37:02 - cd /src TB --- 2011-03-21 20:37:02 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 20:37:03 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Mon Mar 21 22:13:26 UTC 2011 TB --- 2011-03-21 22:13:27 - generating LINT kernel config TB --- 2011-03-21 22:13:27 - cd /src/sys/powerpc/conf TB --- 2011-03-21 22:13:27 - /usr/bin/make -B LINT TB --- 2011-03-21 22:13:27 - building LINT kernel TB --- 2011-03-21 22:13:27 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 22:13:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 22:13:27 - TARGET=powerpc TB --- 2011-03-21 22:13:27 - TARGET_ARCH=powerpc64 TB --- 2011-03-21 22:13:27 - TZ=UTC TB --- 2011-03-21 22:13:27 - __MAKE_CONF=/dev/null TB --- 2011-03-21 22:13:27 - cd /src TB --- 2011-03-21 22:13:27 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Mar 21 22:13:27 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-21 22:30:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-21 22:30:09 - ERROR: failed to build lint kernel TB --- 2011-03-21 22:30:09 - 5335.98 user 1064.62 system 6816.47 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 00:48:43 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F263106566C for ; Tue, 22 Mar 2011 00:48:43 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 50DEE8FC08 for ; Tue, 22 Mar 2011 00:48:43 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id B32865615B; Mon, 21 Mar 2011 19:30:29 -0500 (CDT) Date: Mon, 21 Mar 2011 19:30:29 -0500 From: Mark Linimon To: Etienne Robillard Message-ID: <20110322003029.GC12404@lonesome.com> References: <4D8741D3.2040305@gthcfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D8741D3.2040305@gthcfoundation.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: owner-freebsd-security@freebsd.org, freebsd-current@freebsd.org, postmaster@freebsd.org Subject: Re: Request to mailing list freebsd-security rejected X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 00:48:43 -0000 On Mon, Mar 21, 2011 at 08:17:23AM -0400, Etienne Robillard wrote: > Google "cognitive dissonance" for more info... Google "plonk" for more info. mcl From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 00:50:21 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18DCE1065670; Tue, 22 Mar 2011 00:50:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E317D8FC16; Tue, 22 Mar 2011 00:50:20 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M0oKGU041715; Mon, 21 Mar 2011 20:50:20 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M0oJgC041714; Tue, 22 Mar 2011 00:50:19 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 00:50:19 GMT Message-Id: <201103220050.p2M0oJgC041714@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 00:50:21 -0000 TB --- 2011-03-21 22:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 22:40:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-21 22:40:00 - cleaning the object tree TB --- 2011-03-21 22:40:16 - cvsupping the source tree TB --- 2011-03-21 22:40:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-21 22:40:34 - building world TB --- 2011-03-21 22:40:34 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 22:40:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 22:40:34 - TARGET=pc98 TB --- 2011-03-21 22:40:34 - TARGET_ARCH=i386 TB --- 2011-03-21 22:40:34 - TZ=UTC TB --- 2011-03-21 22:40:34 - __MAKE_CONF=/dev/null TB --- 2011-03-21 22:40:34 - cd /src TB --- 2011-03-21 22:40:34 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 22:40:35 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 00:31:38 UTC 2011 TB --- 2011-03-22 00:31:38 - generating LINT kernel config TB --- 2011-03-22 00:31:38 - cd /src/sys/pc98/conf TB --- 2011-03-22 00:31:38 - /usr/bin/make -B LINT TB --- 2011-03-22 00:31:38 - building LINT kernel TB --- 2011-03-22 00:31:38 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 00:31:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 00:31:38 - TARGET=pc98 TB --- 2011-03-22 00:31:38 - TARGET_ARCH=i386 TB --- 2011-03-22 00:31:38 - TZ=UTC TB --- 2011-03-22 00:31:38 - __MAKE_CONF=/dev/null TB --- 2011-03-22 00:31:38 - cd /src TB --- 2011-03-22 00:31:38 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 00:31:38 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -DPC98 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/pc98.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 00:50:19 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 00:50:19 - ERROR: failed to build lint kernel TB --- 2011-03-22 00:50:19 - 6289.78 user 1071.93 system 7818.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 00:53:42 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB46A1065676; Tue, 22 Mar 2011 00:53:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C19E68FC18; Tue, 22 Mar 2011 00:53:41 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M0rf7W053838; Mon, 21 Mar 2011 20:53:41 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M0rf3d053831; Tue, 22 Mar 2011 00:53:41 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 00:53:41 GMT Message-Id: <201103220053.p2M0rf3d053831@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 00:53:42 -0000 TB --- 2011-03-21 22:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 22:40:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-21 22:40:00 - cleaning the object tree TB --- 2011-03-21 22:40:15 - cvsupping the source tree TB --- 2011-03-21 22:40:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-21 22:40:34 - building world TB --- 2011-03-21 22:40:34 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 22:40:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 22:40:34 - TARGET=i386 TB --- 2011-03-21 22:40:34 - TARGET_ARCH=i386 TB --- 2011-03-21 22:40:34 - TZ=UTC TB --- 2011-03-21 22:40:34 - __MAKE_CONF=/dev/null TB --- 2011-03-21 22:40:34 - cd /src TB --- 2011-03-21 22:40:34 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 22:40:34 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 00:31:50 UTC 2011 TB --- 2011-03-22 00:31:50 - generating LINT kernel config TB --- 2011-03-22 00:31:50 - cd /src/sys/i386/conf TB --- 2011-03-22 00:31:50 - /usr/bin/make -B LINT TB --- 2011-03-22 00:31:50 - building LINT kernel TB --- 2011-03-22 00:31:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 00:31:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 00:31:50 - TARGET=i386 TB --- 2011-03-22 00:31:50 - TARGET_ARCH=i386 TB --- 2011-03-22 00:31:50 - TZ=UTC TB --- 2011-03-22 00:31:50 - __MAKE_CONF=/dev/null TB --- 2011-03-22 00:31:50 - cd /src TB --- 2011-03-22 00:31:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 00:31:50 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/i386.i386/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/i386.i386/src/sys/LINT -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:37, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h: In function 'page_address': /src/sys/modules/mlx4/../../ofed/include/linux/gfp.h:59: warning: cast to pointer from integer of different size *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 00:53:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 00:53:40 - ERROR: failed to build lint kernel TB --- 2011-03-22 00:53:40 - 6472.02 user 1070.20 system 8019.94 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 01:26:55 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 662FE106566B; Tue, 22 Mar 2011 01:26:55 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 233AA8FC0C; Tue, 22 Mar 2011 01:26:54 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M1QsHr028614; Mon, 21 Mar 2011 21:26:54 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M1Qsvg028597; Tue, 22 Mar 2011 01:26:54 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 01:26:54 GMT Message-Id: <201103220126.p2M1Qsvg028597@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 01:26:55 -0000 TB --- 2011-03-21 23:35:57 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-21 23:35:57 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-21 23:35:57 - cleaning the object tree TB --- 2011-03-21 23:36:04 - cvsupping the source tree TB --- 2011-03-21 23:36:04 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-21 23:36:47 - building world TB --- 2011-03-21 23:36:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-21 23:36:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-21 23:36:47 - TARGET=ia64 TB --- 2011-03-21 23:36:47 - TARGET_ARCH=ia64 TB --- 2011-03-21 23:36:47 - TZ=UTC TB --- 2011-03-21 23:36:47 - __MAKE_CONF=/dev/null TB --- 2011-03-21 23:36:47 - cd /src TB --- 2011-03-21 23:36:47 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 21 23:36:47 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 01:02:29 UTC 2011 TB --- 2011-03-22 01:02:29 - generating LINT kernel config TB --- 2011-03-22 01:02:30 - cd /src/sys/ia64/conf TB --- 2011-03-22 01:02:30 - /usr/bin/make -B LINT TB --- 2011-03-22 01:02:30 - building LINT kernel TB --- 2011-03-22 01:02:30 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 01:02:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 01:02:30 - TARGET=ia64 TB --- 2011-03-22 01:02:30 - TARGET_ARCH=ia64 TB --- 2011-03-22 01:02:30 - TZ=UTC TB --- 2011-03-22 01:02:30 - __MAKE_CONF=/dev/null TB --- 2011-03-22 01:02:30 - cd /src TB --- 2011-03-22 01:02:30 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 01:02:30 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 01:26:53 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 01:26:53 - ERROR: failed to build lint kernel TB --- 2011-03-22 01:26:54 - 5394.41 user 867.88 system 6656.90 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 02:55:48 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B03E106564A; Tue, 22 Mar 2011 02:55:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id CBCBC8FC1A; Tue, 22 Mar 2011 02:55:47 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M2tkQE018331; Mon, 21 Mar 2011 22:55:46 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M2tkKw018280; Tue, 22 Mar 2011 02:55:46 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 02:55:46 GMT Message-Id: <201103220255.p2M2tkKw018280@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 02:55:48 -0000 TB --- 2011-03-22 00:53:41 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 00:53:41 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 00:53:41 - cleaning the object tree TB --- 2011-03-22 00:53:50 - cvsupping the source tree TB --- 2011-03-22 00:53:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 00:54:04 - building world TB --- 2011-03-22 00:54:04 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 00:54:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 00:54:04 - TARGET=powerpc TB --- 2011-03-22 00:54:04 - TARGET_ARCH=powerpc TB --- 2011-03-22 00:54:04 - TZ=UTC TB --- 2011-03-22 00:54:04 - __MAKE_CONF=/dev/null TB --- 2011-03-22 00:54:04 - cd /src TB --- 2011-03-22 00:54:04 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 00:54:05 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 02:38:46 UTC 2011 TB --- 2011-03-22 02:38:46 - generating LINT kernel config TB --- 2011-03-22 02:38:46 - cd /src/sys/powerpc/conf TB --- 2011-03-22 02:38:46 - /usr/bin/make -B LINT TB --- 2011-03-22 02:38:46 - building LINT kernel TB --- 2011-03-22 02:38:46 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 02:38:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 02:38:46 - TARGET=powerpc TB --- 2011-03-22 02:38:46 - TARGET_ARCH=powerpc TB --- 2011-03-22 02:38:46 - TZ=UTC TB --- 2011-03-22 02:38:46 - __MAKE_CONF=/dev/null TB --- 2011-03-22 02:38:46 - cd /src TB --- 2011-03-22 02:38:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 02:38:46 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 02:55:46 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 02:55:46 - ERROR: failed to build lint kernel TB --- 2011-03-22 02:55:46 - 5904.31 user 967.98 system 7324.86 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 03:11:38 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D6901065670; Tue, 22 Mar 2011 03:11:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5F7ED8FC1F; Tue, 22 Mar 2011 03:11:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M3BbeN000909; Mon, 21 Mar 2011 23:11:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M3BbjM000896; Tue, 22 Mar 2011 03:11:37 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 03:11:37 GMT Message-Id: <201103220311.p2M3BbjM000896@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 03:11:38 -0000 TB --- 2011-03-22 01:49:28 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 01:49:28 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-22 01:49:28 - cleaning the object tree TB --- 2011-03-22 01:49:41 - cvsupping the source tree TB --- 2011-03-22 01:49:41 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-22 01:50:06 - building world TB --- 2011-03-22 01:50:06 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 01:50:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 01:50:06 - TARGET=sun4v TB --- 2011-03-22 01:50:06 - TARGET_ARCH=sparc64 TB --- 2011-03-22 01:50:06 - TZ=UTC TB --- 2011-03-22 01:50:06 - __MAKE_CONF=/dev/null TB --- 2011-03-22 01:50:06 - cd /src TB --- 2011-03-22 01:50:06 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 01:50:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 02:54:46 UTC 2011 TB --- 2011-03-22 02:54:46 - generating LINT kernel config TB --- 2011-03-22 02:54:46 - cd /src/sys/sun4v/conf TB --- 2011-03-22 02:54:46 - /usr/bin/make -B LINT TB --- 2011-03-22 02:54:46 - building LINT kernel TB --- 2011-03-22 02:54:46 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 02:54:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 02:54:46 - TARGET=sun4v TB --- 2011-03-22 02:54:46 - TARGET_ARCH=sparc64 TB --- 2011-03-22 02:54:46 - TZ=UTC TB --- 2011-03-22 02:54:46 - __MAKE_CONF=/dev/null TB --- 2011-03-22 02:54:46 - cd /src TB --- 2011-03-22 02:54:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 02:54:46 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 03:11:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 03:11:37 - ERROR: failed to build lint kernel TB --- 2011-03-22 03:11:37 - 3830.34 user 773.14 system 4928.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 03:11:58 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FBEB106566C; Tue, 22 Mar 2011 03:11:58 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 3313D8FC16; Tue, 22 Mar 2011 03:11:58 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M3BvRT001608; Mon, 21 Mar 2011 23:11:57 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M3BvKE001607; Tue, 22 Mar 2011 03:11:57 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 03:11:57 GMT Message-Id: <201103220311.p2M3BvKE001607@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 03:11:58 -0000 TB --- 2011-03-22 01:49:25 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 01:49:25 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-22 01:49:25 - cleaning the object tree TB --- 2011-03-22 01:49:38 - cvsupping the source tree TB --- 2011-03-22 01:49:38 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-22 01:50:06 - building world TB --- 2011-03-22 01:50:06 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 01:50:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 01:50:06 - TARGET=sparc64 TB --- 2011-03-22 01:50:06 - TARGET_ARCH=sparc64 TB --- 2011-03-22 01:50:06 - TZ=UTC TB --- 2011-03-22 01:50:06 - __MAKE_CONF=/dev/null TB --- 2011-03-22 01:50:06 - cd /src TB --- 2011-03-22 01:50:06 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 01:50:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 02:54:45 UTC 2011 TB --- 2011-03-22 02:54:45 - generating LINT kernel config TB --- 2011-03-22 02:54:45 - cd /src/sys/sparc64/conf TB --- 2011-03-22 02:54:45 - /usr/bin/make -B LINT TB --- 2011-03-22 02:54:45 - building LINT kernel TB --- 2011-03-22 02:54:45 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 02:54:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 02:54:45 - TARGET=sparc64 TB --- 2011-03-22 02:54:45 - TARGET_ARCH=sparc64 TB --- 2011-03-22 02:54:45 - TZ=UTC TB --- 2011-03-22 02:54:45 - __MAKE_CONF=/dev/null TB --- 2011-03-22 02:54:45 - cd /src TB --- 2011-03-22 02:54:45 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 02:54:45 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 03:11:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 03:11:57 - ERROR: failed to build lint kernel TB --- 2011-03-22 03:11:57 - 3850.73 user 769.16 system 4951.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 03:21:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90048106566C; Tue, 22 Mar 2011 03:21:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6248FC18; Tue, 22 Mar 2011 03:21:02 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M3L1pC010489; Mon, 21 Mar 2011 23:21:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M3L1L2010488; Tue, 22 Mar 2011 03:21:01 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 03:21:01 GMT Message-Id: <201103220321.p2M3L1L2010488@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 03:21:02 -0000 TB --- 2011-03-22 01:26:54 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 01:26:54 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 01:26:54 - cleaning the object tree TB --- 2011-03-22 01:27:07 - cvsupping the source tree TB --- 2011-03-22 01:27:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 01:27:20 - building world TB --- 2011-03-22 01:27:20 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 01:27:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 01:27:20 - TARGET=powerpc TB --- 2011-03-22 01:27:20 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 01:27:20 - TZ=UTC TB --- 2011-03-22 01:27:20 - __MAKE_CONF=/dev/null TB --- 2011-03-22 01:27:20 - cd /src TB --- 2011-03-22 01:27:20 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 01:27:21 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Mar 22 03:04:06 UTC 2011 TB --- 2011-03-22 03:04:06 - generating LINT kernel config TB --- 2011-03-22 03:04:06 - cd /src/sys/powerpc/conf TB --- 2011-03-22 03:04:06 - /usr/bin/make -B LINT TB --- 2011-03-22 03:04:06 - building LINT kernel TB --- 2011-03-22 03:04:06 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 03:04:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 03:04:06 - TARGET=powerpc TB --- 2011-03-22 03:04:06 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 03:04:06 - TZ=UTC TB --- 2011-03-22 03:04:06 - __MAKE_CONF=/dev/null TB --- 2011-03-22 03:04:06 - cd /src TB --- 2011-03-22 03:04:06 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 03:04:06 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 03:21:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 03:21:01 - ERROR: failed to build lint kernel TB --- 2011-03-22 03:21:01 - 5352.62 user 1060.72 system 6846.88 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 06:02:30 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1E4D1065675 for ; Tue, 22 Mar 2011 06:02:29 +0000 (UTC) (envelope-from moonlightakkiy@yahoo.ca) Received: from web39305.mail.mud.yahoo.com (web39305.mail.mud.yahoo.com [66.94.238.172]) by mx1.freebsd.org (Postfix) with SMTP id 90A3A8FC12 for ; Tue, 22 Mar 2011 06:02:29 +0000 (UTC) Received: (qmail 22884 invoked by uid 60001); 22 Mar 2011 05:35:49 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.ca; s=s1024; t=1300772149; bh=InWgYwVelpbRCnjfb0iOkFYO/vQ6emZyZ8609HFmDOA=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=YDYnj97UZPRyH6IpT+dqx7DRXGZSAccXgKDFug/X1a1XyBSKP/wMnVtc1kyPL2HfmhZ35lFhuRYXqhC0KDaaros50N2SA0F7VNh0cSSicFhzqD8YxPtGrljPbVDEGyWHW6Qf4H9D3SOOWWjgK1Snjl0t0CfRVQvNDONp53SoutE= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:X-YMail-OSG:Received:X-Mailer:References:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=vjZgW0hn/eTNKpBadq/jorVzh49LBGYa73EpXDWqboDLEOP9JyfCCRQ5Iy12rQUq1aGbLYvovLXr6+83AiAczbndVrwvnBMQzAC7KGRaWAGv9gRHis7B6vQUeEnAlrl372sg0zlUGIHFArI7Db2GGJa21ZavY2ZmHWojjpMrvoo=; Message-ID: <642459.13494.qm@web39305.mail.mud.yahoo.com> X-YMail-OSG: QDyMzgIVM1lqjF411n9qrSnviuatfASPRWRvTTqVEQF1Gsh hbm.sxbqDhKtMjEqglLqvynks5lCZnWZC.wF111zzC8o.opdSUdkm848RijU Pzdx1BfxUfAtP_U8vjGFNTbFGxrtolZMRgZAYpzGG.KDJDKAtY_GBgjA0BVw yjwvnuN0tJQlC0lxDsucPfKB_sEHdFSpd8ijgXL11BQKhttfjk1uudQKRQKN d7mU4q2u4CABcBhyEucQf8XJEwAeJM.nUwTW.Bi8mVdJCxFNuAJLUGAiff5l ZUNBGP2H3OKmmYH_cdLg2EWKZRz_kqmSiMk2dZFw_Sb1liyjESvpUFE8EKZJ 4CRcTgiVqcuCo9H_vvet6qhnX9HwZbKg.XgRtIwqSe4iBWOZhSHM0cgE9wjj 2_C0bEBGbK.xX2isjbA-- Received: from [199.126.192.176] by web39305.mail.mud.yahoo.com via HTTP; Mon, 21 Mar 2011 22:35:49 PDT X-Mailer: YahooMailRC/559 YahooMailWebService/0.8.109.295617 References: <20110321120024.943B31065686@hub.freebsd.org> Date: Mon, 21 Mar 2011 22:35:49 -0700 (PDT) From: PseudoCylon To: Aleksandr Rybalko In-Reply-To: <20110321120024.943B31065686@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-current@freebsd.org, Bernhard Schmidt Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 06:02:30 -0000 > >> > >> I urge you to have a closer look at ral(4) and it's way of handling > >> RT2500 and RT2600 specific differences. In it's simplest form you can > >> copy the OpenBSD code 1:1 without any functional changes, heck, it's > >> the source of this driver anyway. > >> > >> -- > >> Bernhard > > I've look on difference between RT2[56]00 and RT2860 some time ago, but done >it again, and found that we can only place > RT2860/RT3090 support under same name (ral), but hardware have too big >difference. And in case I do this patch for RT3052F SoC, > when I placing RT2860 into ral, i get completely different driver (because SoC >don't use PCI interface). > > > So can You (or someone else) hint me, how to done this? > > switch (what to do) { > case 'Remake run to support PCI and SoC interface': > Much work to make driver bus independent; > case 'Port OpenBSD one': > driver do not support SoC (SoC device don't have MCU); > break; > case 'Place my RT2860 under dev/ral': > different device in same driver; > break; > } > I'd say porting OpenBSD's is smarter move than remaking run(4). OpenBSD's ral(4) supports RT2800/RT3090, http://www.openbsd.org/cgi-bin/man.cgi?apropos=0&sektion=4&query=ral&manpath=OpenBSD+Current&arch=i386&format=html so ported code should nicely fit into FreeBSD's sys/dev/ral/ folder. It seems pci related code is separated, http://fxr.watson.org/fxr/source/dev/ral/ driver - pci code might nicely fit SoC code too. FreeBSD's if_runreg.h is the same as OpenBSD's if_rt2860reg.h. (Though, I have been ignoring syncing changes related to RT3090. run(4) doesn't supports it.) In fact, OpenBSD doesn't have if_runreg.h, instead they share if_rt2860reg.h. We can separate, but >90% of them would be identical. I don't have h/w but I might be able help you out non-SoC portion of code. AK From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 06:17:19 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AE001065677; Tue, 22 Mar 2011 06:17:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B97548FC08; Tue, 22 Mar 2011 06:17:18 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M6HHdV012543; Tue, 22 Mar 2011 02:17:17 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M6HHM0012465; Tue, 22 Mar 2011 06:17:17 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 06:17:17 GMT Message-Id: <201103220617.p2M6HHM0012465@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 06:17:19 -0000 TB --- 2011-03-22 04:26:08 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 04:26:08 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-22 04:26:08 - cleaning the object tree TB --- 2011-03-22 04:26:17 - cvsupping the source tree TB --- 2011-03-22 04:26:17 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-22 04:26:53 - building world TB --- 2011-03-22 04:26:53 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 04:26:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 04:26:53 - TARGET=ia64 TB --- 2011-03-22 04:26:53 - TARGET_ARCH=ia64 TB --- 2011-03-22 04:26:53 - TZ=UTC TB --- 2011-03-22 04:26:53 - __MAKE_CONF=/dev/null TB --- 2011-03-22 04:26:53 - cd /src TB --- 2011-03-22 04:26:53 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 04:26:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 05:52:42 UTC 2011 TB --- 2011-03-22 05:52:43 - generating LINT kernel config TB --- 2011-03-22 05:52:43 - cd /src/sys/ia64/conf TB --- 2011-03-22 05:52:43 - /usr/bin/make -B LINT TB --- 2011-03-22 05:52:43 - building LINT kernel TB --- 2011-03-22 05:52:43 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 05:52:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 05:52:43 - TARGET=ia64 TB --- 2011-03-22 05:52:43 - TARGET_ARCH=ia64 TB --- 2011-03-22 05:52:43 - TZ=UTC TB --- 2011-03-22 05:52:43 - __MAKE_CONF=/dev/null TB --- 2011-03-22 05:52:43 - cd /src TB --- 2011-03-22 05:52:43 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 05:52:43 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 06:17:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 06:17:17 - ERROR: failed to build lint kernel TB --- 2011-03-22 06:17:17 - 5397.46 user 859.12 system 6668.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 08:08:40 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A04CA1065670; Tue, 22 Mar 2011 08:08:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 77B508FC17; Tue, 22 Mar 2011 08:08:40 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M88ddR001338; Tue, 22 Mar 2011 04:08:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M88dGl001333; Tue, 22 Mar 2011 08:08:39 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 08:08:39 GMT Message-Id: <201103220808.p2M88dGl001333@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 08:08:40 -0000 TB --- 2011-03-22 06:44:21 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 06:44:21 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-22 06:44:21 - cleaning the object tree TB --- 2011-03-22 06:44:29 - cvsupping the source tree TB --- 2011-03-22 06:44:29 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-22 06:45:04 - building world TB --- 2011-03-22 06:45:04 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 06:45:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 06:45:04 - TARGET=sparc64 TB --- 2011-03-22 06:45:04 - TARGET_ARCH=sparc64 TB --- 2011-03-22 06:45:04 - TZ=UTC TB --- 2011-03-22 06:45:04 - __MAKE_CONF=/dev/null TB --- 2011-03-22 06:45:04 - cd /src TB --- 2011-03-22 06:45:04 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 06:45:05 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 07:50:15 UTC 2011 TB --- 2011-03-22 07:50:15 - generating LINT kernel config TB --- 2011-03-22 07:50:15 - cd /src/sys/sparc64/conf TB --- 2011-03-22 07:50:15 - /usr/bin/make -B LINT TB --- 2011-03-22 07:50:15 - building LINT kernel TB --- 2011-03-22 07:50:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 07:50:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 07:50:15 - TARGET=sparc64 TB --- 2011-03-22 07:50:15 - TARGET_ARCH=sparc64 TB --- 2011-03-22 07:50:15 - TZ=UTC TB --- 2011-03-22 07:50:15 - __MAKE_CONF=/dev/null TB --- 2011-03-22 07:50:15 - cd /src TB --- 2011-03-22 07:50:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 07:50:15 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 08:08:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 08:08:39 - ERROR: failed to build lint kernel TB --- 2011-03-22 08:08:39 - 3865.54 user 761.08 system 5058.07 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 08:18:56 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDD63106566B; Tue, 22 Mar 2011 08:18:55 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B60EB8FC18; Tue, 22 Mar 2011 08:18:55 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M8IsMd058132; Tue, 22 Mar 2011 04:18:54 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M8Islx058131; Tue, 22 Mar 2011 08:18:54 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 08:18:54 GMT Message-Id: <201103220818.p2M8Islx058131@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 08:18:56 -0000 TB --- 2011-03-22 06:17:18 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 06:17:18 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 06:17:18 - cleaning the object tree TB --- 2011-03-22 06:17:27 - cvsupping the source tree TB --- 2011-03-22 06:17:27 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 06:17:41 - building world TB --- 2011-03-22 06:17:41 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 06:17:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 06:17:41 - TARGET=powerpc TB --- 2011-03-22 06:17:41 - TARGET_ARCH=powerpc TB --- 2011-03-22 06:17:41 - TZ=UTC TB --- 2011-03-22 06:17:41 - __MAKE_CONF=/dev/null TB --- 2011-03-22 06:17:41 - cd /src TB --- 2011-03-22 06:17:41 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 06:17:41 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 08:02:36 UTC 2011 TB --- 2011-03-22 08:02:37 - generating LINT kernel config TB --- 2011-03-22 08:02:37 - cd /src/sys/powerpc/conf TB --- 2011-03-22 08:02:37 - /usr/bin/make -B LINT TB --- 2011-03-22 08:02:37 - building LINT kernel TB --- 2011-03-22 08:02:37 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 08:02:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 08:02:37 - TARGET=powerpc TB --- 2011-03-22 08:02:37 - TARGET_ARCH=powerpc TB --- 2011-03-22 08:02:37 - TZ=UTC TB --- 2011-03-22 08:02:37 - __MAKE_CONF=/dev/null TB --- 2011-03-22 08:02:37 - cd /src TB --- 2011-03-22 08:02:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 08:02:37 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 08:18:54 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 08:18:54 - ERROR: failed to build lint kernel TB --- 2011-03-22 08:18:54 - 5897.72 user 964.29 system 7296.63 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 08:25:12 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8FDB1065678; Tue, 22 Mar 2011 08:25:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 722528FC17; Tue, 22 Mar 2011 08:25:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M8PBLN071077; Tue, 22 Mar 2011 04:25:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M8PBeh071076; Tue, 22 Mar 2011 08:25:11 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 08:25:11 GMT Message-Id: <201103220825.p2M8PBeh071076@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 08:25:13 -0000 TB --- 2011-03-22 07:02:12 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 07:02:12 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-22 07:02:12 - cleaning the object tree TB --- 2011-03-22 07:02:24 - cvsupping the source tree TB --- 2011-03-22 07:02:24 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-22 07:03:50 - building world TB --- 2011-03-22 07:03:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 07:03:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 07:03:50 - TARGET=sun4v TB --- 2011-03-22 07:03:50 - TARGET_ARCH=sparc64 TB --- 2011-03-22 07:03:50 - TZ=UTC TB --- 2011-03-22 07:03:50 - __MAKE_CONF=/dev/null TB --- 2011-03-22 07:03:50 - cd /src TB --- 2011-03-22 07:03:50 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 07:03:50 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 08:09:00 UTC 2011 TB --- 2011-03-22 08:09:00 - generating LINT kernel config TB --- 2011-03-22 08:09:00 - cd /src/sys/sun4v/conf TB --- 2011-03-22 08:09:00 - /usr/bin/make -B LINT TB --- 2011-03-22 08:09:00 - building LINT kernel TB --- 2011-03-22 08:09:00 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 08:09:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 08:09:00 - TARGET=sun4v TB --- 2011-03-22 08:09:00 - TARGET_ARCH=sparc64 TB --- 2011-03-22 08:09:00 - TZ=UTC TB --- 2011-03-22 08:09:00 - __MAKE_CONF=/dev/null TB --- 2011-03-22 08:09:00 - cd /src TB --- 2011-03-22 08:09:00 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 08:09:00 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 08:25:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 08:25:11 - ERROR: failed to build lint kernel TB --- 2011-03-22 08:25:11 - 3829.87 user 746.40 system 4979.09 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 08:26:31 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A329106567A; Tue, 22 Mar 2011 08:26:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 21DAA8FC14; Tue, 22 Mar 2011 08:26:30 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2M8QU0T072769; Tue, 22 Mar 2011 04:26:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2M8QUwu072768; Tue, 22 Mar 2011 08:26:30 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 08:26:30 GMT Message-Id: <201103220826.p2M8QUwu072768@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 08:26:31 -0000 TB --- 2011-03-22 06:31:55 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 06:31:55 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 06:31:55 - cleaning the object tree TB --- 2011-03-22 06:32:08 - cvsupping the source tree TB --- 2011-03-22 06:32:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 06:32:24 - building world TB --- 2011-03-22 06:32:24 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 06:32:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 06:32:24 - TARGET=powerpc TB --- 2011-03-22 06:32:24 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 06:32:24 - TZ=UTC TB --- 2011-03-22 06:32:24 - __MAKE_CONF=/dev/null TB --- 2011-03-22 06:32:24 - cd /src TB --- 2011-03-22 06:32:24 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 06:32:25 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Mar 22 08:09:51 UTC 2011 TB --- 2011-03-22 08:09:51 - generating LINT kernel config TB --- 2011-03-22 08:09:52 - cd /src/sys/powerpc/conf TB --- 2011-03-22 08:09:52 - /usr/bin/make -B LINT TB --- 2011-03-22 08:09:52 - building LINT kernel TB --- 2011-03-22 08:09:52 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 08:09:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 08:09:52 - TARGET=powerpc TB --- 2011-03-22 08:09:52 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 08:09:52 - TZ=UTC TB --- 2011-03-22 08:09:52 - __MAKE_CONF=/dev/null TB --- 2011-03-22 08:09:52 - cd /src TB --- 2011-03-22 08:09:52 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 08:09:52 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 08:26:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 08:26:30 - ERROR: failed to build lint kernel TB --- 2011-03-22 08:26:30 - 5338.42 user 1069.98 system 6874.86 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 10:23:22 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B013E106566C for ; Tue, 22 Mar 2011 10:23:22 +0000 (UTC) (envelope-from erob@gthcfoundation.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 8AB688FC1A for ; Tue, 22 Mar 2011 10:23:22 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1 Received: from [192.168.0.100] ([184.162.50.38]) by vl-mo-mrz24.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0LIG007BEFHZDLB0@vl-mo-mrz24.ip.videotron.ca> for freebsd-current@freebsd.org; Tue, 22 Mar 2011 06:22:47 -0400 (EDT) Message-id: <4D887899.20803@gthcfoundation.org> Date: Tue, 22 Mar 2011 06:23:21 -0400 From: Etienne Robillard Organization: Green Tea Hackers Club User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 To: PseudoCylon References: <20110321120024.943B31065686@hub.freebsd.org> <642459.13494.qm@web39305.mail.mud.yahoo.com> In-reply-to: <642459.13494.qm@web39305.mail.mud.yahoo.com> X-Enigmail-Version: 1.0.1 Cc: freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erob@gthcfoundation.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 10:23:22 -0000 On 22/03/11 01:35 AM, PseudoCylon wrote: > > FreeBSD's if_runreg.h is the same as OpenBSD's if_rt2860reg.h. (Though, I have > been ignoring syncing changes related to RT3090. run(4) doesn't supports it.) In > fact, OpenBSD doesn't have if_runreg.h, instead they share if_rt2860reg.h. We > can separate, but >90% of them would be identical. > > I don't have h/w but I might be able help you out non-SoC portion of code. > > > AK > > I have no objections in Aleksandr's work to port ral(4) from OpenBSD to FreeBSD unless it requires a hardware firmware module as in run(4), and unless there's a way to skip compiling hardware-assisted modules in FreeBSD using the WITHOUT_FIRMWARE option. Likewise, a WITHOUT_OFDM patch for FreeBSD could be ported nicely to OpenBSD... :) Etienne -- Etienne Robillard Company: Green Tea Hackers Club Occupation: Software Developer (and CEO) E-mail: erob@gthcfoundation.org Work phone: 450-936-2123 Website (Company): https://gthc.org/ Website (Blog): https://gthc.org/blog/ PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C 7F17 A086 DDEC During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell If a free society cannot help the many who are poor, it cannot save the few who are rich. -- John F. Kennedy From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 10:46:13 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FF2A106566B; Tue, 22 Mar 2011 10:46:13 +0000 (UTC) (envelope-from erob@gthcfoundation.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.freebsd.org (Postfix) with ESMTP id 749F08FC1A; Tue, 22 Mar 2011 10:46:13 +0000 (UTC) MIME-version: 1.0 Received: from [192.168.0.100] ([184.162.50.38]) by VL-MR-MRZ20.ip.videotron.ca (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0LIG008ZMGKIF000@VL-MR-MRZ20.ip.videotron.ca>; Tue, 22 Mar 2011 06:45:55 -0400 (EDT) Message-id: <4D887DF4.6060602@gthcfoundation.org> Date: Tue, 22 Mar 2011 06:46:12 -0400 From: Etienne Robillard Organization: Green Tea Hackers Club User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20110303 Icedove/3.0.11 To: Adrian Chadd References: <20110321120024.943B31065686@hub.freebsd.org> <642459.13494.qm@web39305.mail.mud.yahoo.com> <4D887899.20803@gthcfoundation.org> In-reply-to: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7BIT X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erob@gthcfoundation.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 10:46:13 -0000 as far my knowledge goes, radiation from multi-frequency subcarriers in a multi-path system such as a wireless network (802.11 a/g/n) or a "microwave oven" is something you definitely want to avoid sitting in while hacking FreeBSD... https://gthc.org/wiki/Advisories/OFDM_20110315 I may have done technical errors but i do not drink in the morning!! :) On 22/03/11 06:30 AM, Adrian Chadd wrote: > So I'm curious - what exactly about OFDM do you have a problem with? > > > > > Adrian > > On 22 March 2011 18:23, Etienne Robillard > wrote: > > On 22/03/11 01:35 AM, PseudoCylon wrote: > > > > FreeBSD's if_runreg.h is the same as OpenBSD's if_rt2860reg.h. > (Though, I have > > been ignoring syncing changes related to RT3090. run(4) doesn't > supports it.) In > > fact, OpenBSD doesn't have if_runreg.h, instead they share > if_rt2860reg.h. We > > can separate, but >90% of them would be identical. > > > > I don't have h/w but I might be able help you out non-SoC > portion of code. > > > > > > AK > > > > > > I have no objections in Aleksandr's work to port ral(4) from > OpenBSD to > FreeBSD unless > it requires a hardware firmware module as in run(4), and unless > there's > a way to skip > compiling hardware-assisted modules in FreeBSD using the > WITHOUT_FIRMWARE option. > > Likewise, a WITHOUT_OFDM patch for FreeBSD could be ported nicely to > OpenBSD... :) > > Etienne > > > -- > Etienne Robillard > > Company: Green Tea Hackers Club > Occupation: Software Developer (and CEO) > E-mail: erob@gthcfoundation.org > Work phone: 450-936-2123 > Website (Company): https://gthc.org/ > Website (Blog): https://gthc.org/blog/ > PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C > 7F17 A086 DDEC > > During times of universal deceit, telling the truth becomes a > revolutionary act. -- George Orwell > > If a free society cannot help the many who are poor, it cannot > save the few who are rich. -- John F. Kennedy > > _______________________________________________ > freebsd-current@freebsd.org > mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org > " > > -- Etienne Robillard Company: Green Tea Hackers Club Occupation: Software Developer (and CEO) E-mail: erob@gthcfoundation.org Work phone: 450-936-2123 Website (Company): https://gthc.org/ Website (Blog): https://gthc.org/blog/ PGP public key fingerprint: F2A9 32EA 8E7C 460F 1728 A1A7 649C 7F17 A086 DDEC During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell If a free society cannot help the many who are poor, it cannot save the few who are rich. -- John F. Kennedy From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 11:17:04 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24B911065670; Tue, 22 Mar 2011 11:17:04 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D485E8FC19; Tue, 22 Mar 2011 11:17:03 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MBH3mC069296; Tue, 22 Mar 2011 07:17:03 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MBH2gZ069252; Tue, 22 Mar 2011 11:17:02 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 11:17:02 GMT Message-Id: <201103221117.p2MBH2gZ069252@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 11:17:04 -0000 TB --- 2011-03-22 09:26:18 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 09:26:18 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-22 09:26:18 - cleaning the object tree TB --- 2011-03-22 09:26:28 - cvsupping the source tree TB --- 2011-03-22 09:26:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-22 09:26:47 - building world TB --- 2011-03-22 09:26:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 09:26:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 09:26:47 - TARGET=ia64 TB --- 2011-03-22 09:26:47 - TARGET_ARCH=ia64 TB --- 2011-03-22 09:26:47 - TZ=UTC TB --- 2011-03-22 09:26:47 - __MAKE_CONF=/dev/null TB --- 2011-03-22 09:26:47 - cd /src TB --- 2011-03-22 09:26:47 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 09:26:48 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 10:52:17 UTC 2011 TB --- 2011-03-22 10:52:17 - generating LINT kernel config TB --- 2011-03-22 10:52:17 - cd /src/sys/ia64/conf TB --- 2011-03-22 10:52:17 - /usr/bin/make -B LINT TB --- 2011-03-22 10:52:17 - building LINT kernel TB --- 2011-03-22 10:52:17 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 10:52:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 10:52:17 - TARGET=ia64 TB --- 2011-03-22 10:52:17 - TARGET_ARCH=ia64 TB --- 2011-03-22 10:52:17 - TZ=UTC TB --- 2011-03-22 10:52:17 - __MAKE_CONF=/dev/null TB --- 2011-03-22 10:52:17 - cd /src TB --- 2011-03-22 10:52:17 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 10:52:17 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 11:17:02 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 11:17:02 - ERROR: failed to build lint kernel TB --- 2011-03-22 11:17:02 - 5398.02 user 857.68 system 6643.93 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 11:42:16 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49C371065688 for ; Tue, 22 Mar 2011 11:42:16 +0000 (UTC) (envelope-from sthaug@nethelp.no) Received: from bizet.nethelp.no (bizet.nethelp.no [195.1.209.33]) by mx1.freebsd.org (Postfix) with SMTP id 81F588FC1B for ; Tue, 22 Mar 2011 11:42:14 +0000 (UTC) Received: (qmail 33921 invoked from network); 22 Mar 2011 11:15:32 -0000 Received: from bizet.nethelp.no (HELO localhost) (195.1.209.33) by bizet.nethelp.no with SMTP; 22 Mar 2011 11:15:32 -0000 Date: Tue, 22 Mar 2011 12:15:32 +0100 (CET) Message-Id: <20110322.121532.74727064.sthaug@nethelp.no> To: erob@gthcfoundation.org From: sthaug@nethelp.no In-Reply-To: <4D887DF4.6060602@gthcfoundation.org> References: <4D887899.20803@gthcfoundation.org> <4D887DF4.6060602@gthcfoundation.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: adrian@freebsd.org, freebsd-current@freebsd.org Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 11:42:16 -0000 > as far my knowledge goes, radiation from multi-frequency subcarriers in > a multi-path > system such as a wireless network (802.11 a/g/n) or a "microwave oven" > is something > you definitely want to avoid sitting in while hacking FreeBSD... > > https://gthc.org/wiki/Advisories/OFDM_20110315 > > I may have done technical errors but i do not drink in the morning!! :) FreeBSD doesn't define the wireless standards - other authorities (e.g. IEEE) do. Any standards involving RF radiation is tightly regulated in most countries, and the health authorities are aware of risks associated with large amounts of RF radiation. Since 802.11 a/g/n is internationally standardized (and permitted by the health authorities), we have to assume that the relevant standards are safe. I see no reason whatsoever why we should do anything special in FreeBSD here. Time for you to stop your anti-OFDM crusade and let FreeBSD developers work in peace. Steinar Haug, Nethelp consulting, sthaug@nethelp.no From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 13:02:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A751F1065670; Tue, 22 Mar 2011 13:02:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB5C8FC08; Tue, 22 Mar 2011 13:02:02 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MD21v5015899; Tue, 22 Mar 2011 09:02:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MD21xu015739; Tue, 22 Mar 2011 13:02:01 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 13:02:01 GMT Message-Id: <201103221302.p2MD21xu015739@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 13:02:02 -0000 TB --- 2011-03-22 11:38:34 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 11:38:34 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-22 11:38:34 - cleaning the object tree TB --- 2011-03-22 11:38:44 - cvsupping the source tree TB --- 2011-03-22 11:38:44 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-22 11:38:57 - building world TB --- 2011-03-22 11:38:57 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 11:38:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 11:38:57 - TARGET=sparc64 TB --- 2011-03-22 11:38:57 - TARGET_ARCH=sparc64 TB --- 2011-03-22 11:38:57 - TZ=UTC TB --- 2011-03-22 11:38:57 - __MAKE_CONF=/dev/null TB --- 2011-03-22 11:38:57 - cd /src TB --- 2011-03-22 11:38:57 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 11:38:58 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 12:43:45 UTC 2011 TB --- 2011-03-22 12:43:45 - generating LINT kernel config TB --- 2011-03-22 12:43:45 - cd /src/sys/sparc64/conf TB --- 2011-03-22 12:43:45 - /usr/bin/make -B LINT TB --- 2011-03-22 12:43:45 - building LINT kernel TB --- 2011-03-22 12:43:45 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 12:43:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 12:43:45 - TARGET=sparc64 TB --- 2011-03-22 12:43:45 - TARGET_ARCH=sparc64 TB --- 2011-03-22 12:43:45 - TZ=UTC TB --- 2011-03-22 12:43:45 - __MAKE_CONF=/dev/null TB --- 2011-03-22 12:43:45 - cd /src TB --- 2011-03-22 12:43:45 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 12:43:45 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 13:02:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 13:02:00 - ERROR: failed to build lint kernel TB --- 2011-03-22 13:02:00 - 3868.91 user 759.78 system 5006.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 13:17:46 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39BD2106566C; Tue, 22 Mar 2011 13:17:46 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0EA968FC14; Tue, 22 Mar 2011 13:17:45 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MDHjvB017115; Tue, 22 Mar 2011 09:17:45 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MDHjS0017114; Tue, 22 Mar 2011 13:17:45 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 13:17:45 GMT Message-Id: <201103221317.p2MDHjS0017114@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 13:17:46 -0000 TB --- 2011-03-22 11:17:03 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 11:17:03 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 11:17:03 - cleaning the object tree TB --- 2011-03-22 11:17:13 - cvsupping the source tree TB --- 2011-03-22 11:17:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 11:17:26 - building world TB --- 2011-03-22 11:17:26 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 11:17:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 11:17:26 - TARGET=powerpc TB --- 2011-03-22 11:17:26 - TARGET_ARCH=powerpc TB --- 2011-03-22 11:17:26 - TZ=UTC TB --- 2011-03-22 11:17:26 - __MAKE_CONF=/dev/null TB --- 2011-03-22 11:17:26 - cd /src TB --- 2011-03-22 11:17:26 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 11:17:27 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 13:01:50 UTC 2011 TB --- 2011-03-22 13:01:50 - generating LINT kernel config TB --- 2011-03-22 13:01:50 - cd /src/sys/powerpc/conf TB --- 2011-03-22 13:01:50 - /usr/bin/make -B LINT TB --- 2011-03-22 13:01:50 - building LINT kernel TB --- 2011-03-22 13:01:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 13:01:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 13:01:50 - TARGET=powerpc TB --- 2011-03-22 13:01:50 - TARGET_ARCH=powerpc TB --- 2011-03-22 13:01:50 - TZ=UTC TB --- 2011-03-22 13:01:50 - __MAKE_CONF=/dev/null TB --- 2011-03-22 13:01:50 - cd /src TB --- 2011-03-22 13:01:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 13:01:51 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 13:17:44 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 13:17:44 - ERROR: failed to build lint kernel TB --- 2011-03-22 13:17:45 - 5888.30 user 969.50 system 7241.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 13:23:45 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C3E6106564A; Tue, 22 Mar 2011 13:23:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0FD538FC0A; Tue, 22 Mar 2011 13:23:44 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MDNiGU028043; Tue, 22 Mar 2011 09:23:44 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MDNiAg028042; Tue, 22 Mar 2011 13:23:44 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 13:23:44 GMT Message-Id: <201103221323.p2MDNiAg028042@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 13:23:45 -0000 TB --- 2011-03-22 12:02:27 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 12:02:27 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-22 12:02:27 - cleaning the object tree TB --- 2011-03-22 12:02:37 - cvsupping the source tree TB --- 2011-03-22 12:02:37 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-22 12:02:50 - building world TB --- 2011-03-22 12:02:50 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 12:02:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 12:02:50 - TARGET=sun4v TB --- 2011-03-22 12:02:50 - TARGET_ARCH=sparc64 TB --- 2011-03-22 12:02:50 - TZ=UTC TB --- 2011-03-22 12:02:50 - __MAKE_CONF=/dev/null TB --- 2011-03-22 12:02:50 - cd /src TB --- 2011-03-22 12:02:50 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 12:02:51 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 13:07:25 UTC 2011 TB --- 2011-03-22 13:07:25 - generating LINT kernel config TB --- 2011-03-22 13:07:25 - cd /src/sys/sun4v/conf TB --- 2011-03-22 13:07:25 - /usr/bin/make -B LINT TB --- 2011-03-22 13:07:25 - building LINT kernel TB --- 2011-03-22 13:07:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 13:07:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 13:07:25 - TARGET=sun4v TB --- 2011-03-22 13:07:25 - TARGET_ARCH=sparc64 TB --- 2011-03-22 13:07:25 - TZ=UTC TB --- 2011-03-22 13:07:25 - __MAKE_CONF=/dev/null TB --- 2011-03-22 13:07:25 - cd /src TB --- 2011-03-22 13:07:25 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 13:07:25 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 13:23:44 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 13:23:44 - ERROR: failed to build lint kernel TB --- 2011-03-22 13:23:44 - 3823.95 user 749.45 system 4876.56 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 13:30:40 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 923671065676; Tue, 22 Mar 2011 13:30:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 6662E8FC1A; Tue, 22 Mar 2011 13:30:40 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MDUdBH034879; Tue, 22 Mar 2011 09:30:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MDUd5K034878; Tue, 22 Mar 2011 13:30:39 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 13:30:39 GMT Message-Id: <201103221330.p2MDUd5K034878@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 13:30:40 -0000 TB --- 2011-03-22 11:37:20 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 11:37:20 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 11:37:20 - cleaning the object tree TB --- 2011-03-22 11:37:36 - cvsupping the source tree TB --- 2011-03-22 11:37:36 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 11:37:48 - building world TB --- 2011-03-22 11:37:48 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 11:37:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 11:37:48 - TARGET=powerpc TB --- 2011-03-22 11:37:48 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 11:37:48 - TZ=UTC TB --- 2011-03-22 11:37:48 - __MAKE_CONF=/dev/null TB --- 2011-03-22 11:37:48 - cd /src TB --- 2011-03-22 11:37:48 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 11:37:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Mar 22 13:13:49 UTC 2011 TB --- 2011-03-22 13:13:49 - generating LINT kernel config TB --- 2011-03-22 13:13:49 - cd /src/sys/powerpc/conf TB --- 2011-03-22 13:13:49 - /usr/bin/make -B LINT TB --- 2011-03-22 13:13:49 - building LINT kernel TB --- 2011-03-22 13:13:49 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 13:13:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 13:13:49 - TARGET=powerpc TB --- 2011-03-22 13:13:49 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 13:13:49 - TZ=UTC TB --- 2011-03-22 13:13:49 - __MAKE_CONF=/dev/null TB --- 2011-03-22 13:13:49 - cd /src TB --- 2011-03-22 13:13:49 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 13:13:50 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 13:30:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 13:30:39 - ERROR: failed to build lint kernel TB --- 2011-03-22 13:30:39 - 5338.66 user 1067.52 system 6799.09 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 15:42:03 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DC9D106566C for ; Tue, 22 Mar 2011 15:42:03 +0000 (UTC) (envelope-from lists@loveturtle.net) Received: from loveturtle.net (unknown [IPv6:2605:5a00:0:666::1]) by mx1.freebsd.org (Postfix) with ESMTP id 692BD8FC12 for ; Tue, 22 Mar 2011 15:42:03 +0000 (UTC) Received: from loveturtle.net (localhost [127.0.0.1]) by loveturtle.net (Postfix) with ESMTP id 771712309 for ; Tue, 22 Mar 2011 10:42:01 -0500 (EST) X-Virus-Scanned: amavisd-new at loveturtle.net Received: from loveturtle.net ([127.0.0.1]) by loveturtle.net (loveturtle.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YuFoSi1-jtp1 for ; Tue, 22 Mar 2011 10:41:59 -0500 (EST) Received: from [IPv6:2605:5a00:0:666::4] (unknown [IPv6:2605:5a00:0:666::4]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by loveturtle.net (Postfix) with ESMTPS id E1D4C22FF for ; Tue, 22 Mar 2011 10:41:59 -0500 (EST) From: Dillon Kass Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Tue, 22 Mar 2011 11:41:58 -0400 Message-Id: <813ECD73-4FAA-4FA4-BAE7-016ACCBA5626@loveturtle.net> To: current@freebsd.org Mime-Version: 1.0 (Apple Message framework v1084) X-Mailer: Apple Mail (2.1084) Cc: Subject: ZFSv28 zfs destroy -r bug. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 15:42:03 -0000 Hello. I posted this to freebsd-fs yesterday regarding 8.2-R & ZFSv28 = patches, this morning I confirmed the same behavior on HEAD so I figured = I'd also post it here (and there's higher volume :-) I also tested this on Solaris 11 express to make sure it's specific to = FreeBSD and not some kind of "feature" in newer ZFS versions.. It used to be the case that if you zfs destroy -r pool@snapshot as long = as any child dataset had @snapshot the command would destroy it. In = other words, pool@snapshot didn't need to exist as long as = pool/dataset1@snapshot existed.=20 Here's how it should work (Solaris 11) turtle@solaris11vm:~# zfs list -t all -r rpool1/test NAME USED AVAIL REFER MOUNTPOINT rpool1/test 127K 6.34G 34K /rpool1/test rpool1/test/test2 31K 6.34G 31K /rpool1/test/test2 rpool1/test/test2@testsnap 0 - 31K - rpool1/test/test3 31K 6.34G 31K /rpool1/test/test3 rpool1/test/test3@testsnap 0 - 31K - rpool1/test/test4 31K 6.34G 31K /rpool1/test/test4 rpool1/test/test4@testsnap 0 - 31K - turtle@solaris11vm:~# zfs destroy -r rpool1@testsnap turtle@solaris11vm:~# zfs list -t all -r rpool1/test NAME USED AVAIL REFER MOUNTPOINT rpool1/test 127K 6.34G 34K /rpool1/test rpool1/test/test2 31K 6.34G 31K /rpool1/test/test2 rpool1/test/test3 31K 6.34G 31K /rpool1/test/test3 rpool1/test/test4 31K 6.34G 31K /rpool1/test/test4 turtle@solaris11vm:~#=20 All snapshots named @testsnap are deleted even though rpool1@testsnap = doesn't exist. This is normal behavior. Here's FreeBSD-CURRENT with v28 fbsd9vm# zfs list -t all -r NAME USED AVAIL REFER MOUNTPOINT testpool 475K 19.6G 21K /testpool testpool/test 22K 19.6G 22K /testpool/test testpool/test@testsnap 0 - 22K - fbsd9vm# zfs destroy -r testpool@testsnap cannot destroy 'testpool@testsnap': dataset does not exist no snapshots destroyed fbsd9vm# zfs list -t all -r NAME USED AVAIL REFER MOUNTPOINT testpool 475K 19.6G 21K /testpool testpool/test 22K 19.6G 22K /testpool/test testpool/test@testsnap 0 - 22K - fbsd9vm# uname -a FreeBSD fbsd9vm 9.0-CURRENT FreeBSD 9.0-CURRENT #2 r208649M: Mon Mar 21 = 22:28:02 EDT 2011 root@:/usr/obj/usr/src/sys/GENERIC amd64 I noticed this because zfSnap is unable to destroy old snapshots (except = for ones that are done to the entire pool where pool@snapshot exists) Cheers, Dillon= From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 16:25:39 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51833106566B; Tue, 22 Mar 2011 16:25:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0EFDA8FC08; Tue, 22 Mar 2011 16:25:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MGPcui021277; Tue, 22 Mar 2011 12:25:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MGPbt8021235; Tue, 22 Mar 2011 16:25:37 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 16:25:37 GMT Message-Id: <201103221625.p2MGPbt8021235@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 16:25:39 -0000 TB --- 2011-03-22 14:35:22 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 14:35:22 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-22 14:35:22 - cleaning the object tree TB --- 2011-03-22 14:35:31 - cvsupping the source tree TB --- 2011-03-22 14:35:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-22 14:35:43 - building world TB --- 2011-03-22 14:35:43 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 14:35:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 14:35:43 - TARGET=ia64 TB --- 2011-03-22 14:35:43 - TARGET_ARCH=ia64 TB --- 2011-03-22 14:35:43 - TZ=UTC TB --- 2011-03-22 14:35:43 - __MAKE_CONF=/dev/null TB --- 2011-03-22 14:35:43 - cd /src TB --- 2011-03-22 14:35:43 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 14:35:44 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 16:01:05 UTC 2011 TB --- 2011-03-22 16:01:05 - generating LINT kernel config TB --- 2011-03-22 16:01:05 - cd /src/sys/ia64/conf TB --- 2011-03-22 16:01:05 - /usr/bin/make -B LINT TB --- 2011-03-22 16:01:05 - building LINT kernel TB --- 2011-03-22 16:01:05 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 16:01:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 16:01:05 - TARGET=ia64 TB --- 2011-03-22 16:01:05 - TARGET_ARCH=ia64 TB --- 2011-03-22 16:01:05 - TZ=UTC TB --- 2011-03-22 16:01:05 - __MAKE_CONF=/dev/null TB --- 2011-03-22 16:01:05 - cd /src TB --- 2011-03-22 16:01:05 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 16:01:05 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 16:25:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 16:25:37 - ERROR: failed to build lint kernel TB --- 2011-03-22 16:25:37 - 5393.05 user 861.05 system 6614.55 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 16:30:58 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27632106566B for ; Tue, 22 Mar 2011 16:30:58 +0000 (UTC) (envelope-from anti_spam256@yahoo.ca) Received: from nm23-vm0.bullet.mail.ne1.yahoo.com (nm23-vm0.bullet.mail.ne1.yahoo.com [98.138.91.57]) by mx1.freebsd.org (Postfix) with SMTP id D731A8FC14 for ; Tue, 22 Mar 2011 16:30:57 +0000 (UTC) Received: from [98.138.90.53] by nm23.bullet.mail.ne1.yahoo.com with NNFMP; 22 Mar 2011 16:17:43 -0000 Received: from [98.138.87.6] by tm6.bullet.mail.ne1.yahoo.com with NNFMP; 22 Mar 2011 16:17:43 -0000 Received: from [127.0.0.1] by omp1006.mail.ne1.yahoo.com with NNFMP; 22 Mar 2011 16:17:43 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 158528.4268.bm@omp1006.mail.ne1.yahoo.com Received: (qmail 34055 invoked by uid 60001); 22 Mar 2011 16:17:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.ca; s=s1024; t=1300810663; bh=7y6/f2OEyk2TbtQD3UkKVfSDe/1UbkRLU2WXUSA07sc=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=QqPpIwlZcIqN1L8VmZXGNIZ+1c1eTrsf/VanIIGMyUZHPLFB/pnN8V4V3Ljg315dhCn8BvbcvzKmOUlhK3lT8Q2i2Ehvi86IlihVHR01T65mzJ+wgk4OwL+xxAUHpf2lIrSF9yesXwyPsMGEczeLpckZ5/CuwO8F7Rzj15Lz5O8= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=lZG1dSiJlkXvXzoaEdR6w7j6rAfU8G3hyxJ17VYoDikEa3MlwB3wKGCmJpbXayUD9lzIrm5VI35nR1Wuq8M+rRGO5cWAWDykTh7PnXJtjPwSM6YmmisMg/ENVexoAMT960hppk1b8ytVEMtjtAxAluawFJjsKFHZCZnlixLe05o=; Message-ID: <38019.9725.qm@web120706.mail.ne1.yahoo.com> X-YMail-OSG: WQoZlwgVM1n2EH8YtoGAXJu_X5Ekbkhbb99yOhgOzXZ0fh5 tDQlAD1Sd12UlqQCQl0wmZlLpoUaxvrnIe2vddbEmUeA18sxUf.UNgSkB7UN zbVczug_d_y4K1vyS.YLg5rSRk6JcjhjCwuTXIL9NM.ctv3TNagl5s72MU7I Qkk6zayaPwPHbxCwuQUo2aQClYoYeIcm8kga6u8SDuO1CgT.Uj3ckaRSc78F aN98nDLgcxfj4KlZNpBRpbTMGgwswA1EhfVnUydRrWB8dNNpqiloAw1WPPfK e2k_vljFF3BytVXn5kz92DNsvB7d_f3hor6y87p7xAPre9Duf0bYbfktZOsj cxdphNJ5m3bieVC3B9p7nTAwCF9wq Received: from [216.86.107.143] by web120706.mail.ne1.yahoo.com via HTTP; Tue, 22 Mar 2011 09:17:42 PDT X-Mailer: YahooMailClassic/11.4.20 YahooMailWebService/0.8.109.295617 Date: Tue, 22 Mar 2011 09:17:42 -0700 (PDT) From: James Phillips To: freebsd-current@freebsd.org In-Reply-To: <20110322120025.6254F10656D5@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Etienne Robillard Subject: Re: [CFR]RT305xF support, w/o attachment X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 16:30:58 -0000 > Date: Tue, 22 Mar 2011 06:46:12 -0400 > From: Etienne Robillard > Subject: Re: [CFR]RT305xF support, w/o attachment > To: Adrian Chadd > Cc: freebsd-current@freebsd.org > Message-ID: <4D887DF4.6060602@gthcfoundation.org> > Content-Type: text/plain; charset=ISO-8859-1 > > as far my knowledge goes, radiation from multi-frequency > subcarriers in > a multi-path > system such as a wireless network (802.11 a/g/n) or a > "microwave oven" > is something > you definitely want to avoid sitting in while hacking > FreeBSD... > > https://gthc.org/wiki/Advisories/OFDM_20110315 > > I may have done technical errors but i do not drink in the > morning!! :) > > > > > On 22/03/11 06:30 AM, Adrian Chadd wrote: > > So I'm curious - what exactly about OFDM do you have a > problem with? > > > > > > > > > > Adrian I have looked at your "security advisory" and also fail to understand what you are complaining about: "Problem Description The OFDM (Orthogonal Frequency Division Multiplexing) modulation scheme as implemented in the upper 802.11 protocol for Wireless LAN (WLAN) networking is inherently insecure as designed to allow multi-frequency radiation of arbitrary Q-I numbers access in the unregulated ISM band/range." A high-Q signal has a very sharp peak and narrow pass-band. This lets the radio get past the noise floor using less transmitter energy. I am not sure what a Q-I number is. You use the word "arbitrary." Are you claiming that OFDM allows the radios to exceed emission limits? As the other person commented, radio emmisions are regulated, even in the unlicensed spectrum. It would only be a security/safety issue if the radio exceeds legal limits. Your bounty suggests you have little/no evidence these limits are actually exceeded. A priviledge escalation exploit reprogramming a software-implemented radio to exceed radiation limits would be a concern, but it won't "cook" nearby users. The hardware would overheat before that happens. I agree excessive RF exposure should be avoided. I keep my wireless Access Point at its minimum power setting (1/4 power, 802.11g). Regards, James Phillips From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 18:11:30 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53713106564A; Tue, 22 Mar 2011 18:11:30 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2AF208FC1B; Tue, 22 Mar 2011 18:11:29 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MIBTJ4076622; Tue, 22 Mar 2011 14:11:29 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MIBTbH076582; Tue, 22 Mar 2011 18:11:29 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 18:11:29 GMT Message-Id: <201103221811.p2MIBTbH076582@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 18:11:30 -0000 TB --- 2011-03-22 16:48:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 16:48:00 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-22 16:48:00 - cleaning the object tree TB --- 2011-03-22 16:48:11 - cvsupping the source tree TB --- 2011-03-22 16:48:11 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-22 16:48:25 - building world TB --- 2011-03-22 16:48:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 16:48:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 16:48:25 - TARGET=sparc64 TB --- 2011-03-22 16:48:25 - TARGET_ARCH=sparc64 TB --- 2011-03-22 16:48:25 - TZ=UTC TB --- 2011-03-22 16:48:25 - __MAKE_CONF=/dev/null TB --- 2011-03-22 16:48:25 - cd /src TB --- 2011-03-22 16:48:25 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 16:48:26 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 17:53:11 UTC 2011 TB --- 2011-03-22 17:53:11 - generating LINT kernel config TB --- 2011-03-22 17:53:11 - cd /src/sys/sparc64/conf TB --- 2011-03-22 17:53:11 - /usr/bin/make -B LINT TB --- 2011-03-22 17:53:11 - building LINT kernel TB --- 2011-03-22 17:53:11 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 17:53:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 17:53:11 - TARGET=sparc64 TB --- 2011-03-22 17:53:11 - TARGET_ARCH=sparc64 TB --- 2011-03-22 17:53:11 - TZ=UTC TB --- 2011-03-22 17:53:11 - __MAKE_CONF=/dev/null TB --- 2011-03-22 17:53:11 - cd /src TB --- 2011-03-22 17:53:11 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 17:53:11 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 18:11:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 18:11:28 - ERROR: failed to build lint kernel TB --- 2011-03-22 18:11:28 - 3864.47 user 765.65 system 5007.90 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 18:26:53 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51A1F106567C; Tue, 22 Mar 2011 18:26:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2B6A88FC20; Tue, 22 Mar 2011 18:26:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MIQq1Z077888; Tue, 22 Mar 2011 14:26:52 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MIQqQI077883; Tue, 22 Mar 2011 18:26:52 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 18:26:52 GMT Message-Id: <201103221826.p2MIQqQI077883@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 18:26:53 -0000 TB --- 2011-03-22 16:25:38 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 16:25:38 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 16:25:38 - cleaning the object tree TB --- 2011-03-22 16:25:47 - cvsupping the source tree TB --- 2011-03-22 16:25:47 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 16:25:59 - building world TB --- 2011-03-22 16:25:59 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 16:25:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 16:25:59 - TARGET=powerpc TB --- 2011-03-22 16:25:59 - TARGET_ARCH=powerpc TB --- 2011-03-22 16:25:59 - TZ=UTC TB --- 2011-03-22 16:25:59 - __MAKE_CONF=/dev/null TB --- 2011-03-22 16:25:59 - cd /src TB --- 2011-03-22 16:25:59 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 16:26:00 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 18:10:51 UTC 2011 TB --- 2011-03-22 18:10:51 - generating LINT kernel config TB --- 2011-03-22 18:10:51 - cd /src/sys/powerpc/conf TB --- 2011-03-22 18:10:51 - /usr/bin/make -B LINT TB --- 2011-03-22 18:10:51 - building LINT kernel TB --- 2011-03-22 18:10:51 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:10:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:10:51 - TARGET=powerpc TB --- 2011-03-22 18:10:51 - TARGET_ARCH=powerpc TB --- 2011-03-22 18:10:51 - TZ=UTC TB --- 2011-03-22 18:10:51 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:10:51 - cd /src TB --- 2011-03-22 18:10:51 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 18:10:51 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 18:26:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 18:26:52 - ERROR: failed to build lint kernel TB --- 2011-03-22 18:26:52 - 5898.97 user 960.34 system 7273.73 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 18:33:26 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CCB1B106566B; Tue, 22 Mar 2011 18:33:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A55388FC14; Tue, 22 Mar 2011 18:33:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MIXPv3089221; Tue, 22 Mar 2011 14:33:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MIXPJe089220; Tue, 22 Mar 2011 18:33:25 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 18:33:25 GMT Message-Id: <201103221833.p2MIXPJe089220@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 18:33:27 -0000 TB --- 2011-03-22 17:12:02 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 17:12:02 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-22 17:12:02 - cleaning the object tree TB --- 2011-03-22 17:12:12 - cvsupping the source tree TB --- 2011-03-22 17:12:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-22 17:12:25 - building world TB --- 2011-03-22 17:12:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 17:12:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 17:12:25 - TARGET=sun4v TB --- 2011-03-22 17:12:25 - TARGET_ARCH=sparc64 TB --- 2011-03-22 17:12:25 - TZ=UTC TB --- 2011-03-22 17:12:25 - __MAKE_CONF=/dev/null TB --- 2011-03-22 17:12:25 - cd /src TB --- 2011-03-22 17:12:25 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 17:12:25 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Mar 22 18:17:07 UTC 2011 TB --- 2011-03-22 18:17:07 - generating LINT kernel config TB --- 2011-03-22 18:17:07 - cd /src/sys/sun4v/conf TB --- 2011-03-22 18:17:07 - /usr/bin/make -B LINT TB --- 2011-03-22 18:17:07 - building LINT kernel TB --- 2011-03-22 18:17:07 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:17:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:17:07 - TARGET=sun4v TB --- 2011-03-22 18:17:07 - TARGET_ARCH=sparc64 TB --- 2011-03-22 18:17:07 - TZ=UTC TB --- 2011-03-22 18:17:07 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:17:07 - cd /src TB --- 2011-03-22 18:17:07 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 18:17:07 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 18:33:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 18:33:25 - ERROR: failed to build lint kernel TB --- 2011-03-22 18:33:25 - 3819.76 user 756.70 system 4883.73 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 18:41:13 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55F8D106566C; Tue, 22 Mar 2011 18:41:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2DD1A8FC19; Tue, 22 Mar 2011 18:41:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MIfCDD096879; Tue, 22 Mar 2011 14:41:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MIfCUU096878; Tue, 22 Mar 2011 18:41:12 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 18:41:12 GMT Message-Id: <201103221841.p2MIfCUU096878@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 18:41:13 -0000 TB --- 2011-03-22 16:47:24 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 16:47:24 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 16:47:24 - cleaning the object tree TB --- 2011-03-22 16:47:41 - cvsupping the source tree TB --- 2011-03-22 16:47:41 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 16:48:25 - building world TB --- 2011-03-22 16:48:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 16:48:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 16:48:25 - TARGET=powerpc TB --- 2011-03-22 16:48:25 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 16:48:25 - TZ=UTC TB --- 2011-03-22 16:48:25 - __MAKE_CONF=/dev/null TB --- 2011-03-22 16:48:25 - cd /src TB --- 2011-03-22 16:48:25 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 16:48:26 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Mar 22 18:24:20 UTC 2011 TB --- 2011-03-22 18:24:21 - generating LINT kernel config TB --- 2011-03-22 18:24:21 - cd /src/sys/powerpc/conf TB --- 2011-03-22 18:24:21 - /usr/bin/make -B LINT TB --- 2011-03-22 18:24:21 - building LINT kernel TB --- 2011-03-22 18:24:21 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:24:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:24:21 - TARGET=powerpc TB --- 2011-03-22 18:24:21 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 18:24:21 - TZ=UTC TB --- 2011-03-22 18:24:21 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:24:21 - cd /src TB --- 2011-03-22 18:24:21 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 22 18:24:21 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 18:41:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 18:41:12 - ERROR: failed to build lint kernel TB --- 2011-03-22 18:41:12 - 5334.27 user 1072.88 system 6827.43 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 19:37:16 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39EB9106566C; Tue, 22 Mar 2011 19:37:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E81E78FC21; Tue, 22 Mar 2011 19:37:15 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MJbEad066205; Tue, 22 Mar 2011 15:37:14 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MJbE9W066204; Tue, 22 Mar 2011 19:37:14 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 19:37:14 GMT Message-Id: <201103221937.p2MJbE9W066204@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 19:37:16 -0000 TB --- 2011-03-22 18:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 18:50:00 - starting HEAD tinderbox run for arm/arm TB --- 2011-03-22 18:50:00 - cleaning the object tree TB --- 2011-03-22 18:50:13 - cvsupping the source tree TB --- 2011-03-22 18:50:13 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/arm/arm/supfile TB --- 2011-03-22 18:50:36 - building world TB --- 2011-03-22 18:50:36 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:50:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:50:36 - TARGET=arm TB --- 2011-03-22 18:50:36 - TARGET_ARCH=arm TB --- 2011-03-22 18:50:36 - TZ=UTC TB --- 2011-03-22 18:50:36 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:50:36 - cd /src TB --- 2011-03-22 18:50:36 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 18:50:36 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 19:37:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 19:37:14 - ERROR: failed to build world TB --- 2011-03-22 19:37:14 - 2058.62 user 571.45 system 2833.65 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 20:28:26 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 898A51065672; Tue, 22 Mar 2011 20:28:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 48B378FC19; Tue, 22 Mar 2011 20:28:25 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MKSPUM013250; Tue, 22 Mar 2011 16:28:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MKSPQi013231; Tue, 22 Mar 2011 20:28:25 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 20:28:25 GMT Message-Id: <201103222028.p2MKSPQi013231@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 20:28:26 -0000 TB --- 2011-03-22 18:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 18:50:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-22 18:50:00 - cleaning the object tree TB --- 2011-03-22 18:50:26 - cvsupping the source tree TB --- 2011-03-22 18:50:26 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-22 18:50:39 - building world TB --- 2011-03-22 18:50:39 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:50:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:50:39 - TARGET=i386 TB --- 2011-03-22 18:50:39 - TARGET_ARCH=i386 TB --- 2011-03-22 18:50:39 - TZ=UTC TB --- 2011-03-22 18:50:39 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:50:39 - cd /src TB --- 2011-03-22 18:50:39 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 18:50:43 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 20:28:24 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 20:28:25 - ERROR: failed to build world TB --- 2011-03-22 20:28:25 - 4798.68 user 789.82 system 5904.62 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 20:28:44 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1DE1065675; Tue, 22 Mar 2011 20:28:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 77F898FC13; Tue, 22 Mar 2011 20:28:44 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MKSh9n014347; Tue, 22 Mar 2011 16:28:43 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MKShf3014346; Tue, 22 Mar 2011 20:28:43 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 20:28:43 GMT Message-Id: <201103222028.p2MKShf3014346@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 20:28:44 -0000 TB --- 2011-03-22 18:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 18:50:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-22 18:50:00 - cleaning the object tree TB --- 2011-03-22 18:50:22 - cvsupping the source tree TB --- 2011-03-22 18:50:22 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-22 18:50:36 - building world TB --- 2011-03-22 18:50:36 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:50:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:50:36 - TARGET=pc98 TB --- 2011-03-22 18:50:36 - TARGET_ARCH=i386 TB --- 2011-03-22 18:50:36 - TZ=UTC TB --- 2011-03-22 18:50:36 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:50:36 - cd /src TB --- 2011-03-22 18:50:36 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 18:50:37 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 20:28:43 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 20:28:43 - ERROR: failed to build world TB --- 2011-03-22 20:28:43 - 4796.82 user 808.30 system 5923.24 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 20:35:00 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4A41106564A; Tue, 22 Mar 2011 20:35:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 6428B8FC17; Tue, 22 Mar 2011 20:35:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MKYxHx064414; Tue, 22 Mar 2011 16:34:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MKYx4B064410; Tue, 22 Mar 2011 20:34:59 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 20:34:59 GMT Message-Id: <201103222034.p2MKYx4B064410@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 20:35:00 -0000 TB --- 2011-03-22 18:50:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 18:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-03-22 18:50:00 - cleaning the object tree TB --- 2011-03-22 18:50:26 - cvsupping the source tree TB --- 2011-03-22 18:50:26 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-03-22 18:55:49 - building world TB --- 2011-03-22 18:55:49 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 18:55:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 18:55:49 - TARGET=amd64 TB --- 2011-03-22 18:55:49 - TARGET_ARCH=amd64 TB --- 2011-03-22 18:55:49 - TZ=UTC TB --- 2011-03-22 18:55:49 - __MAKE_CONF=/dev/null TB --- 2011-03-22 18:55:49 - cd /src TB --- 2011-03-22 18:55:49 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 18:55:50 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 20:34:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 20:34:59 - ERROR: failed to build world TB --- 2011-03-22 20:34:59 - 4841.73 user 789.77 system 6298.82 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 20:45:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81C6D1065673; Tue, 22 Mar 2011 20:45:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 3AC048FC13; Tue, 22 Mar 2011 20:45:01 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MKj1nm051628; Tue, 22 Mar 2011 16:45:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MKj1uM051614; Tue, 22 Mar 2011 20:45:01 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 20:45:01 GMT Message-Id: <201103222045.p2MKj1uM051614@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 20:45:02 -0000 TB --- 2011-03-22 19:37:14 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 19:37:14 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-22 19:37:14 - cleaning the object tree TB --- 2011-03-22 19:37:23 - cvsupping the source tree TB --- 2011-03-22 19:37:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-22 19:37:34 - building world TB --- 2011-03-22 19:37:34 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 19:37:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 19:37:34 - TARGET=ia64 TB --- 2011-03-22 19:37:34 - TARGET_ARCH=ia64 TB --- 2011-03-22 19:37:34 - TZ=UTC TB --- 2011-03-22 19:37:34 - __MAKE_CONF=/dev/null TB --- 2011-03-22 19:37:34 - cd /src TB --- 2011-03-22 19:37:34 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 19:37:35 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 20:45:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 20:45:01 - ERROR: failed to build world TB --- 2011-03-22 20:45:01 - 3205.00 user 590.24 system 4066.28 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 21:18:07 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 908FD106564A; Tue, 22 Mar 2011 21:18:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4DABA8FC15; Tue, 22 Mar 2011 21:18:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MLI6pL038371; Tue, 22 Mar 2011 17:18:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MLI6fW038331; Tue, 22 Mar 2011 21:18:06 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 21:18:06 GMT Message-Id: <201103222118.p2MLI6fW038331@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on mips/mips X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 21:18:07 -0000 TB --- 2011-03-22 20:28:25 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 20:28:25 - starting HEAD tinderbox run for mips/mips TB --- 2011-03-22 20:28:25 - cleaning the object tree TB --- 2011-03-22 20:28:33 - cvsupping the source tree TB --- 2011-03-22 20:28:33 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/mips/mips/supfile TB --- 2011-03-22 20:28:48 - building world TB --- 2011-03-22 20:28:48 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 20:28:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 20:28:48 - TARGET=mips TB --- 2011-03-22 20:28:48 - TARGET_ARCH=mips TB --- 2011-03-22 20:28:48 - TZ=UTC TB --- 2011-03-22 20:28:48 - __MAKE_CONF=/dev/null TB --- 2011-03-22 20:28:48 - cd /src TB --- 2011-03-22 20:28:48 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 20:28:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O -pipe -G0 -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 21:18:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 21:18:06 - ERROR: failed to build world TB --- 2011-03-22 21:18:06 - 2180.20 user 545.24 system 2980.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 21:33:19 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14018106566C; Tue, 22 Mar 2011 21:33:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C43138FC15; Tue, 22 Mar 2011 21:33:18 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MLXIDH030603; Tue, 22 Mar 2011 17:33:18 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MLXH9r030593; Tue, 22 Mar 2011 21:33:17 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 21:33:17 GMT Message-Id: <201103222133.p2MLXH9r030593@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 21:33:19 -0000 TB --- 2011-03-22 20:34:59 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 20:34:59 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 20:34:59 - cleaning the object tree TB --- 2011-03-22 20:35:10 - cvsupping the source tree TB --- 2011-03-22 20:35:10 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 20:35:28 - building world TB --- 2011-03-22 20:35:28 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 20:35:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 20:35:28 - TARGET=powerpc TB --- 2011-03-22 20:35:28 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 20:35:28 - TZ=UTC TB --- 2011-03-22 20:35:28 - __MAKE_CONF=/dev/null TB --- 2011-03-22 20:35:28 - cd /src TB --- 2011-03-22 20:35:28 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 20:35:29 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 21:33:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 21:33:17 - ERROR: failed to build world TB --- 2011-03-22 21:33:17 - 2672.21 user 567.12 system 3498.02 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 21:39:10 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52D7C106566B; Tue, 22 Mar 2011 21:39:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 108868FC0C; Tue, 22 Mar 2011 21:39:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MLd96I067671; Tue, 22 Mar 2011 17:39:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MLd9xA067664; Tue, 22 Mar 2011 21:39:09 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 21:39:09 GMT Message-Id: <201103222139.p2MLd9xA067664@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 21:39:10 -0000 TB --- 2011-03-22 20:45:01 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 20:45:01 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-22 20:45:01 - cleaning the object tree TB --- 2011-03-22 20:45:10 - cvsupping the source tree TB --- 2011-03-22 20:45:10 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-22 20:45:25 - building world TB --- 2011-03-22 20:45:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 20:45:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 20:45:25 - TARGET=sparc64 TB --- 2011-03-22 20:45:25 - TARGET_ARCH=sparc64 TB --- 2011-03-22 20:45:25 - TZ=UTC TB --- 2011-03-22 20:45:25 - __MAKE_CONF=/dev/null TB --- 2011-03-22 20:45:25 - cd /src TB --- 2011-03-22 20:45:25 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 20:45:25 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 21:39:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 21:39:09 - ERROR: failed to build world TB --- 2011-03-22 21:39:09 - 2467.51 user 544.14 system 3247.74 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 21:57:48 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7DA6106564A; Tue, 22 Mar 2011 21:57:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5CBB08FC19; Tue, 22 Mar 2011 21:57:48 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MLvlij063267; Tue, 22 Mar 2011 17:57:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MLvl2p063266; Tue, 22 Mar 2011 21:57:47 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 21:57:47 GMT Message-Id: <201103222157.p2MLvl2p063266@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 21:57:49 -0000 TB --- 2011-03-22 20:28:44 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 20:28:44 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 20:28:44 - cleaning the object tree TB --- 2011-03-22 20:28:53 - cvsupping the source tree TB --- 2011-03-22 20:28:53 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 20:29:06 - building world TB --- 2011-03-22 20:29:06 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 20:29:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 20:29:06 - TARGET=powerpc TB --- 2011-03-22 20:29:06 - TARGET_ARCH=powerpc TB --- 2011-03-22 20:29:06 - TZ=UTC TB --- 2011-03-22 20:29:06 - __MAKE_CONF=/dev/null TB --- 2011-03-22 20:29:06 - cd /src TB --- 2011-03-22 20:29:06 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 20:29:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 21:57:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 21:57:47 - ERROR: failed to build world TB --- 2011-03-22 21:57:47 - 4424.35 user 735.17 system 5342.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 22:08:18 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38028106564A; Tue, 22 Mar 2011 22:08:18 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EA5CA8FC14; Tue, 22 Mar 2011 22:08:17 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MM8HVA078904; Tue, 22 Mar 2011 18:08:17 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MM8Hg4078903; Tue, 22 Mar 2011 22:08:17 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 22:08:17 GMT Message-Id: <201103222208.p2MM8Hg4078903@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 22:08:18 -0000 TB --- 2011-03-22 21:18:06 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 21:18:06 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-22 21:18:06 - cleaning the object tree TB --- 2011-03-22 21:18:15 - cvsupping the source tree TB --- 2011-03-22 21:18:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-22 21:18:28 - building world TB --- 2011-03-22 21:18:28 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 21:18:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 21:18:28 - TARGET=sun4v TB --- 2011-03-22 21:18:28 - TARGET_ARCH=sparc64 TB --- 2011-03-22 21:18:28 - TZ=UTC TB --- 2011-03-22 21:18:28 - __MAKE_CONF=/dev/null TB --- 2011-03-22 21:18:28 - cd /src TB --- 2011-03-22 21:18:28 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 21:18:29 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 22:08:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 22:08:17 - ERROR: failed to build world TB --- 2011-03-22 22:08:17 - 2452.47 user 503.38 system 3010.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 22:57:15 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A8991065673; Tue, 22 Mar 2011 22:57:15 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 370A48FC15; Tue, 22 Mar 2011 22:57:15 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MMvEWW048218; Tue, 22 Mar 2011 18:57:14 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MMvE2I048217; Tue, 22 Mar 2011 22:57:14 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 22:57:14 GMT Message-Id: <201103222257.p2MMvE2I048217@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 22:57:15 -0000 TB --- 2011-03-22 22:10:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 22:10:00 - starting HEAD tinderbox run for arm/arm TB --- 2011-03-22 22:10:00 - cleaning the object tree TB --- 2011-03-22 22:10:07 - cvsupping the source tree TB --- 2011-03-22 22:10:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/arm/arm/supfile TB --- 2011-03-22 22:10:47 - building world TB --- 2011-03-22 22:10:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 22:10:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 22:10:47 - TARGET=arm TB --- 2011-03-22 22:10:47 - TARGET_ARCH=arm TB --- 2011-03-22 22:10:47 - TZ=UTC TB --- 2011-03-22 22:10:47 - __MAKE_CONF=/dev/null TB --- 2011-03-22 22:10:47 - cd /src TB --- 2011-03-22 22:10:47 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 22:10:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 22:57:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 22:57:13 - ERROR: failed to build world TB --- 2011-03-22 22:57:13 - 2055.55 user 572.19 system 2833.41 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 23:48:48 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FDCD1065673; Tue, 22 Mar 2011 23:48:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2CF8FC08; Tue, 22 Mar 2011 23:48:47 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MNmlB0095441; Tue, 22 Mar 2011 19:48:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MNmlkO095384; Tue, 22 Mar 2011 23:48:47 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 23:48:47 GMT Message-Id: <201103222348.p2MNmlkO095384@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 23:48:48 -0000 TB --- 2011-03-22 22:10:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 22:10:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-22 22:10:00 - cleaning the object tree TB --- 2011-03-22 22:10:07 - cvsupping the source tree TB --- 2011-03-22 22:10:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-22 22:10:47 - building world TB --- 2011-03-22 22:10:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 22:10:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 22:10:47 - TARGET=pc98 TB --- 2011-03-22 22:10:47 - TARGET_ARCH=i386 TB --- 2011-03-22 22:10:47 - TZ=UTC TB --- 2011-03-22 22:10:47 - __MAKE_CONF=/dev/null TB --- 2011-03-22 22:10:47 - cd /src TB --- 2011-03-22 22:10:47 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 22:10:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 23:48:46 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 23:48:46 - ERROR: failed to build world TB --- 2011-03-22 23:48:46 - 4792.12 user 802.23 system 5926.29 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 23:49:35 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21909106567C; Tue, 22 Mar 2011 23:49:35 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 908BB8FC16; Tue, 22 Mar 2011 23:49:34 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MNnYiV000285; Tue, 22 Mar 2011 19:49:34 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MNnYrM000282; Tue, 22 Mar 2011 23:49:34 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 23:49:34 GMT Message-Id: <201103222349.p2MNnYrM000282@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 23:49:35 -0000 TB --- 2011-03-22 22:10:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 22:10:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-03-22 22:10:00 - cleaning the object tree TB --- 2011-03-22 22:10:07 - cvsupping the source tree TB --- 2011-03-22 22:10:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-03-22 22:10:47 - building world TB --- 2011-03-22 22:10:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 22:10:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 22:10:47 - TARGET=amd64 TB --- 2011-03-22 22:10:47 - TARGET_ARCH=amd64 TB --- 2011-03-22 22:10:47 - TZ=UTC TB --- 2011-03-22 22:10:47 - __MAKE_CONF=/dev/null TB --- 2011-03-22 22:10:47 - cd /src TB --- 2011-03-22 22:10:47 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 22:10:49 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 23:49:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 23:49:33 - ERROR: failed to build world TB --- 2011-03-22 23:49:33 - 4834.62 user 792.77 system 5973.26 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Tue Mar 22 23:54:00 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49E5D1065672; Tue, 22 Mar 2011 23:54:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id F3D9D8FC0A; Tue, 22 Mar 2011 23:53:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2MNrx9b029196; Tue, 22 Mar 2011 19:53:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2MNrxL7029153; Tue, 22 Mar 2011 23:53:59 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 22 Mar 2011 23:53:59 GMT Message-Id: <201103222353.p2MNrxL7029153@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2011 23:54:00 -0000 TB --- 2011-03-22 22:10:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 22:10:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-22 22:10:00 - cleaning the object tree TB --- 2011-03-22 22:10:07 - cvsupping the source tree TB --- 2011-03-22 22:10:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-22 22:15:31 - building world TB --- 2011-03-22 22:15:31 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 22:15:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 22:15:31 - TARGET=i386 TB --- 2011-03-22 22:15:31 - TARGET_ARCH=i386 TB --- 2011-03-22 22:15:31 - TZ=UTC TB --- 2011-03-22 22:15:31 - __MAKE_CONF=/dev/null TB --- 2011-03-22 22:15:31 - cd /src TB --- 2011-03-22 22:15:31 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 22:15:32 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_common.c cc -O2 -pipe -I/src/sbin/hastctl/../hastd -DINET -DINET6 -DYY_NO_UNPUT -DYY_NO_INPUT -DHAVE_CRYPTO -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-format -c /src/sbin/hastctl/../hastd/proto_tcp4.c /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_setup_new': /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: (Each undeclared identifier is reported only once /src/sbin/hastctl/../hastd/proto_tcp4.c:188: error: for each function it appears in.) /src/sbin/hastctl/../hastd/proto_tcp4.c: In function 'tcp4_address_match': /src/sbin/hastctl/../hastd/proto_tcp4.c:513: error: 'PROTO_TCP4_DEFAULT_PORT' undeclared (first use in this function) *** Error code 1 Stop in /src/sbin/hastctl. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-22 23:53:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-22 23:53:58 - ERROR: failed to build world TB --- 2011-03-22 23:53:58 - 4798.68 user 772.28 system 6238.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 00:48:49 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66450106564A; Wed, 23 Mar 2011 00:48:49 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 237288FC12; Wed, 23 Mar 2011 00:48:48 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N0mmoV023714; Tue, 22 Mar 2011 20:48:48 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N0mm8C023704; Wed, 23 Mar 2011 00:48:48 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 00:48:48 GMT Message-Id: <201103230048.p2N0mm8C023704@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 00:48:49 -0000 TB --- 2011-03-22 22:57:14 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 22:57:14 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-22 22:57:14 - cleaning the object tree TB --- 2011-03-22 22:57:20 - cvsupping the source tree TB --- 2011-03-22 22:57:20 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-22 22:58:05 - building world TB --- 2011-03-22 22:58:05 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 22:58:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 22:58:05 - TARGET=ia64 TB --- 2011-03-22 22:58:05 - TARGET_ARCH=ia64 TB --- 2011-03-22 22:58:05 - TZ=UTC TB --- 2011-03-22 22:58:05 - __MAKE_CONF=/dev/null TB --- 2011-03-22 22:58:05 - cd /src TB --- 2011-03-22 22:58:05 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 22:58:05 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 00:23:58 UTC 2011 TB --- 2011-03-23 00:23:58 - generating LINT kernel config TB --- 2011-03-23 00:23:58 - cd /src/sys/ia64/conf TB --- 2011-03-23 00:23:58 - /usr/bin/make -B LINT TB --- 2011-03-23 00:23:58 - building LINT kernel TB --- 2011-03-23 00:23:58 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 00:23:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 00:23:58 - TARGET=ia64 TB --- 2011-03-23 00:23:58 - TARGET_ARCH=ia64 TB --- 2011-03-23 00:23:58 - TZ=UTC TB --- 2011-03-23 00:23:58 - __MAKE_CONF=/dev/null TB --- 2011-03-23 00:23:58 - cd /src TB --- 2011-03-23 00:23:58 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 00:23:58 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 00:48:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 00:48:47 - ERROR: failed to build lint kernel TB --- 2011-03-23 00:48:47 - 5408.02 user 863.41 system 6692.86 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 01:49:48 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A42E0106566B; Wed, 23 Mar 2011 01:49:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 79D4D8FC0A; Wed, 23 Mar 2011 01:49:48 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N1nljX024316; Tue, 22 Mar 2011 21:49:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N1nlqV024294; Wed, 23 Mar 2011 01:49:47 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 01:49:47 GMT Message-Id: <201103230149.p2N1nlqV024294@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 01:49:48 -0000 TB --- 2011-03-22 23:53:59 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 23:53:59 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-22 23:53:59 - cleaning the object tree TB --- 2011-03-22 23:54:06 - cvsupping the source tree TB --- 2011-03-22 23:54:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-22 23:54:16 - building world TB --- 2011-03-22 23:54:16 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 23:54:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 23:54:16 - TARGET=powerpc TB --- 2011-03-22 23:54:16 - TARGET_ARCH=powerpc64 TB --- 2011-03-22 23:54:16 - TZ=UTC TB --- 2011-03-22 23:54:16 - __MAKE_CONF=/dev/null TB --- 2011-03-22 23:54:16 - cd /src TB --- 2011-03-22 23:54:16 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 23:54:17 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Mar 23 01:31:36 UTC 2011 TB --- 2011-03-23 01:31:36 - generating LINT kernel config TB --- 2011-03-23 01:31:36 - cd /src/sys/powerpc/conf TB --- 2011-03-23 01:31:36 - /usr/bin/make -B LINT TB --- 2011-03-23 01:31:36 - building LINT kernel TB --- 2011-03-23 01:31:36 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 01:31:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 01:31:36 - TARGET=powerpc TB --- 2011-03-23 01:31:36 - TARGET_ARCH=powerpc64 TB --- 2011-03-23 01:31:36 - TZ=UTC TB --- 2011-03-23 01:31:36 - __MAKE_CONF=/dev/null TB --- 2011-03-23 01:31:36 - cd /src TB --- 2011-03-23 01:31:36 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 01:31:36 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 01:49:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 01:49:47 - ERROR: failed to build lint kernel TB --- 2011-03-23 01:49:47 - 5350.59 user 1082.63 system 6947.87 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 01:51:07 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0CB106564A; Wed, 23 Mar 2011 01:51:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 32ABE8FC08; Wed, 23 Mar 2011 01:51:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N1p6uM031084; Tue, 22 Mar 2011 21:51:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N1p6sg031083; Wed, 23 Mar 2011 01:51:06 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 01:51:06 GMT Message-Id: <201103230151.p2N1p6sg031083@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 01:51:07 -0000 TB --- 2011-03-22 23:49:34 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-22 23:49:34 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-22 23:49:34 - cleaning the object tree TB --- 2011-03-22 23:49:39 - cvsupping the source tree TB --- 2011-03-22 23:49:39 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-22 23:49:53 - building world TB --- 2011-03-22 23:49:53 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-22 23:49:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-22 23:49:53 - TARGET=powerpc TB --- 2011-03-22 23:49:53 - TARGET_ARCH=powerpc TB --- 2011-03-22 23:49:53 - TZ=UTC TB --- 2011-03-22 23:49:53 - __MAKE_CONF=/dev/null TB --- 2011-03-22 23:49:53 - cd /src TB --- 2011-03-22 23:49:53 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 22 23:49:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 01:34:12 UTC 2011 TB --- 2011-03-23 01:34:12 - generating LINT kernel config TB --- 2011-03-23 01:34:12 - cd /src/sys/powerpc/conf TB --- 2011-03-23 01:34:12 - /usr/bin/make -B LINT TB --- 2011-03-23 01:34:12 - building LINT kernel TB --- 2011-03-23 01:34:12 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 01:34:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 01:34:12 - TARGET=powerpc TB --- 2011-03-23 01:34:12 - TARGET_ARCH=powerpc TB --- 2011-03-23 01:34:12 - TZ=UTC TB --- 2011-03-23 01:34:12 - __MAKE_CONF=/dev/null TB --- 2011-03-23 01:34:12 - cd /src TB --- 2011-03-23 01:34:12 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 01:34:12 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 01:51:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 01:51:06 - ERROR: failed to build lint kernel TB --- 2011-03-23 01:51:06 - 5903.45 user 973.44 system 7292.27 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 02:08:38 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96D3B106564A; Wed, 23 Mar 2011 02:08:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 6CAB08FC0A; Wed, 23 Mar 2011 02:08:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N28bFp092307; Tue, 22 Mar 2011 22:08:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N28bwE092302; Wed, 23 Mar 2011 02:08:37 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 02:08:37 GMT Message-Id: <201103230208.p2N28bwE092302@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 02:08:38 -0000 TB --- 2011-03-23 00:47:48 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 00:47:48 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-23 00:47:48 - cleaning the object tree TB --- 2011-03-23 00:47:53 - cvsupping the source tree TB --- 2011-03-23 00:47:53 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-23 00:48:07 - building world TB --- 2011-03-23 00:48:07 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 00:48:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 00:48:07 - TARGET=sparc64 TB --- 2011-03-23 00:48:07 - TARGET_ARCH=sparc64 TB --- 2011-03-23 00:48:07 - TZ=UTC TB --- 2011-03-23 00:48:07 - __MAKE_CONF=/dev/null TB --- 2011-03-23 00:48:07 - cd /src TB --- 2011-03-23 00:48:07 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 00:48:08 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 01:52:19 UTC 2011 TB --- 2011-03-23 01:52:19 - generating LINT kernel config TB --- 2011-03-23 01:52:19 - cd /src/sys/sparc64/conf TB --- 2011-03-23 01:52:19 - /usr/bin/make -B LINT TB --- 2011-03-23 01:52:19 - building LINT kernel TB --- 2011-03-23 01:52:19 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 01:52:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 01:52:19 - TARGET=sparc64 TB --- 2011-03-23 01:52:19 - TARGET_ARCH=sparc64 TB --- 2011-03-23 01:52:19 - TZ=UTC TB --- 2011-03-23 01:52:19 - __MAKE_CONF=/dev/null TB --- 2011-03-23 01:52:19 - cd /src TB --- 2011-03-23 01:52:19 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 01:52:19 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 02:08:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 02:08:37 - ERROR: failed to build lint kernel TB --- 2011-03-23 02:08:37 - 3840.62 user 735.78 system 4848.67 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 02:09:28 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61D1F10656B7; Wed, 23 Mar 2011 02:09:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 381CD8FC20; Wed, 23 Mar 2011 02:09:28 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N29R8D093618; Tue, 22 Mar 2011 22:09:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N29Rd9093617; Wed, 23 Mar 2011 02:09:27 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 02:09:27 GMT Message-Id: <201103230209.p2N29Rd9093617@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 02:09:28 -0000 TB --- 2011-03-23 00:48:48 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 00:48:48 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-23 00:48:48 - cleaning the object tree TB --- 2011-03-23 00:48:53 - cvsupping the source tree TB --- 2011-03-23 00:48:53 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-23 00:49:05 - building world TB --- 2011-03-23 00:49:05 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 00:49:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 00:49:05 - TARGET=sun4v TB --- 2011-03-23 00:49:05 - TARGET_ARCH=sparc64 TB --- 2011-03-23 00:49:05 - TZ=UTC TB --- 2011-03-23 00:49:05 - __MAKE_CONF=/dev/null TB --- 2011-03-23 00:49:05 - cd /src TB --- 2011-03-23 00:49:05 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 00:49:06 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 01:53:22 UTC 2011 TB --- 2011-03-23 01:53:22 - generating LINT kernel config TB --- 2011-03-23 01:53:22 - cd /src/sys/sun4v/conf TB --- 2011-03-23 01:53:22 - /usr/bin/make -B LINT TB --- 2011-03-23 01:53:22 - building LINT kernel TB --- 2011-03-23 01:53:22 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 01:53:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 01:53:22 - TARGET=sun4v TB --- 2011-03-23 01:53:22 - TARGET_ARCH=sparc64 TB --- 2011-03-23 01:53:22 - TZ=UTC TB --- 2011-03-23 01:53:22 - __MAKE_CONF=/dev/null TB --- 2011-03-23 01:53:22 - cd /src TB --- 2011-03-23 01:53:22 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 01:53:22 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 02:09:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 02:09:27 - ERROR: failed to build lint kernel TB --- 2011-03-23 02:09:27 - 3819.74 user 741.91 system 4839.31 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 04:01:09 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE3EB1065679 for ; Wed, 23 Mar 2011 04:01:09 +0000 (UTC) (envelope-from mattia.rossi.mate@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4FD8FC0C for ; Wed, 23 Mar 2011 04:01:09 +0000 (UTC) Received: by pzk27 with SMTP id 27so1227883pzk.13 for ; Tue, 22 Mar 2011 21:01:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:reply-to:organization :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=JkT69KiYo2V8Ug7e8xWOIsO1EBWo35u2OU7yEsRE8UY=; b=ZUiK1GR4/RUf4n0NWS75JWLKrY05Bg7z/ybvbrihxezqfY7R+JdYXhBf2N9J1w38a6 W+W+yBGO3p8crdfyp1iEzRt1LnZol/TEAYqdudFobZlqLLycizCaYpIO/4kaBih2NBNF s9OVx94I0OcW9WzO//5FYew0xkUkEQfkIyjyk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:organization:user-agent:mime-version :to:cc:subject:references:in-reply-to:content-type :content-transfer-encoding; b=VgIovM9MhemG8iWuzrgeNpPsIMY4WihiqERtpdMaimcM1aVYMa2dd3uvaWjvWwlrBS FjZd+n05yapGdwoAzIeEjQgHwbmZf7c6Z2+UQc+BJC7Tbmhlpbazrvel+7QLW83+CfX7 enOiPspcYeVr+GmPlksIp5qMJwsdGvvzH2fJ0= Received: by 10.142.50.19 with SMTP id x19mr4741947wfx.204.1300851318370; Tue, 22 Mar 2011 20:35:18 -0700 (PDT) Received: from [192.168.15.65] (124-148-179-3.dyn.iinet.net.au [124.148.179.3]) by mx.google.com with ESMTPS id w11sm9485835wfh.6.2011.03.22.20.35.15 (version=SSLv3 cipher=OTHER); Tue, 22 Mar 2011 20:35:17 -0700 (PDT) Message-ID: <4D896AA2.1090808@swin.edu.au> Date: Wed, 23 Mar 2011 14:36:02 +1100 From: Mattia Rossi Organization: Swinburne University of Technology User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.2.15) Gecko/20110303 Thunderbird/3.1.9 MIME-Version: 1.0 To: Jeff Roberson References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: current@freebsd.org Subject: Re: HEADS UP: OFED stack merge tonight. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mrossi@swin.edu.au List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 04:01:09 -0000 On 21/03/11 18:36, Jeff Roberson wrote: [..] > I would not expect any instability in non ofed systems from this import. > Hi Jeff, I've tried to compile netstat, and it bails out immediately if I try to make obj: "/usr/src/usr.bin/netstat/Makefile", line 21: Malformed conditional (${MK_OFED} != "no") "/usr/src/usr.bin/netstat/Makefile", line 23: if-less endif make: fatal errors encountered -- cannot continue Mat From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 04:56:01 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A768106568E; Wed, 23 Mar 2011 04:56:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 355768FC0A; Wed, 23 Mar 2011 04:56:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N4u03b082856; Wed, 23 Mar 2011 00:56:00 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N4u0of082835; Wed, 23 Mar 2011 04:56:00 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 04:56:00 GMT Message-Id: <201103230456.p2N4u0of082835@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 04:56:01 -0000 TB --- 2011-03-23 03:05:27 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 03:05:27 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-23 03:05:27 - cleaning the object tree TB --- 2011-03-23 03:05:35 - cvsupping the source tree TB --- 2011-03-23 03:05:35 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-23 03:05:47 - building world TB --- 2011-03-23 03:05:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 03:05:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 03:05:47 - TARGET=ia64 TB --- 2011-03-23 03:05:47 - TARGET_ARCH=ia64 TB --- 2011-03-23 03:05:47 - TZ=UTC TB --- 2011-03-23 03:05:47 - __MAKE_CONF=/dev/null TB --- 2011-03-23 03:05:47 - cd /src TB --- 2011-03-23 03:05:47 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 03:05:47 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 04:31:09 UTC 2011 TB --- 2011-03-23 04:31:09 - generating LINT kernel config TB --- 2011-03-23 04:31:09 - cd /src/sys/ia64/conf TB --- 2011-03-23 04:31:09 - /usr/bin/make -B LINT TB --- 2011-03-23 04:31:09 - building LINT kernel TB --- 2011-03-23 04:31:09 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 04:31:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 04:31:09 - TARGET=ia64 TB --- 2011-03-23 04:31:09 - TARGET_ARCH=ia64 TB --- 2011-03-23 04:31:09 - TZ=UTC TB --- 2011-03-23 04:31:09 - __MAKE_CONF=/dev/null TB --- 2011-03-23 04:31:09 - cd /src TB --- 2011-03-23 04:31:09 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 04:31:09 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 04:55:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 04:55:59 - ERROR: failed to build lint kernel TB --- 2011-03-23 04:55:59 - 5392.32 user 872.36 system 6632.05 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 06:42:44 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AD46106567D; Wed, 23 Mar 2011 06:42:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2E0CE8FC0C; Wed, 23 Mar 2011 06:42:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N6ghGK044917; Wed, 23 Mar 2011 02:42:43 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N6ghsZ044813; Wed, 23 Mar 2011 06:42:43 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 06:42:43 GMT Message-Id: <201103230642.p2N6ghsZ044813@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 06:42:44 -0000 TB --- 2011-03-23 05:18:03 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 05:18:03 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-23 05:18:03 - cleaning the object tree TB --- 2011-03-23 05:18:12 - cvsupping the source tree TB --- 2011-03-23 05:18:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-23 05:19:11 - building world TB --- 2011-03-23 05:19:11 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 05:19:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 05:19:11 - TARGET=sparc64 TB --- 2011-03-23 05:19:11 - TARGET_ARCH=sparc64 TB --- 2011-03-23 05:19:11 - TZ=UTC TB --- 2011-03-23 05:19:11 - __MAKE_CONF=/dev/null TB --- 2011-03-23 05:19:11 - cd /src TB --- 2011-03-23 05:19:11 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 05:19:12 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 06:24:19 UTC 2011 TB --- 2011-03-23 06:24:19 - generating LINT kernel config TB --- 2011-03-23 06:24:19 - cd /src/sys/sparc64/conf TB --- 2011-03-23 06:24:19 - /usr/bin/make -B LINT TB --- 2011-03-23 06:24:19 - building LINT kernel TB --- 2011-03-23 06:24:19 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 06:24:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 06:24:19 - TARGET=sparc64 TB --- 2011-03-23 06:24:19 - TARGET_ARCH=sparc64 TB --- 2011-03-23 06:24:19 - TZ=UTC TB --- 2011-03-23 06:24:19 - __MAKE_CONF=/dev/null TB --- 2011-03-23 06:24:19 - cd /src TB --- 2011-03-23 06:24:19 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 06:24:19 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'mlx4_start_catas_poll': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: 'VM_MEMATTR_UNCACHED' undeclared (first use in this function) /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: (Each undeclared identifier is reported only once /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:127: error: for each function it appears in.) *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 06:42:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 06:42:42 - ERROR: failed to build lint kernel TB --- 2011-03-23 06:42:42 - 3866.23 user 766.30 system 5078.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 06:57:07 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F70F10656A3; Wed, 23 Mar 2011 06:57:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 22B018FC08; Wed, 23 Mar 2011 06:57:06 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N6v6gH036002; Wed, 23 Mar 2011 02:57:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N6v6PM035997; Wed, 23 Mar 2011 06:57:06 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 06:57:06 GMT Message-Id: <201103230657.p2N6v6PM035997@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 06:57:07 -0000 TB --- 2011-03-23 04:56:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 04:56:00 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-23 04:56:00 - cleaning the object tree TB --- 2011-03-23 04:56:10 - cvsupping the source tree TB --- 2011-03-23 04:56:10 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-23 04:56:25 - building world TB --- 2011-03-23 04:56:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 04:56:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 04:56:25 - TARGET=powerpc TB --- 2011-03-23 04:56:25 - TARGET_ARCH=powerpc TB --- 2011-03-23 04:56:25 - TZ=UTC TB --- 2011-03-23 04:56:25 - __MAKE_CONF=/dev/null TB --- 2011-03-23 04:56:25 - cd /src TB --- 2011-03-23 04:56:25 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 04:56:25 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 06:40:48 UTC 2011 TB --- 2011-03-23 06:40:48 - generating LINT kernel config TB --- 2011-03-23 06:40:48 - cd /src/sys/powerpc/conf TB --- 2011-03-23 06:40:48 - /usr/bin/make -B LINT TB --- 2011-03-23 06:40:48 - building LINT kernel TB --- 2011-03-23 06:40:48 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 06:40:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 06:40:48 - TARGET=powerpc TB --- 2011-03-23 06:40:48 - TARGET_ARCH=powerpc TB --- 2011-03-23 06:40:48 - TZ=UTC TB --- 2011-03-23 06:40:48 - __MAKE_CONF=/dev/null TB --- 2011-03-23 06:40:48 - cd /src TB --- 2011-03-23 06:40:48 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 06:40:48 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] In file included from /src/sys/modules/mlx4/../../ofed/include/asm/atomic.h:35, from /src/sys/modules/mlx4/../../ofed/include/linux/device.h:40, from /src/sys/modules/mlx4/../../ofed/include/linux/dma-mapping.h:32, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:38: /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_set': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:51: warning: passing argument 1 of 'atomic_store_rel_32' from incompatible pointer type /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h: In function 'atomic_long_read': /src/sys/modules/mlx4/../../ofed/include/asm/atomic-long.h:57: warning: passing argument 1 of 'atomic_load_acq_32' from incompatible pointer type *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 06:57:05 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 06:57:05 - ERROR: failed to build lint kernel TB --- 2011-03-23 06:57:05 - 5891.93 user 969.76 system 7265.29 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 07:05:47 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 866E11065689; Wed, 23 Mar 2011 07:05:47 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 59F258FC0C; Wed, 23 Mar 2011 07:05:47 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N75kwl051943; Wed, 23 Mar 2011 03:05:46 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N75kg7051942; Wed, 23 Mar 2011 07:05:46 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 07:05:46 GMT Message-Id: <201103230705.p2N75kg7051942@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 07:05:47 -0000 TB --- 2011-03-23 05:11:44 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 05:11:44 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-23 05:11:44 - cleaning the object tree TB --- 2011-03-23 05:11:57 - cvsupping the source tree TB --- 2011-03-23 05:11:57 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-23 05:12:23 - building world TB --- 2011-03-23 05:12:23 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 05:12:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 05:12:23 - TARGET=powerpc TB --- 2011-03-23 05:12:23 - TARGET_ARCH=powerpc64 TB --- 2011-03-23 05:12:23 - TZ=UTC TB --- 2011-03-23 05:12:23 - __MAKE_CONF=/dev/null TB --- 2011-03-23 05:12:23 - cd /src TB --- 2011-03-23 05:12:23 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 05:12:24 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Mar 23 06:49:01 UTC 2011 TB --- 2011-03-23 06:49:01 - generating LINT kernel config TB --- 2011-03-23 06:49:02 - cd /src/sys/powerpc/conf TB --- 2011-03-23 06:49:02 - /usr/bin/make -B LINT TB --- 2011-03-23 06:49:02 - building LINT kernel TB --- 2011-03-23 06:49:02 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 06:49:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 06:49:02 - TARGET=powerpc TB --- 2011-03-23 06:49:02 - TARGET_ARCH=powerpc64 TB --- 2011-03-23 06:49:02 - TZ=UTC TB --- 2011-03-23 06:49:02 - __MAKE_CONF=/dev/null TB --- 2011-03-23 06:49:02 - cd /src TB --- 2011-03-23 06:49:02 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 06:49:02 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] objcopy --strip-debug mlx.ko ===> mlx4 (all) cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c cc -O2 -pipe -DINET6 -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlx4/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlx4/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/powerpc.powerpc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mlongcall -fno-omit-frame-pointer -I/obj/powerpc.powerpc64/src/sys/LINT -fno-builtin -msoft-float -mno-altivec -mcall-aixdesc -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 -Wno-cast-qual -Wno-pointer-arith -fms-extensions -c /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c cc1: warnings being treated as errors /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c: In function 'dump_err_buf': /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: implicit declaration of function 'readl' /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/catas.c:58: warning: nested extern declaration of 'readl' *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 07:05:46 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 07:05:46 - ERROR: failed to build lint kernel TB --- 2011-03-23 07:05:46 - 5325.89 user 1077.65 system 6841.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 07:08:59 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CDCF106568B; Wed, 23 Mar 2011 07:08:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id F314D8FC1B; Wed, 23 Mar 2011 07:08:58 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N78wvp055943; Wed, 23 Mar 2011 03:08:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N78wqi055942; Wed, 23 Mar 2011 07:08:58 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 07:08:58 GMT Message-Id: <201103230708.p2N78wqi055942@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 07:08:59 -0000 TB --- 2011-03-23 05:47:53 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 05:47:53 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-23 05:47:53 - cleaning the object tree TB --- 2011-03-23 05:48:03 - cvsupping the source tree TB --- 2011-03-23 05:48:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-23 05:48:16 - building world TB --- 2011-03-23 05:48:16 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 05:48:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 05:48:16 - TARGET=sun4v TB --- 2011-03-23 05:48:16 - TARGET_ARCH=sparc64 TB --- 2011-03-23 05:48:16 - TZ=UTC TB --- 2011-03-23 05:48:16 - __MAKE_CONF=/dev/null TB --- 2011-03-23 05:48:16 - cd /src TB --- 2011-03-23 05:48:16 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 05:48:16 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 06:52:31 UTC 2011 TB --- 2011-03-23 06:52:31 - generating LINT kernel config TB --- 2011-03-23 06:52:31 - cd /src/sys/sun4v/conf TB --- 2011-03-23 06:52:31 - /usr/bin/make -B LINT TB --- 2011-03-23 06:52:31 - building LINT kernel TB --- 2011-03-23 06:52:31 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 06:52:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 06:52:31 - TARGET=sun4v TB --- 2011-03-23 06:52:31 - TARGET_ARCH=sparc64 TB --- 2011-03-23 06:52:31 - TZ=UTC TB --- 2011-03-23 06:52:31 - __MAKE_CONF=/dev/null TB --- 2011-03-23 06:52:31 - cd /src TB --- 2011-03-23 06:52:31 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 06:52:31 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/cpu.h:71:1: error: "unlikely" redefined In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 07:08:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 07:08:58 - ERROR: failed to build lint kernel TB --- 2011-03-23 07:08:58 - 3828.70 user 746.21 system 4864.72 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 07:10:47 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE7A8106567A for ; Wed, 23 Mar 2011 07:10:46 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 69C0E8FC1E for ; Wed, 23 Mar 2011 07:10:46 +0000 (UTC) Received: by bwz12 with SMTP id 12so7470541bwz.13 for ; Wed, 23 Mar 2011 00:10:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=mhhTvjIc014cLbkRx9XrxvC3811vcZ2c3ijSXYbUzGc=; b=G6MmNDnxIJES67fhvqadpcHOVGvB0t2enUWumPHNDhfbfAD8a//rkHCaNTmEj0RSbt VwyWVE5mKvtTC+4lJzc8oeSqvs4jEAlLifjU6q4Bvd1JnNxbK7fchhIN2Adh6IbJxY2F VPbpkkI/n6Whsoz39062l2yWn83z0vWZ8a5w8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=n7fouWEIIDkk3eWR94iUES/we90XSZS4S1zEsgFSET2jUnb1T4NhSaiI0aCR/QcZ7l 4AxUUftFe/hYCkfL4xIoDu6MhftKSVdxAnWqtk57Qoc4674tUDiCYDH0gXMqrqihqQTJ jDm96yNHDO1BQiI1z8F3FoZMTbjjgMwyCttlk= Received: by 10.204.20.136 with SMTP id f8mr2893897bkb.174.1300864244623; Wed, 23 Mar 2011 00:10:44 -0700 (PDT) Received: from Melon.malikania.fr (wifi-osiris-sec-182-175.u-strasbg.fr [130.79.182.175]) by mx.google.com with ESMTPS id q18sm5678286bka.3.2011.03.23.00.10.42 (version=SSLv3 cipher=OTHER); Wed, 23 Mar 2011 00:10:43 -0700 (PDT) Message-ID: <4D899CA9.8060207@gmail.com> Date: Wed, 23 Mar 2011 08:09:29 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110306 Thunderbird/3.1.9 MIME-Version: 1.0 To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Fwd: snd_hda, codec attaching randomly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 07:10:47 -0000 Hello, I've setup a brand new computer from scratch, it has two HDMI output (via the on board and via the ati graphic card) with one codec for the main board. Usually I have these pcm : pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac1 pcm2: at cad 0 nid 1 on hdac1 pcm3: at cad 0 nid 1 on hdac1 pcm4: at cad 3 nid 1 on hdac1 But sometime when I boot the pcm4 disappear, with a lot of : hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=0 index=0 entries=17 found=0 res=0x00000000 hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=1 index=0 entries=17 found=1 res=0x00000000 hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=2 index=0 entries=17 found=2 res=0x00000000 hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=3 index=0 entries=17 found=3 res=0x00000000 [.. snip ..] Here you can see the normal dmesg file : http://files.malikania.fr/normal.txt And here when the pcm disappear : http://files.malikania.fr/notnormal.txt A simple diff from the files show some weird things: diff -ub normal.txt notnormal.txt --- normal.txt 2011-03-10 08:06:14.000000000 +0100 +++ notnormal.txt 2011-03-10 08:06:18.000000000 +0100 @@ -116,24 +116,90 @@ hdac0: HDA Codec #0: ATI R6xx HDMI pcm0: at cad 0 nid 1 on hdac0 hdac1: HDA Codec #0: Realtek ALC888 -hdac1: HDA Codec #3: Intel G45 HDMI +hdac1: HDA Codec #3: Intel Q57 HDMI +hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=0 index=0 entries=17 found=0 res=0x00000000 +hdac1: hdac_widget_connection_parse: nid=2 WARNING: zero cnid entnum=4 j=1 index=0 entries=17 found=1 res=0x00000000 [... message repeated a lot of time ...] pcm1: at cad 0 nid 1 on hdac1 pcm2: at cad 0 nid 1 on hdac1 pcm3: at cad 0 nid 1 on hdac1 -pcm4: at cad 3 nid 1 on hdac1 Why does the HDMI codec is renamed to Q57? I didn't tweak snd_hda(4) much, I only added the following in my /boot/devices.hints to get a proper jack-sense on my front panel: hint.hdac.1.cad0.nid27.config="as=1 seq=15" Cheers, -- David Demelier From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 08:22:33 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FFC010656D5 for ; Wed, 23 Mar 2011 08:22:33 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: from mail-yi0-f54.google.com (mail-yi0-f54.google.com [209.85.218.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4F5388FC18 for ; Wed, 23 Mar 2011 08:22:32 +0000 (UTC) Received: by yie12 with SMTP id 12so3775252yie.13 for ; Wed, 23 Mar 2011 01:22:32 -0700 (PDT) Received: by 10.236.31.228 with SMTP id m64mr8504272yha.95.1300868551018; Wed, 23 Mar 2011 01:22:31 -0700 (PDT) Received: from [10.0.1.198] ([72.253.42.56]) by mx.google.com with ESMTPS id p59sm1970871yhm.46.2011.03.23.01.22.27 (version=SSLv3 cipher=OTHER); Wed, 23 Mar 2011 01:22:28 -0700 (PDT) Date: Tue, 22 Mar 2011 22:25:59 -1000 (HST) From: Jeff Roberson X-X-Sender: jroberson@desktop To: FreeBSD Tinderbox In-Reply-To: <201103230708.p2N78wqi055942@freebsd-current.sentex.ca> Message-ID: References: <201103230708.p2N78wqi055942@freebsd-current.sentex.ca> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: current@freebsd.org, sparc64@freebsd.org Subject: Re: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 08:22:33 -0000 I did not notice this was still failing. I didn't realize this make universe would pull in my modules. I will fix this now. Thanks, Jeff On Wed, 23 Mar 2011, FreeBSD Tinderbox wrote: > TB --- 2011-03-23 05:47:53 - tinderbox 2.6 running on freebsd-current.sentex.ca > TB --- 2011-03-23 05:47:53 - starting HEAD tinderbox run for sparc64/sun4v > TB --- 2011-03-23 05:47:53 - cleaning the object tree > TB --- 2011-03-23 05:48:03 - cvsupping the source tree > TB --- 2011-03-23 05:48:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile > TB --- 2011-03-23 05:48:16 - building world > TB --- 2011-03-23 05:48:16 - MAKEOBJDIRPREFIX=/obj > TB --- 2011-03-23 05:48:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2011-03-23 05:48:16 - TARGET=sun4v > TB --- 2011-03-23 05:48:16 - TARGET_ARCH=sparc64 > TB --- 2011-03-23 05:48:16 - TZ=UTC > TB --- 2011-03-23 05:48:16 - __MAKE_CONF=/dev/null > TB --- 2011-03-23 05:48:16 - cd /src > TB --- 2011-03-23 05:48:16 - /usr/bin/make -B buildworld >>>> World build started on Wed Mar 23 05:48:16 UTC 2011 >>>> Rebuilding the temporary build tree >>>> stage 1.1: legacy release compatibility shims >>>> stage 1.2: bootstrap tools >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3: cross tools >>>> stage 4.1: building includes >>>> stage 4.2: building libraries >>>> stage 4.3: make dependencies >>>> stage 4.4: building everything >>>> World build completed on Wed Mar 23 06:52:31 UTC 2011 > TB --- 2011-03-23 06:52:31 - generating LINT kernel config > TB --- 2011-03-23 06:52:31 - cd /src/sys/sun4v/conf > TB --- 2011-03-23 06:52:31 - /usr/bin/make -B LINT > TB --- 2011-03-23 06:52:31 - building LINT kernel > TB --- 2011-03-23 06:52:31 - MAKEOBJDIRPREFIX=/obj > TB --- 2011-03-23 06:52:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2011-03-23 06:52:31 - TARGET=sun4v > TB --- 2011-03-23 06:52:31 - TARGET_ARCH=sparc64 > TB --- 2011-03-23 06:52:31 - TZ=UTC > TB --- 2011-03-23 06:52:31 - __MAKE_CONF=/dev/null > TB --- 2011-03-23 06:52:31 - cd /src > TB --- 2011-03-23 06:52:31 - /usr/bin/make -B buildkernel KERNCONF=LINT >>>> Kernel build for LINT started on Wed Mar 23 06:52:31 UTC 2011 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything > [...] > from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, > from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, > from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: > ./machine/cpu.h:71:1: error: "unlikely" redefined > In file included from /src/sys/modules/mlx4/../../ofed/include/linux/types.h:33, > from /src/sys/modules/mlx4/../../ofed/include/linux/slab.h:36, > from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:35: > /src/sys/modules/mlx4/../../ofed/include/linux/compiler.h:60:1: error: this is the location of the previous definition > *** Error code 1 > > Stop in /src/sys/modules/mlx4. > *** Error code 1 > > Stop in /src/sys/modules. > *** Error code 1 > > Stop in /obj/sun4v.sparc64/src/sys/LINT. > *** Error code 1 > > Stop in /src. > *** Error code 1 > > Stop in /src. > TB --- 2011-03-23 07:08:58 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2011-03-23 07:08:58 - ERROR: failed to build lint kernel > TB --- 2011-03-23 07:08:58 - 3828.70 user 746.21 system 4864.72 real > > > http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 08:29:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15022106567C for ; Wed, 23 Mar 2011 08:29:02 +0000 (UTC) (envelope-from jroberson@jroberson.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id CD6118FC0C for ; Wed, 23 Mar 2011 08:29:01 +0000 (UTC) Received: by yxl31 with SMTP id 31so3782786yxl.13 for ; Wed, 23 Mar 2011 01:29:01 -0700 (PDT) Received: by 10.236.183.229 with SMTP id q65mr8452510yhm.122.1300868940342; Wed, 23 Mar 2011 01:29:00 -0700 (PDT) Received: from [10.0.1.198] ([72.253.42.56]) by mx.google.com with ESMTPS id p41sm2351808yhm.80.2011.03.23.01.28.58 (version=SSLv3 cipher=OTHER); Wed, 23 Mar 2011 01:28:59 -0700 (PDT) Date: Tue, 22 Mar 2011 22:32:30 -1000 (HST) From: Jeff Roberson X-X-Sender: jroberson@desktop To: mrossi@swin.edu.au In-Reply-To: <4D896AA2.1090808@swin.edu.au> Message-ID: References: <4D896AA2.1090808@swin.edu.au> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: current@freebsd.org Subject: Re: HEADS UP: OFED stack merge tonight. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 08:29:02 -0000 On Wed, 23 Mar 2011, Mattia Rossi wrote: > On 21/03/11 18:36, Jeff Roberson wrote: > [..] >> I would not expect any instability in non ofed systems from this import. >> > > Hi Jeff, > > I've tried to compile netstat, and it bails out immediately if I try to make > obj: > > "/usr/src/usr.bin/netstat/Makefile", line 21: Malformed conditional > (${MK_OFED} != "no") > "/usr/src/usr.bin/netstat/Makefile", line 23: if-less endif > make: fatal errors encountered -- cannot continue It looks to me like you need to upgrade your /usr/share/mk files from a buildworld. MK_OFED is only defined if bsd.own.mk is updated. Thanks, Jeff > > Mat > From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 09:57:14 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 730681065680; Wed, 23 Mar 2011 09:57:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 30E308FC08; Wed, 23 Mar 2011 09:57:13 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2N9vDu7060266; Wed, 23 Mar 2011 05:57:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2N9vDuT060188; Wed, 23 Mar 2011 09:57:13 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 23 Mar 2011 09:57:13 GMT Message-Id: <201103230957.p2N9vDuT060188@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 09:57:14 -0000 TB --- 2011-03-23 08:06:29 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-23 08:06:29 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-23 08:06:29 - cleaning the object tree TB --- 2011-03-23 08:06:40 - cvsupping the source tree TB --- 2011-03-23 08:06:40 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-23 08:07:05 - building world TB --- 2011-03-23 08:07:05 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 08:07:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 08:07:05 - TARGET=ia64 TB --- 2011-03-23 08:07:05 - TARGET_ARCH=ia64 TB --- 2011-03-23 08:07:05 - TZ=UTC TB --- 2011-03-23 08:07:05 - __MAKE_CONF=/dev/null TB --- 2011-03-23 08:07:05 - cd /src TB --- 2011-03-23 08:07:05 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 23 08:07:07 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Mar 23 09:32:35 UTC 2011 TB --- 2011-03-23 09:32:35 - generating LINT kernel config TB --- 2011-03-23 09:32:35 - cd /src/sys/ia64/conf TB --- 2011-03-23 09:32:35 - /usr/bin/make -B LINT TB --- 2011-03-23 09:32:35 - building LINT kernel TB --- 2011-03-23 09:32:35 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-23 09:32:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-23 09:32:35 - TARGET=ia64 TB --- 2011-03-23 09:32:35 - TARGET_ARCH=ia64 TB --- 2011-03-23 09:32:35 - TZ=UTC TB --- 2011-03-23 09:32:35 - __MAKE_CONF=/dev/null TB --- 2011-03-23 09:32:35 - cd /src TB --- 2011-03-23 09:32:35 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Mar 23 09:32:35 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] from /src/sys/modules/mlx4/../../ofed/include/linux/sched.h:33, from /src/sys/modules/mlx4/../../ofed/include/linux/kthread.h:39, from /src/sys/modules/mlx4/../../ofed/include/linux/kernel.h:41, from /src/sys/modules/mlx4/../../ofed/include/linux/spinlock.h:37, from /src/sys/modules/mlx4/../../ofed/include/linux/mm.h:31, from /src/sys/modules/mlx4/../../ofed/drivers/net/mlx4/alloc.c:36: ./machine/runq.h:58: error: conflicting types for '__ffsl' /src/sys/modules/mlx4/../../ofed/include/linux/bitops.h:53: error: previous definition of '__ffsl' was here *** Error code 1 Stop in /src/sys/modules/mlx4. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-23 09:57:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-23 09:57:12 - ERROR: failed to build lint kernel TB --- 2011-03-23 09:57:12 - 5398.13 user 855.00 system 6643.18 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 10:24:03 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DACCE106566C for ; Wed, 23 Mar 2011 10:24:03 +0000 (UTC) (envelope-from freebsd-current@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 99F5C8FC19 for ; Wed, 23 Mar 2011 10:24:03 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Q2LEQ-0004qM-6c for freebsd-current@freebsd.org; Wed, 23 Mar 2011 11:24:02 +0100 Received: from gw1.masterhost.ru ([87.242.97.4]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Mar 2011 11:24:02 +0100 Received: from citrin by gw1.masterhost.ru with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Mar 2011 11:24:02 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-current@freebsd.org From: Anton Yuzhaninov Date: Wed, 23 Mar 2011 10:23:50 +0000 (UTC) Organization: Vega Lines: 25 Sender: Anton Yuzhaninov Message-ID: X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: gw1.masterhost.ru User-Agent: tin/1.8.3-20070201 ("Scotasay") (UNIX) (FreeBSD/9.0-CURRENT (i386)) Subject: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 10:24:03 -0000 On this page: http://wiki.freebsd.org/DTrace written, that for 9-current is sufficient to rebild kernel with this options: options DDB_CTF options KDTRACE_HOOKS makeoptions DEBUG=-g makeoptions WITH_CTF=1 I have rebuild kernel with this options, but: $ ctfdump -l /boot/kernel/kernel /boot/kernel/kernel does not contain .SUNW_ctf data Is instruction in wiki outdated? full build log: https://hius.citrin.ru/a/2011-03-23-buildkernel.log FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r219710M -- WBR, Anton Yuzhaninov From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 10:52:31 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F07B11065675 for ; Wed, 23 Mar 2011 10:52:31 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (muon.cran.org.uk [IPv6:2a01:348:0:15:5d59:5c40:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 843B68FC0C for ; Wed, 23 Mar 2011 10:52:31 +0000 (UTC) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id 4E39DE7777; Wed, 23 Mar 2011 10:52:30 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cran.org.uk; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=mail; bh=1wWqlEEMotjs or3QavwHkgMjQ/g=; b=o0q3dfWFYygf3PdzgCTq7OLdFLYVQXtdNljj/rKMk638 hPmt/98gcgIElrJsv8rN8U0XdGkjCI4WDFfxSBin/IcdtYuRjnHzVGabMaQk9AQE 84QvXRxvdvFsh6XmlCR47uae6zwO92wKIRTtRZt8pDrIghGGRH/27FGwS+RHZIY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=cran.org.uk; h=date:from:to :cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; q=dns; s=mail; b=bbfYxN veEBKS4JKTyrr4TbaDDKD3XXNw7B9X8ksZLXsZuD3bxD96/00DEr64fWyLbiYVPM WGbHni2OLiw4bUM31L2+DqGx7AezIxgXh5kZovlAuDGFoXJm8CCpzLhYK50GWsnV 1Opfu+xBwHYvG5/lm0uSRRRVdhiSYytY0zc/E= Received: from unknown (client-86-31-236-253.oxfd.adsl.virginmedia.com [86.31.236.253]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA id 048A1E7774; Wed, 23 Mar 2011 10:52:29 +0000 (GMT) Date: Wed, 23 Mar 2011 10:52:15 +0000 From: Bruce Cran To: Anton Yuzhaninov Message-ID: <20110323105215.00003a63@unknown> In-Reply-To: References: X-Mailer: Claws Mail 3.7.8cvs9 (GTK+ 2.16.6; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 10:52:32 -0000 On Wed, 23 Mar 2011 10:23:50 +0000 (UTC) Anton Yuzhaninov wrote: > options DDB_CTF > options KDTRACE_HOOKS > makeoptions DEBUG=-g > makeoptions WITH_CTF=1 > > I have rebuild kernel with this options, but: > $ ctfdump -l /boot/kernel/kernel > /boot/kernel/kernel does not contain .SUNW_ctf data > > Is instruction in wiki outdated? I think you need to specify WITH_CTF=1 on the commandline, e.g. make WITH_CTF=1 buildkernel -- Bruce Cran From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 11:55:15 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46D291065675 for ; Wed, 23 Mar 2011 11:55:15 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 068B98FC22 for ; Wed, 23 Mar 2011 11:55:13 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA06911; Wed, 23 Mar 2011 13:55:04 +0200 (EET) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Q2MeV-000EOk-RO; Wed, 23 Mar 2011 13:55:03 +0200 Message-ID: <4D89DF97.9040406@freebsd.org> Date: Wed, 23 Mar 2011 13:55:03 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110308 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Anton Yuzhaninov References: In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 11:55:15 -0000 on 23/03/2011 12:23 Anton Yuzhaninov said the following: > On this page: > http://wiki.freebsd.org/DTrace > > written, that for 9-current is sufficient to rebild kernel with this > options: > > options DDB_CTF > options KDTRACE_HOOKS > makeoptions DEBUG=-g > makeoptions WITH_CTF=1 Also for amd64: options KDTRACE_FRAME > > I have rebuild kernel with this options, but: > $ ctfdump -l /boot/kernel/kernel > /boot/kernel/kernel does not contain .SUNW_ctf data > > Is instruction in wiki outdated? The instructions work for me here. > full build log: > https://hius.citrin.ru/a/2011-03-23-buildkernel.log > > FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r219710M > -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 12:08:33 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 396E1106568B for ; Wed, 23 Mar 2011 12:08:33 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 8359F8FC16 for ; Wed, 23 Mar 2011 12:08:32 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA07075; Wed, 23 Mar 2011 14:08:23 +0200 (EET) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Q2MrP-000EPJ-3k; Wed, 23 Mar 2011 14:08:23 +0200 Message-ID: <4D89E2B6.4010205@freebsd.org> Date: Wed, 23 Mar 2011 14:08:22 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110308 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Anton Yuzhaninov References: <4D89DF97.9040406@freebsd.org> In-Reply-To: <4D89DF97.9040406@freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 12:08:33 -0000 on 23/03/2011 13:55 Andriy Gapon said the following: > on 23/03/2011 12:23 Anton Yuzhaninov said the following: >> On this page: >> http://wiki.freebsd.org/DTrace >> >> written, that for 9-current is sufficient to rebild kernel with this >> options: >> >> options DDB_CTF >> options KDTRACE_HOOKS >> makeoptions DEBUG=-g >> makeoptions WITH_CTF=1 > > Also for amd64: > options KDTRACE_FRAME > >> >> I have rebuild kernel with this options, but: >> $ ctfdump -l /boot/kernel/kernel >> /boot/kernel/kernel does not contain .SUNW_ctf data >> >> Is instruction in wiki outdated? > > The instructions work for me here. > >> full build log: >> https://hius.citrin.ru/a/2011-03-23-buildkernel.log >> >> FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r219710M Just an idea - do you have WITHOUT_CDDL in your src.conf or something like that? -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 12:33:30 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93AE1106564A for ; Wed, 23 Mar 2011 12:33:30 +0000 (UTC) (envelope-from freebsd-current@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 4DC988FC13 for ; Wed, 23 Mar 2011 12:33:30 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Q2NFg-0002PD-Nz for freebsd-current@freebsd.org; Wed, 23 Mar 2011 13:33:28 +0100 Received: from gw1.masterhost.ru ([87.242.97.4]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Mar 2011 13:33:28 +0100 Received: from citrin by gw1.masterhost.ru with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 23 Mar 2011 13:33:28 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-current@freebsd.org From: Anton Yuzhaninov Date: Wed, 23 Mar 2011 12:33:14 +0000 (UTC) Organization: Vega Lines: 14 Sender: Anton Yuzhaninov Message-ID: References: <4D89DF97.9040406@freebsd.org> <4D89E2B6.4010205@freebsd.org> X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: gw1.masterhost.ru X-Comment-To: Andriy Gapon User-Agent: tin/1.8.3-20070201 ("Scotasay") (UNIX) (FreeBSD/9.0-CURRENT (i386)) Subject: Re: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 12:33:30 -0000 On Wed, 23 Mar 2011 14:08:22 +0200, Andriy Gapon wrote: >>> I have rebuild kernel with this options, but: >>> $ ctfdump -l /boot/kernel/kernel >>> /boot/kernel/kernel does not contain .SUNW_ctf data >>> >>> FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r219710M AG> AG> Just an idea - do you have WITHOUT_CDDL in your src.conf or something like that? Thsnks, I forgot to removed WITHOUT_CDDL from src.conf -- WBR, Anton Yuzhaninov From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 13:48:07 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 364D61065672 for ; Wed, 23 Mar 2011 13:48:07 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 82BA78FC24 for ; Wed, 23 Mar 2011 13:48:06 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id PAA08859; Wed, 23 Mar 2011 15:48:03 +0200 (EET) (envelope-from avg@freebsd.org) Message-ID: <4D89FA12.9070106@freebsd.org> Date: Wed, 23 Mar 2011 15:48:02 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110309 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Bruce Cran References: <20110323105215.00003a63@unknown> In-Reply-To: <20110323105215.00003a63@unknown> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: how to build kernel with CTF data for DTrace? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 13:48:07 -0000 on 23/03/2011 12:52 Bruce Cran said the following: > On Wed, 23 Mar 2011 10:23:50 +0000 (UTC) > Anton Yuzhaninov wrote: > >> options DDB_CTF >> options KDTRACE_HOOKS >> makeoptions DEBUG=-g >> makeoptions WITH_CTF=1 >> >> I have rebuild kernel with this options, but: >> $ ctfdump -l /boot/kernel/kernel >> /boot/kernel/kernel does not contain .SUNW_ctf data >> >> Is instruction in wiki outdated? > > I think you need to specify WITH_CTF=1 on the commandline, e.g. > > make WITH_CTF=1 buildkernel The makeoptions line above should be completely equivalent to your suggestion for kernel builds. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Wed Mar 23 18:24:50 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D104106564A; Wed, 23 Mar 2011 18:24:50 +0000 (UTC) (envelope-from xcllnt@mac.com) Received: from asmtpout020.mac.com (asmtpout020.mac.com [17.148.16.95]) by mx1.freebsd.org (Postfix) with ESMTP id E42248FC0A; Wed, 23 Mar 2011 18:24:49 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from sa-nc-it-213.static.jnpr.net (natint3.juniper.net [66.129.224.36]) by asmtp020.mac.com (Oracle Communications Messaging Exchange Server 7u4-20.01 64bit (built Nov 21 2010)) with ESMTPSA id <0LII006ZFTOCJ870@asmtp020.mac.com>; Wed, 23 Mar 2011 10:24:14 -0700 (PDT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2011-03-23_08:2011-03-23, 2011-03-23, 1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=2 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1012030000 definitions=main-1103230086 From: Marcel Moolenaar In-reply-to: Date: Wed, 23 Mar 2011 10:24:12 -0700 Message-id: <7D92174C-B855-46F0-9720-4D2C2B83CC25@mac.com> References: <201103230708.p2N78wqi055942@freebsd-current.sentex.ca> To: Jeff Roberson X-Mailer: Apple Mail (2.1084) Cc: sparc64@freebsd.org, FreeBSD Tinderbox , current@freebsd.org Subject: Re: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Mar 2011 18:24:50 -0000 On Mar 23, 2011, at 1:25 AM, Jeff Roberson wrote: > I did not notice this was still failing. I didn't realize this make universe would pull in my modules. I will fix this now. Thanks! powerpc and ia64 have been failing since the ofed commit as well. FYI, -- Marcel Moolenaar xcllnt@mac.com From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 00:52:21 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AD86106566B for ; Thu, 24 Mar 2011 00:52:21 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from darklight.org.ru (darklight.org.ru [IPv6:2001:470:28:4ba::1]) by mx1.freebsd.org (Postfix) with ESMTP id B67CE8FC15 for ; Thu, 24 Mar 2011 00:52:20 +0000 (UTC) Received: from darklight.org.ru (yuri@darklight.org.ru [IPv6:::1]) by darklight.org.ru (8.14.4/8.14.4) with ESMTP id p2O0qIMr035222 for ; Thu, 24 Mar 2011 03:52:18 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.org.ru (8.14.4/8.14.4/Submit) id p2O0qIik035221 for freebsd-current@freebsd.org; Thu, 24 Mar 2011 03:52:18 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) X-Authentication-Warning: darklight.org.ru: yuri set sender to yuri.pankov@gmail.com using -f Date: Thu, 24 Mar 2011 03:52:18 +0300 From: Yuri Pankov To: freebsd-current@freebsd.org Message-ID: <20110324005218.GA3074@darklight.org.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Subject: clang'ed buildworld is failing with -O0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 00:52:21 -0000 Hi, I've recently tried to buildworld with clang using DEBUG_FLAGS=-g -O0 (as clang(1) specifies that -g is most useful with -O0). Short version: clang -O2 -pipe -I. -I/data/src/freebsd/base/head/usr.bin/xlint/lint1 -I/data/src/freebsd/base/head/usr.bin/xlint/lint1/../arch/amd64 -I/data/src/freebsd/base/head/usr.bin/xlint/lint1/../common -g -O0 -std=gnu99 -I/usr/obj/data/src/freebsd/base/head/tmp/legacy/usr/include -static -L/usr/obj/data/src/freebsd/base/head/tmp/legacy/usr/lib -o lint1 cgram.o scan.o mem1.o mem.o err.o main1.o decl.o tree.o func.o init.o emit.o emit1.o inittyp.o -ll -lm -legacy clang: warning: argument unused during compilation: '-g' clang: warning: argument unused during compilation: '-std=gnu99' /usr/lib/libc.a(isnan.o): In function `__isnanf': /data/src/freebsd/base/head/lib/libc/gen/isnan.c:52: multiple definition of `__isnanf' /usr/lib/libm.a(s_isnan.o):/data/src/freebsd/base/head/lib/msun/src/s_isnan.c:47: first defined here clang: error: linker command failed with exit code 1 (use -v to see invocation) Full build log (if it's useful, ~5MB): http://darklight.org.ru/misc/buildworld-clang-O0.txt Any hints on what I'm doing wrong? TIA, Yuri From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 04:04:09 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2F961065670; Thu, 24 Mar 2011 04:04:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A5B518FC13; Thu, 24 Mar 2011 04:04:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O4483i045666; Thu, 24 Mar 2011 00:04:08 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O448tO045426; Thu, 24 Mar 2011 04:04:08 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 04:04:08 GMT Message-Id: <201103240404.p2O448tO045426@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 04:04:09 -0000 TB --- 2011-03-24 02:54:25 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 02:54:25 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-24 02:54:25 - cleaning the object tree TB --- 2011-03-24 02:54:38 - cvsupping the source tree TB --- 2011-03-24 02:54:38 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-24 02:54:52 - building world TB --- 2011-03-24 02:54:52 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 02:54:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 02:54:52 - TARGET=sparc64 TB --- 2011-03-24 02:54:52 - TARGET_ARCH=sparc64 TB --- 2011-03-24 02:54:52 - TZ=UTC TB --- 2011-03-24 02:54:52 - __MAKE_CONF=/dev/null TB --- 2011-03-24 02:54:52 - cd /src TB --- 2011-03-24 02:54:52 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 02:54:53 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 03:59:38 UTC 2011 TB --- 2011-03-24 03:59:38 - generating LINT kernel config TB --- 2011-03-24 03:59:38 - cd /src/sys/sparc64/conf TB --- 2011-03-24 03:59:38 - /usr/bin/make -B LINT TB --- 2011-03-24 03:59:38 - building LINT kernel TB --- 2011-03-24 03:59:38 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 03:59:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 03:59:38 - TARGET=sparc64 TB --- 2011-03-24 03:59:38 - TARGET_ARCH=sparc64 TB --- 2011-03-24 03:59:38 - TZ=UTC TB --- 2011-03-24 03:59:38 - __MAKE_CONF=/dev/null TB --- 2011-03-24 03:59:38 - cd /src TB --- 2011-03-24 03:59:38 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 03:59:38 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -Werror /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 04:04:08 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 04:04:08 - ERROR: failed to build lint kernel TB --- 2011-03-24 04:04:08 - 3139.88 user 692.10 system 4182.86 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 04:20:16 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6215106564A; Thu, 24 Mar 2011 04:20:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 89A768FC12; Thu, 24 Mar 2011 04:20:16 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O4KFxQ051710; Thu, 24 Mar 2011 00:20:15 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O4KFW2051709; Thu, 24 Mar 2011 04:20:15 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 04:20:15 GMT Message-Id: <201103240420.p2O4KFW2051709@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 04:20:16 -0000 TB --- 2011-03-24 03:12:13 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 03:12:13 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-24 03:12:13 - cleaning the object tree TB --- 2011-03-24 03:12:23 - cvsupping the source tree TB --- 2011-03-24 03:12:23 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-24 03:12:36 - building world TB --- 2011-03-24 03:12:36 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 03:12:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 03:12:36 - TARGET=sun4v TB --- 2011-03-24 03:12:36 - TARGET_ARCH=sparc64 TB --- 2011-03-24 03:12:36 - TZ=UTC TB --- 2011-03-24 03:12:36 - __MAKE_CONF=/dev/null TB --- 2011-03-24 03:12:36 - cd /src TB --- 2011-03-24 03:12:36 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 03:12:37 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 04:16:26 UTC 2011 TB --- 2011-03-24 04:16:26 - generating LINT kernel config TB --- 2011-03-24 04:16:26 - cd /src/sys/sun4v/conf TB --- 2011-03-24 04:16:26 - /usr/bin/make -B LINT TB --- 2011-03-24 04:16:26 - building LINT kernel TB --- 2011-03-24 04:16:26 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:16:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:16:26 - TARGET=sun4v TB --- 2011-03-24 04:16:26 - TARGET_ARCH=sparc64 TB --- 2011-03-24 04:16:26 - TZ=UTC TB --- 2011-03-24 04:16:26 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:16:26 - cd /src TB --- 2011-03-24 04:16:26 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 04:16:26 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -Werror /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 04:20:15 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 04:20:15 - ERROR: failed to build lint kernel TB --- 2011-03-24 04:20:15 - 3128.02 user 685.31 system 4082.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 04:28:32 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98D91106566B; Thu, 24 Mar 2011 04:28:32 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 6B74C8FC0C; Thu, 24 Mar 2011 04:28:32 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O4SVd3006566; Thu, 24 Mar 2011 00:28:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O4SVeV006565; Thu, 24 Mar 2011 04:28:31 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 04:28:31 GMT Message-Id: <201103240428.p2O4SVeV006565@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 04:28:32 -0000 TB --- 2011-03-24 02:49:35 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 02:49:35 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-24 02:49:35 - cleaning the object tree TB --- 2011-03-24 02:49:49 - cvsupping the source tree TB --- 2011-03-24 02:49:49 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-24 02:50:15 - building world TB --- 2011-03-24 02:50:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 02:50:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 02:50:15 - TARGET=powerpc TB --- 2011-03-24 02:50:15 - TARGET_ARCH=powerpc64 TB --- 2011-03-24 02:50:15 - TZ=UTC TB --- 2011-03-24 02:50:15 - __MAKE_CONF=/dev/null TB --- 2011-03-24 02:50:15 - cd /src TB --- 2011-03-24 02:50:15 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 02:50:15 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Thu Mar 24 04:24:44 UTC 2011 TB --- 2011-03-24 04:24:44 - generating LINT kernel config TB --- 2011-03-24 04:24:44 - cd /src/sys/powerpc/conf TB --- 2011-03-24 04:24:44 - /usr/bin/make -B LINT TB --- 2011-03-24 04:24:44 - building LINT kernel TB --- 2011-03-24 04:24:44 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:24:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:24:44 - TARGET=powerpc TB --- 2011-03-24 04:24:44 - TARGET_ARCH=powerpc64 TB --- 2011-03-24 04:24:44 - TZ=UTC TB --- 2011-03-24 04:24:44 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:24:44 - cd /src TB --- 2011-03-24 04:24:44 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 04:24:44 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 04:28:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 04:28:31 - ERROR: failed to build lint kernel TB --- 2011-03-24 04:28:31 - 4596.40 user 1013.32 system 5935.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 04:28:37 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42BBD106566C; Thu, 24 Mar 2011 04:28:37 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 167098FC13; Thu, 24 Mar 2011 04:28:36 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O4Sa2n006611; Thu, 24 Mar 2011 00:28:36 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O4Saec006610; Thu, 24 Mar 2011 04:28:36 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 04:28:36 GMT Message-Id: <201103240428.p2O4Saec006610@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 04:28:37 -0000 TB --- 2011-03-24 02:41:46 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 02:41:46 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-24 02:41:46 - cleaning the object tree TB --- 2011-03-24 02:42:01 - cvsupping the source tree TB --- 2011-03-24 02:42:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-24 02:42:17 - building world TB --- 2011-03-24 02:42:17 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 02:42:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 02:42:17 - TARGET=powerpc TB --- 2011-03-24 02:42:17 - TARGET_ARCH=powerpc TB --- 2011-03-24 02:42:17 - TZ=UTC TB --- 2011-03-24 02:42:17 - __MAKE_CONF=/dev/null TB --- 2011-03-24 02:42:17 - cd /src TB --- 2011-03-24 02:42:17 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 02:42:18 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 04:24:57 UTC 2011 TB --- 2011-03-24 04:24:57 - generating LINT kernel config TB --- 2011-03-24 04:24:57 - cd /src/sys/powerpc/conf TB --- 2011-03-24 04:24:57 - /usr/bin/make -B LINT TB --- 2011-03-24 04:24:57 - building LINT kernel TB --- 2011-03-24 04:24:57 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:24:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:24:57 - TARGET=powerpc TB --- 2011-03-24 04:24:57 - TARGET_ARCH=powerpc TB --- 2011-03-24 04:24:57 - TZ=UTC TB --- 2011-03-24 04:24:57 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:24:57 - cd /src TB --- 2011-03-24 04:24:57 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 04:24:57 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 04:28:36 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 04:28:36 - ERROR: failed to build lint kernel TB --- 2011-03-24 04:28:36 - 5203.89 user 898.13 system 6409.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 06:26:26 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B42C1106564A; Thu, 24 Mar 2011 06:26:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 78BD18FC17; Thu, 24 Mar 2011 06:26:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O6QPa5062177; Thu, 24 Mar 2011 02:26:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O6QPH5062167; Thu, 24 Mar 2011 06:26:25 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 06:26:25 GMT Message-Id: <201103240626.p2O6QPH5062167@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 06:26:26 -0000 TB --- 2011-03-24 04:30:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 04:30:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2011-03-24 04:30:00 - cleaning the object tree TB --- 2011-03-24 04:30:18 - cvsupping the source tree TB --- 2011-03-24 04:30:18 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2011-03-24 04:30:51 - building world TB --- 2011-03-24 04:30:51 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:30:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:30:51 - TARGET=pc98 TB --- 2011-03-24 04:30:51 - TARGET_ARCH=i386 TB --- 2011-03-24 04:30:51 - TZ=UTC TB --- 2011-03-24 04:30:51 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:30:51 - cd /src TB --- 2011-03-24 04:30:51 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 04:30:52 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 06:21:35 UTC 2011 TB --- 2011-03-24 06:21:35 - generating LINT kernel config TB --- 2011-03-24 06:21:35 - cd /src/sys/pc98/conf TB --- 2011-03-24 06:21:35 - /usr/bin/make -B LINT TB --- 2011-03-24 06:21:35 - building LINT kernel TB --- 2011-03-24 06:21:35 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 06:21:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 06:21:35 - TARGET=pc98 TB --- 2011-03-24 06:21:35 - TARGET_ARCH=i386 TB --- 2011-03-24 06:21:35 - TZ=UTC TB --- 2011-03-24 06:21:35 - __MAKE_CONF=/dev/null TB --- 2011-03-24 06:21:35 - cd /src TB --- 2011-03-24 06:21:35 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 06:21:35 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 06:26:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 06:26:25 - ERROR: failed to build lint kernel TB --- 2011-03-24 06:26:25 - 5560.98 user 989.09 system 6984.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 06:33:43 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95CAF1065677; Thu, 24 Mar 2011 06:33:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 599FD8FC14; Thu, 24 Mar 2011 06:33:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O6XgtH035826; Thu, 24 Mar 2011 02:33:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O6XgCm035823; Thu, 24 Mar 2011 06:33:42 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 06:33:42 GMT Message-Id: <201103240633.p2O6XgCm035823@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 06:33:43 -0000 TB --- 2011-03-24 04:30:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 04:30:00 - starting HEAD tinderbox run for i386/i386 TB --- 2011-03-24 04:30:00 - cleaning the object tree TB --- 2011-03-24 04:30:21 - cvsupping the source tree TB --- 2011-03-24 04:30:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2011-03-24 04:36:04 - building world TB --- 2011-03-24 04:36:04 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:36:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:36:04 - TARGET=i386 TB --- 2011-03-24 04:36:04 - TARGET_ARCH=i386 TB --- 2011-03-24 04:36:04 - TZ=UTC TB --- 2011-03-24 04:36:04 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:36:04 - cd /src TB --- 2011-03-24 04:36:04 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 04:36:05 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 06:27:54 UTC 2011 TB --- 2011-03-24 06:27:54 - generating LINT kernel config TB --- 2011-03-24 06:27:54 - cd /src/sys/i386/conf TB --- 2011-03-24 06:27:54 - /usr/bin/make -B LINT TB --- 2011-03-24 06:27:54 - building LINT kernel TB --- 2011-03-24 06:27:54 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 06:27:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 06:27:54 - TARGET=i386 TB --- 2011-03-24 06:27:54 - TARGET_ARCH=i386 TB --- 2011-03-24 06:27:54 - TZ=UTC TB --- 2011-03-24 06:27:54 - __MAKE_CONF=/dev/null TB --- 2011-03-24 06:27:54 - cd /src TB --- 2011-03-24 06:27:54 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 06:27:54 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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 -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 06:33:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 06:33:42 - ERROR: failed to build lint kernel TB --- 2011-03-24 06:33:42 - 5658.36 user 962.11 system 7422.00 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 06:56:26 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FB2E106564A; Thu, 24 Mar 2011 06:56:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D96448FC0C; Thu, 24 Mar 2011 06:56:25 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O6uPwU041660; Thu, 24 Mar 2011 02:56:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O6uP5w041643; Thu, 24 Mar 2011 06:56:25 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 06:56:25 GMT Message-Id: <201103240656.p2O6uP5w041643@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 06:56:26 -0000 TB --- 2011-03-24 04:30:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 04:30:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2011-03-24 04:30:00 - cleaning the object tree TB --- 2011-03-24 04:30:21 - cvsupping the source tree TB --- 2011-03-24 04:30:21 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2011-03-24 04:30:51 - building world TB --- 2011-03-24 04:30:51 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 04:30:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 04:30:51 - TARGET=amd64 TB --- 2011-03-24 04:30:51 - TARGET_ARCH=amd64 TB --- 2011-03-24 04:30:51 - TZ=UTC TB --- 2011-03-24 04:30:51 - __MAKE_CONF=/dev/null TB --- 2011-03-24 04:30:51 - cd /src TB --- 2011-03-24 04:30:51 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 04:30:52 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Thu Mar 24 06:50:46 UTC 2011 TB --- 2011-03-24 06:50:47 - generating LINT kernel config TB --- 2011-03-24 06:50:47 - cd /src/sys/amd64/conf TB --- 2011-03-24 06:50:47 - /usr/bin/make -B LINT TB --- 2011-03-24 06:50:47 - building LINT kernel TB --- 2011-03-24 06:50:47 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 06:50:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 06:50:47 - TARGET=amd64 TB --- 2011-03-24 06:50:47 - TARGET_ARCH=amd64 TB --- 2011-03-24 06:50:47 - TZ=UTC TB --- 2011-03-24 06:50:47 - __MAKE_CONF=/dev/null TB --- 2011-03-24 06:50:47 - cd /src TB --- 2011-03-24 06:50:47 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 06:50:47 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 06:56:24 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 06:56:24 - ERROR: failed to build lint kernel TB --- 2011-03-24 06:56:24 - 6921.56 user 1303.55 system 8784.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 06:58:07 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64A5F1065678; Thu, 24 Mar 2011 06:58:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 3A1328FC24; Thu, 24 Mar 2011 06:58:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2O6w6du052136; Thu, 24 Mar 2011 02:58:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2O6w6je052128; Thu, 24 Mar 2011 06:58:06 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 24 Mar 2011 06:58:06 GMT Message-Id: <201103240658.p2O6w6je052128@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 06:58:07 -0000 TB --- 2011-03-24 05:25:53 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-24 05:25:53 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-24 05:25:53 - cleaning the object tree TB --- 2011-03-24 05:26:06 - cvsupping the source tree TB --- 2011-03-24 05:26:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-24 05:26:51 - building world TB --- 2011-03-24 05:26:51 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 05:26:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 05:26:51 - TARGET=ia64 TB --- 2011-03-24 05:26:51 - TARGET_ARCH=ia64 TB --- 2011-03-24 05:26:51 - TZ=UTC TB --- 2011-03-24 05:26:51 - __MAKE_CONF=/dev/null TB --- 2011-03-24 05:26:51 - cd /src TB --- 2011-03-24 05:26:51 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 24 05:26:51 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 24 06:52:26 UTC 2011 TB --- 2011-03-24 06:52:26 - generating LINT kernel config TB --- 2011-03-24 06:52:26 - cd /src/sys/ia64/conf TB --- 2011-03-24 06:52:26 - /usr/bin/make -B LINT TB --- 2011-03-24 06:52:26 - building LINT kernel TB --- 2011-03-24 06:52:26 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-24 06:52:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-24 06:52:26 - TARGET=ia64 TB --- 2011-03-24 06:52:26 - TARGET_ARCH=ia64 TB --- 2011-03-24 06:52:26 - TZ=UTC TB --- 2011-03-24 06:52:26 - __MAKE_CONF=/dev/null TB --- 2011-03-24 06:52:26 - cd /src TB --- 2011-03-24 06:52:26 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 24 06:52:26 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/dev/ath/if_ath_debug.c -I/src/sys/dev/ath 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/dev/ath/if_ath_keycache.c -I/src/sys/dev/ath 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/dev/ath/if_ath_tx.c -I/src/sys/dev/ath 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/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath 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/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath 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/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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/dev/ath/ah_osdep.c -I/src/sys/dev/ath /src/sys/dev/ath/ah_osdep.c:89: error: 'ath_hal_debug' undeclared here (not in a function) *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-24 06:58:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-24 06:58:06 - ERROR: failed to build lint kernel TB --- 2011-03-24 06:58:06 - 4375.58 user 786.29 system 5532.82 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 20:36:34 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD12F106564A; Thu, 24 Mar 2011 20:36:34 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-yi0-f54.google.com (mail-yi0-f54.google.com [209.85.218.54]) by mx1.freebsd.org (Postfix) with ESMTP id 62E828FC14; Thu, 24 Mar 2011 20:36:34 +0000 (UTC) Received: by yie12 with SMTP id 12so198233yie.13 for ; Thu, 24 Mar 2011 13:36:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to:cc :content-type; bh=GEu1jejOrTUik9GdpGN0Z6dh0xDfYf38cuz4CuVrtQg=; b=PGFf5w9NF+tY2I06FVEmd0ef02Y1x4wx9ixWCs5KhTWeNFYA1mazTtgPTflOOLSj7D oYo6OYBAFBlsx6vemxMQ1wzat1P/k3yjpNKqcVM80n9oGV9s3+0MHl8wkQYZctRoPcOt spNfgvq4NzvzV1/ROh9w8PbcQn15CrDzroo7g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type; b=h/pPwYaXpIgTL0vePcbdoQyzrar2v7klZZBDWKn5V0McF4PBe9QEFh49gkdcrJc5Y+ wCIX/Oms/VcHDVuY57Pat2rqRk0sqlSkT7aKhELRyAJhVst7zhb7ZZaYL858082YXaGr R9QELutEwdLPEIxd9E9MwjAev5iueF9MQAbsg= MIME-Version: 1.0 Received: by 10.91.20.12 with SMTP id x12mr7990825agi.100.1300998992801; Thu, 24 Mar 2011 13:36:32 -0700 (PDT) Received: by 10.90.100.10 with HTTP; Thu, 24 Mar 2011 13:36:32 -0700 (PDT) Date: Thu, 24 Mar 2011 13:36:32 -0700 Message-ID: From: Freddie Cash To: FreeBSD-Current Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Filesystems , FreeBSD Stable Subject: Any success stories for HAST + ZFS? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 20:36:35 -0000 [Not sure which list is most appropriate since it's using HAST + ZFS on -RELEASE, -STABLE, and -CURRENT. Feel free to trim the CC: on replies.] I'm having a hell of a time making this work on real hardware, and am not ruling out hardware issues as yet, but wanted to get some reassurance that someone out there is using this combination (FreeBSD + HAST + ZFS) successfully, without kernel panics, without core dumps, without deadlocks, without issues, etc. I need to know I'm not chasing a dead rabbit. In tests using VirtualBox and FreeBSD 8-STABLE from when HAST was first MFC'd, everything worked wonderfully. HAST-based pool would come up, data would sync to the slave node, fail-over worked nicely, bringing the other box back online as the slave worked, data synced back, etc. It was a thing of beauty. Now, on real hardware, I cannot get the system to stay online for more than an hour. :( hastd causes kernel panics with "bufwrite: buffer not busy" errors. ZFS pools get corrupted. System deadlocks (no log messages, no onscreen errors, not even NumLock key works) at random points. The hardware is fairly standard fare: - SuperMicro H8DGi-F motherboard - AMD Opteron 6100-series CPU (8-cores @ 2.0 GHz) - 8 GB DDR3 SDRAM - 64 GB Kingston V-Series SSD for the OS install (using ahci(4) and the motherboard SATA controller) - 3x SuperMicro AOC-USAS2-8Li SATA controllers with IT firmware - 6x 1.5 TB Seagate 7200.11 drives (1x raidz2 vdev) - 12x 1.0 TB Seagate 7200.12 drives (2x raidz2 vdev) - 6x 0.5 TB WD RE3 drives (1x raidz2 vdev) The motherboard BIOS is up-to-date. I do not see any way to update the firmware on the SATA controllers. Using the onboard IPMI-based sensors, CPU, motherboard, RAM temps and volatages are in the nominal range. I've tried with FreeBSD 8.2-RELEASE, 8-STABLE, 8-STABLE w/ZFSv28 patches, and 9-CURRENT (after the ZFSv28 commit). Things work well until I start hastd. Then either the system locks up, or hastd causes a kernel panic, or hastd dumps core. Each harddrive is glabel'd as "disk-a1" through "disk-d6". hast.conf has 24 resources listed, one for each glabel'd device. The pool is created using the /dev/hast/* devices with disk-a1 through disk-a6 being one raidz2 vdev, and so on through disk-b*, disk-c*, and disk-d*, for a total of 4 raidz2 vdevs of 6 drives each. A fairly standard setup, I would think. Even using a GENERIC kernel, I can't keep things stable and running. So, please, someone, somewhere, share a success story, where you're using FreeBSD, ZFS, and HAST. Let me know that it does work. I'm starting to lose faith in my abilities here. :( Or point out where I'm doing things wrong so I can correct the issues. Thanks. -- Freddie Cash fjwcash@gmail.com From owner-freebsd-current@FreeBSD.ORG Thu Mar 24 21:50:21 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5920A106566B for ; Thu, 24 Mar 2011 21:50:21 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id DB3078FC0A for ; Thu, 24 Mar 2011 21:50:20 +0000 (UTC) Received: by bwz12 with SMTP id 12so601165bwz.13 for ; Thu, 24 Mar 2011 14:50:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:message-id:date:from:user-agent :mime-version:to:subject:x-enigmail-version:content-type :content-transfer-encoding; bh=Zt2D3rSY6ZuGxoSLWLtjHEe+awUKMICfiNiWV6EGokU=; b=RD6jPadqlAMVrQfRft6l2W3d2I6txVh5LmFUrJblYGlQWxqN5gw8b4pppwqZbgUhwh SaAxcDBEAHNOZCzV9nPwoD8QX4qSiZtRvO+H4vrvopMyzWs7mbATNv/lN9TdwIRpN4K8 NAE1Zu2pJ/EE15DBR8m4jh/ImUfomnQFwKUdM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:subject :x-enigmail-version:content-type:content-transfer-encoding; b=D35Irfmi/6y4TxMY8G7RMMRald9x05rTBRj/mSJSMSvdnwMKWkOy52SuO/KC6xxj6L 506VbVhPstUFDeODErBwC3NGmi8LaI9diTwUSTKWol320/nu1s5B1dW4g32XQqlu6I7O fuuUBe+SiWxxUD4bzrBBrF6twVXedqkgVoQd4= Received: by 10.204.20.132 with SMTP id f4mr2365bkb.169.1301003419793; Thu, 24 Mar 2011 14:50:19 -0700 (PDT) Received: from mavbook2.mavhome.dp.ua (pc.mavhome.dp.ua [212.86.226.226]) by mx.google.com with ESMTPS id x6sm280323bkv.0.2011.03.24.14.50.17 (version=SSLv3 cipher=OTHER); Thu, 24 Mar 2011 14:50:18 -0700 (PDT) Sender: Alexander Motin Message-ID: <4D8BBC29.6040500@FreeBSD.org> Date: Thu, 24 Mar 2011 23:48:25 +0200 From: Alexander Motin User-Agent: Thunderbird 2.0.0.23 (X11/20091212) MIME-Version: 1.0 To: FreeBSD-Current X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Subject: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2011 21:50:21 -0000 Hi. I've just committed the new GEOM-based software RAID driver (graid) into the HEAD [1]. Brave testers are welcome. :) 1. http://svn.freebsd.org/viewvc/base?view=revision&revision=219974 -- Alexander Motin From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 07:55:55 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3181B106564A; Fri, 25 Mar 2011 07:55:55 +0000 (UTC) (envelope-from pawel@dawidek.net) Received: from mail.garage.freebsd.pl (60.wheelsystems.com [83.12.187.60]) by mx1.freebsd.org (Postfix) with ESMTP id C1FDD8FC15; Fri, 25 Mar 2011 07:55:54 +0000 (UTC) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id AC11445C9C; Fri, 25 Mar 2011 08:55:52 +0100 (CET) Received: from localhost (58.wheelsystems.com [83.12.187.58]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 6FE7045684; Fri, 25 Mar 2011 08:55:47 +0100 (CET) Date: Fri, 25 Mar 2011 08:55:41 +0100 From: Pawel Jakub Dawidek To: Freddie Cash Message-ID: <20110325075541.GA1742@garage.freebsd.pl> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 9.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-3.9 required=4.5 tests=ALL_TRUSTED,BAYES_00, RCVD_IN_SORBS_DUL autolearn=ham version=3.0.4 Cc: FreeBSD Filesystems , FreeBSD-Current , FreeBSD Stable Subject: Re: Any success stories for HAST + ZFS? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 07:55:55 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 24, 2011 at 01:36:32PM -0700, Freddie Cash wrote: > I've tried with FreeBSD 8.2-RELEASE, 8-STABLE, 8-STABLE w/ZFSv28 > patches, and 9-CURRENT (after the ZFSv28 commit). Things work well > until I start hastd. Then either the system locks up, or hastd causes > a kernel panic, or hastd dumps core. The minimum amount of information (as always) would be backtrace from the kernel and also hastd backtrace when it coredumps. There is really decent logging in hast, so I'm also sure it does log something interesting on primary or secondary. Another useful thing would be to turn on debugging in hast (single -d option for hastd). The best you can do is to give me the simplest and quickest procedure to reproduce the issue, eg. configure two hast resources, put ZFS mirror on top, start rsync /usr/src to the file system on top of hast and switch roles. The simpler the better. --=20 Pawel Jakub Dawidek http://www.wheelsystems.com FreeBSD committer http://www.FreeBSD.org Am I Evil? Yes, I Am! http://yomoli.com --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (FreeBSD) iEYEARECAAYFAk2MSn0ACgkQForvXbEpPzTz3QCgkK7c/o/yMaEma5RD8bgi7dfJ 3RgAnjEplmywJp8+ozatEd4eYu4Ce+Ds =iZuF -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 09:40:33 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 478A6106564A; Fri, 25 Mar 2011 09:40:33 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5532F8FC16; Fri, 25 Mar 2011 09:40:32 +0000 (UTC) Received: by fxm11 with SMTP id 11so1203479fxm.13 for ; Fri, 25 Mar 2011 02:40:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:message-id:date:from:user-agent :mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=yNVPdYa0GilDDkKtLkmvJI6F9rPu3d2Yuybv+W6wSgE=; b=jCnSnA3Vl+mYr0C7XvU13P3g4Gb4KLY1YSuKD/7JyuZJqpqxNI2JY0qWU6F9ZfyPJ5 Ss60DEriVPwLpmqGYVUW3u0g63xsmED8AeltPTZrcyX2B+u/KHzPUqcMIs59OaObhiAw iNIWtrZeN98EjHIR+YE07DLUfG/9XsxIrw6fM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=uD7YEvOcgiuIaA414nLPRVvTx3LjYyCdurQb6LCL3IxkQZeU3pdknBge5kqt7k3iAC 81SYcDMCAo/338+4Vq2Wb9g2IZgBgLhtgxEg6S5vj3yuNkPimrWZFDOtEYQAtML2WwTk m8Y1WUU4IZYW2P+Ed2LTaDkiCUathZnA1edZU= Received: by 10.223.69.131 with SMTP id z3mr620969fai.91.1301046031472; Fri, 25 Mar 2011 02:40:31 -0700 (PDT) Received: from mavbook2.mavhome.dp.ua (pc.mavhome.dp.ua [212.86.226.226]) by mx.google.com with ESMTPS id n2sm319939fam.4.2011.03.25.02.40.29 (version=SSLv3 cipher=OTHER); Fri, 25 Mar 2011 02:40:30 -0700 (PDT) Sender: Alexander Motin Message-ID: <4D8C629B.7000108@FreeBSD.org> Date: Fri, 25 Mar 2011 11:38:35 +0200 From: Alexander Motin User-Agent: Thunderbird 2.0.0.23 (X11/20091212) MIME-Version: 1.0 To: Alex Dupre References: <4D8BBC29.6040500@FreeBSD.org> <4D8C5EA1.9010205@FreeBSD.org> In-Reply-To: <4D8C5EA1.9010205@FreeBSD.org> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: FreeBSD-Current Subject: Re: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 09:40:33 -0000 Alex Dupre wrote: > Alexander Motin ha scritto: >> I've just committed the new GEOM-based software RAID driver (graid) into >> the HEAD [1]. Brave testers are welcome. :) > > Supposing they are equally stable, is it now better to use graid instead > of gmirror (et similar)? You can choose. Their functionality is comparable, but with graid: - you can boot from any RAID level when RAID BIOS is present; you can more or less boot from gmirror, but not from gstripe, graid3 or graid5; - RAID BIOS will know about failed, rebuilding, etc drives and will be able to boot properly; - you can share/access RAID volumes with other OSes. -- Alexander Motin From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 09:48:21 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEAFE1065670 for ; Fri, 25 Mar 2011 09:48:21 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.freebsd.org (Postfix) with SMTP id 498558FC14 for ; Fri, 25 Mar 2011 09:48:20 +0000 (UTC) Received: (qmail 59911 invoked from network); 25 Mar 2011 09:21:37 -0000 Received: from unknown (HELO alex.andxor.it) (192.168.2.30) by andxor.it with SMTP; 25 Mar 2011 09:21:37 -0000 Message-ID: <4D8C5EA1.9010205@FreeBSD.org> Date: Fri, 25 Mar 2011 10:21:37 +0100 From: Alex Dupre User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; it; rv:1.9.1.18) Gecko/20110324 SeaMonkey/2.0.13 MIME-Version: 1.0 To: Alexander Motin References: <4D8BBC29.6040500@FreeBSD.org> In-Reply-To: <4D8BBC29.6040500@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-Current Subject: Re: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 09:48:21 -0000 Alexander Motin ha scritto: > I've just committed the new GEOM-based software RAID driver (graid) into > the HEAD [1]. Brave testers are welcome. :) Supposing they are equally stable, is it now better to use graid instead of gmirror (et similar)? -- Alex Dupre From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 10:15:47 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 380E71065672 for ; Fri, 25 Mar 2011 10:15:47 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.freebsd.org (Postfix) with SMTP id 764588FC0A for ; Fri, 25 Mar 2011 10:15:46 +0000 (UTC) Received: (qmail 72841 invoked from network); 25 Mar 2011 10:15:44 -0000 Received: from unknown (HELO alex.andxor.it) (192.168.2.30) by andxor.it with SMTP; 25 Mar 2011 10:15:44 -0000 Message-ID: <4D8C6B50.7080508@FreeBSD.org> Date: Fri, 25 Mar 2011 11:15:44 +0100 From: Alex Dupre User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; it; rv:1.9.1.18) Gecko/20110324 SeaMonkey/2.0.13 MIME-Version: 1.0 To: Alexander Motin References: <4D8BBC29.6040500@FreeBSD.org> <4D8C5EA1.9010205@FreeBSD.org> <4D8C629B.7000108@FreeBSD.org> In-Reply-To: <4D8C629B.7000108@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-Current Subject: Re: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 10:15:47 -0000 Alexander Motin ha scritto: > You can choose. Their functionality is comparable, but with graid: ... Yes, as I supposed, so the answer is 'yes'. Obviously it needs a lot of testing. Thanks for your work. -- Alex Dupre From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 10:40:52 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB6F51065670; Fri, 25 Mar 2011 10:40:52 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 258188FC1E; Fri, 25 Mar 2011 10:40:51 +0000 (UTC) Received: by wyf23 with SMTP id 23so1073971wyf.13 for ; Fri, 25 Mar 2011 03:40:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:date:from:to:subject:message-id :mime-version:content-type:content-disposition:user-agent; bh=pjiZh3Fout4W9yLPRajqB/kSvs5rtznlRSHZy8Qa2LM=; b=AtaEcnjDydxhSnQsWHt6NlfIpz3yopsrP/O7rmxEj4qWQMyFfEgu3QBebApuLGV7Kx JptCrHgIMv1q21Ak6Eg3PTzeh2LE5JiH1tH9kbY7lFltlQMdj03BxgOUOkzyBU8OwVxr YSfWs+OnvUGNQ12jSO4mlQstUQ6ydiJILbdtY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=r402P9l9Ag7CJgZcFyykp9RRr6NxDzmlzhzjS/x9TkrAOBXDO+JnfQtZf6BkLEXt5p Q79nTRABZrfZYjSL3sAXHnsE0bY3YhjSULHqJiDRX6vbmBN223QII9kPMonOxb62DySM pRc5uZjA/u5ZktaPeR94yo82VaO23d84JOTR8= Received: by 10.216.190.40 with SMTP id d40mr536147wen.34.1301047875455; Fri, 25 Mar 2011 03:11:15 -0700 (PDT) Received: from azathoth.lan (mlr78-1-82-232-208-178.fbx.proxad.net [82.232.208.178]) by mx.google.com with ESMTPS id z50sm279026weq.47.2011.03.25.03.11.13 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 Mar 2011 03:11:14 -0700 (PDT) Sender: Baptiste Daroussin Date: Fri, 25 Mar 2011 11:11:11 +0100 From: Baptiste Daroussin To: ports@FreeBSD.org, hackers@FreeBSD.org, current@FreeBSD.org Message-ID: <20110325101111.GA36840@azathoth.lan> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 10:40:52 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi all, miwi@ launched the new thing called Experimental Call For Testing, it's our turn :) Julien Laffaye (jlaffaye@) and I, helped by Philippe Pepiot (huge contributor) have been working since the end of the last GSoC on a rewrite of pkg_install. pkgng is a binary package manager written from scratch for FreeBSD. After a long period of technology testing, (json, tinycdb, bdb, etc) and we now have achieved to implement the basic functionnality. We would greatly approciate to have some feedback, wider testing, patching, documenting etc, before implementing the higher level features. pkgng is built on top of a new libpkg, which allow to deal with the database of installed packages, to deal with remote repositories, manage packages: creation, installation gathering informations, registering new ports. features supported are or will be : - smooth integration with bsd.port.mk (including bsd.pkg.mk line 2486) which allow to have a bsd.port.mk which deal with both pkg_install and pkgng. (done in alpha) - the register command can analyse elf files when registering a new port to discover forgotten dependencies if necessary. (done in alpha using libelf) - the register command has two mode available : when dealing with old fashion ports it just registers the package, in new mode it does everything that would have been done by pkg add when installing the package : should display messages, execute post-install, execute @exec etc. (old fashion done in the alpha) - pkg add supports two mode : the old fashion one (no real upgrade support) and new one: upgrade scripts supported. (old fashion in the alpha) - new scripts supported +PREINSTALL +POSTINSTALL, +PREDEINSTALL, +POSTDEINSTALL, +PREUPGRADE, +POSTUPGRADE as well as the old fashion scripts : +INSTALL +DEINSTALL +UPGRADE (all supported *UPGRADES aren't supported in the alpha) - new +MANIFEST (plist-like format) with new metadatas : options, arch, os version, etc. (done in the alpha) - pkgng supports checking arch of the package which means that users won't be able to install sparc64 binary package into amd64 machines. (not done yet) - a special architecture "all" allows to specify when a package can be used on every architecture. (not done yet) - @dirrm and @dirrmtry are now deprecated, pkgng can discover itself which directory has to be removed. (done in the alpha but needs love :)) - new repository (apt-like feature) (only the repository generation is done) - real support for reverse dependency (no ugly +REQUIRED_BY) (done in the alpha) - test unit (libcheck) on libpkg. (done in the alpha needs some more love) - many more In term of technology we decided to use a sqlite3 database, and to prevent potential trolling, sqlite3 is used in it's amalgamation form which means it is incorporated in the code sources (as recommanded by sqlite developpers like a statically linked library) on build we only activate the features we need in sqlite. The alpha release come with an experimental tool "pkg2ng" to convert an existing package database to the new pkgng database format. So one can test pkgng without rebuild all its packages. One of the thing we are thinking about pkgng is to perhaps be able to provide it only as a ports (with simple script in base to boostrap/install it). That would allow pkgng to live with the ports to be able to easily integrate new features without having to support very old version of pkgng. design: pkgng is composed of : - a clean library "libpkg" that does all the work - a modern cli frontend (pkg) which accept subcommands, basically type pkg add, pkg info, pkg create etc. a dedicated subcommand exists for ports: pkg register which goal is to only supported adding to the database what is already installed. more informations can be found here: http://git.etoilebsd.net/pkgng/tree/docs/GOALS, http://git.etoilebsd.net/pkgng/tree/README http://git.etoilebsd.net/pkgng/tree/docs/TODO To download the alpha: http://git.etoilebsd.net/pkgng/snapshot/pkgng-0.1-alpha1.tar.gz Build it with debugging information: make DEBUG_FLAGS="-g -O0 -DDEBUG" Developpement site: http://git.etoilebsd.net/pkgng/ IRC chan: #pkgng@freenode Beware that pkgng is in alpha states, it can kill kittens and eat puppies, and for sure it will do it so now you are warned. regards, bapt, --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2Maj8ACgkQ8kTtMUmk6EyXfQCgvm3Jxn56dYsUn4reW+4TNXXR /ykAoJld7THTIRcj6Ep5xBNnPFEswv07 =qzf7 -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 07:47:22 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D11DB106566C; Fri, 25 Mar 2011 07:47:22 +0000 (UTC) (envelope-from petefrench@ingresso.co.uk) Received: from constantine.ingresso.co.uk (unknown [IPv6:2001:470:1f09:176e::3]) by mx1.freebsd.org (Postfix) with ESMTP id 805578FC17; Fri, 25 Mar 2011 07:47:22 +0000 (UTC) Received: from dilbert.london-internal.ingresso.co.uk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ingresso.co.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.73 (FreeBSD)) (envelope-from ) id 1Q31jm-000IDw-6t; Fri, 25 Mar 2011 07:47:14 +0000 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.74 (FreeBSD)) (envelope-from ) id 1Q31jm-0001st-5R; Fri, 25 Mar 2011 07:47:14 +0000 To: fjwcash@gmail.com, freebsd-current@freebsd.org In-Reply-To: Message-Id: From: Pete French Date: Fri, 25 Mar 2011 07:47:14 +0000 X-Mailman-Approved-At: Fri, 25 Mar 2011 11:11:48 +0000 Cc: freebsd-fs@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Any success stories for HAST + ZFS? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 07:47:22 -0000 > So, please, someone, somewhere, share a success story, where you're > using FreeBSD, ZFS, and HAST. Let me know that it does work. I'm > starting to lose faith in my abilities here. :( I ran our main database for the old company using ZFS on top of HAST without any problems at all. Had a single HAST disc with a zpool on top of it, and mysql on top of that. All worked perfectly for us. Am not running that currently as the company went under and we lost the hardware. But am working for a new business and am about to deploy the same configuration for the main database as its "tried and tested" as far as I am concerned. Will be slightly different, as I will have a pair of HAST drives and do mirroring over the top with ZFS. But I shall report back how well, or not, it works. -pete. From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 11:52:58 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BE4B1065670 for ; Fri, 25 Mar 2011 11:52:58 +0000 (UTC) (envelope-from freebsd-current@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id A52308FC08 for ; Fri, 25 Mar 2011 11:52:57 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Q35ZY-0004ea-7v for freebsd-current@freebsd.org; Fri, 25 Mar 2011 12:52:56 +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 ; Fri, 25 Mar 2011 12:52:56 +0100 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 25 Mar 2011 12:52:56 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-current@freebsd.org From: Ivan Voras Date: Fri, 25 Mar 2011 12:52:41 +0100 Lines: 51 Message-ID: References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.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; U; FreeBSD amd64; en-US; rv:1.9.2.12) Gecko/20101102 Thunderbird/3.1.6 In-Reply-To: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> X-Enigmail-Version: 1.1.2 Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 11:52:58 -0000 On 25/03/2011 11:11, Baptiste Daroussin wrote: > In term of technology we decided to use a sqlite3 database, and to > prevent potential trolling, sqlite3 is used in it's amalgamation form > which means it is incorporated in the code sources (as recommanded by > sqlite developpers like a statically linked library) on build we only > activate the features we need in sqlite. I'm very glad you went with sqlite3! I've looked at pkgng source a bit and it looks like you use transactions and foreign keys which is a huge benefit for the whole effort. At this time I'd just like to suggest you add the use of WAL journal (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database creation so you get the benefits of multiple-readers-single-writer concurrency model. > The alpha release come with an experimental tool "pkg2ng" to convert > an existing package database to the new pkgng database format. So one > can test pkgng without rebuild all its packages. Could you change the filename of the database to have the ".sqlite" extension? It's not important but it indicates what it is used by and newer software is moving to ".sqlite". > One of the thing we are thinking about pkgng is to perhaps be able to > provide it only as a ports (with simple script in base to > boostrap/install it). That would allow pkgng to live with the ports to > be able to easily integrate new features without having to support > very old version of pkgng. Maybe I'm misunderstanding but won't that mean that the ports system without pkgng will continue to maintain their data in the current format? > more informations can be found here: > http://git.etoilebsd.net/pkgng/tree/docs/GOALS, """ the database will be a sqlite file compressed with the xz format. the database will be signed so we can trust the sha256 of the packages, so if a package has the expected hash, it is considered trusted. """ I'm not sure on what "the database" refers at this point, but is it really necessary to compress it? I don't mean it's hard to do, just that maybe it would be simpler without it. About this signature: hashing like this is very rudimentary. Could you design this to extensible, expecting real PGP-based signatures in the future? From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 12:33:03 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C0811065678; Fri, 25 Mar 2011 12:33:03 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9F7F78FC1B; Fri, 25 Mar 2011 12:33:02 +0000 (UTC) Received: by fxm11 with SMTP id 11so1333799fxm.13 for ; Fri, 25 Mar 2011 05:33:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:message-id:date:from:user-agent :mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=KFgAfLVbm/j/OPStwDEnmuN8MEtcPrZtZSMoTuhuXTI=; b=LGZCFwb7qJ0N5At7embxi3j24j7q5BNCikmP5xYtLuhFSMHZQx+1tYJVYMm+a/TMni 6WUtqRdOD4rOpYK6kdX60NP2NeimR1MBdhuCafEYF4d8+n/BsLaaROy/lV43JQgYaY89 4GAGfV+/KAkZeqjzD4WC9aPzSoSRj7WuxeNxw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=sJY+loYURZ/9nG/xIV8QitS3jcK13QzATSR3ascSlVNXBXuEtX5di+PbxKMEbgVREn b3rs01Kin+ypi2nucT5v2HYERtpqrO8pAJMglv/DVobL2pzaGVNNesgVHhXBe6bza+hA 2k6KdPRN4B297cFa5YYE2C/s2mOcZkATaAAUc= Received: by 10.223.15.141 with SMTP id k13mr842436faa.30.1301056381749; Fri, 25 Mar 2011 05:33:01 -0700 (PDT) Received: from mavbook2.mavhome.dp.ua (pc.mavhome.dp.ua [212.86.226.226]) by mx.google.com with ESMTPS id l4sm395421fan.14.2011.03.25.05.32.57 (version=SSLv3 cipher=OTHER); Fri, 25 Mar 2011 05:32:58 -0700 (PDT) Sender: Alexander Motin Message-ID: <4D8C8B07.4@FreeBSD.org> Date: Fri, 25 Mar 2011 14:31:03 +0200 From: Alexander Motin User-Agent: Thunderbird 2.0.0.23 (X11/20091212) MIME-Version: 1.0 To: =?ISO-8859-2?Q?Edward_Tomasz_Napiera=B3a?= References: <4D8BBC29.6040500@FreeBSD.org> <8804AE8F-179C-4E4D-893C-7095493D3496@FreeBSD.org> In-Reply-To: <8804AE8F-179C-4E4D-893C-7095493D3496@FreeBSD.org> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit Cc: FreeBSD-Current Subject: Re: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 12:33:03 -0000 Edward Tomasz Napiera³a wrote: > Wiadomo¶æ napisana przez Alexander Motin w dniu 2011-03-24, o godz. 22:48: >> I've just committed the new GEOM-based software RAID driver (graid) into >> the HEAD [1]. Brave testers are welcome. :) > > Great work :-) Two questions: > > 1. Any plans to add support for gmirror/gstripe/gconcat metadata? Not a first priority for me. First I'd like to see there remaining BIOS metadata formats and RAID5 support. When graid will be finished and well tested, that can be done relatively easy (I'd say 1-2 days for each). Not sure it should fit into 9.0-RELEASE. > 2. Any timeframe for switching from the legacy ata(4) to the new infrastructure? I think we could do in one month: 1) graid needs at least some time to settle; 2) I need to reimplement SENSE data fetching in CAM for ATAPI/USB devices to user-level consumers via passX. That is needed to fix issues with some CD/DVD burning applications. Solution I have now is not ideal. 3) we should not delay it longer to let it settle before 9.0-RELEASE. If somebody knows other show stoppers or have ideas -- speak now. -- Alexander Motin From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 12:54:08 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72406106564A for ; Fri, 25 Mar 2011 12:54:08 +0000 (UTC) (envelope-from alp@rsu.ru) Received: from mail.r61.net (mail.r61.net [195.208.245.249]) by mx1.freebsd.org (Postfix) with ESMTP id EBBB18FC20 for ; Fri, 25 Mar 2011 12:54:07 +0000 (UTC) Received: from pyhalov.cc.rsu.ru (pyhalov.cc.rsu.ru [195.208.252.128]) (authenticated bits=0) by mail.r61.net (8.14.4/8.14.4) with ESMTP id p2PCfrlc074674 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT) for ; Fri, 25 Mar 2011 15:41:53 +0300 (MSK) (envelope-from alp@rsu.ru) Message-ID: <4D8C8D91.2060002@rsu.ru> Date: Fri, 25 Mar 2011 15:41:53 +0300 From: Alexander Pyhalov User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.14) Gecko/20110306 Thunderbird/3.1.8 MIME-Version: 1.0 To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Could /etc/rc.d/routing require bridge? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 12:54:08 -0000 Hello. I'm just implementing the following network scheme on our freebsd hosts: 1) physical interface 2) for each vlanN on physical interface I create bridgeN and connect interface to the bridge 3) for each vnet jail which need access to vlanN I create epair and connect it to bridgeN 4) for real host I use the same scheme: I create epair and connect it to the bridge with necessary vlan. I have the following problem: routing is started before bridge creation, so in default configuration host is inaccessible. If I modify /etc/rc.d/routing script so that it requires bridge, everything is fine (I can reach my host). So what is a reason for /etc/rc.d/routing to miss dependency on bridge? -- Best regards, Alexander Pyhalov, system administrator of Computer Center of Southern Federal University From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 12:57:15 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04882106564A; Fri, 25 Mar 2011 12:57:15 +0000 (UTC) (envelope-from kimelto@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 65F248FC1C; Fri, 25 Mar 2011 12:57:14 +0000 (UTC) Received: by wyf23 with SMTP id 23so1178108wyf.13 for ; Fri, 25 Mar 2011 05:57:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=X1IkzSOW6s40CSc8SnvCOpp3ztkSgqgpaKJKiv70Iu8=; b=X1Qy4M6RsB2tKyp7e89H73j+t71SrHJTb9J5V2BTCGvg5++rTW+0SxLzT9laxk1MLj p+n0TWsasdVHNOegsxGgbGY2zzWzq0PwTGUGyg6maCE0Nb2K/r3rHMbek3zPlecD/1If TPqfffLhy8PqbsvtemBNQRDUPGMoWQNYcAqz0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=L9UTdQyAXMcWIB3ZRKlB+KLu8iU4+G8nNdy7K2JuJZ0B79G3HKZH7a078HstGVIwIR xidLt6DvoqXTBeUMk5df2Ldx2o0OQGnhBs3ORgnFHkq9SwEwLxOH9DUqtFjOw/xfxPDy 1GSLV1OMPZmrnsQiPwGsyebT5TeJXoEEB9grM= MIME-Version: 1.0 Received: by 10.216.87.131 with SMTP id y3mr2034929wee.3.1301056427715; Fri, 25 Mar 2011 05:33:47 -0700 (PDT) Sender: kimelto@gmail.com Received: by 10.216.85.3 with HTTP; Fri, 25 Mar 2011 05:33:47 -0700 (PDT) In-Reply-To: References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> Date: Fri, 25 Mar 2011 12:33:47 +0000 X-Google-Sender-Auth: 8UgSQfqImcuX03d834Vjyc1PhWc Message-ID: From: Julien Laffaye To: Ivan Voras Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 12:57:15 -0000 On Fri, Mar 25, 2011 at 11:52 AM, Ivan Voras wrote: > On 25/03/2011 11:11, Baptiste Daroussin wrote: > >> =A0In term of technology we decided to use a sqlite3 database, and to >> =A0prevent potential trolling, sqlite3 is used in it's amalgamation form >> =A0which means it is incorporated in the code sources (as recommanded by >> =A0sqlite developpers like a statically linked library) on build we only >> =A0activate the features we need in sqlite. > > I'm very glad you went with sqlite3! I've looked at pkgng source a bit an= d > it looks like you use transactions and foreign keys which is a huge benef= it > for the whole effort. > > At this time I'd just like to suggest you add the use of WAL journal > (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database creat= ion > so you get the benefits of multiple-readers-single-writer concurrency mod= el. > It sounds like a good idea. I'll add WAL support and if no problem arise from that we should keep it. >> =A0The alpha release come with an experimental tool "pkg2ng" to convert >> =A0an existing package database to the new pkgng database format. So one >> =A0can test pkgng without rebuild all its packages. > > Could you change the filename of the database to have the ".sqlite" > extension? It's not important but it indicates what it is used by and new= er > software is moving to ".sqlite". > Sure. Maybe rename pkg.db to local.sqlite so it will consistent with the repo.sqlite (both in /var/db/pkg) >> =A0One of the thing we are thinking about pkgng is to perhaps be able to >> =A0provide it only as a ports (with simple script in base to >> =A0boostrap/install it). That would allow pkgng to live with the ports t= o >> =A0be able to easily integrate new features without having to support >> =A0very old version of pkgng. > > Maybe I'm misunderstanding but won't that mean that the ports system with= out > pkgng will continue to maintain their data in the current format? > If pkgng is not installed, the first thing the port system will do is to install it. >> =A0more informations can be found here: >> =A0http://git.etoilebsd.net/pkgng/tree/docs/GOALS, > > """ > =A0 =A0 =A0 =A0 =A0the database will be a sqlite file compressed with the= xz format. > =A0 =A0 =A0 =A0 =A0the database will be signed so we can trust the sha256= of the > =A0 =A0 =A0 =A0 =A0packages, so if a package has the expected hash, it is= considered > =A0 =A0 =A0 =A0 =A0trusted. > """ > > I'm not sure on what "the database" refers at this point, but is it reall= y > necessary to compress it? I don't mean it's hard to do, just that maybe i= t > would be simpler without it. It is the database describing the remote repository. It is interesting to compress it because it will be downloaded. > > About this signature: hashing like this is very rudimentary. Could you > design this to extensible, expecting real PGP-based signatures in the > future? We thought that signing the repo.sqlite file would be simpler. If we want to sign each package individually, we must have a tarball which contains the real tarball plus the signature. Regards, Julien From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 14:15:13 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C6A0106564A; Fri, 25 Mar 2011 14:15:13 +0000 (UTC) (envelope-from baptiste.daroussin@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 EB24E8FC0A; Fri, 25 Mar 2011 14:15:12 +0000 (UTC) Received: by iyj12 with SMTP id 12so1410794iyj.13 for ; Fri, 25 Mar 2011 07:15:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:cc:content-type; bh=nBULJhR38e8GSfbFlpTplnIi5jp4wpDS0fb0QAMqadc=; b=swMZtHCXWEpjIKWDKKGfHF5EVhity71DrXDprFyehJmcWJNzPcUe518R2xLOtjq4w+ Niyxsoqd3Pjj0hVOkPpPqeVySz1mSZVs/KDyW/nYUvxt/7S4Q6dUnh0Wc0/Mt1+qK3GB OBW+m+ggk8JISzDl3s/iLTuBH3w3nKwHuyC5A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=isSkVJY6WHpDCtT0+DhBImeAcvJU1ZE1vjMkTTq5S6H3RcBbK6WxUMW5PXMrpPhh// fj7UpSfQ/BXrFRaKAieEKFEj+bhk7MsNc+E2mUNu0TsFxfdjKjv4bgPawjIT+rKTl8kv RxYlJwgO+fXGz2ockFzgT720y5x7Fn9KziTwY= Received: by 10.231.148.17 with SMTP id n17mr854134ibv.85.1301062512072; Fri, 25 Mar 2011 07:15:12 -0700 (PDT) MIME-Version: 1.0 Sender: baptiste.daroussin@gmail.com Received: by 10.231.182.76 with HTTP; Fri, 25 Mar 2011 07:14:52 -0700 (PDT) In-Reply-To: <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> From: Baptiste Daroussin Date: Fri, 25 Mar 2011 15:14:52 +0100 X-Google-Sender-Auth: UdOeOCb25mJYduHPZn6j8N2-kj0 Message-ID: To: Alexander Leidinger Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 14:15:13 -0000 2011/3/25 Alexander Leidinger : > Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 > 11:11:11 +0100): > >> pkgng is a binary package manager written from scratch for FreeBSD. > > I didn't had a look at it, just some comments about some parts you > explained. > >> features supported are or will be : > >> - the register command can analyse elf files when registering a new port >> to >> discover forgotten dependencies if necessary. (done in alpha using libelf) > > This will probably fail if LD_LIBRARY_PATH is used, or if we are installing > linuxulator ports. > this isn't activated by default, and if activated is only intended to work on freebsd elf files. This is done to workaround some bugguy ports not to be used in production, pkg register shows in warning in that case so that user/maintainers are warned they have something to fix. >> >> - a special architecture "all" allows to specify when a package can be >> used >> on every architecture. (not done yet) > > What if a package is able to install on a subset, e.g. the linuxulator ports > are for amd64 and i386? > No clue for that at the moment but we are open to suggestions. > What about DB corruption/loss? Do you keep the /var/db/pkg//xxx > files even with pkgng and only use the DB as a way to speed up some work (so > the DB corruption just requires to run pkg2ng), or are you lost of the DB is > lost? > Nothing is done about DB corruption/loss, I am not sure we need to do something. Maybe. Currently a filesystem corruption/loss on /var/db/pkg would do the same. but it is sqlite so we can perhaps provide a way to get compressed dump so user can periodically backup their database. regards, Bapt From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 14:26:55 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2EF21065670; Fri, 25 Mar 2011 14:26:55 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 78B518FC0C; Fri, 25 Mar 2011 14:26:55 +0000 (UTC) Received: from outgoing.leidinger.net (p5B1553A9.dip.t-dialin.net [91.21.83.169]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 3CED9844017; Fri, 25 Mar 2011 15:06:57 +0100 (CET) Received: from webmail.leidinger.net (webmail.Leidinger.net [IPv6:fd73:10c7:2053:1::2:102]) by outgoing.leidinger.net (Postfix) with ESMTP id E51001480; Fri, 25 Mar 2011 15:06:53 +0100 (CET) Received: (from www@localhost) by webmail.leidinger.net (8.14.4/8.13.8/Submit) id p2PE6rms028319; Fri, 25 Mar 2011 15:06:53 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.ec.europa.eu (pslux.ec.europa.eu [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Fri, 25 Mar 2011 15:06:53 +0100 Message-ID: <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> Date: Fri, 25 Mar 2011 15:06:53 +0100 From: Alexander Leidinger To: Baptiste Daroussin References: <20110325101111.GA36840@azathoth.lan> In-Reply-To: <20110325101111.GA36840@azathoth.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.6) X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 3CED9844017.AE190 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=0.077, required 6, autolearn=disabled, TW_KG 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301666818.37353@xRZhXvU4vJZiIP5vNJ+yEA X-EBL-Spam-Status: No Cc: ports@FreeBSD.org, hackers@FreeBSD.org, current@FreeBSD.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 14:26:56 -0000 Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 11:11:11 +0100): > pkgng is a binary package manager written from scratch for FreeBSD. I didn't had a look at it, just some comments about some parts you explained. > features supported are or will be : > - the register command can analyse elf files when registering a new port to > discover forgotten dependencies if necessary. (done in alpha using libelf) This will probably fail if LD_LIBRARY_PATH is used, or if we are installing linuxulator ports. > - new +MANIFEST (plist-like format) with new metadatas : options, arch, os > version, etc. (done in the alpha) > > - pkgng supports checking arch of the package which means that users > won't be able to install sparc64 binary package into amd64 machines. > (not done yet) > > - a special architecture "all" allows to specify when a package can be used > on every architecture. (not done yet) What if a package is able to install on a subset, e.g. the linuxulator ports are for amd64 and i386? > In term of technology we decided to use a sqlite3 database, and to > prevent potential trolling, sqlite3 is used in it's amalgamation form > which means it is incorporated in the code sources (as recommanded by > sqlite developpers like a statically linked library) on build we only > activate the features we need in sqlite. > > The alpha release come with an experimental tool "pkg2ng" to convert > an existing package database to the new pkgng database format. So one > can test pkgng without rebuild all its packages. What about DB corruption/loss? Do you keep the /var/db/pkg//xxx files even with pkgng and only use the DB as a way to speed up some work (so the DB corruption just requires to run pkg2ng), or are you lost of the DB is lost? Bye, Alexander. -- Real computer scientists don't comment their code. The identifiers are so long they can't afford the disk space. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 14:38:31 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F1981065677; Fri, 25 Mar 2011 14:38:31 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 64D708FC15; Fri, 25 Mar 2011 14:38:30 +0000 (UTC) Received: from outgoing.leidinger.net (p5B1553A9.dip.t-dialin.net [91.21.83.169]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 95AFF844017; Fri, 25 Mar 2011 15:38:23 +0100 (CET) Received: from webmail.leidinger.net (webmail.Leidinger.net [IPv6:fd73:10c7:2053:1::2:102]) by outgoing.leidinger.net (Postfix) with ESMTP id 933CD1485; Fri, 25 Mar 2011 15:38:20 +0100 (CET) Received: (from www@localhost) by webmail.leidinger.net (8.14.4/8.13.8/Submit) id p2PEcF0U036113; Fri, 25 Mar 2011 15:38:15 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.ec.europa.eu (pslux.ec.europa.eu [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Fri, 25 Mar 2011 15:38:14 +0100 Message-ID: <20110325153814.20287h1594npcu80@webmail.leidinger.net> Date: Fri, 25 Mar 2011 15:38:14 +0100 From: Alexander Leidinger To: Baptiste Daroussin References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.6) X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 95AFF844017.AFCC4 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=0.077, required 6, autolearn=disabled, TW_KG 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301668706.98996@8dLvdr1UCaeNUw34HdkXtg X-EBL-Spam-Status: No Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 14:38:31 -0000 Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 15:14:52 +0100): > 2011/3/25 Alexander Leidinger : >> Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 >> 11:11:11 +0100): >> >>> pkgng is a binary package manager written from scratch for FreeBSD. >> >> I didn't had a look at it, just some comments about some parts you >> explained. >> >>> features supported are or will be : >>> - a special architecture "all" allows to specify when a package can be >>> used >>> on every architecture. (not done yet) >> >> What if a package is able to install on a subset, e.g. the linuxulator ports >> are for amd64 and i386? >> > > No clue for that at the moment but we are open to suggestions. The suggestion is easy, allow a way to specify a set of valid architectures. >> What about DB corruption/loss? Do you keep the /var/db/pkg//xxx >> files even with pkgng and only use the DB as a way to speed up some work (so >> the DB corruption just requires to run pkg2ng), or are you lost of the DB is >> lost? >> > > Nothing is done about DB corruption/loss, I am not sure we need to > do something. > Maybe. I would say "for sure". Info: In Solaris 10 sqlite is used for the service managenemt framework (SMF). It is possible that the DB is corrupt in some bad situations. In this case you have to rebuild the DB (script provided, been there, had to use it). > Currently a filesystem corruption/loss on /var/db/pkg would do the same. Put a corruption of /var/db/pkg/xyz-1/+REQUIRED_BY would only affect a small part, and this part could be even recovered from (pkgdb from portupgrade is able to do it). > but it is sqlite so we can perhaps provide a way to get compressed > dump so user can periodically backup their database. It needs to be automated. Maybe periodic daily... but maybe this is not often enough after a day of a lot of changes (think about it this way: do you want to lose a day of changes?). The current FS based DB is very robust, partly because there is redundant data, pertly because losing a file just means that the very limited subset of information is lost (and a reinstall of one port will fix it). Bye, Alexander. -- Programming is an unnatural act. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 15:29:55 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89D2C1065676; Fri, 25 Mar 2011 15:29:55 +0000 (UTC) (envelope-from julien.laffaye@gmail.com) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 19B218FC1C; Fri, 25 Mar 2011 15:29:54 +0000 (UTC) Received: by gwb15 with SMTP id 15so576311gwb.13 for ; Fri, 25 Mar 2011 08:29:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=kL/C0kvR953FR6nHUoA2moQYutPRlh+qfCVWZXQGTnI=; b=lyXuaOY7JueL32sJ1vCcEPuktDMOqafaYKycXIONYIQV6aaqS1/lddnbJlpDQs14zf 8ICchoQai+gbXPQ/jKDygxshUQkCHUxlWP0VxZklOjBszTl7vIKa7TZ9qdlKPSsE7/4a UhwXh6+uwnDmtEyttmNrKWTttggIw4jZRGRxA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=VPyKA9MgX76sU9yJNa8cBWt+/n8wWbU07OdBcOAjPkkdqr/AsKquCCADhy9z0mtbFp OVB1xGl2TUmtieAgD2Inmy8rhDMTh11aHaFMRytLqpv2SVLu8c9R9jOQNi456SzLHsu0 vQs/GgwK+yIeZY0dbbYYuos0Jy4tJZyGo2EE4= MIME-Version: 1.0 Received: by 10.236.78.133 with SMTP id g5mr1315748yhe.35.1301065385885; Fri, 25 Mar 2011 08:03:05 -0700 (PDT) Sender: julien.laffaye@gmail.com Received: by 10.236.105.212 with HTTP; Fri, 25 Mar 2011 08:03:05 -0700 (PDT) In-Reply-To: <20110325153814.20287h1594npcu80@webmail.leidinger.net> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> Date: Fri, 25 Mar 2011 15:03:05 +0000 X-Google-Sender-Auth: MI45DCBFuMYG7jXWX1JVZvQfsYo Message-ID: From: Julien Laffaye To: Alexander Leidinger Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org, Baptiste Daroussin , hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 15:29:55 -0000 On Fri, Mar 25, 2011 at 2:38 PM, Alexander Leidinger wrote: > Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 > 15:14:52 +0100): > >> 2011/3/25 Alexander Leidinger : >>> >>> Quoting Baptiste Daroussin (from Fri, 25 Mar 2011 >>> 11:11:11 +0100): >>> >>>> pkgng is a binary package manager written from scratch for FreeBSD. >>> >>> I didn't had a look at it, just some comments about some parts you >>> explained. >>> >>>> features supported are or will be : > >>>> - a special architecture "all" allows to specify when a package can be >>>> used >>>> on every architecture. (not done yet) >>> >>> What if a package is able to install on a subset, e.g. the linuxulator >>> ports >>> are for amd64 and i386? >>> >> >> No clue for that at the moment but we are open to suggestions. > > The suggestion is easy, allow a way to specify a set of valid architectures. That looks reasonable and easy to implement. > >>> What about DB corruption/loss? Do you keep the /var/db/pkg//xxx >>> files even with pkgng and only use the DB as a way to speed up some work >>> (so >>> the DB corruption just requires to run pkg2ng), or are you lost of the DB >>> is >>> lost? >>> >> >> Nothing is done about DB corruption/loss, I am not sure we need to do >> something. >> Maybe. > > I would say "for sure". Info: In Solaris 10 sqlite is used for the service > managenemt framework (SMF). It is possible that the DB is corrupt in some > bad situations. In this case you have to rebuild the DB (script provided, > been there, had to use it). If sqlite is properly used with transactions, it is very hard to corrupt the database. But if hardware lies to us and say that the data is on disk whereas it isnt... what can we do? Another potential problem is fsync(), but if it is broken on FreeBSD we want to fix it! BTW, the goal is to only have the database and not the flat files. If you are paranoid about power outage, use something like zfs snapshots... > >> Currently a filesystem corruption/loss on /var/db/pkg would do the same. > > Put a corruption of /var/db/pkg/xyz-1/+REQUIRED_BY would only affect a small > part, and this part could be even recovered from (pkgdb from portupgrade is > able to do it). With sqlite we have atomicity! And locks! > >> but it is sqlite so we can perhaps provide a way to get compressed >> dump so user can periodically backup their database. > > It needs to be automated. Maybe periodic daily... but maybe this is not > often enough after a day of a lot of changes (think about it this way: do > you want to lose a day of changes?). The current FS based DB is very robust, > partly because there is redundant data, pertly because losing a file just > means that the very limited subset of information is lost (and a reinstall > of one port will fix it). > > Bye, > Alexander. Regards, Julien From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 15:35:23 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45E121065677; Fri, 25 Mar 2011 15:35:23 +0000 (UTC) (envelope-from gahr@gahrfit.gahr.ch) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0E9238FC13; Fri, 25 Mar 2011 15:35:23 +0000 (UTC) Received: from gahrfit.gahr.ch (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p2PFZLUb037512; Fri, 25 Mar 2011 15:35:22 GMT (envelope-from gahr@gahrfit.gahr.ch) Received: by gahrfit.gahr.ch (Postfix, from userid 1001) id 44E1345025; Fri, 25 Mar 2011 16:35:21 +0100 (CET) Date: Fri, 25 Mar 2011 16:35:21 +0100 From: Pietro Cerutti To: Julien Laffaye Message-ID: <20110325153520.GB23861@gahrfit.gahr.ch> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: X-PGP-Key: 0x9571F78E X-PGP-Fingerprint: 1203 92B5 3919 AF84 9B97 28D6 C0C2 6A98 9571 F78E User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org, Alexander Leidinger , Baptiste Daroussin , hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gahr@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 15:35:23 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2011-Mar-25, 15:03, Julien Laffaye wrote: > >>> What about DB corruption/loss? Do you keep the /var/db/pkg//= xxx > >>> files even with pkgng and only use the DB as a way to speed up some w= ork > >>> (so > >>> the DB corruption just requires to run pkg2ng), or are you lost of th= e DB > >>> is > >>> lost? > >>> > >> > >> Nothing is done about DB corruption/loss, I am not sure we need to do > >> something. > >> Maybe. > > > > I would say "for sure". Info: In Solaris 10 sqlite is used for the serv= ice > > managenemt framework (SMF). It is possible that the DB is corrupt in so= me > > bad situations. In this case you have to rebuild the DB (script provide= d, > > been there, had to use it). >=20 > If sqlite is properly used with transactions, it is very hard to > corrupt the database. But if hardware lies to us and say that the data > is on disk whereas it isnt... what can we do? > Another potential problem is fsync(), but if it is broken on FreeBSD > we want to fix it! >=20 > BTW, the goal is to only have the database and not the flat files. > If you are paranoid about power outage, use something like zfs snapshots.= =2E. No need to look for strange scenarios, I'm surely going to sudo rm -f the f= ile more sooner than later, so... maybe just save a copy? --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2MtjgACgkQwMJqmJVx945uOwCg3+l6a53XfIhLsR8ylmV5es+N +d0An1d8oFP80eUC0Q4Wz3tUpk4hEOnB =W0Yb -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 15:41:55 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68FEB1065670; Fri, 25 Mar 2011 15:41:55 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE468FC1B; Fri, 25 Mar 2011 15:41:54 +0000 (UTC) Received: by iwn33 with SMTP id 33so1467364iwn.13 for ; Fri, 25 Mar 2011 08:41:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:cc:content-type; bh=maBIL6bLjr1N3yYifLa7A0goEC7hUCT/cPEr/FnI6aE=; b=XRt9uG/tmfXtyTpYpCGXsLTfGk7ItIpf8216gAg97RGNY58YIk7OvU1Xs9QVEZeb0L Z8IrOI/IJcOzxkq0b/JRre9ZzDtTGV/uHQgIMcrfAVol+L//iWXxJEFD2CsnEyJSdWsT W+D5atPtd4L7UCGsFUo8E1paQ9k4Cu3ptipME= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=YcfNpelUHG7wgM6mEX6x/gsET4UcOpmu6jZr3CEUGO1s1TKfzs9K5+JCzx4XIHCXRX XZ8bcINeClfHd0fecab9AOvzcD7arhiUQqJPzlez6MmCW2IAQS5H+9q0lAUeiR+IBi1T lUXAap3xCW2dcbdG6pa/8sUUkM21QsFm1kME0= Received: by 10.43.65.72 with SMTP id xl8mr1419264icb.211.1301067714051; Fri, 25 Mar 2011 08:41:54 -0700 (PDT) MIME-Version: 1.0 Sender: baptiste.daroussin@gmail.com Received: by 10.231.182.76 with HTTP; Fri, 25 Mar 2011 08:41:34 -0700 (PDT) In-Reply-To: <20110325153520.GB23861@gahrfit.gahr.ch> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> From: Baptiste Daroussin Date: Fri, 25 Mar 2011 16:41:34 +0100 X-Google-Sender-Auth: iPWxLq6kxQEpqppKoZJcsnn-yTs Message-ID: To: gahr@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org, Alexander Leidinger , hackers@freebsd.org, current@freebsd.org, Julien Laffaye Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 15:41:55 -0000 2011/3/25 Pietro Cerutti : > On 2011-Mar-25, 15:03, Julien Laffaye wrote: >> >>> What about DB corruption/loss? Do you keep the /var/db/pkg//xxx >> >>> files even with pkgng and only use the DB as a way to speed up some work >> >>> (so >> >>> the DB corruption just requires to run pkg2ng), or are you lost of the DB >> >>> is >> >>> lost? >> >>> >> >> >> >> Nothing is done about DB corruption/loss, I am not sure we need to do >> >> something. >> >> Maybe. >> > >> > I would say "for sure". Info: In Solaris 10 sqlite is used for the service >> > managenemt framework (SMF). It is possible that the DB is corrupt in some >> > bad situations. In this case you have to rebuild the DB (script provided, >> > been there, had to use it). >> >> If sqlite is properly used with transactions, it is very hard to >> corrupt the database. But if hardware lies to us and say that the data >> is on disk whereas it isnt... what can we do? >> Another potential problem is fsync(), but if it is broken on FreeBSD >> we want to fix it! >> >> BTW, the goal is to only have the database and not the flat files. >> If you are paranoid about power outage, use something like zfs snapshots... > > No need to look for strange scenarios, I'm surely going to sudo rm -f the file > more sooner than later, so... maybe just save a copy? > > -- > Pietro Cerutti > The FreeBSD Project > gahr@FreeBSD.org > > PGP Public Key: > http://gahr.ch/pgp > I think we can provide a periodic script activable by users (I let other decide if it has to be activated by default or not) that does a pkg backup /path/to/file/backup and xz it. because copying can be a huge. 40Mo for the database here, corresponding to 70Mo in the old format and to 600 packages. the dump xzed is only 3Mo regards, Bapt From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 16:04:26 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55E59106566B for ; Fri, 25 Mar 2011 16:04:26 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1907A8FC0A for ; Fri, 25 Mar 2011 16:04:25 +0000 (UTC) Received: by iwn33 with SMTP id 33so1492889iwn.13 for ; Fri, 25 Mar 2011 09:04:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:content-type :content-transfer-encoding; bh=1r0gwWY7ay6ltCo3JPG36iVfGcT9OCmCA28a0XOYZEY=; b=MxGUtaOwUh40JnR+o5DBv/TqtTXyDfdac2pfjWCFVsvkslELwVAoUXOBMDAUy43Yye 3cAqMDl3VzRrRMNSw1giNCZKLfQJK8YYMecUuLMAZ2SVGhDxKeoR6KWtUz8nuB5isuaE JGkAoELmvNr1lgaXCDP9/p3YyzZ3lfN8fkhzk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:content-type :content-transfer-encoding; b=AmMNBXCSwlx4PCkHZHb6H261ZmqIh37uFPM7n54lnVqRFX8T2umJjksV0J74fwLi6+ F63j3pVW3ZROYGL2EKq1iejTkw06pUW4MS/PLQXn4yzvzj8J4/N3DfEm8qcOf6sgsqnD YUXyQ+j7LT9jNUhqnWJguCfsyo2Xlx/W8VWkk= Received: by 10.231.43.14 with SMTP id u14mr990904ibe.10.1301069065206; Fri, 25 Mar 2011 09:04:25 -0700 (PDT) MIME-Version: 1.0 Sender: baptiste.daroussin@gmail.com Received: by 10.231.182.76 with HTTP; Fri, 25 Mar 2011 09:04:05 -0700 (PDT) In-Reply-To: References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> From: Baptiste Daroussin Date: Fri, 25 Mar 2011 17:04:05 +0100 X-Google-Sender-Auth: 1R6Di4kMprgAe9xQ7y919NHne2w Message-ID: To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 16:04:26 -0000 2011/3/25 Julien Laffaye : > On Fri, Mar 25, 2011 at 11:52 AM, Ivan Voras wrote: >> On 25/03/2011 11:11, Baptiste Daroussin wrote: >> >>> =A0In term of technology we decided to use a sqlite3 database, and to >>> =A0prevent potential trolling, sqlite3 is used in it's amalgamation for= m >>> =A0which means it is incorporated in the code sources (as recommanded b= y >>> =A0sqlite developpers like a statically linked library) on build we onl= y >>> =A0activate the features we need in sqlite. >> >> I'm very glad you went with sqlite3! I've looked at pkgng source a bit a= nd >> it looks like you use transactions and foreign keys which is a huge bene= fit >> for the whole effort. >> >> At this time I'd just like to suggest you add the use of WAL journal >> (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database crea= tion >> so you get the benefits of multiple-readers-single-writer concurrency mo= del. >> > > It sounds like a good idea. I'll add WAL support and if no problem > arise from that we should keep it. > >>> =A0The alpha release come with an experimental tool "pkg2ng" to convert >>> =A0an existing package database to the new pkgng database format. So on= e >>> =A0can test pkgng without rebuild all its packages. >> >> Could you change the filename of the database to have the ".sqlite" >> extension? It's not important but it indicates what it is used by and ne= wer >> software is moving to ".sqlite". >> > > Sure. Maybe rename pkg.db to local.sqlite so it will consistent with > the repo.sqlite (both in /var/db/pkg) > >>> =A0One of the thing we are thinking about pkgng is to perhaps be able t= o >>> =A0provide it only as a ports (with simple script in base to >>> =A0boostrap/install it). That would allow pkgng to live with the ports = to >>> =A0be able to easily integrate new features without having to support >>> =A0very old version of pkgng. >> >> Maybe I'm misunderstanding but won't that mean that the ports system wit= hout >> pkgng will continue to maintain their data in the current format? >> > If pkgng is not installed, the first thing the port system will do is > to install it. > >>> =A0more informations can be found here: >>> =A0http://git.etoilebsd.net/pkgng/tree/docs/GOALS, >> >> """ >> =A0 =A0 =A0 =A0 =A0the database will be a sqlite file compressed with th= e xz format. >> =A0 =A0 =A0 =A0 =A0the database will be signed so we can trust the sha25= 6 of the >> =A0 =A0 =A0 =A0 =A0packages, so if a package has the expected hash, it i= s considered >> =A0 =A0 =A0 =A0 =A0trusted. >> """ >> >> I'm not sure on what "the database" refers at this point, but is it real= ly >> necessary to compress it? I don't mean it's hard to do, just that maybe = it >> would be simpler without it. > > It is the database describing the remote repository. It is interesting > to compress it because it will be downloaded. > >> >> About this signature: hashing like this is very rudimentary. Could you >> design this to extensible, expecting real PGP-based signatures in the >> future? > > We thought that signing the repo.sqlite file would be simpler. > If we want to sign each package individually, we must have a tarball > which contains the real tarball plus the signature. > > Regards, > Julien > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org= " > if you are going to test on current please notice that make install will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. We will workaround that later by renaming our lib libpkgng for the test pha= se. But I won't be able to do that before monday. regards, Bapt From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 16:14:18 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A63C1065670; Fri, 25 Mar 2011 16:14:18 +0000 (UTC) (envelope-from gahr@gahrfit.gahr.ch) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0102A8FC14; Fri, 25 Mar 2011 16:14:18 +0000 (UTC) Received: from gahrfit.gahr.ch (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p2PGEG2c072626; Fri, 25 Mar 2011 16:14:17 GMT (envelope-from gahr@gahrfit.gahr.ch) Received: by gahrfit.gahr.ch (Postfix, from userid 1001) id AD46C45025; Fri, 25 Mar 2011 17:14:16 +0100 (CET) Date: Fri, 25 Mar 2011 17:14:16 +0100 From: Pietro Cerutti To: Baptiste Daroussin Message-ID: <20110325161416.GC23861@gahrfit.gahr.ch> References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wzJLGUyc3ArbnUjN" Content-Disposition: inline In-Reply-To: X-PGP-Key: 0x9571F78E X-PGP-Fingerprint: 1203 92B5 3919 AF84 9B97 28D6 C0C2 6A98 9571 F78E User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gahr@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 16:14:18 -0000 --wzJLGUyc3ArbnUjN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2011-Mar-25, 17:04, Baptiste Daroussin wrote: >=20 > if you are going to test on current please notice that make install > will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. >=20 > We will workaround that later by renaming our lib libpkgng for the test p= hase. >=20 > But I won't be able to do that before monday. I was: http://people.freebsd.org/~gahr/pkgng-0.1-alpha1.diff --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --wzJLGUyc3ArbnUjN Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2Mv1cACgkQwMJqmJVx945ctACeM4VfjK6chaPi8VkqUtZMqvIA VmUAnjt19Of50iFJAhNeypRlObLO6yAe =p1gM -----END PGP SIGNATURE----- --wzJLGUyc3ArbnUjN-- From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 16:35:59 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BB9D1065673; Fri, 25 Mar 2011 16:35:59 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 78CAA8FC08; Fri, 25 Mar 2011 16:35:57 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA16076; Fri, 25 Mar 2011 18:35:54 +0200 (EET) (envelope-from avg@freebsd.org) Message-ID: <4D8CC468.2000904@freebsd.org> Date: Fri, 25 Mar 2011 18:35:52 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110309 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: gahr@freebsd.org References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> In-Reply-To: <20110325153520.GB23861@gahrfit.gahr.ch> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Baptiste Daroussin , current@freebsd.org, Julien Laffaye , ports@freebsd.org, hackers@freebsd.org, Alexander Leidinger Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 16:35:59 -0000 on 25/03/2011 17:35 Pietro Cerutti said the following: > No need to look for strange scenarios, I'm surely going to sudo rm -f the file > more sooner than later, so... maybe just save a copy? I even can rm -rf / by accident. What's your solution to this? :) P.S. one solution would be a subcase of the other -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 16:44:39 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B84D106564A; Fri, 25 Mar 2011 16:44:39 +0000 (UTC) (envelope-from julien.laffaye@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id A3C668FC08; Fri, 25 Mar 2011 16:44:38 +0000 (UTC) Received: by gxk28 with SMTP id 28so592051gxk.13 for ; Fri, 25 Mar 2011 09:44:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=ZfzFMO3zOfz53cM0eeGvjmlo3QXEMnLbtp4nXF32DLY=; b=eAIYN2b7WG+2hqSeLhitvfXxZnhwsaQsfoYRIdsiXODEZjU6YxKTn0FKll4IEz+Hg/ 5j/T4y1uO3IIuXvXB5DcBhO+d12f+9VcG8pPMfwLA1RRFPnJ7GBG3XedfLd+nj1naM0d P7e0EFIJGNyFNSWSICrD7cNw8AlTrvdnH+trc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=oDgVuQIS5VXeP5XOZxUVhF8j0Vby+g7EKaa7OMoPWnD71M9cXBPMANpCq0lBlEMiJu 2LRSos7IieJOuYndaV8C3zIS2yUiOkUaylJzWi5ziDMU8z7ghOatoOuBFn7YbrAv2d59 gI58gYhcJUl2yP8ZWMCAZ2XWVDMY2rSqkoD+E= MIME-Version: 1.0 Received: by 10.236.181.67 with SMTP id k43mr1384257yhm.285.1301069904198; Fri, 25 Mar 2011 09:18:24 -0700 (PDT) Sender: julien.laffaye@gmail.com Received: by 10.236.105.212 with HTTP; Fri, 25 Mar 2011 09:18:24 -0700 (PDT) In-Reply-To: <20110325161416.GC23861@gahrfit.gahr.ch> References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> <20110325161416.GC23861@gahrfit.gahr.ch> Date: Fri, 25 Mar 2011 16:18:24 +0000 X-Google-Sender-Auth: 04qXxOP39rF3JX4XDww6o8SryQI Message-ID: From: Julien Laffaye To: gahr@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Baptiste Daroussin , freebsd-current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 16:44:39 -0000 On Fri, Mar 25, 2011 at 4:14 PM, Pietro Cerutti wrote: > On 2011-Mar-25, 17:04, Baptiste Daroussin wrote: >> >> if you are going to test on current please notice that make install >> will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. >> >> We will workaround that later by renaming our lib libpkgng for the test phase. >> >> But I won't be able to do that before monday. > > I was: http://people.freebsd.org/~gahr/pkgng-0.1-alpha1.diff Commited! Thanks! From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 17:22:58 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98A7D106564A; Fri, 25 Mar 2011 17:22:58 +0000 (UTC) (envelope-from lists@eitanadler.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 25C2A8FC1F; Fri, 25 Mar 2011 17:22:57 +0000 (UTC) Received: by iyj12 with SMTP id 12so1616472iyj.13 for ; Fri, 25 Mar 2011 10:22:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=OxrwXRYrPrkHDXM5haH/Yh/iufSUuRlynTv5ePqaZuQ=; b=OaEn27yskrlJDrVVRProoUbza81ccZgbU3JccwHdWLHhh53/bnB4cSKZWtgPfQtYoD Pr42hlAGSH+H+ohmiDpH5LNoaJilyrhMzySYKi3c57LWSUU+EPJ5gSPPDgKoai9+0NLK nhe0a/0Z9FtJKSc6/VyBpFQAHMnCx42v0rHVA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=QqRVPVxucdztC5aqCt8BT+SKLmORLzisZRGgk/3KOMEMfd9kNCdzVcoEP/3RZY7CHF XNzGnT0+8QuiDrUob1wym1jzlUorJ6wg11lP/qj7+voCqcmIik36OPJQu+dUE2e6RHM/ M+d40xNJgT9VFLhSlS3YuWRLsWbp88K/0Nx9c= Received: by 10.43.58.14 with SMTP id wi14mr1576910icb.396.1301072275460; Fri, 25 Mar 2011 09:57:55 -0700 (PDT) MIME-Version: 1.0 Received: by 10.227.153.197 with HTTP; Fri, 25 Mar 2011 09:54:35 -0700 (PDT) In-Reply-To: <4D8CC468.2000904@freebsd.org> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> <4D8CC468.2000904@freebsd.org> From: Eitan Adler Date: Fri, 25 Mar 2011 11:54:35 -0500 Message-ID: To: Andriy Gapon Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , current@freebsd.org, Julien Laffaye , ports@freebsd.org, hackers@freebsd.org, gahr@freebsd.org, Alexander Leidinger Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 17:22:58 -0000 On Fri, Mar 25, 2011 at 11:35 AM, Andriy Gapon wrote: > on 25/03/2011 17:35 Pietro Cerutti said the following: >> No need to look for strange scenarios, I'm surely going to sudo rm -f the file >> more sooner than later, so... maybe just save a copy? > > I even can rm -rf / by accident. > What's your solution to this? :) rm -rf / rm: "/" may not be removed -- Eitan Adler From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 18:34:21 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C427C106564A for ; Fri, 25 Mar 2011 18:34:21 +0000 (UTC) (envelope-from ambrisko@ambrisko.com) Received: from mail.ambrisko.com (mail.ambrisko.com [64.174.51.43]) by mx1.freebsd.org (Postfix) with ESMTP id 8779C8FC14 for ; Fri, 25 Mar 2011 18:34:21 +0000 (UTC) X-Ambrisko-Me: Yes Received: from server2.ambrisko.com (HELO internal.ambrisko.com) ([192.168.1.2]) by ironport.ambrisko.com with ESMTP; 25 Mar 2011 11:05:02 -0700 Received: from ambrisko.com (localhost [127.0.0.1]) by internal.ambrisko.com (8.14.4/8.14.4) with ESMTP id p2PI4on2030332; Fri, 25 Mar 2011 11:04:50 -0700 (PDT) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.14.4/8.14.4/Submit) id p2PI4oIF030331; Fri, 25 Mar 2011 11:04:50 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <201103251804.p2PI4oIF030331@ambrisko.com> In-Reply-To: <4D8C6B50.7080508@FreeBSD.org> To: Alex Dupre Date: Fri, 25 Mar 2011 11:04:49 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL124d (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="US-ASCII" Cc: Alexander Motin , FreeBSD-Current Subject: Re: graid hit the tree X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 18:34:21 -0000 Alex Dupre writes: | Alexander Motin ha scritto: | > You can choose. Their functionality is comparable, but with graid: | ... | | Yes, as I supposed, so the answer is 'yes'. Obviously it needs a lot of | testing. Thanks for your work. Yes, it can use more testing which is why we (Cisco) wanted it in the tree. However, our experience has been very positive in performance and reliability. It has passed some of our harder failure tests of which others fail (race conditions of changing data while a rebuild is happening etc.). Now I don't have to maintain our hacked together ata and ata-raid changes :-) We are very happy to see this get into mainstream FreeBSD so others can help find and fix problems. It's very nice that it can work on any type of drives and not be tied to ata disks. This means it can/could work with scsi controllers with sw raid bios extensions etc. We have been testing it with ahci and and cam attached ata disks. If the hw supports it, it can update status leds. ata/ata-raid has served us well but graid will take us into the future! It was designed from the start as something that could be extended and deal with various failure modes. A big thanks to Alexander, Warner, iXsystems and Cisco for making this happen. It was Scott's vision a few years ago and now it is a reality. Doug A. From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 19:13:29 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62A341065670; Fri, 25 Mar 2011 19:13:29 +0000 (UTC) (envelope-from baptiste.daroussin@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 08C0A8FC14; Fri, 25 Mar 2011 19:13:28 +0000 (UTC) Received: by iyj12 with SMTP id 12so1737484iyj.13 for ; Fri, 25 Mar 2011 12:13:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:cc:content-type; bh=tn4RrSDHgOTdye5JU4GWcTwr/4dkE2H8zfm9+JEa9a8=; b=pMkatJyoIhCZG+9V+5dqcCHgLovFp0HI2QutJYOEvQpeFgshiXGPUKrxyg4mnSeHkJ h9Y6CBora0oAfWSFOHnRXLn+bPml9S+79CV6y5oPWwfIkP1XZ5XDcISfM2HuuJ85z9io HLoifRsEkiza7warbMP8C8jv8AkOvxjIz5uNI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=c7jUirU3flZmTs1/S1+SQMW73nIFgBV1Td6T9b1aFIlj5fOsdtSMQIOQmqcW8SZbDJ 0bjMepqg1AsOfcTSkOerzzba1iZW/LTrMTuX8bAgvA1H4hYe0eI5VBZCBauRLhW7nnvp 3wMOdBTpkDy2LIXs+0MiuBAWoW+zG5t6isoOM= Received: by 10.231.148.17 with SMTP id n17mr1159699ibv.85.1301080408089; Fri, 25 Mar 2011 12:13:28 -0700 (PDT) MIME-Version: 1.0 Sender: baptiste.daroussin@gmail.com Received: by 10.231.182.76 with HTTP; Fri, 25 Mar 2011 12:13:08 -0700 (PDT) In-Reply-To: <20110325185549.GD39447@eggman.experts-exchange.com> References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> <20110325161416.GC23861@gahrfit.gahr.ch> <20110325185549.GD39447@eggman.experts-exchange.com> From: Baptiste Daroussin Date: Fri, 25 Mar 2011 19:13:08 +0000 X-Google-Sender-Auth: cWfwwE3GISxZGkgeT9Y5DVxCrS0 Message-ID: To: Jason Helfman Content-Type: text/plain; charset=ISO-8859-1 Cc: gahr@freebsd.org, freebsd-current@freebsd.org, Julien Laffaye Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 19:13:29 -0000 2011/3/25 Jason Helfman : > On Fri, Mar 25, 2011 at 04:18:24PM +0000, Julien Laffaye thus spake: >> >> On Fri, Mar 25, 2011 at 4:14 PM, Pietro Cerutti wrote: >>> >>> On 2011-Mar-25, 17:04, Baptiste Daroussin wrote: >>>> >>>> if you are going to test on current please notice that make install >>>> will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. >>>> >>>> We will workaround that later by renaming our lib libpkgng for the test >>>> phase. >>>> >>>> But I won't be able to do that before monday. >>> >>> I was: http://people.freebsd.org/~gahr/pkgng-0.1-alpha1.diff >> >> Commited! Thanks! > > It would be great to be able to have a repo and all of the functionality of > this tool against an internal portstree/INDEX supported, as well. > > We have an internal portstree that we don't update on a daily basis, however > we do have a local category as part of the standard portstree. We are able > to build an INDEX off of this combination and support Tinderbox package > building and updating from this INDEX that has the entire tree. > > From what I read, it appears that support is already present, but not > absolutely certain. > > Looking forward to testing :) > -jgh > >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" >> > Hope I have correctly understood the question :). but I you are able to build packages (from tinderbox for example) with pkgng you are able to build a repository usable (custom one) just pkg repo ./the_path_to_the_repo and you are done. regards, Bapt From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 19:19:11 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC0BF106566B; Fri, 25 Mar 2011 19:19:11 +0000 (UTC) (envelope-from jhelfman@experts-exchange.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [72.29.183.251]) by mx1.freebsd.org (Postfix) with ESMTP id C26D38FC19; Fri, 25 Mar 2011 19:19:11 +0000 (UTC) Received: from mail.experts-exchange.com (localhost [127.0.0.1]) by mail.experts-exchange.com (Postfix) with ESMTP id C03B3742478; Fri, 25 Mar 2011 11:59:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=e-e.com; h= user-agent:in-reply-to:content-disposition:content-type :content-type:mime-version:references:message-id:subject:subject :from:from:date:date:received:received:received; s=ee; t= 1301079557; x=1302893957; bh=R2fLeLl6CwkD/jI7cUTFDXrNr9heoybixh4 53TqdPrY=; b=F4iOtvClQvz0xrGR9bn2Em4m+3T964mVAl18qD/TTl1PtxPFfm2 yXaGr9dtcfAOQSQNneMwj02UnKKOWIDleGUrWKLJrHhNvEPliiDo2+jFKrhrp0lm +hdTXSvPShQ7OM6PP8FK/fEpkYxNkQ4UdqgwBpxDLV7lX58OK6FLyZ1E= X-Virus-Scanned: amavisd-new at experts-exchange.com Received: from mail.experts-exchange.com ([127.0.0.1]) by mail.experts-exchange.com (mail.experts-exchange.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lProlOYeYKYX; Fri, 25 Mar 2011 11:59:17 -0700 (PDT) Received: from experts-exchange.com (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with SMTP id 84F59742472; Fri, 25 Mar 2011 11:59:17 -0700 (PDT) Received: (nullmailer pid 42060 invoked by uid 1001); Fri, 25 Mar 2011 18:55:49 -0000 Date: Fri, 25 Mar 2011 11:55:49 -0700 From: Jason Helfman To: Julien Laffaye Message-ID: <20110325185549.GD39447@eggman.experts-exchange.com> References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> <20110325161416.GC23861@gahrfit.gahr.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 8.2-RELEASE X-Living-The-Dream: I love the SLO Life! User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Baptiste Daroussin , freebsd-current@freebsd.org, gahr@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 19:19:12 -0000 On Fri, Mar 25, 2011 at 04:18:24PM +0000, Julien Laffaye thus spake: >On Fri, Mar 25, 2011 at 4:14 PM, Pietro Cerutti wrote: >> On 2011-Mar-25, 17:04, Baptiste Daroussin wrote: >>> >>> if you are going to test on current please notice that make install >>> will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. >>> >>> We will workaround that later by renaming our lib libpkgng for the test phase. >>> >>> But I won't be able to do that before monday. >> >> I was: http://people.freebsd.org/~gahr/pkgng-0.1-alpha1.diff > >Commited! Thanks! It would be great to be able to have a repo and all of the functionality of this tool against an internal portstree/INDEX supported, as well. We have an internal portstree that we don't update on a daily basis, however we do have a local category as part of the standard portstree. We are able to build an INDEX off of this combination and support Tinderbox package building and updating from this INDEX that has the entire tree. From what I read, it appears that support is already present, but not absolutely certain. Looking forward to testing :) -jgh >_______________________________________________ >freebsd-current@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-current >To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 19:49:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0991B106564A; Fri, 25 Mar 2011 19:49:01 +0000 (UTC) (envelope-from dickey@saltmine.radix.net) Received: from saltmine.radix.net (saltmine.radix.net [207.192.128.40]) by mx1.freebsd.org (Postfix) with ESMTP id 802B08FC0C; Fri, 25 Mar 2011 19:49:01 +0000 (UTC) Received: from saltmine.radix.net (localhost [127.0.0.1]) by saltmine.radix.net (8.12.2/8.12.2) with ESMTP id p2PJWisw009337; Fri, 25 Mar 2011 15:32:44 -0400 (EDT) Received: (from dickey@localhost) by saltmine.radix.net (8.12.2/8.12.2/Submit) id p2PJWdar009336; Fri, 25 Mar 2011 15:32:39 -0400 (EDT) Date: Fri, 25 Mar 2011 15:32:39 -0400 From: Thomas Dickey To: Eitan Adler Message-ID: <20110325193239.GA8697@saltmine.radix.net> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> <4D8CC468.2000904@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qDbXVdCdHGoSgWSk" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.27i Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org, gahr@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 19:49:02 -0000 --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Mar 25, 2011 at 11:54:35AM -0500, Eitan Adler wrote: > On Fri, Mar 25, 2011 at 11:35 AM, Andriy Gapon wrote: > > on 25/03/2011 17:35 Pietro Cerutti said the following: > >> No need to look for strange scenarios, I'm surely going to sudo rm -f = the file > >> more sooner than later, so... maybe just save a copy? > > > > I even can rm -rf / by accident. > > What's your solution to this? :) >=20 > rm -rf / > rm: "/" may not be removed referring to the CVS, this should improve the approach. cd /tmp rm -rf ../* ymmv --=20 Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net --qDbXVdCdHGoSgWSk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQFNjO3VtIqByHxlDocRAu57AJ9sXU3nCRc2b3DBQvdXWxDPeOpOewCgl3Xo aT66X/ALGG9KVd/cEWIBvFc= =uGvx -----END PGP SIGNATURE----- --qDbXVdCdHGoSgWSk-- From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 20:14:47 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA1C6106566B; Fri, 25 Mar 2011 20:14:46 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 593958FC1B; Fri, 25 Mar 2011 20:14:46 +0000 (UTC) Received: from outgoing.leidinger.net (p5B1553A9.dip.t-dialin.net [91.21.83.169]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id DAB80844017; Fri, 25 Mar 2011 21:14:41 +0100 (CET) Received: from unknown (IO.Leidinger.net [192.168.2.110]) by outgoing.leidinger.net (Postfix) with ESMTP id 0121614A9; Fri, 25 Mar 2011 21:14:38 +0100 (CET) Date: Fri, 25 Mar 2011 21:14:39 +0100 From: Alexander Leidinger To: gahr@freebsd.org Message-ID: <20110325211439.00004dda@unknown> In-Reply-To: <20110325153520.GB23861@gahrfit.gahr.ch> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> X-Mailer: Claws Mail 3.7.8cvs47 (GTK+ 2.16.6; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: DAB80844017.A081C X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-0.846, required 6, autolearn=disabled, ALL_TRUSTED -1.00, TW_KG 0.08, TW_ZF 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301688882.63594@6X9bXvURTkigw9HJYLbInA X-EBL-Spam-Status: No Cc: Baptiste, current@freebsd.org, Julien Laffaye , Daroussin , ports@freebsd.org, hackers@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 20:14:47 -0000 On Fri, 25 Mar 2011 16:35:21 +0100 Pietro Cerutti wrote: > On 2011-Mar-25, 15:03, Julien Laffaye wrote: > > >>> What about DB corruption/loss? Do you keep > > >>> the /var/db/pkg//xxx files even with pkgng and only > > >>> use the DB as a way to speed up some work (so > > >>> the DB corruption just requires to run pkg2ng), or are you lost > > >>> of the DB is > > >>> lost? > > >>> > > >> > > >> Nothing is done about DB corruption/loss, I am not sure we need > > >> to do something. > > >> Maybe. > > > > > > I would say "for sure". Info: In Solaris 10 sqlite is used for > > > the service managenemt framework (SMF). It is possible that the > > > DB is corrupt in some bad situations. In this case you have to > > > rebuild the DB (script provided, been there, had to use it). > > > > If sqlite is properly used with transactions, it is very hard to > > corrupt the database. But if hardware lies to us and say that the And as I told above, I even had such a case (more than once), and the hardware was not buggy. What do you want to tell in this case, "life sucks, reinstall everything"? > > data is on disk whereas it isnt... what can we do? Sometimes you have to stay with broken hardware. > > Another potential problem is fsync(), but if it is broken on FreeBSD > > we want to fix it! > > > > BTW, the goal is to only have the database and not the flat files. > > If you are paranoid about power outage, use something like zfs > > snapshots... There are more FS than only ZFS (personally I use ZFS, and I have snapshots, but this is not a good solution for this problem). As I told already, if it isn't automatic, nearly nobody will use it. And the package management stuff has to be automatic, no freshman will think about setting up a snapshot script when he starts to use packages/ports. > No need to look for strange scenarios, I'm surely going to sudo rm -f > the file more sooner than later, so... maybe just save a copy? A copy or two would be enough, but it has to be done automatically, and once a day is not enough. A copy after each X modifications maybe (for suitable definitions of X and 'modifications'). Bye, Alexander. From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 20:46:57 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 001841065670; Fri, 25 Mar 2011 20:46:56 +0000 (UTC) (envelope-from jos@catnook.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5645E8FC1D; Fri, 25 Mar 2011 20:46:55 +0000 (UTC) Received: by yxl31 with SMTP id 31so703605yxl.13 for ; Fri, 25 Mar 2011 13:46:55 -0700 (PDT) MIME-Version: 1.0 Received: by 10.151.13.11 with SMTP id q11mr1414657ybi.272.1301084664953; Fri, 25 Mar 2011 13:24:24 -0700 (PDT) Received: by 10.150.143.9 with HTTP; Fri, 25 Mar 2011 13:24:24 -0700 (PDT) Received: by 10.150.143.9 with HTTP; Fri, 25 Mar 2011 13:24:24 -0700 (PDT) Date: Fri, 25 Mar 2011 13:24:24 -0700 Message-ID: From: Jos Backus To: Alexander Leidinger Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Daroussin , current@freebsd.org, Julien Laffaye , ports@freebsd.org, hackers@freebsd.org, gahr@freebsd.org, Baptiste@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 20:46:57 -0000 As far as package managers go, yum, which is used widely, uses SQLite. -- Peace cannot be achieved through violence, it can only be attained through understanding. From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 20:47:16 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A32B1065695; Fri, 25 Mar 2011 20:47:16 +0000 (UTC) (envelope-from yanegomi@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 6FE0A8FC0A; Fri, 25 Mar 2011 20:47:14 +0000 (UTC) Received: by wwc33 with SMTP id 33so1813895wwc.31 for ; Fri, 25 Mar 2011 13:47:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=cUnF30A0EiLnPiiKXB5G6jlDPdyudcLaEK7bevmXRFQ=; b=A1ezVe+GKW7IOEhYg2qyMXgNcQlo3ClnlM8A08uIqnk5CE/5RlcXJ3IOJs5U4t+UhF VgRer4r9yZDWeJ5+zal3ts61+qtKKWe9aGNPxT6tovYqR3XnWYMh2NV31Y5eqFpPCxBq g1I9SQ3wNuXWOfYNupRafPc170L0UgKbm0XKA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=UyXO6GCdmv0L5MS74jNS2SxWJd7vAaF2XV710xxa4n/hM3FRfKDapdWUvqa6dvu/30 0j1TjnjNZZsPorvz243K5hu+JXFm8fntsyDUfpKvYvx4gYjU9Zsw0S+JAYq1VPUDVmBt NHITgi+vxqBfyhUUhCpHu6rXjCpxdp24L+Kyw= MIME-Version: 1.0 Received: by 10.217.7.66 with SMTP id z44mr919649wes.100.1301086033606; Fri, 25 Mar 2011 13:47:13 -0700 (PDT) Received: by 10.216.173.142 with HTTP; Fri, 25 Mar 2011 13:47:13 -0700 (PDT) In-Reply-To: <20110325211439.00004dda@unknown> References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> <20110325211439.00004dda@unknown> Date: Fri, 25 Mar 2011 13:47:13 -0700 Message-ID: From: Garrett Cooper To: Alexander Leidinger Content-Type: text/plain; charset=ISO-8859-1 Cc: Daroussin , current@freebsd.org, Julien Laffaye , ports@freebsd.org, hackers@freebsd.org, gahr@freebsd.org, Baptiste@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 20:47:16 -0000 On Fri, Mar 25, 2011 at 1:14 PM, Alexander Leidinger wrote: > On Fri, 25 Mar 2011 16:35:21 +0100 Pietro Cerutti > wrote: > >> On 2011-Mar-25, 15:03, Julien Laffaye wrote: >> > >>> What about DB corruption/loss? Do you keep >> > >>> the /var/db/pkg//xxx files even with pkgng and only >> > >>> use the DB as a way to speed up some work (so >> > >>> the DB corruption just requires to run pkg2ng), or are you lost >> > >>> of the DB is >> > >>> lost? >> > >>> >> > >> >> > >> Nothing is done about DB corruption/loss, I am not sure we need >> > >> to do something. >> > >> Maybe. >> > > >> > > I would say "for sure". Info: In Solaris 10 sqlite is used for >> > > the service managenemt framework (SMF). It is possible that the >> > > DB is corrupt in some bad situations. In this case you have to >> > > rebuild the DB (script provided, been there, had to use it). >> > >> > If sqlite is properly used with transactions, it is very hard to >> > corrupt the database. But if hardware lies to us and say that the > > And as I told above, I even had such a case (more than once), and the > hardware was not buggy. What do you want to tell in this case, "life > sucks, reinstall everything"? If you use binary packages, pulling down everything should be trivial, fast, and easy to install. If you're using ports, well then things are going to be slow as expected. >> > data is on disk whereas it isnt... what can we do? > > Sometimes you have to stay with broken hardware. Sometimes you have to go buy new parts? Playing with broken hardware is like playing with fire -- sometimes you'll get burned if it goes out of commission during critical operations. I would be more concerned about overall system operation than having a packaging system that can handle all error conditions that should be rightfully handled by various kernel subsystems. If the kernel's doing it's job, then the packaging manager can do its job as well. >> > Another potential problem is fsync(), but if it is broken on FreeBSD >> > we want to fix it! >> > >> > BTW, the goal is to only have the database and not the flat files. >> > If you are paranoid about power outage, use something like zfs >> > snapshots... > > There are more FS than only ZFS (personally I use ZFS, and I have > snapshots, but this is not a good solution for this problem). A lot of filesystems feature snapshot'ing, including UFS. If you aren't smart enough to back up your data you're toast if the data is gone. I would be more concerned about the program getting killed, not getting properly cleaned up, etc as this is something that the package manager frontend (or whatever the official name is) should catch and fail gracefully with. Things need to follow an ACID methodology and be recoverable in the event that it can't be ACID, or it's no better than pkg_install/ports currently is if it's caught in the middle of a critical operation today installing or removing software. If SQLite can't deliver this level of ACID-like capability, then pkg_install needs to be redesigned. > As I told already, if it isn't automatic, nearly nobody will use it. > And the package management stuff has to be automatic, no freshman will > think about setting up a snapshot script when he starts to use > packages/ports. I'd just provide an export command to print out a (JSON?) version of the information, and move on. None of the other major packaging systems out there that I know of use flat files for this data, and I would rather not make it automatic because it's an unnecessary performance hit. If the user feels the need for backing up his/her data they will. If not, they're SoL in the event of a crash. >> No need to look for strange scenarios, I'm surely going to sudo rm -f >> the file more sooner than later, so... maybe just save a copy? > > A copy or two would be enough, but it has to be done automatically, and > once a day is not enough. A copy after each X modifications maybe > (for suitable definitions of X and 'modifications'). Please see my comment above. There's no reason why this belongs in a packaging system (you can add it as an external tool, but the point is to avoid architectural mistakes that leaked into the old pkg_install over the period of 10 years or so). Thanks, -Garrett PS Sorry for being so hardnosed on this, but I want something that's fast and correct, instead of something bloated, slow, half-baked, harder to test, etc. pkg_install gets executed enough times during a port upgrade that having something more streamlined for most usecases is the only way to go, and there's enough code that doesn't get executed on a regular basis that has no business being in pkg_install. From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 21:38:15 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D50FA106564A; Fri, 25 Mar 2011 21:38:15 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 80DF28FC16; Fri, 25 Mar 2011 21:38:15 +0000 (UTC) Received: by iwn33 with SMTP id 33so1854367iwn.13 for ; Fri, 25 Mar 2011 14:38:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:cc:content-type; bh=LVt6khElnWGe2uvyM7HMMDcWeSApzX+tShzbin8l4tA=; b=ffZoG2mQfPhBTfYrfEyUSpD701xiagPdx5jr8a7tDeC/cGht/CMsGywOfKAxcLifkF 7l/EyjtrSrn709+UzqFH5uTvIxplLBbVAd3r7lUYw++wqPqJtW9GoSPM2Q4BvrreeQJ5 Z0CrE9ViEb0P3x8EmCkDYiK7d2LXelxm1cJmg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=OqBuj/NdJnQcxeh4Ee3eA/9OQqkq18+2dIyqzCZV1ZwMFY1ZaR/Q8YZMQDfMOv4xj+ NKS6DLhNGbf5Kna0fTSPDtdCjvTGQtq8iAbMW7wNfpFZNBlHNUJSf6397wbRBfNKHYX7 Gj/PdRUJPT09TrgygzV8Xtqn1H9Kr/RJXqy88= Received: by 10.43.64.18 with SMTP id xg18mr1946907icb.144.1301089095084; Fri, 25 Mar 2011 14:38:15 -0700 (PDT) MIME-Version: 1.0 Sender: baptiste.daroussin@gmail.com Received: by 10.231.182.76 with HTTP; Fri, 25 Mar 2011 14:37:55 -0700 (PDT) In-Reply-To: <4D8D09C2.2050500@rawbw.com> References: <20110325101111.GA36840@azathoth.lan> <4D8D09C2.2050500@rawbw.com> From: Baptiste Daroussin Date: Fri, 25 Mar 2011 21:37:55 +0000 X-Google-Sender-Auth: zRLDz9bdAAO1hVXm0d9bcUeN6RQ Message-ID: To: Yuri Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 21:38:15 -0000 2011/3/25 Yuri : > On 03/25/2011 03:11, Baptiste Daroussin wrote: >> >> Julien Laffaye (jlaffaye@) and I, helped by Philippe Pepiot (huge >> contributor) have been working since the end of the last GSoC on a >> rewrite of pkg_install. >> >> pkgng is a binary package manager written from scratch for FreeBSD. >> > > How does it relate to portmaster and portupgrade packages, which both have > (or include) supposedly the same functionality? > > Yuri > both have to be adapted, portupgrade throught maybe some ruby bindings to libpkg, portmaster by patching it to use pkg frontend instead of pkg_* tools (as I did for the ports (see ports/bsd.pkgng.mk in the git tree) regards, Bapt From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 21:52:54 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A2841065674; Fri, 25 Mar 2011 21:52:54 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 5A66A8FC15; Fri, 25 Mar 2011 21:52:53 +0000 (UTC) Received: from outgoing.leidinger.net (p5B1553A9.dip.t-dialin.net [91.21.83.169]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id CBA98844015; Fri, 25 Mar 2011 22:52:47 +0100 (CET) Received: from unknown (IO.Leidinger.net [192.168.2.110]) by outgoing.leidinger.net (Postfix) with ESMTP id 16C3414B8; Fri, 25 Mar 2011 22:52:45 +0100 (CET) Date: Fri, 25 Mar 2011 22:52:44 +0100 From: Alexander Leidinger To: Garrett Cooper Message-ID: <20110325225244.00002d0b@unknown> In-Reply-To: References: <20110325101111.GA36840@azathoth.lan> <20110325150653.21132ej6abxmjpgk@webmail.leidinger.net> <20110325153814.20287h1594npcu80@webmail.leidinger.net> <20110325153520.GB23861@gahrfit.gahr.ch> <20110325211439.00004dda@unknown> X-Mailer: Claws Mail 3.7.8cvs47 (GTK+ 2.16.6; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: CBA98844015.A31C5 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-0.246, required 6, autolearn=disabled, ALL_TRUSTED -1.00, J_CHICKENPOX_83 0.60, TW_KG 0.08, TW_ZF 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1301694769.72701@Md6/OUcK4PqKvfQn1p4k8w X-EBL-Spam-Status: No Cc: current@freebsd.org, Daroussin , Julien, Laffaye , ports@freebsd.org, hackers@freebsd.org, gahr@freebsd.org, Baptiste@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 21:52:54 -0000 On Fri, 25 Mar 2011 13:47:13 -0700 Garrett Cooper wrote: > On Fri, Mar 25, 2011 at 1:14 PM, Alexander Leidinger > wrote: > > On Fri, 25 Mar 2011 16:35:21 +0100 Pietro Cerutti > > wrote: > > > >> On 2011-Mar-25, 15:03, Julien Laffaye wrote: > >> > >>> What about DB corruption/loss? Do you keep > >> > >>> the /var/db/pkg//xxx files even with pkgng and only > >> > >>> use the DB as a way to speed up some work (so > >> > >>> the DB corruption just requires to run pkg2ng), or are you > >> > >>> lost of the DB is > >> > >>> lost? > >> > >>> > >> > >> > >> > >> Nothing is done about DB corruption/loss, I am not sure we > >> > >> need to do something. > >> > >> Maybe. > >> > > > >> > > I would say "for sure". Info: In Solaris 10 sqlite is used for > >> > > the service managenemt framework (SMF). It is possible that the > >> > > DB is corrupt in some bad situations. In this case you have to > >> > > rebuild the DB (script provided, been there, had to use it). > >> > > >> > If sqlite is properly used with transactions, it is very hard to > >> > corrupt the database. But if hardware lies to us and say that the > > > > And as I told above, I even had such a case (more than once), and > > the hardware was not buggy. What do you want to tell in this case, > > "life sucks, reinstall everything"? > > If you use binary packages, pulling down everything should be trivial, > fast, and easy to install. If you're using ports, well then things are > going to be slow as expected. And if there is a fast way to cut down the slow part... why not? > >> > data is on disk whereas it isnt... what can we do? > > > > Sometimes you have to stay with broken hardware. > > Sometimes you have to go buy new parts? Yes, but if we talk e.g. about aging hardware, having the luck to get hit directly in the parts which hurt is not nice. You want to have the time to find a suitable replacement. > Playing with broken hardware is like playing with fire -- sometimes > you'll get burned if it goes out of commission during critical > operations. I would be more concerned about overall system operation > than having a packaging system that can handle all error conditions > that should be rightfully handled by various kernel subsystems. If the > kernel's doing it's job, then the packaging manager can do its job as > well. You know that the world is not an ideal one. Shit happens and Murphy visits you. > >> > Another potential problem is fsync(), but if it is broken on > >> > FreeBSD we want to fix it! > >> > > >> > BTW, the goal is to only have the database and not the flat > >> > files. If you are paranoid about power outage, use something > >> > like zfs snapshots... > > > > There are more FS than only ZFS (personally I use ZFS, and I have > > snapshots, but this is not a good solution for this problem). > > A lot of filesystems feature snapshot'ing, including UFS. If you > aren't smart enough to back up your data you're toast if the data is > gone. So... why do we have /var/backups/master.passwd.bak then? To make life easy. > I would be more concerned about the program getting killed, not > getting properly cleaned up, etc as this is something that the package > manager frontend (or whatever the official name is) should catch and > fail gracefully with. Things need to follow an ACID methodology and be > recoverable in the event that it can't be ACID, or it's no better than > pkg_install/ports currently is if it's caught in the middle of a > critical operation today installing or removing software. I agree. > If SQLite can't deliver this level of ACID-like capability, then > pkg_install needs to be redesigned. AFAIK it can. > > As I told already, if it isn't automatic, nearly nobody will use it. > > And the package management stuff has to be automatic, no freshman > > will think about setting up a snapshot script when he starts to use > > packages/ports. > > I'd just provide an export command to print out a (JSON?) > version of the information, and move on. None of the other major > packaging systems out there that I know of use flat files for this > data, and I would rather not make it automatic because it's an > unnecessary performance hit. If the user feels the need for backing up > his/her data they will. If not, they're SoL in the event of a crash. - It does not need to be done with every change. - You do not know if it is a performance hit or not, we do not have numbers. - If making an automatic export after X modifications is not expensive, I say: why not? It would make more easy in case of fire. > >> No need to look for strange scenarios, I'm surely going to sudo rm > >> -f the file more sooner than later, so... maybe just save a copy? > > > > A copy or two would be enough, but it has to be done automatically, > > and once a day is not enough. A copy after each X modifications > > maybe (for suitable definitions of X and 'modifications'). > > Please see my comment above. There's no reason why this belongs in a > packaging system (you can add it as an external tool, but the point is > to avoid architectural mistakes that leaked into the old pkg_install > over the period of 10 years or so). Backups are not for architectural mistakes, they are for situations where something went wrong. Something may go wrong even without architectural mistakes. Safety nets are good. They are even better if they do not cost anything. We do not know how much this would cost, but does this mean we are not even allowed to talk about it? If the penalty is too big, sure, ditch the idea of doing it often, but as long as we do not know the numbers, please, don't tell the end of the world is near. > Thanks, > -Garrett > > PS Sorry for being so hardnosed on this, but I want something that's > fast and correct, instead of something bloated, slow, half-baked, > harder to test, etc. pkg_install gets executed enough times during a > port upgrade that having something more streamlined for most usecases > is the only way to go, and there's enough code that doesn't get > executed on a regular basis that has no business being in pkg_install. I agree fully with you, I also hope for something very fast, but as long as we do not have numbers, please ... Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 21:53:25 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66C4C106566B; Fri, 25 Mar 2011 21:53:25 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell0.rawbw.com (shell0.rawbw.com [198.144.192.45]) by mx1.freebsd.org (Postfix) with ESMTP id E52308FC26; Fri, 25 Mar 2011 21:53:24 +0000 (UTC) Received: from eagle.yuri.org (stunnel@localhost [127.0.0.1]) (authenticated bits=0) by shell0.rawbw.com (8.14.4/8.14.4) with ESMTP id p2PLRX0C034367; Fri, 25 Mar 2011 14:27:33 -0700 (PDT) (envelope-from yuri@rawbw.com) Message-ID: <4D8D09C2.2050500@rawbw.com> Date: Fri, 25 Mar 2011 14:31:46 -0700 From: Yuri User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.16) Gecko/20101211 Thunderbird/3.0.11 MIME-Version: 1.0 To: Baptiste Daroussin References: <20110325101111.GA36840@azathoth.lan> In-Reply-To: <20110325101111.GA36840@azathoth.lan> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Fri, 25 Mar 2011 22:08:23 +0000 Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 21:53:25 -0000 On 03/25/2011 03:11, Baptiste Daroussin wrote: > Julien Laffaye (jlaffaye@) and I, helped by Philippe Pepiot (huge > contributor) have been working since the end of the last GSoC on a > rewrite of pkg_install. > > pkgng is a binary package manager written from scratch for FreeBSD. > How does it relate to portmaster and portupgrade packages, which both have (or include) supposedly the same functionality? Yuri From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 23:25:19 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A77F106566C for ; Fri, 25 Mar 2011 23:25:19 +0000 (UTC) (envelope-from nlandys@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4717B8FC15 for ; Fri, 25 Mar 2011 23:25:18 +0000 (UTC) Received: by iwn33 with SMTP id 33so1948135iwn.13 for ; Fri, 25 Mar 2011 16:25:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=4LLIh/cqiqIODwmvFQy2s7v4stWb5Z+5hvg/RfmaCwk=; b=I6cInwTlgWKIZhNxsgjjn+D7Q+eAjEllly2mTuDo530GWcRXnyysbU2cbeXSa1gLWv IG5eOLbZeb5y5eiHumG85pt5q+3I7z2tpFvqShAu2pNvoXuE3S6cTsxtAhI/vTlAUi/C a4tokxR/3O9kh/RxZyKVF9UIu8T0LbrMSdAW0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=A7Lsov9wfJNWbTPOYx1OfM6UuZYMGtfWcTSmtqiUVDdrF6OHugwXsnNKratyFR39tb k8KJm7AuMtEo41towVQoYGPyvYlsMjLM/V4IUSyZBcN14ruFiZ4vWOM9gUpSnk5OHQxz lFgdmSkE1wtG1cDC8hbyIJe0zE6g4bYD8zUK4= MIME-Version: 1.0 Received: by 10.43.64.18 with SMTP id xg18mr2067536icb.144.1301095518288; Fri, 25 Mar 2011 16:25:18 -0700 (PDT) Received: by 10.42.227.66 with HTTP; Fri, 25 Mar 2011 16:25:18 -0700 (PDT) Date: Fri, 25 Mar 2011 16:25:18 -0700 Message-ID: From: Nerius Landys To: freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 23:25:19 -0000 I plan on doing some kernel tweaking on CURRENT. If my changes go well I'll submit my changes to one of the devs. I'm used to getting /usr/src/ via supfile using the "csup" command. I find that it would be a whole lot easier for me to access some sort of anonymous SVN or CVS directly to populate my entire /usr/src/ folder. That way, I would be able to make modifications directly in /usr/src/ and then use commands such as "svn status", "svn diff", and "svn update" to view my changes, come up with a patch, and synchronize my source tree [respectively] even after I have local changes. So my question is, is there an SVN or CVS repository to do this sort of thing? Perhaps there is a Handbook page that explains this and I'm just missing it? The end result must be getting the same files under /usr/src/ as when using the CURRENT supfile. So for example: > cd /usr/ > rm -rf src/ > svn checkout svn://some.repos.freebsd.org/src-all/path/to/ ./src From owner-freebsd-current@FreeBSD.ORG Fri Mar 25 23:38:45 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE4231065672 for ; Fri, 25 Mar 2011 23:38:45 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (muon.cran.org.uk [IPv6:2a01:348:0:15:5d59:5c40:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 527038FC14 for ; Fri, 25 Mar 2011 23:38:45 +0000 (UTC) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id 705FDE786F; Fri, 25 Mar 2011 23:38:44 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cran.org.uk; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=mail; bh=Hhva/wNg+QFP vxBGDLO0v47WsPQ=; b=Z+DITxFLCcJAvSvtFhWn7YHwFvZw5oLsp3XBwic3GG2E oLstzQPNU1Eo/r6p1UXqqFtKsTUR7zNCJty3UatB9vUnoIPJRmBmHnfi0UdYuiyQ 3SE8nn19ZYtCRLnW8nw+s4y9KqgU82bTf1xVFD286/j36THPE1QN31Hv/wEgjUo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=cran.org.uk; h=date:from:to :cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; q=dns; s=mail; b=e04KgC NWJoKOlSQUEkl0FzU+I2onZDSNoA3JR/tvB5c/CwGuH0c9mVbx4Y3UkJ2HznC0io TI7Ie8AEAOf9C3jelQ71ZSYfo6Ll8BOlqp4M6bG0eW3EvoEp8XSlJ3UZatM+mnmQ 7/o5hbf1swV6poQHKbP+rx+zPMUQC6HTO+HfA= Received: from unknown (188-222-18-231.zone13.bethere.co.uk [188.222.18.231]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA id 3125AE77A5; Fri, 25 Mar 2011 23:38:44 +0000 (GMT) Date: Fri, 25 Mar 2011 23:38:26 +0000 From: Bruce Cran To: Nerius Landys Message-ID: <20110325233826.00000cab@unknown> In-Reply-To: References: X-Mailer: Claws Mail 3.7.8cvs9 (GTK+ 2.16.6; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2011 23:38:45 -0000 On Fri, 25 Mar 2011 16:25:18 -0700 Nerius Landys wrote: > So for example: > > > cd /usr/ > > rm -rf src/ > > svn checkout svn://some.repos.freebsd.org/src-all/path/to/ ./src The hostname is svn.freebsd.org, and the branches are under 'base' - i.e. base/head, base/stable/8 etc. svn checkout svn://svn.freebsd.org/base/head -- Bruce Cran From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 00:33:49 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A194D106566B for ; Sat, 26 Mar 2011 00:33:49 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-px0-f172.google.com (mail-px0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id 723E18FC08 for ; Sat, 26 Mar 2011 00:33:49 +0000 (UTC) Received: by pxi6 with SMTP id 6so1056626pxi.17 for ; Fri, 25 Mar 2011 17:33:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:mime-version:content-type:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to:x-mailer; bh=/ao19H9XhW836gmHXHB5x7EMhZsa/jMq/by6oiuJ3pY=; b=BmQKLdyVQJKiqnBVj8KGAVYMYNfJhaW719JfDYXKjefNorrcXcznEO70jChJAyQ443 XZchQnNZLCamQcQ7Ykjs8phRn4Gos4XIe9syfscpV7A3uu+YQHKvfmCo7lz0OB3Vc6lB QhQNBLk/vL8qIb+ssi81PbpiXeEWAItjvArCU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; b=XwJLIE2BehgwmU/HOgNRJDf167cw+pCke00Ths1RvIgIikaX+zZbeh2U4Fta96wbOW mI+nYzDb5u+DuDtoV51Dcvyvk93BI4JzhgfYbmZu/JW8XkmNhQbz8+xAoojIRRNYjMxO elhhJaHbG3FkN3N/iMFcAcH8w+/sqnm1OrkMc= Received: by 10.142.196.14 with SMTP id t14mr1167415wff.89.1301099628463; Fri, 25 Mar 2011 17:33:48 -0700 (PDT) Received: from dhcp-173-37-1-92.cisco.com (nat.ironport.com [63.251.108.100]) by mx.google.com with ESMTPS id m10sm2000445wfl.11.2011.03.25.17.33.46 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 Mar 2011 17:33:47 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Garrett Cooper In-Reply-To: <20110325233826.00000cab@unknown> Date: Fri, 25 Mar 2011 17:33:45 -0700 Content-Transfer-Encoding: 7bit Message-Id: References: <20110325233826.00000cab@unknown> To: Bruce Cran X-Mailer: Apple Mail (2.1082) Cc: freebsd-current@freebsd.org, Nerius Landys Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 00:33:49 -0000 On Mar 25, 2011, at 4:38 PM, Bruce Cran wrote: > On Fri, 25 Mar 2011 16:25:18 -0700 > Nerius Landys wrote: > >> So for example: >> >>> cd /usr/ >>> rm -rf src/ >>> svn checkout svn://some.repos.freebsd.org/src-all/path/to/ ./src > > The hostname is svn.freebsd.org, and the branches are under 'base' - > i.e. base/head, base/stable/8 etc. > > svn checkout svn://svn.freebsd.org/base/head Use devel/subversion-freebsd though so it expands the $FreeBSD$ RCS tag. -Garrett From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 02:01:05 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37903106564A for ; Sat, 26 Mar 2011 02:01:05 +0000 (UTC) (envelope-from nlandys@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 000638FC13 for ; Sat, 26 Mar 2011 02:01:04 +0000 (UTC) Received: by iyj12 with SMTP id 12so2103885iyj.13 for ; Fri, 25 Mar 2011 19:01:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=/yNmh/BKCGmpKdcnKGvdOX3UfCNHwFnX9wRFYwTYGZM=; b=yBomJHH3oIWE2K4yH9X+4WELhKceMOvnlMNNm++KWOAoGy9TBZWuA3iQ+9W4Jgyx4n 3JyuP1vZo3LCA0P1HQgkTnju0tRMPx389uGz5HAiq2rHVCjrOvGtrgHpa/zjB18ZAev6 e4mztzFL+Nx5nTLGEzO64rVDxc3Q1FvZ+ciQ4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=XXBGRzGEGgKRuWJtWI1B8lmNNkSaX0JCT+6a3cabrTsZkO+Qqy5MZRw0WRHtx7vnfv PG+3PYDN57D1syKcjJ92VSQKbeXFi1PGfM3yj2FNLCCXT/wFcMdD5pbOAonHe7KS3zoV XjuxFozWzBiG4EkDQWkz7o7uHrPKXjFSYVnjo= MIME-Version: 1.0 Received: by 10.42.75.6 with SMTP id y6mr2578380icj.10.1301104864242; Fri, 25 Mar 2011 19:01:04 -0700 (PDT) Received: by 10.42.227.66 with HTTP; Fri, 25 Mar 2011 19:01:04 -0700 (PDT) In-Reply-To: References: <20110325233826.00000cab@unknown> Date: Fri, 25 Mar 2011 19:01:04 -0700 Message-ID: From: Nerius Landys To: Garrett Cooper Content-Type: text/plain; charset=ISO-8859-1 Cc: Bruce Cran , freebsd-current@freebsd.org Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 02:01:05 -0000 > Use devel/subversion-freebsd though so it expands the $FreeBSD$ RCS tag. I was just gonna say. Doing the plain old SVN checkout of head and mergemaster preworld, I noticed that: *** Displaying differences between ./etc/group and installed version: --- /etc/group 2011-03-22 16:45:05.000000000 -0700 +++ ./etc/group 2011-03-26 00:32:15.000000000 -0700 @@ -1,6 +1,6 @@ -# $FreeBSD: src/etc/group,v 1.36 2011/01/28 22:28:12 pjd Exp $ +# $FreeBSD$ # OK will try what you suggest, thanks. From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 03:06:22 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54B84106564A for ; Sat, 26 Mar 2011 03:06:22 +0000 (UTC) (envelope-from nlandys@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1D9878FC16 for ; Sat, 26 Mar 2011 03:06:21 +0000 (UTC) Received: by iwn33 with SMTP id 33so2099526iwn.13 for ; Fri, 25 Mar 2011 20:06:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=Qij+QfPJXu2FChqBKwMJ0UW5zEcpdcr0Of/gIi2Fv3Y=; b=Vld5LP3oTq5som0GSrpRywRMyLxFPTmYnZWB2nNqP3fAEr1H9jFhVFLZ816SXhKDYo pn3zTp7flGJNGWAPN9V175uPGSlS3yoB8n9TO3y0piTv5IPz2qqA22TooCTVT3Iwm381 RS+y5rnVQMg5S0TCIE9ImnT0e03lUnVwc298Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=vCw1q/j45/yMhfBSe4BRuyf7qGXpmnmZXbf7lXoXk50+YZ8ZySyyhVGrF2N8bCRWii hXFKHfB+r+qiid+Phr0CqQIdWl/rInPF/NLiygXDsXVfISHw6tchw4lJiBA13Eyw7uMt MpZtx8Yrr+jaQMFgLUqlNSNxkcqcUnj7uTt9A= MIME-Version: 1.0 Received: by 10.42.75.6 with SMTP id y6mr2660219icj.10.1301108753564; Fri, 25 Mar 2011 20:05:53 -0700 (PDT) Received: by 10.42.227.66 with HTTP; Fri, 25 Mar 2011 20:05:53 -0700 (PDT) In-Reply-To: References: <20110325233826.00000cab@unknown> Date: Fri, 25 Mar 2011 20:05:53 -0700 Message-ID: From: Nerius Landys To: Garrett Cooper Content-Type: text/plain; charset=ISO-8859-1 Cc: Bruce Cran , freebsd-current@freebsd.org Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 03:06:22 -0000 > Use devel/subversion-freebsd though so it expands the $FreeBSD$ RCS tag. I just did that. I am afraid however that all of my files in /etc will have a different RCS tag. For example, I got /usr/src/ via SVN directly (head, or CURRENT) and did a mergemaster prebuildworld step, and I get this diff in /etc/group: -# $FreeBSD: src/etc/group,v 1.36 2011/01/28 22:28:12 pjd Exp $ +# $FreeBSD: head/etc/group 218046 2011-01-28 22:28:12Z pjd $ Is there any way that these diffs can be avoided? Is the only real solution to just go through mergemaster file-by-file and install all of the new ones [even though they differ only in this tag]? From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 03:43:51 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96E76106566C for ; Sat, 26 Mar 2011 03:43:51 +0000 (UTC) (envelope-from artemb@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id C36038FC18 for ; Sat, 26 Mar 2011 03:43:50 +0000 (UTC) Received: by qwc9 with SMTP id 9so1112099qwc.13 for ; Fri, 25 Mar 2011 20:43:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=nfTjWOQOMUq7U4nNR9g0yH4KRH4R3w4O4qSJfxuSFC0=; b=C7f9ZncosmIsHcqODCfOCRsRO03AYUhMCwmCC//saUMQ4UWr7qt0jh7xEcAYkKcty6 B/DZ5i/6QGm0e4KOxYWZz6lQ8s115/oyBDNHYJyxNucZYhhAbI4otdww0W1BD/RFyCFv w8lOzR2FO9WfEPhNXuU+pBf+Upkf3fOD0DQms= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=xYwOEmgB7xLZbOI7mXeUNnz4c5WFlUYT/PxGfaYbT/QRjv6gECjATm5fLxh72mifQ5 GcPC+z+7BvBz0leWh0RBk/0ngHZxHK6IWUBsDwA8eJ8zAzcGyBpiwkTgXrsQy19qTm4B tqKQIc6chBHjglIqnd21NCUKZoNBPCsrK5Qwg= MIME-Version: 1.0 Received: by 10.229.0.202 with SMTP id 10mr1271893qcc.173.1301109137088; Fri, 25 Mar 2011 20:12:17 -0700 (PDT) Sender: artemb@gmail.com Received: by 10.229.31.83 with HTTP; Fri, 25 Mar 2011 20:12:17 -0700 (PDT) In-Reply-To: References: <20110325233826.00000cab@unknown> Date: Fri, 25 Mar 2011 20:12:17 -0700 X-Google-Sender-Auth: zGQQO3Uo8AL1QBMFkaiJMCrDX4Q Message-ID: From: Artem Belevich To: Nerius Landys Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Garrett Cooper , Bruce Cran , freebsd-current@freebsd.org Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 03:43:51 -0000 --Artem On Fri, Mar 25, 2011 at 8:05 PM, Nerius Landys wrote: >> Use devel/subversion-freebsd though so it expands the $FreeBSD$ RCS tag. > > I just did that. =A0I am afraid however that all of my files in /etc > will have a different RCS tag. =A0For example, I got /usr/src/ via SVN > directly (head, or CURRENT) and did a mergemaster prebuildworld step, > and I get this diff in /etc/group: > > -# $FreeBSD: src/etc/group,v 1.36 2011/01/28 22:28:12 pjd Exp $ > +# $FreeBSD: head/etc/group 218046 2011-01-28 22:28:12Z pjd $ > > Is there any way that these diffs can be avoided? =A0Is the only real > solution to just go through mergemaster file-by-file and install all > of the new ones [even though they differ only in this tag]? I have following line in my /etc/mergemaster.rc that tells mergemaster to ignore $FreeBSD$ keywords altogether. DIFF_OPTIONS=3D'-I$FreeBSD.*[$]' --Artem From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 04:32:57 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4018E106564A for ; Sat, 26 Mar 2011 04:32:57 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (unknown [IPv6:2001:44b8:7c07:5581:266:e1ff:fe0c:8f16]) by mx1.freebsd.org (Postfix) with ESMTP id 95E068FC08 for ; Sat, 26 Mar 2011 04:32:56 +0000 (UTC) Received: from [10.0.2.78] (ppp208-205.lns1.adl2.internode.on.net [203.122.208.205] (may be forged)) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id p2Q4WsZL060317 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sat, 26 Mar 2011 15:02:54 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Sat, 26 Mar 2011 15:02:53 +1030 To: freebsd-current Current Message-Id: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> Mime-Version: 1.0 (Apple Message framework v1082) X-Mailer: Apple Mail (2.1082) X-Spam-Score: -0.272 () BAYES_00,RDNS_NONE X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Subject: make release problems (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 04:32:57 -0000 Has anyone done one recently? I note there aren't any snapshots for this month, so perhaps I'm not = alone. I tried this :- RELNAME=3D9.0 BUILDNAME=3D${RELNAME}-GENESIS make release CHROOTDIR=3D/tmp/${RELNAME}-release BUILDNAME=3D$BUILDNAME = HTTP_PROXY=3Dhttp://proxy:3128 FTP_PROXY=3Dhttp://proxy:3128 = EXTSRCDIR=3D/usr/src EXTPORTSDIR=3D/usr/ports EXTDOCDIR=3D/usr/doc NOPORTS=3DYES = MAKE_ISOS=3DYES However it appears to have started recursively taring up = /usr/src/release/dist :-/ [snip] a ./boot/kernel/linker.hints mv /usr/src/release/dist/kernel.txz /usr/src/release mkdir -p /usr/src/release/dist/usr ln -fs /usr/src/release/.. /usr/src/release/dist/usr/src cd /usr/src/release/dist && tar cLvJf /usr/src/release/src.txz --exclude = .svn --exclude CVS usr/ src a usr/src a usr/src/usr.bin a usr/src/release ... a = usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rel= ease/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/u= sr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rele= ase/dist/usr/src/release/lib32.txz a = usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rel= ease/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/u= sr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rele= ase/dist/usr/src/release/kernel.txz then I killed it. I'm not sure why it's putting stuff in /usr/src/release rather than = /tmp/9.0-GENESIS or /usr/obj somewhere.. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 05:03:39 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D967A106564A for ; Sat, 26 Mar 2011 05:03:39 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (unknown [IPv6:2001:44b8:7c07:5581:266:e1ff:fe0c:8f16]) by mx1.freebsd.org (Postfix) with ESMTP id CEDCC8FC12 for ; Sat, 26 Mar 2011 05:03:38 +0000 (UTC) Received: from [10.0.2.78] (ppp208-205.lns1.adl2.internode.on.net [203.122.208.205] (may be forged)) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id p2Q53Z6S061554 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sat, 26 Mar 2011 15:33:36 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: "Daniel O'Connor" In-Reply-To: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> Date: Sat, 26 Mar 2011 15:33:35 +1030 Content-Transfer-Encoding: quoted-printable Message-Id: References: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> To: "Daniel O'Connor" X-Mailer: Apple Mail (2.1082) X-Spam-Score: 3.928 (***) BAYES_00,RDNS_NONE,TO_EQ_FM_DIRECT_MX X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Cc: freebsd-current Current Subject: Re: make release problems (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 05:03:39 -0000 On 26/03/2011, at 15:02, Daniel O'Connor wrote: = usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rel= ease/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/u= sr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/rele= ase/dist/usr/src/release/kernel.txz >=20 > then I killed it. >=20 > I'm not sure why it's putting stuff in /usr/src/release rather than = /tmp/9.0-GENESIS or /usr/obj somewhere.. I did a bit more looking around and found that I needed a 'make obj' = first, all good now :) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 07:17:23 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 692F5106566B for ; Sat, 26 Mar 2011 07:17:23 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (unknown [IPv6:2001:44b8:7c07:5581:266:e1ff:fe0c:8f16]) by mx1.freebsd.org (Postfix) with ESMTP id DAE8D8FC14 for ; Sat, 26 Mar 2011 07:17:22 +0000 (UTC) Received: from [10.0.2.78] (ppp208-205.lns1.adl2.internode.on.net [203.122.208.205] (may be forged)) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id p2Q7GPtL071165 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sat, 26 Mar 2011 17:47:21 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Sat, 26 Mar 2011 17:47:20 +1030 To: freebsd-current Current Message-Id: Mime-Version: 1.0 (Apple Message framework v1082) X-Mailer: Apple Mail (2.1082) X-Spam-Score: -0.272 () BAYES_00,RDNS_NONE X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Subject: VirtualBox guest panic in ACPI X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 07:17:23 -0000 I tried running a -current (r219926) release in VirtualBox and got a = panic. acpi0: could not allocate interrupt ACPI Exception: AE_ALREADY_EXISTS, Unable to install System Control = Interrupt handler (20110316/evevent-137) acpi: Could not enable ACPI: AE_ALREADY_EXISTS device_attach: acpi0 attach returned 6 = http://www.gsoft.com.au/~doconnor/Screen%20shot%202011-03-26%20at%2017.40.= 12%20.png Backtrace: = http://www.gsoft.com.au/~doconnor/Screen%20shot%202011-03-26%20at%2017.37.= 38%20.png If I boot after setting hint.acpi.0.disabled=3D"1" it then panics with = "No usable event timer" (there are errors about being unable to allocate = an IRQ prior to the panic) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 07:23:38 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21FE6106566B for ; Sat, 26 Mar 2011 07:23:38 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (unknown [IPv6:2001:44b8:7c07:5581:266:e1ff:fe0c:8f16]) by mx1.freebsd.org (Postfix) with ESMTP id 75CFE8FC0A for ; Sat, 26 Mar 2011 07:23:37 +0000 (UTC) Received: from [10.0.2.78] (ppp208-205.lns1.adl2.internode.on.net [203.122.208.205] (may be forged)) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id p2Q7NZOs071491 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sat, 26 Mar 2011 17:53:35 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: "Daniel O'Connor" In-Reply-To: Date: Sat, 26 Mar 2011 17:53:34 +1030 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: "Daniel O'Connor" X-Mailer: Apple Mail (2.1082) X-Spam-Score: 3.928 (***) BAYES_00,RDNS_NONE,TO_EQ_FM_DIRECT_MX X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Cc: freebsd-current Current Subject: Re: VirtualBox guest panic in ACPI X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 07:23:38 -0000 On 26/03/2011, at 17:47, Daniel O'Connor wrote: > I tried running a -current (r219926) release in VirtualBox and got a = panic. I found that modifying the VM with.. VBoxManage modifyvm Installer\ test --hpet on --ioapic on Makes it boot. >=20 > acpi0: could not allocate interrupt > ACPI Exception: AE_ALREADY_EXISTS, Unable to install System Control = Interrupt handler (20110316/evevent-137) > acpi: Could not enable ACPI: AE_ALREADY_EXISTS > device_attach: acpi0 attach returned 6 >=20 > = http://www.gsoft.com.au/~doconnor/Screen%20shot%202011-03-26%20at%2017.40.= 12%20.png >=20 > Backtrace: > = http://www.gsoft.com.au/~doconnor/Screen%20shot%202011-03-26%20at%2017.37.= 38%20.png >=20 > If I boot after setting hint.acpi.0.disabled=3D"1" it then panics with = "No usable event timer" (there are errors about being unable to allocate = an IRQ prior to the panic) >=20 > -- > Daniel O'Connor software and network engineer > for Genesis Software - http://www.gsoft.com.au > "The nice thing about standards is that there > are so many of them to choose from." > -- Andrew Tanenbaum > GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C >=20 >=20 >=20 >=20 >=20 >=20 >=20 -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 07:31:49 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3A561065675; Sat, 26 Mar 2011 07:31:49 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id 20CAE8FC16; Sat, 26 Mar 2011 07:31:48 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=6QwXiDozn7Gnsf2tGidwH+ndAwLlGixx7JAIKZICKmI= c=1 sm=1 a=IU0TiZmyZPMA:10 a=vaoYRtZtUZwA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=CBuuo2NdAAAA:8 a=KIZlHw5IP4nRE5TlpJkA:9 a=VwFNk96R9TvbyW0C83kDV2sCYK8A:4 a=CjuIK1q_8ugA:10 a=3iBgCAkc3Z8A:10 a=6Ek07VDobeQA:10 a=cl6vE36vmE82LIud_A8A:9 a=pXVIJmFc8MgE1mAyoFgA:7 a=czO4w7cUush8XfWky9fuHLSP9TsA:4 a=q46TbcNbH9xMnry7:21 a=ASkHR4SrgQBv6o15:21 a=gwhrR9qqVhEbic-xvb8A:9 a=m3NSrB7mXk9aNZKlKNUA:7 a=qsxv-8AErYM24G05EnU3bAtV-EsA:4 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 105524610; Sat, 26 Mar 2011 08:31:46 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Sat, 26 Mar 2011 08:30:59 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq, NwSZ4V"|LR.+tj}g5 %V,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( :AuzV9:.hESm-x4h240C`9=w MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_zYZjNFwuOq/KXXC" Message-Id: <201103260830.59672.hselasky@c2i.net> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-current@freebsd.org, libusb-devel@lists.sourceforge.net Subject: Android fastboot support for FreeBSD 8/9 using LibUSB v1.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 07:31:50 -0000 --Boundary-00=_zYZjNFwuOq/KXXC Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, The attached files adds USB support to Android's fastboot under FreeBSD 8/9, by using the LibUSB v1.0 interface. http://android-dls.com/wiki/index.php?title=Fastboot Lines for the Android.mk: ifeq ($(HOST_OS),FreeBSD) LOCAL_SRC_FILES += usb_freebsd.c util_freebsd.c LOCAL_LDLIBS += -lpthread -lusb endif Please feel free to forward my patches to the Android team handling the fastboot code. I was not sure where to post it. --HPS --Boundary-00=_zYZjNFwuOq/KXXC-- From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 07:37:55 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F73B106566C; Sat, 26 Mar 2011 07:37:55 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe06.c2i.net [212.247.154.162]) by mx1.freebsd.org (Postfix) with ESMTP id BFA998FC14; Sat, 26 Mar 2011 07:37:54 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=NvrFngl24Vvwb7eBef0tfsytOWEnP/WlkqxQrRnklhk= c=1 sm=1 a=IU0TiZmyZPMA:10 a=2QwxetvH7OQA:10 a=Q9fys5e9bTEA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=CBuuo2NdAAAA:8 a=FP58Ms26AAAA:8 a=FQ_Lki0MAAAA:8 a=8kQB0OdkAAAA:8 a=KXerRQLmtUWdGkY0lkEA:9 a=0VgLv4NYe5RupFyk8GMA:7 a=Xc7hnXyPS-XVjuuhLcZEVYy9sFcA:4 a=PUjeQqilurYA:10 a=3iBgCAkc3Z8A:10 a=OIzWo4VNxpQA:10 a=C8hY86fFbX8A:10 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe06.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 104989958; Sat, 26 Mar 2011 08:37:53 +0100 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Sat, 26 Mar 2011 08:37:06 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201103260830.59672.hselasky@c2i.net> In-Reply-To: <201103260830.59672.hselasky@c2i.net> X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq, NwSZ4V"|LR.+tj}g5 %V,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( :AuzV9:.hESm-x4h240C`9=w MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201103260837.07052.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: Android fastboot support for FreeBSD 8/9 using LibUSB v1.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 07:37:55 -0000 On Saturday 26 March 2011 08:30:59 Hans Petter Selasky wrote: > Hi, > > The attached files adds USB support to Android's fastboot under FreeBSD > 8/9, by using the LibUSB v1.0 interface. > > http://android-dls.com/wiki/index.php?title=Fastboot > > Lines for the Android.mk: > > ifeq ($(HOST_OS),FreeBSD) > LOCAL_SRC_FILES += usb_freebsd.c util_freebsd.c > LOCAL_LDLIBS += -lpthread -lusb > endif > > Please feel free to forward my patches to the Android team handling the > fastboot code. I was not sure where to post it. > > --HPS Hi, The attachments are available from here: http://sourceforge.net/mailarchive/forum.php?thread_name=201103260830.59672.hselasky%40c2i.net&forum_name=libusb-devel Looks like they got stripped from the FreeBSD lists. --HPS From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 08:44:23 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28823106566C for ; Sat, 26 Mar 2011 08:44:23 +0000 (UTC) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (unknown [IPv6:2001:44b8:7c07:5581:266:e1ff:fe0c:8f16]) by mx1.freebsd.org (Postfix) with ESMTP id 9359D8FC0A for ; Sat, 26 Mar 2011 08:44:22 +0000 (UTC) Received: from [10.0.2.78] (ppp208-205.lns1.adl2.internode.on.net [203.122.208.205] (may be forged)) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id p2Q8iJgT079088 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sat, 26 Mar 2011 19:14:19 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: "Daniel O'Connor" In-Reply-To: <4D8D9FD7.8070900@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 19:14:18 +1030 Content-Transfer-Encoding: quoted-printable Message-Id: <42A3109E-9915-47F6-A3E7-14AF02DB8F3D@gsoft.com.au> References: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> <4D8D9FD7.8070900@mail.zedat.fu-berlin.de> To: "O. Hartmann" X-Mailer: Apple Mail (2.1082) X-Spam-Score: -0.272 () BAYES_00,RDNS_NONE X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Cc: freebsd-current Current Subject: Re: make release problems (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 08:44:23 -0000 On 26/03/2011, at 18:42, O. Hartmann wrote: > Yes, I tried and I ran into the same problems. But I didn't run into = problems lately, the problem resists for me now for approx. three weeks = or so and I reported this in "questions@" once. Try 'make obj' before 'make release' - that fixed it for me. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 10:55:27 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A77CA106564A for ; Sat, 26 Mar 2011 10:55:27 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id B5B138FC15 for ; Sat, 26 Mar 2011 10:55:26 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA27979; Sat, 26 Mar 2011 12:55:23 +0200 (EET) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Q3R9P-000PJ9-FC; Sat, 26 Mar 2011 12:55:23 +0200 Message-ID: <4D8DC619.9080503@freebsd.org> Date: Sat, 26 Mar 2011 12:55:21 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110308 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: "O. Hartmann" References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> In-Reply-To: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, freebsd-questions@freebsd.org Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 10:55:27 -0000 on 26/03/2011 11:10 O. Hartmann said the following: > Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted with a > AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which has > been recently update as far as I saw), > resulted this morning in an 'un-login-able' box. > > I see the xdm-login requester, but after successfully login, I see for a second > the desktop (windowmaker), but X11 immediately dies and resets to the xdm > requester again. Are you subscribed to our x11 list? It's quite low volume. Please see recent messages in its archive, perhaps they could help you. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 11:00:13 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id 249191065677; Sat, 26 Mar 2011 11:00:13 +0000 (UTC) Date: Sat, 26 Mar 2011 11:00:12 +0000 From: Alexander Best To: Artem Belevich Message-ID: <20110326110012.GA73916@freebsd.org> References: <20110325233826.00000cab@unknown> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Cc: Garrett Cooper , Bruce Cran , freebsd-current@freebsd.org, Nerius Landys Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 11:00:13 -0000 On Fri Mar 25 11, Artem Belevich wrote: > --Artem > > > > On Fri, Mar 25, 2011 at 8:05 PM, Nerius Landys wrote: > >> Use devel/subversion-freebsd though so it expands the $FreeBSD$ RCS tag. > > > > I just did that.  I am afraid however that all of my files in /etc > > will have a different RCS tag.  For example, I got /usr/src/ via SVN > > directly (head, or CURRENT) and did a mergemaster prebuildworld step, > > and I get this diff in /etc/group: > > > > -# $FreeBSD: src/etc/group,v 1.36 2011/01/28 22:28:12 pjd Exp $ > > +# $FreeBSD: head/etc/group 218046 2011-01-28 22:28:12Z pjd $ > > > > Is there any way that these diffs can be avoided?  Is the only real > > solution to just go through mergemaster file-by-file and install all > > of the new ones [even though they differ only in this tag]? > > I have following line in my /etc/mergemaster.rc that tells mergemaster > to ignore $FreeBSD$ keywords altogether. > > DIFF_OPTIONS='-I$FreeBSD.*[$]' one could also use the -F switch in connection with mergemaster(8). > > --Artem -- a13x From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 11:16:00 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A37A106564A for ; Sat, 26 Mar 2011 11:16:00 +0000 (UTC) (envelope-from julien.laffaye@gmail.com) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id D4B1B8FC13 for ; Sat, 26 Mar 2011 11:15:59 +0000 (UTC) Received: by gwb15 with SMTP id 15so856839gwb.13 for ; Sat, 26 Mar 2011 04:15:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=k6aOjbnA/Kc9YaslRMWUUnSrQ2gX0vNE0fPVND/9CLg=; b=KrsPE23bETH7t51tnvNYAvd3giFVjSwV+cy64fxRnNx65fHMhB0vvfxE8QrLfKzeVv oYEhDDAj+zAjc73jgBboHCwkTt+4Y/HkhdttxMK4HhCZ4TqZ7M8hUstDOE5qkXmhwuDm PWtHD1kwfvfK0G1CU/8PUKS5hvBFl9b9SxKSk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=TyPEWOhTD90anBRg79xLMVrW+yIyqiBh79/DMLlh+3VYaJJvYcU8vuqWr7CEgqDce3 93ltmQSEGQVx1uWUHBNMtJVKwbxDny2Mz8U9xWYgy1KZ/eokWcaq8sKj5i6mYzRmWmPv GuOVwgjoqpdsRiV8ZEJ03MNzWCESCh+OiJ/aQ= MIME-Version: 1.0 Received: by 10.236.125.138 with SMTP id z10mr2755074yhh.185.1301138159115; Sat, 26 Mar 2011 04:15:59 -0700 (PDT) Sender: julien.laffaye@gmail.com Received: by 10.236.105.212 with HTTP; Sat, 26 Mar 2011 04:15:58 -0700 (PDT) In-Reply-To: References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> Date: Sat, 26 Mar 2011 11:15:58 +0000 X-Google-Sender-Auth: uiyr13Gv57vz0jsJqLKAwH916dQ Message-ID: From: Julien Laffaye To: Ivan Voras Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 11:16:00 -0000 On Fri, Mar 25, 2011 at 12:33 PM, Julien Laffaye wrote: > On Fri, Mar 25, 2011 at 11:52 AM, Ivan Voras wrote: >> At this time I'd just like to suggest you add the use of WAL journal >> (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database creation >> so you get the benefits of multiple-readers-single-writer concurrency model. > It sounds like a good idea. I'll add WAL support and if no problem > arise from that we should keep it. Despite the fact that WAL allows cool things, one disadvantage is that the process require write privileges on the database file even if it is only reading. Thus, pkg info and things like that would need to be run as root... Regards, Julien From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 08:28:31 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D986B106564A for ; Sat, 26 Mar 2011 08:28:31 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 950E28FC12 for ; Sat, 26 Mar 2011 08:28:26 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1Q3ObP-0004lD-QI>; Sat, 26 Mar 2011 09:12:07 +0100 Received: from e178022151.adsl.alicedsl.de ([85.178.22.151] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1Q3ObP-0008UF-Lp>; Sat, 26 Mar 2011 09:12:07 +0100 Message-ID: <4D8D9FD7.8070900@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 09:12:07 +0100 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110319 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Daniel O'Connor References: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> In-Reply-To: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.22.151 X-Mailman-Approved-At: Sat, 26 Mar 2011 11:29:13 +0000 Cc: freebsd-current Current Subject: Re: make release problems (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 08:28:31 -0000 On 26.03.2011 05:32, Daniel O'Connor wrote: > Has anyone done one recently? > > I note there aren't any snapshots for this month, so perhaps I'm not alone. > > I tried this :- > RELNAME=9.0 > BUILDNAME=${RELNAME}-GENESIS > make release CHROOTDIR=/tmp/${RELNAME}-release BUILDNAME=$BUILDNAME HTTP_PROXY=http://proxy:3128 FTP_PROXY=http://proxy:3128 EXTSRCDIR=/usr/src > EXTPORTSDIR=/usr/ports EXTDOCDIR=/usr/doc NOPORTS=YES MAKE_ISOS=YES > > However it appears to have started recursively taring up /usr/src/release/dist :-/ > > [snip] > a ./boot/kernel/linker.hints > mv /usr/src/release/dist/kernel.txz /usr/src/release > mkdir -p /usr/src/release/dist/usr > ln -fs /usr/src/release/.. /usr/src/release/dist/usr/src > cd /usr/src/release/dist&& tar cLvJf /usr/src/release/src.txz --exclude .svn --exclude CVS usr/ > src > a usr/src > a usr/src/usr.bin > a usr/src/release > ... > a usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/lib32.txz > a usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/dist/usr/src/release/kernel.txz > > then I killed it. > > I'm not sure why it's putting stuff in /usr/src/release rather than /tmp/9.0-GENESIS or /usr/obj somewhere.. > > -- > Daniel O'Connor software and network engineer > for Genesis Software - http://www.gsoft.com.au > "The nice thing about standards is that there > are so many of them to choose from." > -- Andrew Tanenbaum > GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C > Hello. Yes, I tried and I ran into the same problems. But I didn't run into problems lately, the problem resists for me now for approx. three weeks or so and I reported this in "questions@" once. Oliver From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 09:10:23 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EADB4106564A; Sat, 26 Mar 2011 09:10:23 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id A76158FC08; Sat, 26 Mar 2011 09:10:23 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1Q3PVm-0003pI-Ng>; Sat, 26 Mar 2011 10:10:22 +0100 Received: from e178022151.adsl.alicedsl.de ([85.178.22.151] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1Q3PVm-0002aG-KY>; Sat, 26 Mar 2011 10:10:22 +0100 Message-ID: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 10:10:22 +0100 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110319 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: freebsd-questions@freebsd.org, freebsd-current@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.22.151 X-Mailman-Approved-At: Sat, 26 Mar 2011 11:29:29 +0000 Cc: Subject: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 09:10:24 -0000 Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted with a AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which has been recently update as far as I saw), resulted this morning in an 'un-login-able' box. I see the xdm-login requester, but after successfully login, I see for a second the desktop (windowmaker), but X11 immediately dies and resets to the xdm requester again. Login from another box and examining the ~/.xsession-errors shows only this entry: --- foo.bar.org being added to access control list XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" after 29 requests (29 known processed) with 0 events remaining. wmaker warning: got signal 15 - exiting... --- Recompiling xdm and xorg-server ( I did this desperately in the first place) didn't help very much. I do not dare to update all the other boxes in my lab, since I suspect a similar problem since they have all the same or similar hardware (AMD graphics hardware, running X11, running FreeBSD 9.0-CURRENT/amd64). What to do? What changed? Regards, Oliver From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 12:44:54 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1EA01065674 for ; Sat, 26 Mar 2011 12:44:54 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 5DFD88FC15 for ; Sat, 26 Mar 2011 12:44:54 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1Q3SrN-0007OE-7X>; Sat, 26 Mar 2011 13:44:53 +0100 Received: from e178022151.adsl.alicedsl.de ([85.178.22.151] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1Q3SrN-0003iz-4L>; Sat, 26 Mar 2011 13:44:53 +0100 Message-ID: <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 13:44:52 +0100 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110319 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Andriy Gapon References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> In-Reply-To: <4D8DC619.9080503@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.22.151 X-Mailman-Approved-At: Sat, 26 Mar 2011 13:14:30 +0000 Cc: freebsd-x11 , freebsd-current@freebsd.org Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 12:44:54 -0000 On 26.03.2011 11:55, Andriy Gapon wrote: > on 26/03/2011 11:10 O. Hartmann said the following: >> Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted with a >> AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which has >> been recently update as far as I saw), >> resulted this morning in an 'un-login-able' box. >> >> I see the xdm-login requester, but after successfully login, I see for a second >> the desktop (windowmaker), but X11 immediately dies and resets to the xdm >> requester again. > > Are you subscribed to our x11 list? It's quite low volume. > Please see recent messages in its archive, perhaps they could help you. > Hello. No, I'm actually not subscribed to that list. Since the problem occured since yesterday's update out of the blue, I thought it could be more FreeBSD related than X11 related. But I will reply to the X11 list as well. I simply forgot in my desperate pain, sorry. Regards, Oliver From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 13:36:50 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57D35106566C; Sat, 26 Mar 2011 13:36:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2335A8FC13; Sat, 26 Mar 2011 13:36:49 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2QDanVT060725; Sat, 26 Mar 2011 09:36:49 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2QDamJZ060692; Sat, 26 Mar 2011 13:36:48 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Mar 2011 13:36:48 GMT Message-Id: <201103261336.p2QDamJZ060692@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 13:36:50 -0000 TB --- 2011-03-26 12:05:19 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-26 12:05:19 - starting HEAD tinderbox run for ia64/ia64 TB --- 2011-03-26 12:05:19 - cleaning the object tree TB --- 2011-03-26 12:05:32 - cvsupping the source tree TB --- 2011-03-26 12:05:32 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2011-03-26 12:05:45 - building world TB --- 2011-03-26 12:05:45 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 12:05:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 12:05:45 - TARGET=ia64 TB --- 2011-03-26 12:05:45 - TARGET_ARCH=ia64 TB --- 2011-03-26 12:05:45 - TZ=UTC TB --- 2011-03-26 12:05:45 - __MAKE_CONF=/dev/null TB --- 2011-03-26 12:05:45 - cd /src TB --- 2011-03-26 12:05:45 - /usr/bin/make -B buildworld >>> World build started on Sat Mar 26 12:05:47 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Mar 26 13:31:16 UTC 2011 TB --- 2011-03-26 13:31:16 - generating LINT kernel config TB --- 2011-03-26 13:31:16 - cd /src/sys/ia64/conf TB --- 2011-03-26 13:31:16 - /usr/bin/make -B LINT TB --- 2011-03-26 13:31:16 - building LINT kernel TB --- 2011-03-26 13:31:16 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 13:31:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 13:31:16 - TARGET=ia64 TB --- 2011-03-26 13:31:16 - TARGET_ARCH=ia64 TB --- 2011-03-26 13:31:16 - TZ=UTC TB --- 2011-03-26 13:31:16 - __MAKE_CONF=/dev/null TB --- 2011-03-26 13:31:16 - cd /src TB --- 2011-03-26 13:31:16 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Mar 26 13:31:16 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/dev/ath/ah_osdep.c -I/src/sys/dev/ath 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/dev/ath/ath_hal/ah.c -I/src/sys/dev/ath /src/sys/dev/ath/ath_hal/ah.c: In function 'ath_hal_getcapability': /src/sys/dev/ath/ath_hal/ah.c:602: error: 'HAL_CAP_SPLIT_4KB_TRANS' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:602: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/ath_hal/ah.c:602: error: for each function it appears in.) /src/sys/dev/ath/ath_hal/ah.c:604: error: 'HAL_CAP_HAS_PSPOLL' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:605: error: 'HAL_CAPABILITIES' has no member named 'halHasPsPollSupport' *** Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-26 13:36:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-26 13:36:48 - ERROR: failed to build lint kernel TB --- 2011-03-26 13:36:48 - 4372.61 user 776.59 system 5488.81 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 13:48:09 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D2261065670; Sat, 26 Mar 2011 13:48:09 +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 7A6838FC12; Sat, 26 Mar 2011 13:48:08 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id p2QDm4ua098497 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 26 Mar 2011 15:48:04 +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.4/8.14.4) with ESMTP id p2QDm4Eo059792; Sat, 26 Mar 2011 15:48:04 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id p2QDm4YP059791; Sat, 26 Mar 2011 15:48:04 +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: Sat, 26 Mar 2011 15:48:04 +0200 From: Kostik Belousov To: "O. Hartmann" Message-ID: <20110326134804.GA78089@deviant.kiev.zoral.com.ua> References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QPNyFjCB79p7jCGV" Content-Disposition: inline In-Reply-To: <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> 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.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: freebsd-x11 , freebsd-current@freebsd.org, Andriy Gapon Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 13:48:09 -0000 --QPNyFjCB79p7jCGV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 26, 2011 at 01:44:52PM +0100, O. Hartmann wrote: > On 26.03.2011 11:55, Andriy Gapon wrote: > >on 26/03/2011 11:10 O. Hartmann said the following: > >>Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipte= d=20 > >>with a > >>AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (whic= h=20 > >>has > >>been recently update as far as I saw), > >>resulted this morning in an 'un-login-able' box. > >> > >>I see the xdm-login requester, but after successfully login, I see for = a=20 > >>second > >>the desktop (windowmaker), but X11 immediately dies and resets to the x= dm > >>requester again. > > > >Are you subscribed to our x11 list? It's quite low volume. > >Please see recent messages in its archive, perhaps they could help you. > > >=20 >=20 > Hello. >=20 > No, I'm actually not subscribed to that list. Since the problem occured= =20 > since yesterday's update out of the blue, I thought it could be more=20 > FreeBSD related than X11 related. But I will reply to the X11 list as=20 > well. I simply forgot in my desperate pain, sorry. >=20 See http://lists.freebsd.org/pipermail/freebsd-x11/2011-March/010737.html --QPNyFjCB79p7jCGV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2N7pQACgkQC3+MBN1Mb4hVAwCggSq3fYGaYI8pvUXfIimcOra6 VucAnReM89ZvPOrXwElfrvR2g3MLH4l3 =V6mZ -----END PGP SIGNATURE----- --QPNyFjCB79p7jCGV-- From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 13:59:58 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE54A106564A for ; Sat, 26 Mar 2011 13:59:58 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from mail.icecube.wisc.edu (trout.icecube.wisc.edu [128.104.255.119]) by mx1.freebsd.org (Postfix) with ESMTP id 828428FC19 for ; Sat, 26 Mar 2011 13:59:58 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.icecube.wisc.edu (Postfix) with ESMTP id 9F725582CB; Sat, 26 Mar 2011 08:59:57 -0500 (CDT) X-Virus-Scanned: amavisd-new at icecube.wisc.edu Received: from mail.icecube.wisc.edu ([127.0.0.1]) by localhost (trout.icecube.wisc.edu [127.0.0.1]) (amavisd-new, port 10030) with ESMTP id 4haSvYJx2Tkc; Sat, 26 Mar 2011 08:59:57 -0500 (CDT) Received: from wanderer.tachypleus.net (unknown [76.210.65.155]) by mail.icecube.wisc.edu (Postfix) with ESMTP id 19A26582CA; Sat, 26 Mar 2011 08:59:56 -0500 (CDT) Message-ID: <4D8DF15B.5010007@freebsd.org> Date: Sat, 26 Mar 2011 08:59:55 -0500 From: Nathan Whitehorn User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110317 Thunderbird/3.1.9 MIME-Version: 1.0 To: Daniel O'Connor References: <42BEDA06-5174-4F5E-9D6D-CA6B3D6B58EF@gsoft.com.au> <4D8D9FD7.8070900@mail.zedat.fu-berlin.de> <42A3109E-9915-47F6-A3E7-14AF02DB8F3D@gsoft.com.au> In-Reply-To: <42A3109E-9915-47F6-A3E7-14AF02DB8F3D@gsoft.com.au> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "O. Hartmann" , freebsd-current Current Subject: Re: make release problems (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 13:59:58 -0000 On 03/26/11 03:44, Daniel O'Connor wrote: > > On 26/03/2011, at 18:42, O. Hartmann wrote: >> Yes, I tried and I ran into the same problems. But I didn't run into problems lately, the problem resists for me now for approx. three weeks or so and I reported this in "questions@" once. > > Try 'make obj' before 'make release' - that fixed it for me. > Thanks for reporting this! I just modified src/release/Makefile so that 'make release' causes the obj target to be run first, so this shouldn't happen anymore. -Nathan From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 14:16:27 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADA3A1065670; Sat, 26 Mar 2011 14:16:27 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 4C4478FC13; Sat, 26 Mar 2011 14:16:26 +0000 (UTC) Received: by qyk35 with SMTP id 35so243588qyk.13 for ; Sat, 26 Mar 2011 07:16:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=OO6A4ve/z4ceNyUNBvrRm6nM3wvPP4SOfEjKyUxLvQU=; b=wG5iD4bOOzufXKXMvwpWloYjSt7a9SURgzvc6j2eiS1d6WYkGr89MlVNufFiTpqKn+ g07AchbhXRC4klT1miBlzPlttSvcpzo/OM/QOxXA/kK+kTtWn8c2Dw7jrYzIshnztycC zDHHiQR3SlMpY/0GtpghcGoMzyzHFlLDxBBVU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=IP1iC6KNUK07Gl8K5oxl5X3rhjKgU7CPf2HIOkSH1BO49d28Yim8/8ppoi3R7xTOEW 6MtRnHdXRmWXtEDaonJAqvy3gRAuNvgkaNyX1buSzTYutgrXUVfsh7JsHPrTnO81NS98 c0JZydOOUhR9eZkWbBppkhIKd6mLPtBZS+ypM= MIME-Version: 1.0 Received: by 10.229.240.72 with SMTP id kz8mr705034qcb.20.1301147622597; Sat, 26 Mar 2011 06:53:42 -0700 (PDT) Received: by 10.229.130.162 with HTTP; Sat, 26 Mar 2011 06:53:42 -0700 (PDT) In-Reply-To: References: Date: Sat, 26 Mar 2011 14:53:42 +0100 Message-ID: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Freddie Cash Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Filesystems , FreeBSD-Current , FreeBSD Stable Subject: Re: Any success stories for HAST + ZFS? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 14:16:27 -0000 Hi, 2011/3/24 Freddie Cash : > The hardware is fairly standard fare: > =A0- SuperMicro H8DGi-F motherboard > =A0- AMD Opteron 6100-series CPU (8-cores @ 2.0 GHz) > =A0- 8 GB DDR3 SDRAM > =A0- 64 GB Kingston V-Series SSD for the OS install (using ahci(4) and > the motherboard SATA controller) > =A0- 3x SuperMicro AOC-USAS2-8Li SATA controllers with IT firmware > =A0- 6x 1.5 TB Seagate 7200.11 drives (1x raidz2 vdev) > =A0- 12x 1.0 TB Seagate 7200.12 drives (2x raidz2 vdev) > =A0- 6x 0.5 TB WD RE3 drives (1x raidz2 vdev) just for info, sun recommend 1 Gb of RAM per Tera of data. i see here ~ 16 To of available data, so i would recommend 16 Gb for arc_size and 24 or 32 Gb for the host. From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 14:56:10 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E9361065670; Sat, 26 Mar 2011 14:56:10 +0000 (UTC) (envelope-from unixmania@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 00C618FC19; Sat, 26 Mar 2011 14:56:09 +0000 (UTC) Received: by qwc9 with SMTP id 9so1269223qwc.13 for ; Sat, 26 Mar 2011 07:56:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=q9MfHIa1nd8a7qYQWvkTBGXFZ8dySRR0WhnHESUedsI=; b=Bo0nPi94Ek5Z/EClVeSDsnpIPFFRAAUrUSt2RinD/l9zss9YcbFMXFQF5/rIttWI5e HCEcFcSX/4hdRIvMe1iEgRvZYYZmRfCvhfF6Dc/42bUnWCTkCCCvPGlzFYYeem+h48uv xEV3WFvKY+vDeOs4K1W32w2ds4jXabQE5oFw8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=hTRxZz48Jnz6svRFjHIykn25mWrn8K1siE1qyQv1NiEqQlRecNodLvd8T/PZvKcIf+ F0dmjBOP/swkO38FUmPsvrrCZTWcW7CSd1bQc6HMCIMUnD8w34pUh5+UzvugLkZEmROy tewcVWib+mKyR0RvRJsX5gCrxZSQ1YqAtlBuI= MIME-Version: 1.0 Received: by 10.224.61.1 with SMTP id r1mr1727922qah.105.1301149801310; Sat, 26 Mar 2011 07:30:01 -0700 (PDT) Received: by 10.229.226.67 with HTTP; Sat, 26 Mar 2011 07:30:01 -0700 (PDT) In-Reply-To: <201103260830.59672.hselasky@c2i.net> References: <201103260830.59672.hselasky@c2i.net> Date: Sat, 26 Mar 2011 11:30:01 -0300 Message-ID: From: "Carlos A. M. dos Santos" To: Hans Petter Selasky Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-current@freebsd.org, libusb-devel@lists.sourceforge.net, freebsd-usb@freebsd.org Subject: Re: Android fastboot support for FreeBSD 8/9 using LibUSB v1.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 14:56:10 -0000 On Sat, Mar 26, 2011 at 4:30 AM, Hans Petter Selasky wro= te: > > Hi, > > The attached files adds USB support to Android's fastboot under FreeBSD 8= /9, > by using the LibUSB v1.0 interface. > > http://android-dls.com/wiki/index.php?title=3DFastboot > > Lines for the Android.mk: > > ifeq ($(HOST_OS),FreeBSD) > =A0LOCAL_SRC_FILES +=3D usb_freebsd.c util_freebsd.c > =A0LOCAL_LDLIBS +=3D -lpthread -lusb > endif > > Please feel free to forward my patches to the Android team handling the > fastboot code. I was not sure where to post it. If you want to follow the full process, the instructions are here: http://source.android.com/source/life-of-a-patch.html But for such a small change a simple Feature Request may suffice: http://code.google.com/p/android/issues/entry?template=3DFeature%20req= uest -- Depending on how lucky you are, your fortune may rub people the wrong way From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 15:09:24 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11D3C1065672; Sat, 26 Mar 2011 15:09:24 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.c2i.net [212.247.154.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5AB918FC0C; Sat, 26 Mar 2011 15:09:22 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=wd7fLirDSts22yawIUsTeMUS9lsm8Llc0grT6RvpTjU= c=1 sm=1 a=IU0TiZmyZPMA:10 a=2QwxetvH7OQA:10 a=8nJEP1OIZ-IA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=1XWaLZrsAAAA:8 a=ZXdw4Tmqi4qIkLneM7EA:9 a=zp-17vWPaCkf0qOTdWyXopcpREAA:4 a=wPNLvfGTeEIA:10 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe04.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 105279974; Sat, 26 Mar 2011 16:09:21 +0100 From: Hans Petter Selasky To: "Carlos A. M. dos Santos" Date: Sat, 26 Mar 2011 16:08:34 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201103260830.59672.hselasky@c2i.net> In-Reply-To: X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq,NwSZ4V" =?iso-8859-1?q?=7CLR=2E+tj=7Dg5=0A=09=25V?=,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( =?iso-8859-1?q?=0A=09=3AAuzV9=3A=2EhESm-x4h240C=609=3Dw?= MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201103261608.34751.hselasky@c2i.net> Cc: freebsd-current@freebsd.org, libusb-devel@lists.sourceforge.net, freebsd-usb@freebsd.org Subject: Re: Android fastboot support for FreeBSD 8/9 using LibUSB v1.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 15:09:24 -0000 Hi, On Saturday 26 March 2011 15:30:01 Carlos A. M. dos Santos wrote: > But for such a small change a simple Feature Request may suffice: Thank you! I've created an issue: http://code.google.com/p/android/issues/detail?id=15749&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars --HPS From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 15:28:02 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9A6C106564A; Sat, 26 Mar 2011 15:28:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id ABA678FC17; Sat, 26 Mar 2011 15:28:02 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2QFS1sl028374; Sat, 26 Mar 2011 11:28:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2QFS19u028311; Sat, 26 Mar 2011 15:28:01 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Mar 2011 15:28:01 GMT Message-Id: <201103261528.p2QFS19u028311@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 15:28:03 -0000 TB --- 2011-03-26 14:18:29 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-26 14:18:29 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2011-03-26 14:18:29 - cleaning the object tree TB --- 2011-03-26 14:18:40 - cvsupping the source tree TB --- 2011-03-26 14:18:40 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2011-03-26 14:18:57 - building world TB --- 2011-03-26 14:18:57 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 14:18:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 14:18:57 - TARGET=sparc64 TB --- 2011-03-26 14:18:57 - TARGET_ARCH=sparc64 TB --- 2011-03-26 14:18:57 - TZ=UTC TB --- 2011-03-26 14:18:57 - __MAKE_CONF=/dev/null TB --- 2011-03-26 14:18:57 - cd /src TB --- 2011-03-26 14:18:57 - /usr/bin/make -B buildworld >>> World build started on Sat Mar 26 14:18:57 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Mar 26 15:23:41 UTC 2011 TB --- 2011-03-26 15:23:41 - generating LINT kernel config TB --- 2011-03-26 15:23:41 - cd /src/sys/sparc64/conf TB --- 2011-03-26 15:23:41 - /usr/bin/make -B LINT TB --- 2011-03-26 15:23:41 - building LINT kernel TB --- 2011-03-26 15:23:41 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 15:23:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 15:23:41 - TARGET=sparc64 TB --- 2011-03-26 15:23:41 - TARGET_ARCH=sparc64 TB --- 2011-03-26 15:23:41 - TZ=UTC TB --- 2011-03-26 15:23:41 - __MAKE_CONF=/dev/null TB --- 2011-03-26 15:23:41 - cd /src TB --- 2011-03-26 15:23:41 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Mar 26 15:23:41 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ath_hal/ah.c -I/src/sys/dev/ath /src/sys/dev/ath/ath_hal/ah.c: In function 'ath_hal_getcapability': /src/sys/dev/ath/ath_hal/ah.c:602: error: 'HAL_CAP_SPLIT_4KB_TRANS' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:602: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/ath_hal/ah.c:602: error: for each function it appears in.) /src/sys/dev/ath/ath_hal/ah.c:604: error: 'HAL_CAP_HAS_PSPOLL' undeclared (first use in this function) *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-26 15:28:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-26 15:28:01 - ERROR: failed to build lint kernel TB --- 2011-03-26 15:28:01 - 3141.26 user 690.82 system 4171.33 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 15:32:01 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E75B6106564A; Sat, 26 Mar 2011 15:32:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B2C958FC13; Sat, 26 Mar 2011 15:32:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2QFVxXX074148; Sat, 26 Mar 2011 11:31:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2QFVxd6074147; Sat, 26 Mar 2011 15:31:59 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Mar 2011 15:31:59 GMT Message-Id: <201103261531.p2QFVxd6074147@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 15:32:01 -0000 TB --- 2011-03-26 13:43:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-26 13:43:00 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2011-03-26 13:43:00 - cleaning the object tree TB --- 2011-03-26 13:43:11 - cvsupping the source tree TB --- 2011-03-26 13:43:11 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2011-03-26 13:43:38 - building world TB --- 2011-03-26 13:43:38 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 13:43:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 13:43:38 - TARGET=powerpc TB --- 2011-03-26 13:43:38 - TARGET_ARCH=powerpc TB --- 2011-03-26 13:43:38 - TZ=UTC TB --- 2011-03-26 13:43:38 - __MAKE_CONF=/dev/null TB --- 2011-03-26 13:43:38 - cd /src TB --- 2011-03-26 13:43:38 - /usr/bin/make -B buildworld >>> World build started on Sat Mar 26 13:43:38 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Mar 26 15:28:18 UTC 2011 TB --- 2011-03-26 15:28:18 - generating LINT kernel config TB --- 2011-03-26 15:28:18 - cd /src/sys/powerpc/conf TB --- 2011-03-26 15:28:18 - /usr/bin/make -B LINT TB --- 2011-03-26 15:28:18 - building LINT kernel TB --- 2011-03-26 15:28:18 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 15:28:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 15:28:18 - TARGET=powerpc TB --- 2011-03-26 15:28:18 - TARGET_ARCH=powerpc TB --- 2011-03-26 15:28:18 - TZ=UTC TB --- 2011-03-26 15:28:18 - __MAKE_CONF=/dev/null TB --- 2011-03-26 15:28:18 - cd /src TB --- 2011-03-26 15:28:18 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Mar 26 15:28:18 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/libfdt -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 -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath 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/libfdt -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 -Werror /src/sys/dev/ath/ath_hal/ah.c -I/src/sys/dev/ath /src/sys/dev/ath/ath_hal/ah.c: In function 'ath_hal_getcapability': /src/sys/dev/ath/ath_hal/ah.c:602: error: 'HAL_CAP_SPLIT_4KB_TRANS' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:602: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/ath_hal/ah.c:602: error: for each function it appears in.) /src/sys/dev/ath/ath_hal/ah.c:604: error: 'HAL_CAP_HAS_PSPOLL' undeclared (first use in this function) *** Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-26 15:31:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-26 15:31:59 - ERROR: failed to build lint kernel TB --- 2011-03-26 15:31:59 - 5226.15 user 909.69 system 6538.95 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 15:44:09 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD947106564A; Sat, 26 Mar 2011 15:44:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id AD7D18FC16; Sat, 26 Mar 2011 15:44:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2QFi87q041323; Sat, 26 Mar 2011 11:44:08 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2QFi86B041314; Sat, 26 Mar 2011 15:44:08 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Mar 2011 15:44:08 GMT Message-Id: <201103261544.p2QFi86B041314@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 15:44:10 -0000 TB --- 2011-03-26 14:36:10 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-26 14:36:10 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2011-03-26 14:36:10 - cleaning the object tree TB --- 2011-03-26 14:36:19 - cvsupping the source tree TB --- 2011-03-26 14:36:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sun4v/supfile TB --- 2011-03-26 14:36:39 - building world TB --- 2011-03-26 14:36:39 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 14:36:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 14:36:39 - TARGET=sun4v TB --- 2011-03-26 14:36:39 - TARGET_ARCH=sparc64 TB --- 2011-03-26 14:36:39 - TZ=UTC TB --- 2011-03-26 14:36:39 - __MAKE_CONF=/dev/null TB --- 2011-03-26 14:36:39 - cd /src TB --- 2011-03-26 14:36:39 - /usr/bin/make -B buildworld >>> World build started on Sat Mar 26 14:36:40 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Mar 26 15:40:25 UTC 2011 TB --- 2011-03-26 15:40:25 - generating LINT kernel config TB --- 2011-03-26 15:40:25 - cd /src/sys/sun4v/conf TB --- 2011-03-26 15:40:25 - /usr/bin/make -B LINT TB --- 2011-03-26 15:40:25 - building LINT kernel TB --- 2011-03-26 15:40:25 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 15:40:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 15:40:25 - TARGET=sun4v TB --- 2011-03-26 15:40:25 - TARGET_ARCH=sparc64 TB --- 2011-03-26 15:40:25 - TZ=UTC TB --- 2011-03-26 15:40:25 - __MAKE_CONF=/dev/null TB --- 2011-03-26 15:40:25 - cd /src TB --- 2011-03-26 15:40:25 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Mar 26 15:40:25 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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 -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 -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath 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=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ath_hal/ah.c -I/src/sys/dev/ath /src/sys/dev/ath/ath_hal/ah.c: In function 'ath_hal_getcapability': /src/sys/dev/ath/ath_hal/ah.c:602: error: 'HAL_CAP_SPLIT_4KB_TRANS' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:602: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/ath_hal/ah.c:602: error: for each function it appears in.) /src/sys/dev/ath/ath_hal/ah.c:604: error: 'HAL_CAP_HAS_PSPOLL' undeclared (first use in this function) *** Error code 1 Stop in /obj/sun4v.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-26 15:44:08 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-26 15:44:08 - ERROR: failed to build lint kernel TB --- 2011-03-26 15:44:08 - 3121.51 user 685.83 system 4078.75 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sun4v.full From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 15:56:05 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 475F4106566C; Sat, 26 Mar 2011 15:56:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 1B0BB8FC08; Sat, 26 Mar 2011 15:56:04 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.4) with ESMTP id p2QFu4eK076203; Sat, 26 Mar 2011 11:56:04 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.4/Submit) id p2QFu4b7076202; Sat, 26 Mar 2011 15:56:04 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 26 Mar 2011 15:56:04 GMT Message-Id: <201103261556.p2QFu4b7076202@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc64/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 15:56:05 -0000 TB --- 2011-03-26 14:17:51 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2011-03-26 14:17:51 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2011-03-26 14:17:51 - cleaning the object tree TB --- 2011-03-26 14:18:06 - cvsupping the source tree TB --- 2011-03-26 14:18:06 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc64/powerpc/supfile TB --- 2011-03-26 14:18:27 - building world TB --- 2011-03-26 14:18:27 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 14:18:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 14:18:27 - TARGET=powerpc TB --- 2011-03-26 14:18:27 - TARGET_ARCH=powerpc64 TB --- 2011-03-26 14:18:27 - TZ=UTC TB --- 2011-03-26 14:18:27 - __MAKE_CONF=/dev/null TB --- 2011-03-26 14:18:27 - cd /src TB --- 2011-03-26 14:18:27 - /usr/bin/make -B buildworld >>> World build started on Sat Mar 26 14:18:27 UTC 2011 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sat Mar 26 15:52:15 UTC 2011 TB --- 2011-03-26 15:52:15 - generating LINT kernel config TB --- 2011-03-26 15:52:15 - cd /src/sys/powerpc/conf TB --- 2011-03-26 15:52:15 - /usr/bin/make -B LINT TB --- 2011-03-26 15:52:15 - building LINT kernel TB --- 2011-03-26 15:52:15 - MAKEOBJDIRPREFIX=/obj TB --- 2011-03-26 15:52:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2011-03-26 15:52:15 - TARGET=powerpc TB --- 2011-03-26 15:52:15 - TARGET_ARCH=powerpc64 TB --- 2011-03-26 15:52:15 - TZ=UTC TB --- 2011-03-26 15:52:15 - __MAKE_CONF=/dev/null TB --- 2011-03-26 15:52:15 - cd /src TB --- 2011-03-26 15:52:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Mar 26 15:52:15 UTC 2011 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/if_ath_pci.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ah_osdep.c -I/src/sys/dev/ath 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/libfdt -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 -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/ath/ath_hal/ah.c -I/src/sys/dev/ath /src/sys/dev/ath/ath_hal/ah.c: In function 'ath_hal_getcapability': /src/sys/dev/ath/ath_hal/ah.c:602: error: 'HAL_CAP_SPLIT_4KB_TRANS' undeclared (first use in this function) /src/sys/dev/ath/ath_hal/ah.c:602: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/ath_hal/ah.c:602: error: for each function it appears in.) /src/sys/dev/ath/ath_hal/ah.c:604: error: 'HAL_CAP_HAS_PSPOLL' undeclared (first use in this function) *** Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2011-03-26 15:56:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2011-03-26 15:56:04 - ERROR: failed to build lint kernel TB --- 2011-03-26 15:56:04 - 4605.48 user 1003.97 system 5892.97 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 16:39:39 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACD221065670 for ; Sat, 26 Mar 2011 16:39:39 +0000 (UTC) (envelope-from lattera@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 185D48FC16 for ; Sat, 26 Mar 2011 16:39:38 +0000 (UTC) Received: by wwc33 with SMTP id 33so2353331wwc.31 for ; Sat, 26 Mar 2011 09:39:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=daoe20QOOJZS69kbYvhuiE1DzxJ3aTUMSRA9LLFp3TA=; b=KBwbb7btFXGiHc6UBemDSKvZgCUTlYaSfls+R6GfTHNpepLYzaXNlCCyI6F1byt279 7aQMGTU00MeHRLjOrj4BPEVYYAsxcTia1I9l9GD+kWipepAmkdt3KYWmWDm+QOW+61iO nnHgMc9YwGgzEddfFkr/cc3d7x6WTX/sYeZX8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=JBCPzbCXSRT4+4JvcgvrKtgai1RKei8W723+UMv+RgiVuRO0wly6sbNQaDXPyGNIbe BHSKNPMpWmBtzAKaQwo/OtLa5STBM8cSDxmMXcuRqIyF8og9jqhf5hV3ZNEoLg+d7JYJ vheXb/CYUnCesqvdRvDjAJfewckqMqV5AiZH4= MIME-Version: 1.0 Received: by 10.227.207.65 with SMTP id fx1mr1974334wbb.119.1301157577942; Sat, 26 Mar 2011 09:39:37 -0700 (PDT) Received: by 10.227.158.21 with HTTP; Sat, 26 Mar 2011 09:39:37 -0700 (PDT) Received: by 10.227.158.21 with HTTP; Sat, 26 Mar 2011 09:39:37 -0700 (PDT) In-Reply-To: <201103261608.34751.hselasky@c2i.net> References: <201103260830.59672.hselasky@c2i.net> <201103261608.34751.hselasky@c2i.net> Date: Sat, 26 Mar 2011 10:39:37 -0600 Message-ID: From: Shawn Webb To: Hans Petter Selasky Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "Carlos A. M. dos Santos" , freebsd-current@freebsd.org, libusb-devel@lists.sourceforge.net, freebsd-usb@freebsd.org Subject: Re: Android fastboot support for FreeBSD 8/9 using LibUSB v1.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 16:39:39 -0000 This is awesome. Lack of Android tools support almost keeps me from fully switching from OSX to FreeBSD. Any chance adb is or will be supported? Thanks, Shawn On Mar 26, 2011 9:10 AM, "Hans Petter Selasky" wrote: > Hi, > > On Saturday 26 March 2011 15:30:01 Carlos A. M. dos Santos wrote: >> But for such a small change a simple Feature Request may suffice: > > Thank you! > > I've created an issue: > > http://code.google.com/p/android/issues/detail?id=15749&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars > > --HPS > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 17:25:43 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89EA3106566B for ; Sat, 26 Mar 2011 17:25:43 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by mx1.freebsd.org (Postfix) with ESMTP id 417B78FC08 for ; Sat, 26 Mar 2011 17:25:42 +0000 (UTC) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 939CC1C01F13 for ; Sat, 26 Mar 2011 18:25:41 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id 90E9D1C00113 for ; Sat, 26 Mar 2011 18:25:41 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id 4lr0g9fN6He2 for ; Sat, 26 Mar 2011 18:25:40 +0100 (CET) Received: from mail.reifenberger.com (ppp-93-104-98-27.dynamic.mnet-online.de [93.104.98.27]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sat, 26 Mar 2011 18:25:40 +0100 (CET) Received: by mail.reifenberger.com (Postfix, from userid 1001) id 57ECA31D4E; Sat, 26 Mar 2011 18:25:40 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.reifenberger.com (Postfix) with ESMTP id 4C5E631D4D for ; Sat, 26 Mar 2011 18:25:40 +0100 (CET) Date: Sat, 26 Mar 2011 18:25:40 +0100 (CET) From: Michael Reifenberger To: FreeBSD-Current 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 Cc: Subject: Booted nanobsd image has /etc schg flag set X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 17:25:43 -0000 Hi, I can't find the place where the schg flag is set for /etc during boot. (Must be during boot since the FS inside the image doesn't contain a schg flagged file) /var which is also a MFS FS hasn't schg set. This prevents the creation of new files like resolv.conf or host.conf after startup... Bye/2 --- Michael Reifenberger Michael@Reifenberger.com http://www.Reifenberger.com From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 17:31:40 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FE011065675 for ; Sat, 26 Mar 2011 17:31:40 +0000 (UTC) (envelope-from nlandys@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id DBB408FC14 for ; Sat, 26 Mar 2011 17:31:39 +0000 (UTC) Received: by iwn33 with SMTP id 33so2644864iwn.13 for ; Sat, 26 Mar 2011 10:31:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=xatJ8S9kr9YBsV/LIgb3pssZRalLLhwtFXT7zW3uL9M=; b=UAwzUd7X8ebhrt7PntCS80w5URcwlEqi2mX7tgpRpwzcf7ih4yX0bCKAXJ3cjaz9ny MXkXvtYrcKkwY60gMy7Q/V39eQSKxz5S1oFvtCTNmdUgQLKXqOTV3y9dupZ6Pvaa4Qo7 aY5SwrYwTs3W0l4n25iborwp7/dAvfu7uWKVg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Emogqz5XtPMXMEccvzVDHP8IO8vaZdr3/k6oxU996NmAlyPx9bWkgV5cImkE9+YaZM adG3a94Ao/+eFpBVmEgfCHpJ/LmYKFK49fbc3OZuNRb3a3fHHw1mfnrn+PglXTHp9t37 Qyr2Dm/cl+z31oQC9MoaW3Ku/hcbCmcEzTiHw= MIME-Version: 1.0 Received: by 10.43.64.18 with SMTP id xg18mr3217788icb.144.1301160699135; Sat, 26 Mar 2011 10:31:39 -0700 (PDT) Received: by 10.42.227.66 with HTTP; Sat, 26 Mar 2011 10:31:39 -0700 (PDT) In-Reply-To: <20110326110012.GA73916@freebsd.org> References: <20110325233826.00000cab@unknown> <20110326110012.GA73916@freebsd.org> Date: Sat, 26 Mar 2011 10:31:39 -0700 Message-ID: From: Nerius Landys To: Alexander Best Content-Type: text/plain; charset=ISO-8859-1 Cc: Garrett Cooper , Bruce Cran , freebsd-current@freebsd.org, Artem Belevich Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 17:31:40 -0000 > one could also use the -F switch in connection with mergemaster(8). >From mergemaster manpage: "If the files differ only by VCS Id ($FreeBSD) install the new file." Yes that is exactly what I want, thanks. By the way, are there any other ways that are more preferred to get /usr/src/ than doing what I've done, which is using devel/subversion-freebsd to checkout head into /usr/src/? From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 17:52:11 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A289106566C; Sat, 26 Mar 2011 17:52:11 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id BE5728FC08; Sat, 26 Mar 2011 17:52:10 +0000 (UTC) Received: by gyg13 with SMTP id 13so903155gyg.13 for ; Sat, 26 Mar 2011 10:52:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=gFl7RXhTCF8VJI6KIcXXSFCS9Qk5RulCOlbde51Lu/0=; b=LT7Z8b/aTUd8DvcwEg6iyrKfTQvpEe9INway8SFNAa0ZzVqNbqMxWPs42qa/EFFP1H VOfjVxtsigkeBCvTtR6ICEJCF8b/kOWZyYkFaxmKCIZP6mwHixgQYcI5kOj7FzaAvPwT RD20E7zEr6LetwpRoQA1P/5eqfjyt4XoP3rFY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=PrRNaStGCnBFTshNjJ/LcYL+Ha3OoiTXQbGhN3vTgAfZGf3ZxWA0JDTFB1yiOtv3fM PCtMyFl1T0yFOruccZ+diU9Kp2SPaX1/G98DSQKajmxkaiuSFmw5tpOfiG8zvpB3QoGH nkeEg/yV4nErnRlbnkKab5AtOVJngQyPCSV9w= MIME-Version: 1.0 Received: by 10.91.20.12 with SMTP id x12mr2205661agi.100.1301161928939; Sat, 26 Mar 2011 10:52:08 -0700 (PDT) Received: by 10.90.100.10 with HTTP; Sat, 26 Mar 2011 10:52:08 -0700 (PDT) In-Reply-To: <20110325075541.GA1742@garage.freebsd.pl> References: <20110325075541.GA1742@garage.freebsd.pl> Date: Sat, 26 Mar 2011 10:52:08 -0700 Message-ID: From: Freddie Cash To: Pawel Jakub Dawidek Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Filesystems , FreeBSD-Current , FreeBSD Stable Subject: Re: Any success stories for HAST + ZFS? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 17:52:11 -0000 On Fri, Mar 25, 2011 at 12:55 AM, Pawel Jakub Dawidek wro= te: > On Thu, Mar 24, 2011 at 01:36:32PM -0700, Freddie Cash wrote: >> I've tried with FreeBSD 8.2-RELEASE, 8-STABLE, 8-STABLE w/ZFSv28 >> patches, and 9-CURRENT (after the ZFSv28 commit). =C2=A0Things work well >> until I start hastd. =C2=A0Then either the system locks up, or hastd cau= ses >> a kernel panic, or hastd dumps core. > > The minimum amount of information (as always) would be backtrace from > the kernel and also hastd backtrace when it coredumps. There is really > decent logging in hast, so I'm also sure it does log something > interesting on primary or secondary. Another useful thing would be to > turn on debugging in hast (single -d option for hastd). > > The best you can do is to give me the simplest and quickest procedure to > reproduce the issue, eg. configure two hast resources, put ZFS mirror on > top, start rsync /usr/src to the file system on top of hast and switch > roles. The simpler the better. FreeBSD 8-STABLE r219754 with the ZFSv28 patches applied. hast.conf: resource disk-a1 { local /dev/label/disk-a1 on omegadrive { remote tcp4://10.20.0.102 } on alphadrive { remote tcp4://10.20.0.101 } } resource disk-a2 { local /dev/label/disk-a2 on omegadrive { remote tcp4://10.20.0.102 } on alphadrive { remote tcp4://10.20.0.101 } } Following will crash hastd: service hastd onestart hastctl create disk-a1 hastctl create disk-a2 hastctl role primary all hastd backtrace is here: http://www.sd73.bc.ca/downloads/crash/hast-backtrace.png I'll try running it with -d to see if there's anything interesting there. Sure, running it with -d and -F, output to a log file, everything works well using 2 disks. Hrm, running it with all 24 disks, I can't make it crash now. However, I did change the kernel hz from 100 to 1000. I'll see if I can switch it back to 100 and try the tests again using -dF. The backtrace listed above is with kern.hz=3D100. --=20 Freddie Cash fjwcash@gmail.com From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 18:19:32 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C56C21065672; Sat, 26 Mar 2011 18:19:32 +0000 (UTC) (envelope-from gljennjohn@googlemail.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 CF1EE8FC08; Sat, 26 Mar 2011 18:19:31 +0000 (UTC) Received: by wwc33 with SMTP id 33so2403678wwc.31 for ; Sat, 26 Mar 2011 11:19:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:in-reply-to :references:reply-to:x-mailer:mime-version:content-type :content-transfer-encoding; bh=P9YukOPaSxK6cB71s1EcEM7Zl8eRUiYmnw4ExGN+yHs=; b=B/l7g0A4A3egiW/m1Zjtll+6PTHKfj0eJApRMRhmc0hwugZ1hDg5tjqyUG3QDoLOhz EtuJoUyB2DBkXiLxi24m7kXNnQ1Bvw7k4EjF8xMs4ibuo1DNwFpqUuNrtrezicrUG3Qs WSQm7zvfDYIHH8GLEY+DtHAV1ghCZz/28FeQU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:reply-to :x-mailer:mime-version:content-type:content-transfer-encoding; b=J+l5WKL+9r0h7fuexJ57U43NMzI87VBdg+xDW0V5l+nZ2B6YTVnf1M5yXRfGUfwsfW vdl6HCBN3VTgCxrvI0E7XWfQKb15arBWXjQuVz3Z9ZL2nJhkkGlfIEpwK4Q3pcXl/JsW DaU0VWnpnL7p8Nfjg1iRbGN74dGwnxriX0+sw= Received: by 10.227.179.138 with SMTP id bq10mr2141677wbb.12.1301163570674; Sat, 26 Mar 2011 11:19:30 -0700 (PDT) Received: from ernst.jennejohn.org (p578E281A.dip.t-dialin.net [87.142.40.26]) by mx.google.com with ESMTPS id g7sm1077689wby.14.2011.03.26.11.19.28 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 26 Mar 2011 11:19:29 -0700 (PDT) Date: Sat, 26 Mar 2011 19:19:27 +0100 From: Gary Jennejohn To: "O. Hartmann" Message-ID: <20110326191927.1bd25c06@ernst.jennejohn.org> In-Reply-To: <4D8E2830.70105@mail.zedat.fu-berlin.de> References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> <20110326134804.GA78089@deviant.kiev.zoral.com.ua> <4D8E2830.70105@mail.zedat.fu-berlin.de> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.18.7; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Kostik Belousov , freebsd-x11 , freebsd-current@freebsd.org, Andriy Gapon , jkim@FreeBSD.org Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gljennjohn@googlemail.com List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 18:19:33 -0000 On Sat, 26 Mar 2011 18:53:52 +0100 "O. Hartmann" wrote: > On 03/26/11 14:48, Kostik Belousov wrote: > > On Sat, Mar 26, 2011 at 01:44:52PM +0100, O. Hartmann wrote: > >> On 26.03.2011 11:55, Andriy Gapon wrote: > >>> on 26/03/2011 11:10 O. Hartmann said the following: > >>>> Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted > >>>> with a > >>>> AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which > >>>> has > >>>> been recently update as far as I saw), > >>>> resulted this morning in an 'un-login-able' box. > >>>> > >>>> I see the xdm-login requester, but after successfully login, I see for a > >>>> second > >>>> the desktop (windowmaker), but X11 immediately dies and resets to the xdm > >>>> requester again. > >>> > >>> Are you subscribed to our x11 list? It's quite low volume. > >>> Please see recent messages in its archive, perhaps they could help you. > >>> > >> > >> > >> Hello. > >> > >> No, I'm actually not subscribed to that list. Since the problem occured > >> since yesterday's update out of the blue, I thought it could be more > >> FreeBSD related than X11 related. But I will reply to the X11 list as > >> well. I simply forgot in my desperate pain, sorry. > >> > > See > > http://lists.freebsd.org/pipermail/freebsd-x11/2011-March/010737.html > > > I downgraded the AMD/ATi driver to version xf86-video-ati-6.14.0_1, I > desperately need my boxes since I have to finish work. > Three different types of AMD/ATi graphics cards out of the same product > class are not working with the new xf86-video-ati-6.14.1 and as the > above mentioned link suggests, the solution is well known. I was > wondering how this port could be so easily slipped into the repository ... > > Since the patch Jun-uk Kim referred to is a GIT patch and it seems to > work, is there a 'simple' way without installing the GIT stuff from > ports to patch the defective port? > Have you looked at the link? The patch is trivial and can easily be applied by hand. -- Gary Jennejohn From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 18:30:22 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id D727B10656E6; Sat, 26 Mar 2011 18:30:22 +0000 (UTC) Date: Sat, 26 Mar 2011 18:30:22 +0000 From: Alexander Best To: Nerius Landys Message-ID: <20110326183022.GB31354@freebsd.org> References: <20110325233826.00000cab@unknown> <20110326110012.GA73916@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: Garrett Cooper , Bruce Cran , freebsd-current@freebsd.org, Artem Belevich Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 18:30:22 -0000 On Sat Mar 26 11, Nerius Landys wrote: > > one could also use the -F switch in connection with mergemaster(8). > > >From mergemaster manpage: > > "If the files differ only by VCS Id ($FreeBSD) install the new file." > > Yes that is exactly what I want, thanks. np. > > By the way, are there any other ways that are more preferred to get > /usr/src/ than doing what I've done, which is using > devel/subversion-freebsd to checkout head into /usr/src/? actually i think that's the prefered way. i don't think there are any huge speed advantages using rsync. some other projects recommend downloading and extracting a gzip'ed source snapshot and then run svn up. but i don't think the freebsd project produces such src snapshots. cheers. alex -- a13x From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 18:55:50 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC51B106566B for ; Sat, 26 Mar 2011 18:55:50 +0000 (UTC) (envelope-from artemb@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4CD2B8FC13 for ; Sat, 26 Mar 2011 18:55:50 +0000 (UTC) Received: by qwc9 with SMTP id 9so1346206qwc.13 for ; Sat, 26 Mar 2011 11:55:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=QwdqamZqpTReu7aQBiAnDkOBOg5+G2Zequ7JXMCcPLQ=; b=tJlEX6mmKMOaB65Dw+IvzDISDRlmB6QmDPdUpTGkAd9pT9TvKqBzU0PD03mziJ5m5Y n7DuCwXg2aaIZlJTTQQQnrdFtHlWUcfRnP5r5sCzfqbmgI36Mu5lm2/Ny7J8wC5YuG+/ eYE9BaxpJZ8ZHPDMDioVtddjG1pgPIkIRx0Sw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=WqheggXU9tobdjfea4JdEEU98/T7K0rDNGg1G3NZanEBM+V/y+5bXp+M8NqOnIXmFM x5KhzVYbiC9d0pZw7LudeUlznAVqWk2Grc12lWLL+WsRnWuejfWI9yM0h5jppjTziTB7 1LTXpfuO14UaOPPN/y632jCRsIOemjFLr/ywY= MIME-Version: 1.0 Received: by 10.229.111.217 with SMTP id t25mr1874226qcp.211.1301165748472; Sat, 26 Mar 2011 11:55:48 -0700 (PDT) Sender: artemb@gmail.com Received: by 10.229.31.83 with HTTP; Sat, 26 Mar 2011 11:55:48 -0700 (PDT) In-Reply-To: References: <20110325233826.00000cab@unknown> <20110326110012.GA73916@freebsd.org> Date: Sat, 26 Mar 2011 11:55:48 -0700 X-Google-Sender-Auth: 4trx2bLUUN7Bn5aQ6XtS3bZoI-I Message-ID: From: Artem Belevich To: Nerius Landys Content-Type: text/plain; charset=ISO-8859-1 Cc: Garrett Cooper , Alexander Best , Bruce Cran , freebsd-current@freebsd.org Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 18:55:50 -0000 On Sat, Mar 26, 2011 at 10:31 AM, Nerius Landys wrote: > By the way, are there any other ways that are more preferred to get > /usr/src/ than doing what I've done, which is using > devel/subversion-freebsd to checkout head into /usr/src/? Another option would be to use git. Some kind soul maintains partial FreeBSD repository mirror in git here: git://gitorious.org/freebsd/freebsd.git I personally find git quite convenient for maintaining my local changes. --Artem From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 19:35:44 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F231106564A for ; Sat, 26 Mar 2011 19:35:44 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 0195D8FC0C for ; Sat, 26 Mar 2011 19:35:43 +0000 (UTC) Received: by qyk35 with SMTP id 35so354140qyk.13 for ; Sat, 26 Mar 2011 12:35:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:cc:content-type; bh=s7SmE5a2VtrScwEvQ1/7Wde2S7KxzEEzo4dtcD/pd2k=; b=H0jIeXAIC7wJBVH7B/dAchArwBl0xW6AhB8CzL1p5+ofhS4/gI8LJQMOnl56/5y3lz vpsDwqqDy8aloV+ntA6vAKiU/rjU+hjfboVYuKcp9XMQYvmVisapfnkTPNbnC6IUe7oP Gk4KT+JeSBb/MATheP2ArpCNBY0RgvXsbB6d0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=ZHmkPr7ENHTeebVaLzauSRcxVQuJAxNsyAEQA9MQFaE/8I+S82lBqg7zMeP+6fpHJQ OeydJhp4LY9CxLfCE7OJY9co9YlwWbzLlou178Lx+lopWoTEEUJgq+UddDunPjQm6XJ7 eVVNsyx0OfNXjI++hoMXaqzhSHt+9Fus/CoP8= Received: by 10.229.107.15 with SMTP id z15mr1903704qco.99.1301168143097; Sat, 26 Mar 2011 12:35:43 -0700 (PDT) MIME-Version: 1.0 Sender: ivoras@gmail.com Received: by 10.229.78.193 with HTTP; Sat, 26 Mar 2011 12:35:03 -0700 (PDT) In-Reply-To: References: <20110325101111.GA36840__48943.3474642739$1301049771$gmane$org@azathoth.lan> From: Ivan Voras Date: Sat, 26 Mar 2011 20:35:03 +0100 X-Google-Sender-Auth: XdqGVTMXSn5gX68l-RJIvzbGN-c Message-ID: To: Julien Laffaye Content-Type: text/plain; charset=UTF-8 Cc: freebsd-current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 19:35:44 -0000 On 26 March 2011 12:15, Julien Laffaye wrote: > On Fri, Mar 25, 2011 at 12:33 PM, Julien Laffaye wrote: >> On Fri, Mar 25, 2011 at 11:52 AM, Ivan Voras wrote: >>> At this time I'd just like to suggest you add the use of WAL journal >>> (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database creation >>> so you get the benefits of multiple-readers-single-writer concurrency model. >> It sounds like a good idea. I'll add WAL support and if no problem >> arise from that we should keep it. > > Despite the fact that WAL allows cool things, one disadvantage is that > the process require write privileges on the database file even if it > is only reading. > Thus, pkg info and things like that would need to be run as root... You are right, I never tried it as read-only :( It looks like sqlite with WAL always needs write privileges at least to the directory in which the database is located. I think the workarounds are not worth the trouble. From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 17:53:54 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A37AF106566B; Sat, 26 Mar 2011 17:53:54 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 582868FC1A; Sat, 26 Mar 2011 17:53:54 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1Q3XgP-0006N4-D4>; Sat, 26 Mar 2011 18:53:53 +0100 Received: from e178011057.adsl.alicedsl.de ([85.178.11.57] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1Q3XgP-0000hK-9b>; Sat, 26 Mar 2011 18:53:53 +0100 Message-ID: <4D8E2830.70105@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 18:53:52 +0100 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110319 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: Kostik Belousov References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> <20110326134804.GA78089@deviant.kiev.zoral.com.ua> In-Reply-To: <20110326134804.GA78089@deviant.kiev.zoral.com.ua> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.11.57 X-Mailman-Approved-At: Sat, 26 Mar 2011 19:40:16 +0000 Cc: freebsd-x11 , freebsd-current@freebsd.org, jkim@FreeBSD.org, Andriy Gapon Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 17:53:54 -0000 On 03/26/11 14:48, Kostik Belousov wrote: > On Sat, Mar 26, 2011 at 01:44:52PM +0100, O. Hartmann wrote: >> On 26.03.2011 11:55, Andriy Gapon wrote: >>> on 26/03/2011 11:10 O. Hartmann said the following: >>>> Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted >>>> with a >>>> AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which >>>> has >>>> been recently update as far as I saw), >>>> resulted this morning in an 'un-login-able' box. >>>> >>>> I see the xdm-login requester, but after successfully login, I see for a >>>> second >>>> the desktop (windowmaker), but X11 immediately dies and resets to the xdm >>>> requester again. >>> >>> Are you subscribed to our x11 list? It's quite low volume. >>> Please see recent messages in its archive, perhaps they could help you. >>> >> >> >> Hello. >> >> No, I'm actually not subscribed to that list. Since the problem occured >> since yesterday's update out of the blue, I thought it could be more >> FreeBSD related than X11 related. But I will reply to the X11 list as >> well. I simply forgot in my desperate pain, sorry. >> > See > http://lists.freebsd.org/pipermail/freebsd-x11/2011-March/010737.html I downgraded the AMD/ATi driver to version xf86-video-ati-6.14.0_1, I desperately need my boxes since I have to finish work. Three different types of AMD/ATi graphics cards out of the same product class are not working with the new xf86-video-ati-6.14.1 and as the above mentioned link suggests, the solution is well known. I was wondering how this port could be so easily slipped into the repository ... Since the patch Jun-uk Kim referred to is a GIT patch and it seems to work, is there a 'simple' way without installing the GIT stuff from ports to patch the defective port? Thanks in advance, Oliver From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 18:29:35 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D42881065672; Sat, 26 Mar 2011 18:29:35 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 88E568FC19; Sat, 26 Mar 2011 18:29:35 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1Q3YEw-0001KN-It>; Sat, 26 Mar 2011 19:29:34 +0100 Received: from e178011057.adsl.alicedsl.de ([85.178.11.57] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1Q3YEw-0002MY-FE>; Sat, 26 Mar 2011 19:29:34 +0100 Message-ID: <4D8E308C.2060004@mail.zedat.fu-berlin.de> Date: Sat, 26 Mar 2011 19:29:32 +0100 From: "Hartmann, O." User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110307 Thunderbird/3.1.9 MIME-Version: 1.0 To: gljennjohn@googlemail.com References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> <20110326134804.GA78089@deviant.kiev.zoral.com.ua> <4D8E2830.70105@mail.zedat.fu-berlin.de> <20110326191927.1bd25c06@ernst.jennejohn.org> In-Reply-To: <20110326191927.1bd25c06@ernst.jennejohn.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.11.57 X-Mailman-Approved-At: Sat, 26 Mar 2011 19:40:31 +0000 Cc: Kostik Belousov , freebsd-x11 , freebsd-current@freebsd.org, jkim@FreeBSD.org, Andriy Gapon Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 18:29:35 -0000 On 03/26/11 19:19, Gary Jennejohn wrote: > On Sat, 26 Mar 2011 18:53:52 +0100 > "O. Hartmann" wrote: > >> On 03/26/11 14:48, Kostik Belousov wrote: >>> On Sat, Mar 26, 2011 at 01:44:52PM +0100, O. Hartmann wrote: >>>> On 26.03.2011 11:55, Andriy Gapon wrote: >>>>> on 26/03/2011 11:10 O. Hartmann said the following: >>>>>> Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host, equipted >>>>>> with a >>>>>> AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver (which >>>>>> has >>>>>> been recently update as far as I saw), >>>>>> resulted this morning in an 'un-login-able' box. >>>>>> >>>>>> I see the xdm-login requester, but after successfully login, I see for a >>>>>> second >>>>>> the desktop (windowmaker), but X11 immediately dies and resets to the xdm >>>>>> requester again. >>>>> Are you subscribed to our x11 list? It's quite low volume. >>>>> Please see recent messages in its archive, perhaps they could help you. >>>>> >>>> >>>> Hello. >>>> >>>> No, I'm actually not subscribed to that list. Since the problem occured >>>> since yesterday's update out of the blue, I thought it could be more >>>> FreeBSD related than X11 related. But I will reply to the X11 list as >>>> well. I simply forgot in my desperate pain, sorry. >>>> >>> See >>> http://lists.freebsd.org/pipermail/freebsd-x11/2011-March/010737.html >> >> I downgraded the AMD/ATi driver to version xf86-video-ati-6.14.0_1, I >> desperately need my boxes since I have to finish work. >> Three different types of AMD/ATi graphics cards out of the same product >> class are not working with the new xf86-video-ati-6.14.1 and as the >> above mentioned link suggests, the solution is well known. I was >> wondering how this port could be so easily slipped into the repository ... >> >> Since the patch Jun-uk Kim referred to is a GIT patch and it seems to >> work, is there a 'simple' way without installing the GIT stuff from >> ports to patch the defective port? >> > Have you looked at the link? The patch is trivial and can easily be > applied by hand. > Yes I did. From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 20:12:07 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55C5F106564A for ; Sat, 26 Mar 2011 20:12:07 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp04.sth.basefarm.net (ch-smtp04.sth.basefarm.net [80.76.153.5]) by mx1.freebsd.org (Postfix) with ESMTP id D60548FC15 for ; Sat, 26 Mar 2011 20:12:06 +0000 (UTC) Received: from c83-255-51-20.bredband.comhem.se ([83.255.51.20]:53715 helo=falcon.midgard.homeip.net) by ch-smtp04.sth.basefarm.net with esmtp (Exim 4.73) (envelope-from ) id 1Q3ZbJ-0003yZ-Fd for freebsd-current@freebsd.org; Sat, 26 Mar 2011 20:56:48 +0100 Received: (qmail 9315 invoked from network); 26 Mar 2011 20:56:45 +0100 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with ESMTP; 26 Mar 2011 20:56:45 +0100 Received: (qmail 31046 invoked by uid 1001); 26 Mar 2011 20:56:45 +0100 Date: Sat, 26 Mar 2011 20:56:45 +0100 From: Erik Trulsson To: Nerius Landys Message-ID: <20110326195644.GA31016@owl.midgard.homeip.net> References: <20110325233826.00000cab@unknown> <20110326110012.GA73916@freebsd.org> 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) X-Originating-IP: 83.255.51.20 X-Scan-Result: No virus found in message 1Q3ZbJ-0003yZ-Fd. X-Scan-Signature: ch-smtp04.sth.basefarm.net 1Q3ZbJ-0003yZ-Fd bb947b11903c76c14343e1407acebd0f Cc: Garrett Cooper , Alexander Best , Bruce Cran , freebsd-current@freebsd.org, Artem Belevich Subject: Re: Getting /usr/src/ from SVN directly? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 20:12:07 -0000 On Sat, Mar 26, 2011 at 10:31:39AM -0700, Nerius Landys wrote: > > one could also use the -F switch in connection with mergemaster(8). > > >From mergemaster manpage: > > "If the files differ only by VCS Id ($FreeBSD) install the new file." > > Yes that is exactly what I want, thanks. > > By the way, are there any other ways that are more preferred to get > /usr/src/ than doing what I've done, which is using > devel/subversion-freebsd to checkout head into /usr/src/? No, that is probably the best way. An older method (which still works) is to use csup/cvsup to download a local copy of the whole CVS repository and then use cvs to checkout /usr/src from this copy. Before the switch to subversion this was the preferred way. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 21:08:36 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E0C9106564A; Sat, 26 Mar 2011 21:08:36 +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 11F638FC16; Sat, 26 Mar 2011 21:08:35 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id p2QL8VqD026251 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 26 Mar 2011 23:08:31 +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.4/8.14.4) with ESMTP id p2QL8VFr061631; Sat, 26 Mar 2011 23:08:31 +0200 (EET) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id p2QL8V01061630; Sat, 26 Mar 2011 23:08:31 +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: Sat, 26 Mar 2011 23:08:31 +0200 From: Kostik Belousov To: "Hartmann, O." Message-ID: <20110326210831.GG78089@deviant.kiev.zoral.com.ua> References: <4D8DAD7E.8090109@mail.zedat.fu-berlin.de> <4D8DC619.9080503@freebsd.org> <4D8DDFC4.9070003@mail.zedat.fu-berlin.de> <20110326134804.GA78089@deviant.kiev.zoral.com.ua> <4D8E2830.70105@mail.zedat.fu-berlin.de> <20110326191927.1bd25c06@ernst.jennejohn.org> <4D8E308C.2060004@mail.zedat.fu-berlin.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0Wno+JmTDwXv9sgk" Content-Disposition: inline In-Reply-To: <4D8E308C.2060004@mail.zedat.fu-berlin.de> 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.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: freebsd-x11 , freebsd-current@freebsd.org, jkim@freebsd.org, Andriy Gapon Subject: Re: XIO: fatal IO error 35 (Resource temporarily unavailable) on X server ":0.0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 21:08:36 -0000 --0Wno+JmTDwXv9sgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 26, 2011 at 07:29:32PM +0100, Hartmann, O. wrote: > On 03/26/11 19:19, Gary Jennejohn wrote: > >On Sat, 26 Mar 2011 18:53:52 +0100 > >"O. Hartmann" wrote: > > > >>On 03/26/11 14:48, Kostik Belousov wrote: > >>>On Sat, Mar 26, 2011 at 01:44:52PM +0100, O. Hartmann wrote: > >>>>On 26.03.2011 11:55, Andriy Gapon wrote: > >>>>>on 26/03/2011 11:10 O. Hartmann said the following: > >>>>>>Updating ports and source of my FreeBSD 9.0-CURRENT/amd64 host,=20 > >>>>>>equipted > >>>>>>with a > >>>>>>AMD/ATi HD4830 graphics board driven by X11 xf86-video-ati driver= =20 > >>>>>>(which > >>>>>>has > >>>>>>been recently update as far as I saw), > >>>>>>resulted this morning in an 'un-login-able' box. > >>>>>> > >>>>>>I see the xdm-login requester, but after successfully login, I see= =20 > >>>>>>for a > >>>>>>second > >>>>>>the desktop (windowmaker), but X11 immediately dies and resets to t= he=20 > >>>>>>xdm > >>>>>>requester again. > >>>>>Are you subscribed to our x11 list? It's quite low volume. > >>>>>Please see recent messages in its archive, perhaps they could help y= ou. > >>>>> > >>>> > >>>>Hello. > >>>> > >>>>No, I'm actually not subscribed to that list. Since the problem occur= ed > >>>>since yesterday's update out of the blue, I thought it could be more > >>>>FreeBSD related than X11 related. But I will reply to the X11 list as > >>>>well. I simply forgot in my desperate pain, sorry. > >>>> > >>>See > >>>http://lists.freebsd.org/pipermail/freebsd-x11/2011-March/010737.html > >> > >>I downgraded the AMD/ATi driver to version xf86-video-ati-6.14.0_1, I > >>desperately need my boxes since I have to finish work. > >>Three different types of AMD/ATi graphics cards out of the same product > >>class are not working with the new xf86-video-ati-6.14.1 and as the > >>above mentioned link suggests, the solution is well known. I was > >>wondering how this port could be so easily slipped into the repository = ... > >> > >>Since the patch Jun-uk Kim referred to is a GIT patch and it seems to > >>work, is there a 'simple' way without installing the GIT stuff from > >>ports to patch the defective port? > >> > >Have you looked at the link? The patch is trivial and can easily be > >applied by hand. > > > Yes I did. Put the following content into the ports/x11-drivers/xf86-video-ati/files/p= atch-all =46rom fe2e0ad3ffa58f40311319c950b842e2928a5740 Mon Sep 17 00:00:00 2001 From: matthew green Date: Mon, 21 Mar 2011 16:17:58 +0000 Subject: bug fix for r6xx/r7xx UMS Signed-off-by: Alex Deucher --- diff --git src/r600_exa.c src/r600_exa.c index 0ed0ced..7736d24 100644 --- src/r600_exa.c +++ src/r600_exa.c @@ -621,8 +621,12 @@ R600PrepareCopy(PixmapPtr pSrc, PixmapPtr pDst, return FALSE; =20 if (accel_state->same_surface =3D=3D TRUE) { +#if defined(XF86DRM_MODE) unsigned height =3D RADEON_ALIGN(pDst->drawable.height, drmmode_get_height_align(pScrn, accel_state->dst_obj.tiling_fla= gs)); +#else + unsigned height =3D pDst->drawable.height; +#endif unsigned long size =3D height * accel_state->dst_obj.pitch * pDst->drawab= le.bitsPerPixel/8; =20 #if defined(XF86DRM_MODE) diff --git src/radeon_textured_video.c src/radeon_textured_video.c index c886ed0..d247db6 100644 --- src/radeon_textured_video.c +++ src/radeon_textured_video.c @@ -248,7 +248,11 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn, BoxRec dstBox; int dst_width =3D width, dst_height =3D height; int aligned_height; +#ifdef XF86DRM_MODE int h_align =3D drmmode_get_height_align(pScrn, 0); +#else + int h_align =3D 1; +#endif /* make the compiler happy */ s2offset =3D s3offset =3D srcPitch2 =3D 0; =20 -- cgit v0.8.3-6-g21f6 --0Wno+JmTDwXv9sgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEARECAAYFAk2OVc8ACgkQC3+MBN1Mb4jZsACg1ALoMUJOAZEj175bqNuxUFrq D+8AnROQ1Bh/r4VLUOwWLfcFYwl4bxAe =7RHU -----END PGP SIGNATURE----- --0Wno+JmTDwXv9sgk-- From owner-freebsd-current@FreeBSD.ORG Sat Mar 26 23:02:08 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D7CD106566B; Sat, 26 Mar 2011 23:02:08 +0000 (UTC) (envelope-from julien.laffaye@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id B74CF8FC08; Sat, 26 Mar 2011 23:02:07 +0000 (UTC) Received: by wyf23 with SMTP id 23so2282736wyf.13 for ; Sat, 26 Mar 2011 16:02:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=7k0vTUUlMxMxRAyO1WGtpjCYuPSi4LBGec/5ziDwPpE=; b=IIbdI32W1fd2ST6RZF7JPFv59yML6R+Syodu9DnIw4nz8yEgsMup1G/JeuqXKee1b3 /dOSxnjhDOBNrN7+RCqzMDOzwdWGgHA7kaAwcE4ASbSPnkKar67Fo/QW5chRnDD8znRc qg4PWpjzgmIE6NWQkQMOImhQfeLh/cer7z9Ic= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=ouxfJ1DFtLV5c3LMsYqxElYMS29Non383dx8Gu7Yyot8Oj3yhvtCmUXloA0RYCWep6 98KpOUvClNGQvi/t1JiGpiPBu4xgwg/OR6RYasY7D7kAD00gZSXVkwkERsXc+TDtGnwu BW6mCCIu9YGMcZ0m8aNLoOMOPjxQnGfzgaq14= MIME-Version: 1.0 Received: by 10.216.136.67 with SMTP id v45mr1197277wei.106.1301180526817; Sat, 26 Mar 2011 16:02:06 -0700 (PDT) Sender: julien.laffaye@gmail.com Received: by 10.216.167.85 with HTTP; Sat, 26 Mar 2011 16:02:06 -0700 (PDT) In-Reply-To: <20110325101111.GA36840@azathoth.lan> References: <20110325101111.GA36840@azathoth.lan> Date: Sat, 26 Mar 2011 23:02:06 +0000 X-Google-Sender-Auth: yHKfzpLH7FDeBTyLLmeGzN0_GdY Message-ID: From: Julien Laffaye To: Baptiste Daroussin Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org, hackers@freebsd.org, current@freebsd.org Subject: Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Mar 2011 23:02:08 -0000 On Fri, Mar 25, 2011 at 10:11 AM, Baptiste Daroussin wro= te: > =A0Developpement site: http://git.etoilebsd.net/pkgng/ FYI, we moved to github[1] in order to have a bug tracker, pull request and code review. Also, I recommend to build from the HEAD of the git repository, to not report fixed compilation warnings/bugs. [1]: https://github.com/pkgng/pkgng