From owner-freebsd-amd64@FreeBSD.ORG Sun Jul 8 15:02:30 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59005106566C; Sun, 8 Jul 2012 15:02:30 +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 B2E428FC0A; Sun, 8 Jul 2012 15:02:29 +0000 (UTC) Received: from skuns.kiev.zoral.com.ua (localhost [127.0.0.1]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id q68F2cFH079795; Sun, 8 Jul 2012 18:02:38 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5) with ESMTP id q68F2Qcq045687; Sun, 8 Jul 2012 18:02:26 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5/Submit) id q68F2P0l045686; Sun, 8 Jul 2012 18:02:25 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 8 Jul 2012 18:02:25 +0300 From: Konstantin Belousov To: amd64@freebsd.org Message-ID: <20120708150225.GA2338@deviant.kiev.zoral.com.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Jsn5+Lu/ZvzbAGtZ" Content-Disposition: inline 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=-4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: current@freebsd.org Subject: XSAVEOPT X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jul 2012 15:02:30 -0000 --Jsn5+Lu/ZvzbAGtZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Please find at http://people.freebsd.org/~kib/misc/xsaveopt.1.patch a patch to finally add suport for using XSAVEOPT for our amd64 context switch code. See Intel SDM for description of the XSAVEOPT instruction. Summary is that the instruction allows to not write parts of the FPU state which was not touched by the thread. Context switch then would write less to the PCB when thread is moved out from CPU. This is mainly to facilitate the ever-growing size of the FPU register file, in particular, AVX/YMM registers. Normal applications do not touch YMM, so saving them on each context switch if FPU was used is waste. Main complication is that any consumer of the ucontext_t still expect to see fully populated machine state, including the extended states which were not saved. Since CPU only avoids save when corresponding state is pristine, we can use the copy of initial state. CPUID provides an enumerator that allows OS to easily pick up neccesary area and copy over. I tried hard, but was unable to measure any statistically significant difference in the context switch times between XSAVE and XSAVEOPT using lmbench lat_ctx, on Core i7 2600K. --Jsn5+Lu/ZvzbAGtZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAk/5oQEACgkQC3+MBN1Mb4jQTQCggprKu1UUYowMeCiIXyzewViq VuAAn2UY0I/7AhGmFB+1x0OylSnd24VC =9G5R -----END PGP SIGNATURE----- --Jsn5+Lu/ZvzbAGtZ-- From owner-freebsd-amd64@FreeBSD.ORG Mon Jul 9 11:07:04 2012 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1D3B1065670 for ; Mon, 9 Jul 2012 11:07:04 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9B2188FC08 for ; Mon, 9 Jul 2012 11:07:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q69B74kO075345 for ; Mon, 9 Jul 2012 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q69B734c075343 for freebsd-amd64@FreeBSD.org; Mon, 9 Jul 2012 11:07:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 9 Jul 2012 11:07:03 GMT Message-Id: <201207091107.q69B734c075343@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2012 11:07:04 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/168659 amd64 [boot] FreeBSD 9 - Crash upon booting off install CD ( o amd64/167582 amd64 Compile of MySQL NDB Cluster Fails 8.2 AMD64 o amd64/167543 amd64 [kernel] Install FreeBSD can show error message with c o amd64/167393 amd64 [boot] MacBook4,1 hangs on SMP boot o amd64/166639 amd64 [boot] Syscons issue Intel D2700 o amd64/166229 amd64 [boot] Unable to install FreeBSD 9 on Acer Extensa 522 o amd64/165850 amd64 [build] 8.3-RC1 (amd64): world doesn't build with CPUT o amd64/165845 amd64 [build] Unable to build kernel on 8.2-STABLE o amd64/165351 amd64 [boot] Error while installing or booting the freeBSD O o amd64/164773 amd64 [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regress o amd64/164707 amd64 FreeBSD 9 installer does not work with IBM uefi o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o amd64/164619 amd64 when logged in as root the user and group applications o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o amd64/164073 amd64 /etc/rc warning after booting o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o amd64/163710 amd64 setjump in userboot.so causes stack corruption o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC o amd64/163568 amd64 hard drive naming o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o amd64/163048 amd64 normal user cant mount ntfs-3g o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o amd64/162489 amd64 After some time X blanks the screen and does not respo o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o amd64/162219 amd64 [REGRESSION] In KDE 4.7.2 cant enable OpenGL,in 4.6.5 o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/160833 amd64 Keyboard USB doesn't work o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o amd64/156106 amd64 [boot] boot0 fails to start o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o amd64/153372 amd64 [panic] kernel panic o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c 55 problems total. From owner-freebsd-amd64@FreeBSD.ORG Mon Jul 9 12:40:01 2012 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33FDB106566B for ; Mon, 9 Jul 2012 12:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0BAD18FC0C for ; Mon, 9 Jul 2012 12:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q69Ce0s9095141 for ; Mon, 9 Jul 2012 12:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q69Ce0cj095140; Mon, 9 Jul 2012 12:40:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Jul 2012 12:40:00 GMT Resent-Message-Id: <201207091240.q69Ce0cj095140@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B712D1065677 for ; Mon, 9 Jul 2012 12:33:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8ADE78FC19 for ; Mon, 9 Jul 2012 12:33:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q69CXv1Z018411 for ; Mon, 9 Jul 2012 12:33:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q69CXvH4018410; Mon, 9 Jul 2012 12:33:57 GMT (envelope-from nobody) Message-Id: <201207091233.q69CXvH4018410@red.freebsd.org> Date: Mon, 9 Jul 2012 12:33:57 GMT From: Alex To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Mon, 09 Jul 2012 13:04:19 +0000 Cc: Subject: amd64/169734: rtorrent to 0.9.2. freeze X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2012 12:40:01 -0000 >Number: 169734 >Category: amd64 >Synopsis: rtorrent to 0.9.2. freeze >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 09 12:40:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alex >Release: 8.2 >Organization: EFA >Environment: FreeBSD mybsd.home.local 8.2-STABLE FreeBSD 8.2-STABLE #2: Thu Jul 28 14:27:52 MSD 2011 lexel@mybsd.home.loca:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After last update rtorrent begin to hang up right after start (so I can only kill it). Previous version was absolutely stable. Can you correct this issue? >How-To-Repeat: start rtorrent >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Mon Jul 9 15:38:21 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FB831065672; Mon, 9 Jul 2012 15:38:21 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 261DF8FC0C; Mon, 9 Jul 2012 15:38:21 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 85394B9B0; Mon, 9 Jul 2012 11:38:20 -0400 (EDT) From: John Baldwin To: freebsd-current@freebsd.org Date: Mon, 9 Jul 2012 11:24:52 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p17; KDE/4.5.5; amd64; ; ) References: <20120708150225.GA2338@deviant.kiev.zoral.com.ua> In-Reply-To: <20120708150225.GA2338@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201207091124.52044.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 09 Jul 2012 11:38:20 -0400 (EDT) Cc: amd64@freebsd.org Subject: Re: XSAVEOPT X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2012 15:38:21 -0000 On Sunday, July 08, 2012 11:02:25 am Konstantin Belousov wrote: > Please find at > http://people.freebsd.org/~kib/misc/xsaveopt.1.patch > a patch to finally add suport for using XSAVEOPT for our amd64 context > switch code. See Intel SDM for description of the XSAVEOPT instruction. > > Summary is that the instruction allows to not write parts of the FPU > state which was not touched by the thread. Context switch then would > write less to the PCB when thread is moved out from CPU. This is mainly > to facilitate the ever-growing size of the FPU register file, in > particular, AVX/YMM registers. Normal applications do not touch YMM, so > saving them on each context switch if FPU was used is waste. > > Main complication is that any consumer of the ucontext_t still expect to > see fully populated machine state, including the extended states which were > not saved. Since CPU only avoids save when corresponding state is pristine, > we can use the copy of initial state. CPUID provides an enumerator that > allows OS to easily pick up neccesary area and copy over. > > I tried hard, but was unable to measure any statistically significant > difference in the context switch times between XSAVE and XSAVEOPT using > lmbench lat_ctx, on Core i7 2600K. Hmm, I thought one of the ideas of xsaveopt was to let you just always execute it during a context switch and dispense with the need for using the CR0_TS flag at all? Maybe that isn't true though. It would seem rather silly to switch out the state if you don't need to (when preempting a thread that uses the FPU to run a thread that doesn't and then switching back for example). -- John Baldwin From owner-freebsd-amd64@FreeBSD.ORG Mon Jul 9 19:26:51 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAFCA106564A; Mon, 9 Jul 2012 19:26:50 +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 2E2B78FC0A; Mon, 9 Jul 2012 19:26:48 +0000 (UTC) Received: from skuns.kiev.zoral.com.ua (localhost [127.0.0.1]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id q69JQq9p073401; Mon, 9 Jul 2012 22:26:52 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5) with ESMTP id q69JQdd7077639; Mon, 9 Jul 2012 22:26:39 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5/Submit) id q69JQdfZ077638; Mon, 9 Jul 2012 22:26:39 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 9 Jul 2012 22:26:39 +0300 From: Konstantin Belousov To: John Baldwin Message-ID: <20120709192639.GT2338@deviant.kiev.zoral.com.ua> References: <20120708150225.GA2338@deviant.kiev.zoral.com.ua> <201207091124.52044.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UefMXxAhg/xpzpuf" Content-Disposition: inline In-Reply-To: <201207091124.52044.jhb@freebsd.org> 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=-4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: amd64@freebsd.org, freebsd-current@freebsd.org Subject: Re: XSAVEOPT X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2012 19:26:51 -0000 --UefMXxAhg/xpzpuf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 09, 2012 at 11:24:52AM -0400, John Baldwin wrote: > On Sunday, July 08, 2012 11:02:25 am Konstantin Belousov wrote: > > Please find at > > http://people.freebsd.org/~kib/misc/xsaveopt.1.patch > > a patch to finally add suport for using XSAVEOPT for our amd64 context > > switch code. See Intel SDM for description of the XSAVEOPT instruction. > >=20 > > Summary is that the instruction allows to not write parts of the FPU > > state which was not touched by the thread. Context switch then would > > write less to the PCB when thread is moved out from CPU. This is mainly > > to facilitate the ever-growing size of the FPU register file, in > > particular, AVX/YMM registers. Normal applications do not touch YMM, so > > saving them on each context switch if FPU was used is waste. > >=20 > > Main complication is that any consumer of the ucontext_t still expect to > > see fully populated machine state, including the extended states which = were > > not saved. Since CPU only avoids save when corresponding state is prist= ine, > > we can use the copy of initial state. CPUID provides an enumerator that > > allows OS to easily pick up neccesary area and copy over. > >=20 > > I tried hard, but was unable to measure any statistically significant > > difference in the context switch times between XSAVE and XSAVEOPT using > > lmbench lat_ctx, on Core i7 2600K. >=20 > Hmm, I thought one of the ideas of xsaveopt was to let you just always ex= ecute > it during a context switch and dispense with the need for using the CR0_T= S=20 > flag at all? Maybe that isn't true though. It would seem rather silly to > switch out the state if you don't need to (when preempting a thread that = uses=20 > the FPU to run a thread that doesn't and then switching back for example). To always execute XSAVEOPT, we would need always execute XRSTOR. Not executing XSAVEOPT is always faster then executing it. In fact, during the testing, I never seen a situation when x87 of XMM areas would be not saved by XSAVEOPT. Only YMM registers were omited if the process did not touched them since start. --UefMXxAhg/xpzpuf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAk/7MG8ACgkQC3+MBN1Mb4j4hgCgtmMK7yKhh+XkYS/zNyMM3rCf qUEAoO4WsJjXHDVs3A3wcbC/1oVDRjGG =drT7 -----END PGP SIGNATURE----- --UefMXxAhg/xpzpuf-- From owner-freebsd-amd64@FreeBSD.ORG Tue Jul 10 10:05:38 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA6EB106566C; Tue, 10 Jul 2012 10:05: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 8457E8FC22; Tue, 10 Jul 2012 10:05:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6AA5bgi099190; Tue, 10 Jul 2012 06:05:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6AA5bgi099187; Tue, 10 Jul 2012 10:05:37 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 10 Jul 2012 10:05:37 GMT Message-Id: <201207101005.q6AA5bgi099187@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jul 2012 10:05:38 -0000 TB --- 2012-07-10 06:40:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-10 06:40:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-10 06:40:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-10 06:40:01 - cleaning the object tree TB --- 2012-07-10 06:40:01 - cvsupping the source tree TB --- 2012-07-10 06:40:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-10 06:41:03 - building world TB --- 2012-07-10 06:41:03 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 06:41:03 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 06:41:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 06:41:03 - SRCCONF=/dev/null TB --- 2012-07-10 06:41:03 - TARGET=amd64 TB --- 2012-07-10 06:41:03 - TARGET_ARCH=amd64 TB --- 2012-07-10 06:41:03 - TZ=UTC TB --- 2012-07-10 06:41:03 - __MAKE_CONF=/dev/null TB --- 2012-07-10 06:41:03 - cd /src TB --- 2012-07-10 06:41:03 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 10 06:41:04 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Jul 10 09:57:43 UTC 2012 TB --- 2012-07-10 09:57:43 - generating LINT kernel config TB --- 2012-07-10 09:57:43 - cd /src/sys/amd64/conf TB --- 2012-07-10 09:57:43 - /usr/bin/make -B LINT TB --- 2012-07-10 09:57:43 - cd /src/sys/amd64/conf TB --- 2012-07-10 09:57:43 - /usr/sbin/config -m LINT TB --- 2012-07-10 09:57:43 - building LINT kernel TB --- 2012-07-10 09:57:43 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 09:57:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 09:57:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 09:57:43 - SRCCONF=/dev/null TB --- 2012-07-10 09:57:43 - TARGET=amd64 TB --- 2012-07-10 09:57:43 - TARGET_ARCH=amd64 TB --- 2012-07-10 09:57:43 - TZ=UTC TB --- 2012-07-10 09:57:43 - __MAKE_CONF=/dev/null TB --- 2012-07-10 09:57:43 - cd /src TB --- 2012-07-10 09:57:43 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jul 10 09:57:43 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tdma.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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_rx.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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_rx_edma.c -I/src/sys/dev/ath cc1: warnings being treated as errors /src/sys/dev/ath/if_ath_rx_edma.c: In function 'ath_edma_rxfifo_flush': /src/sys/dev/ath/if_ath_rx_edma.c:543: warning: unused variable 'bf' [-Wunused-variable] *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-10 10:05:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-10 10:05:37 - ERROR: failed to build LINT kernel TB --- 2012-07-10 10:05:37 - 8182.17 user 1275.46 system 12336.73 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Jul 10 16:11:38 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF0411065689; Tue, 10 Jul 2012 16:11: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 AEFDD8FC08; Tue, 10 Jul 2012 16:11:37 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6AGBbcj096421; Tue, 10 Jul 2012 12:11:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6AGBbWn096378; Tue, 10 Jul 2012 16:11:37 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 10 Jul 2012 16:11:37 GMT Message-Id: <201207101611.q6AGBbWn096378@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jul 2012 16:11:38 -0000 TB --- 2012-07-10 12:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-10 12:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-10 12:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-10 12:50:00 - cleaning the object tree TB --- 2012-07-10 12:58:42 - cvsupping the source tree TB --- 2012-07-10 12:58:42 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-10 12:59:27 - building world TB --- 2012-07-10 12:59:27 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 12:59:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 12:59:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 12:59:27 - SRCCONF=/dev/null TB --- 2012-07-10 12:59:27 - TARGET=amd64 TB --- 2012-07-10 12:59:27 - TARGET_ARCH=amd64 TB --- 2012-07-10 12:59:27 - TZ=UTC TB --- 2012-07-10 12:59:27 - __MAKE_CONF=/dev/null TB --- 2012-07-10 12:59:27 - cd /src TB --- 2012-07-10 12:59:27 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 10 12:59:28 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Jul 10 16:03:20 UTC 2012 TB --- 2012-07-10 16:03:20 - generating LINT kernel config TB --- 2012-07-10 16:03:20 - cd /src/sys/amd64/conf TB --- 2012-07-10 16:03:20 - /usr/bin/make -B LINT TB --- 2012-07-10 16:03:20 - cd /src/sys/amd64/conf TB --- 2012-07-10 16:03:20 - /usr/sbin/config -m LINT TB --- 2012-07-10 16:03:20 - building LINT kernel TB --- 2012-07-10 16:03:20 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 16:03:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 16:03:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 16:03:20 - SRCCONF=/dev/null TB --- 2012-07-10 16:03:20 - TARGET=amd64 TB --- 2012-07-10 16:03:20 - TARGET_ARCH=amd64 TB --- 2012-07-10 16:03:20 - TZ=UTC TB --- 2012-07-10 16:03:20 - __MAKE_CONF=/dev/null TB --- 2012-07-10 16:03:20 - cd /src TB --- 2012-07-10 16:03:20 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jul 10 16:03:20 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/ath/if_ath.c:1499: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/if_ath.c:1499: error: for each function it appears in.) /src/sys/dev/ath/if_ath.c:1577: error: 'ATH_KTR_ERR' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1628: error: 'HAL_INT_RXHP' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1628: error: 'HAL_INT_RXLP' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c: In function 'ath_init': /src/sys/dev/ath/if_ath.c:1880: error: 'HAL_INT_RXHP' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1880: error: 'HAL_INT_RXLP' undeclared (first use in this function) *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-10 16:11:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-10 16:11:37 - ERROR: failed to build LINT kernel TB --- 2012-07-10 16:11:37 - 8171.41 user 1285.15 system 12096.26 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Jul 10 22:06:51 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD432106564A; Tue, 10 Jul 2012 22:06:51 +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 9E27B8FC08; Tue, 10 Jul 2012 22:06:51 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6AM6peU016515; Tue, 10 Jul 2012 18:06:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6AM6pKU016508; Tue, 10 Jul 2012 22:06:51 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 10 Jul 2012 22:06:51 GMT Message-Id: <201207102206.q6AM6pKU016508@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jul 2012 22:06:51 -0000 TB --- 2012-07-10 18:40:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-10 18:40:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-10 18:40:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-10 18:40:01 - cleaning the object tree TB --- 2012-07-10 18:49:28 - cvsupping the source tree TB --- 2012-07-10 18:49:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-10 18:50:16 - building world TB --- 2012-07-10 18:50:16 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 18:50:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 18:50:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 18:50:16 - SRCCONF=/dev/null TB --- 2012-07-10 18:50:16 - TARGET=amd64 TB --- 2012-07-10 18:50:16 - TARGET_ARCH=amd64 TB --- 2012-07-10 18:50:16 - TZ=UTC TB --- 2012-07-10 18:50:16 - __MAKE_CONF=/dev/null TB --- 2012-07-10 18:50:16 - cd /src TB --- 2012-07-10 18:50:16 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 10 18:50:17 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Jul 10 21:58:45 UTC 2012 TB --- 2012-07-10 21:58:45 - generating LINT kernel config TB --- 2012-07-10 21:58:45 - cd /src/sys/amd64/conf TB --- 2012-07-10 21:58:45 - /usr/bin/make -B LINT TB --- 2012-07-10 21:58:45 - cd /src/sys/amd64/conf TB --- 2012-07-10 21:58:45 - /usr/sbin/config -m LINT TB --- 2012-07-10 21:58:45 - building LINT kernel TB --- 2012-07-10 21:58:45 - CROSS_BUILD_TESTING=YES TB --- 2012-07-10 21:58:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-10 21:58:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-10 21:58:45 - SRCCONF=/dev/null TB --- 2012-07-10 21:58:45 - TARGET=amd64 TB --- 2012-07-10 21:58:45 - TARGET_ARCH=amd64 TB --- 2012-07-10 21:58:45 - TZ=UTC TB --- 2012-07-10 21:58:45 - __MAKE_CONF=/dev/null TB --- 2012-07-10 21:58:45 - cd /src TB --- 2012-07-10 21:58:45 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jul 10 21:58:45 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-sis.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-via.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath.c -I/src/sys/dev/ath /src/sys/dev/ath/if_ath.c: In function 'ath_intr': /src/sys/dev/ath/if_ath.c:1499: error: 'ATH_KTR_INTR' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1499: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/if_ath.c:1499: error: for each function it appears in.) /src/sys/dev/ath/if_ath.c:1577: error: 'ATH_KTR_ERR' undeclared (first use in this function) *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-10 22:06:50 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-10 22:06:50 - ERROR: failed to build LINT kernel TB --- 2012-07-10 22:06:50 - 8170.57 user 1281.63 system 12409.95 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Jul 11 02:50:11 2012 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D95211065674 for ; Wed, 11 Jul 2012 02:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 946E88FC0C for ; Wed, 11 Jul 2012 02:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q6B2oBsj018584 for ; Wed, 11 Jul 2012 02:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6B2oB4R018583; Wed, 11 Jul 2012 02:50:11 GMT (envelope-from gnats) Resent-Date: Wed, 11 Jul 2012 02:50:11 GMT Resent-Message-Id: <201207110250.q6B2oB4R018583@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Axel Gonzalez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19AAA106564A for ; Wed, 11 Jul 2012 02:48:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 044288FC08 for ; Wed, 11 Jul 2012 02:48:52 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q6B2mper078754 for ; Wed, 11 Jul 2012 02:48:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q6B2mplM078753; Wed, 11 Jul 2012 02:48:51 GMT (envelope-from nobody) Message-Id: <201207110248.q6B2mplM078753@red.freebsd.org> Date: Wed, 11 Jul 2012 02:48:51 GMT From: Axel Gonzalez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Wed, 11 Jul 2012 02:55:41 +0000 Cc: Subject: amd64/169779: [patch] powerd doesn't honor the -n flag X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jul 2012 02:50:12 -0000 >Number: 169779 >Category: amd64 >Synopsis: [patch] powerd doesn't honor the -n flag >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jul 11 02:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Axel Gonzalez >Release: 9.0-RELEASE-p2 >Organization: >Environment: FreeBSD moonlight 9.0-RELEASE-p2 FreeBSD 9.0-RELEASE-p2 #0: Tue Jun 12 02:12:57 CDT 2012 toor@moonlight:/usr/obj/usr/src/sys/LXCORE964 amd64 >Description: powerd never initializes the variable that keeps the status of the line status. This variable defaults to 0 (with the compiler? with the arch?) and results in powerd using the AC profile. This is a problem, since at start it says it is in unkown status, but doesn't respect the -n argument. Note: since the variable is not initialized, it can lead to other unexpected behaviour. >How-To-Repeat: This should use the "adaptive" profile specified by -n, but uses hiadaptive # /usr/sbin/powerd -i 50 -r 80 -M 1800 -v -p 1000 -n adaptive powerd: unable to determine AC line status CPU frequency is above user-defined maximum; changing frequency to 1795 MHz load 15%, current freq 1795 MHz ( 0), wanted freq 2094 MHz >Fix: Initialize the variable --- powerd.c.orig 2012-07-10 21:21:07.882970887 -0500 +++ powerd.c 2012-07-10 21:22:29.292974203 -0500 @@ -278,6 +278,7 @@ acline_init(void) { acline_mib_len = 4; + acline_status = SRC_UNKNOWN; if (sysctlnametomib(ACPIAC, acline_mib, &acline_mib_len) == 0) { acline_mode = ac_sysctl; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Wed Jul 11 04:07:47 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19CA1106564A; Wed, 11 Jul 2012 04:07: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 DBEBB8FC08; Wed, 11 Jul 2012 04:07:46 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6B47k2V066594; Wed, 11 Jul 2012 00:07:46 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6B47kd6066579; Wed, 11 Jul 2012 04:07:46 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 11 Jul 2012 04:07:46 GMT Message-Id: <201207110407.q6B47kd6066579@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jul 2012 04:07:47 -0000 TB --- 2012-07-11 00:40:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-11 00:40:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-11 00:40:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-11 00:40:01 - cleaning the object tree TB --- 2012-07-11 00:51:51 - cvsupping the source tree TB --- 2012-07-11 00:51:51 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-11 00:52:51 - building world TB --- 2012-07-11 00:52:51 - CROSS_BUILD_TESTING=YES TB --- 2012-07-11 00:52:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-11 00:52:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-11 00:52:51 - SRCCONF=/dev/null TB --- 2012-07-11 00:52:51 - TARGET=amd64 TB --- 2012-07-11 00:52:51 - TARGET_ARCH=amd64 TB --- 2012-07-11 00:52:51 - TZ=UTC TB --- 2012-07-11 00:52:51 - __MAKE_CONF=/dev/null TB --- 2012-07-11 00:52:51 - cd /src TB --- 2012-07-11 00:52:51 - /usr/bin/make -B buildworld >>> World build started on Wed Jul 11 00:52:52 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Jul 11 04:00:10 UTC 2012 TB --- 2012-07-11 04:00:10 - generating LINT kernel config TB --- 2012-07-11 04:00:10 - cd /src/sys/amd64/conf TB --- 2012-07-11 04:00:10 - /usr/bin/make -B LINT TB --- 2012-07-11 04:00:10 - cd /src/sys/amd64/conf TB --- 2012-07-11 04:00:10 - /usr/sbin/config -m LINT TB --- 2012-07-11 04:00:11 - building LINT kernel TB --- 2012-07-11 04:00:11 - CROSS_BUILD_TESTING=YES TB --- 2012-07-11 04:00:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-11 04:00:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-11 04:00:11 - SRCCONF=/dev/null TB --- 2012-07-11 04:00:11 - TARGET=amd64 TB --- 2012-07-11 04:00:11 - TARGET_ARCH=amd64 TB --- 2012-07-11 04:00:11 - TZ=UTC TB --- 2012-07-11 04:00:11 - __MAKE_CONF=/dev/null TB --- 2012-07-11 04:00:11 - cd /src TB --- 2012-07-11 04:00:11 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jul 11 04:00:11 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-sis.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-via.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath.c -I/src/sys/dev/ath /src/sys/dev/ath/if_ath.c: In function 'ath_intr': /src/sys/dev/ath/if_ath.c:1499: error: 'ATH_KTR_INTR' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1499: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/if_ath.c:1499: error: for each function it appears in.) /src/sys/dev/ath/if_ath.c:1577: error: 'ATH_KTR_ERR' undeclared (first use in this function) *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-11 04:07:46 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-11 04:07:46 - ERROR: failed to build LINT kernel TB --- 2012-07-11 04:07:46 - 8170.88 user 1279.30 system 12465.11 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Jul 11 10:15:06 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E5E2106564A; Wed, 11 Jul 2012 10:15:06 +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 E9F1B8FC08; Wed, 11 Jul 2012 10:15:05 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6BAF5ra099148; Wed, 11 Jul 2012 06:15:05 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6BAF5WW099133; Wed, 11 Jul 2012 10:15:05 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 11 Jul 2012 10:15:05 GMT Message-Id: <201207111015.q6BAF5WW099133@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jul 2012 10:15:06 -0000 TB --- 2012-07-11 06:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-11 06:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-11 06:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-11 06:40:00 - cleaning the object tree TB --- 2012-07-11 06:51:26 - cvsupping the source tree TB --- 2012-07-11 06:51:27 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-11 06:52:20 - building world TB --- 2012-07-11 06:52:20 - CROSS_BUILD_TESTING=YES TB --- 2012-07-11 06:52:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-11 06:52:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-11 06:52:20 - SRCCONF=/dev/null TB --- 2012-07-11 06:52:20 - TARGET=amd64 TB --- 2012-07-11 06:52:20 - TARGET_ARCH=amd64 TB --- 2012-07-11 06:52:20 - TZ=UTC TB --- 2012-07-11 06:52:20 - __MAKE_CONF=/dev/null TB --- 2012-07-11 06:52:20 - cd /src TB --- 2012-07-11 06:52:20 - /usr/bin/make -B buildworld >>> World build started on Wed Jul 11 06:52:21 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Jul 11 10:07:15 UTC 2012 TB --- 2012-07-11 10:07:15 - generating LINT kernel config TB --- 2012-07-11 10:07:15 - cd /src/sys/amd64/conf TB --- 2012-07-11 10:07:15 - /usr/bin/make -B LINT TB --- 2012-07-11 10:07:15 - cd /src/sys/amd64/conf TB --- 2012-07-11 10:07:15 - /usr/sbin/config -m LINT TB --- 2012-07-11 10:07:15 - building LINT kernel TB --- 2012-07-11 10:07:15 - CROSS_BUILD_TESTING=YES TB --- 2012-07-11 10:07:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-11 10:07:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-11 10:07:15 - SRCCONF=/dev/null TB --- 2012-07-11 10:07:15 - TARGET=amd64 TB --- 2012-07-11 10:07:15 - TARGET_ARCH=amd64 TB --- 2012-07-11 10:07:15 - TZ=UTC TB --- 2012-07-11 10:07:15 - __MAKE_CONF=/dev/null TB --- 2012-07-11 10:07:15 - cd /src TB --- 2012-07-11 10:07:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jul 11 10:07:15 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-sis.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ata/chipsets/ata-via.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath.c -I/src/sys/dev/ath /src/sys/dev/ath/if_ath.c: In function 'ath_intr': /src/sys/dev/ath/if_ath.c:1499: error: 'ATH_KTR_INTR' undeclared (first use in this function) /src/sys/dev/ath/if_ath.c:1499: error: (Each undeclared identifier is reported only once /src/sys/dev/ath/if_ath.c:1499: error: for each function it appears in.) /src/sys/dev/ath/if_ath.c:1577: error: 'ATH_KTR_ERR' undeclared (first use in this function) *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-11 10:15:05 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-11 10:15:05 - ERROR: failed to build LINT kernel TB --- 2012-07-11 10:15:05 - 8167.55 user 1275.77 system 12904.93 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jul 12 12:35:04 2012 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 070001065672; Thu, 12 Jul 2012 12:35:04 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id CA62E8FC16; Thu, 12 Jul 2012 12:35:03 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 27AE0B91E; Thu, 12 Jul 2012 08:35:03 -0400 (EDT) From: John Baldwin To: freebsd-amd64@freebsd.org Date: Thu, 12 Jul 2012 07:40:09 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p17; KDE/4.5.5; amd64; ; ) References: <201207110248.q6B2mplM078753@red.freebsd.org> In-Reply-To: <201207110248.q6B2mplM078753@red.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201207120740.09379.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Thu, 12 Jul 2012 08:35:03 -0400 (EDT) Cc: acpi@freebsd.org, freebsd-gnats-submit@freebsd.org, Axel Gonzalez Subject: Re: amd64/169779: [patch] powerd doesn't honor the -n flag X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2012 12:35:04 -0000 On Tuesday, July 10, 2012 10:48:51 pm Axel Gonzalez wrote: > > >Number: 169779 > >Category: amd64 > >Synopsis: [patch] powerd doesn't honor the -n flag > >Confidential: no > >Severity: serious > >Priority: low > >Responsible: freebsd-amd64 > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Wed Jul 11 02:50:10 UTC 2012 > >Closed-Date: > >Last-Modified: > >Originator: Axel Gonzalez > >Release: 9.0-RELEASE-p2 > >Organization: > >Environment: > FreeBSD moonlight 9.0-RELEASE-p2 FreeBSD 9.0-RELEASE-p2 #0: Tue Jun 12 02:12:57 CDT 2012 toor@moonlight:/usr/obj/usr/src/sys/LXCORE964 amd64 > >Description: > powerd never initializes the variable that keeps the status of the line status. This variable defaults to 0 (with the compiler? with the arch?) and results in powerd using the AC profile. > > This is a problem, since at start it says it is in unkown status, but doesn't respect the -n argument. > > Note: since the variable is not initialized, it can lead to other unexpected behaviour. > > >How-To-Repeat: > This should use the "adaptive" profile specified by -n, but uses hiadaptive > > # /usr/sbin/powerd -i 50 -r 80 -M 1800 -v -p 1000 -n adaptive > powerd: unable to determine AC line status > CPU frequency is above user-defined maximum; changing frequency to 1795 MHz > load 15%, current freq 1795 MHz ( 0), wanted freq 2094 MHz > > >Fix: > Initialize the variable > > --- powerd.c.orig 2012-07-10 21:21:07.882970887 -0500 > +++ powerd.c 2012-07-10 21:22:29.292974203 -0500 > @@ -278,6 +278,7 @@ > acline_init(void) > { > acline_mib_len = 4; > + acline_status = SRC_UNKNOWN; > > if (sysctlnametomib(ACPIAC, acline_mib, &acline_mib_len) == 0) { > acline_mode = ac_sysctl; I suspect this is correct, but cc'ing acpi@ to see if anyone there has any comments. -- John Baldwin From owner-freebsd-amd64@FreeBSD.ORG Thu Jul 12 12:40:04 2012 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 424731065687 for ; Thu, 12 Jul 2012 12:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 102EF8FC18 for ; Thu, 12 Jul 2012 12:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q6CCe3CP030061 for ; Thu, 12 Jul 2012 12:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6CCe3oS030060; Thu, 12 Jul 2012 12:40:03 GMT (envelope-from gnats) Date: Thu, 12 Jul 2012 12:40:03 GMT Message-Id: <201207121240.q6CCe3oS030060@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: John Baldwin Cc: Subject: Re: amd64/169779: [patch] powerd doesn't honor the -n flag X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2012 12:40:04 -0000 The following reply was made to PR amd64/169779; it has been noted by GNATS. From: John Baldwin To: freebsd-amd64@freebsd.org Cc: Axel Gonzalez , freebsd-gnats-submit@freebsd.org, acpi@freebsd.org Subject: Re: amd64/169779: [patch] powerd doesn't honor the -n flag Date: Thu, 12 Jul 2012 07:40:09 -0400 On Tuesday, July 10, 2012 10:48:51 pm Axel Gonzalez wrote: > > >Number: 169779 > >Category: amd64 > >Synopsis: [patch] powerd doesn't honor the -n flag > >Confidential: no > >Severity: serious > >Priority: low > >Responsible: freebsd-amd64 > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Wed Jul 11 02:50:10 UTC 2012 > >Closed-Date: > >Last-Modified: > >Originator: Axel Gonzalez > >Release: 9.0-RELEASE-p2 > >Organization: > >Environment: > FreeBSD moonlight 9.0-RELEASE-p2 FreeBSD 9.0-RELEASE-p2 #0: Tue Jun 12 02:12:57 CDT 2012 toor@moonlight:/usr/obj/usr/src/sys/LXCORE964 amd64 > >Description: > powerd never initializes the variable that keeps the status of the line status. This variable defaults to 0 (with the compiler? with the arch?) and results in powerd using the AC profile. > > This is a problem, since at start it says it is in unkown status, but doesn't respect the -n argument. > > Note: since the variable is not initialized, it can lead to other unexpected behaviour. > > >How-To-Repeat: > This should use the "adaptive" profile specified by -n, but uses hiadaptive > > # /usr/sbin/powerd -i 50 -r 80 -M 1800 -v -p 1000 -n adaptive > powerd: unable to determine AC line status > CPU frequency is above user-defined maximum; changing frequency to 1795 MHz > load 15%, current freq 1795 MHz ( 0), wanted freq 2094 MHz > > >Fix: > Initialize the variable > > --- powerd.c.orig 2012-07-10 21:21:07.882970887 -0500 > +++ powerd.c 2012-07-10 21:22:29.292974203 -0500 > @@ -278,6 +278,7 @@ > acline_init(void) > { > acline_mib_len = 4; > + acline_status = SRC_UNKNOWN; > > if (sysctlnametomib(ACPIAC, acline_mib, &acline_mib_len) == 0) { > acline_mode = ac_sysctl; I suspect this is correct, but cc'ing acpi@ to see if anyone there has any comments. -- John Baldwin From owner-freebsd-amd64@FreeBSD.ORG Sat Jul 14 12:43:35 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B898E106566B; Sat, 14 Jul 2012 12:43: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 74A9D8FC08; Sat, 14 Jul 2012 12:43:35 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q6EChYdv016057; Sat, 14 Jul 2012 08:43:34 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q6EChYAf016055; Sat, 14 Jul 2012 12:43:34 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 14 Jul 2012 12:43:34 GMT Message-Id: <201207141243.q6EChYAf016055@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jul 2012 12:43:35 -0000 TB --- 2012-07-14 09:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-07-14 09:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-07-14 09:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-07-14 09:20:00 - cleaning the object tree TB --- 2012-07-14 09:20:00 - cvsupping the source tree TB --- 2012-07-14 09:20:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/amd64/amd64/supfile TB --- 2012-07-14 09:22:34 - building world TB --- 2012-07-14 09:22:34 - CROSS_BUILD_TESTING=YES TB --- 2012-07-14 09:22:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-14 09:22:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-14 09:22:34 - SRCCONF=/dev/null TB --- 2012-07-14 09:22:34 - TARGET=amd64 TB --- 2012-07-14 09:22:34 - TARGET_ARCH=amd64 TB --- 2012-07-14 09:22:34 - TZ=UTC TB --- 2012-07-14 09:22:34 - __MAKE_CONF=/dev/null TB --- 2012-07-14 09:22:34 - cd /src TB --- 2012-07-14 09:22:34 - /usr/bin/make -B buildworld >>> World build started on Sat Jul 14 09:22:34 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sat Jul 14 12:35:46 UTC 2012 TB --- 2012-07-14 12:35:46 - generating LINT kernel config TB --- 2012-07-14 12:35:46 - cd /src/sys/amd64/conf TB --- 2012-07-14 12:35:46 - /usr/bin/make -B LINT TB --- 2012-07-14 12:35:46 - cd /src/sys/amd64/conf TB --- 2012-07-14 12:35:46 - /usr/sbin/config -m LINT TB --- 2012-07-14 12:35:46 - building LINT kernel TB --- 2012-07-14 12:35:46 - CROSS_BUILD_TESTING=YES TB --- 2012-07-14 12:35:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-07-14 12:35:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-07-14 12:35:46 - SRCCONF=/dev/null TB --- 2012-07-14 12:35:46 - TARGET=amd64 TB --- 2012-07-14 12:35:46 - TARGET_ARCH=amd64 TB --- 2012-07-14 12:35:46 - TZ=UTC TB --- 2012-07-14 12:35:46 - __MAKE_CONF=/dev/null TB --- 2012-07-14 12:35:46 - cd /src TB --- 2012-07-14 12:35:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Jul 14 12:35:47 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] 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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_tdma.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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_rx.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 -Wmissing-include-dirs -fdiagnostics-show-option -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 -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ath/if_ath_rx_edma.c -I/src/sys/dev/ath cc1: warnings being treated as errors /src/sys/dev/ath/if_ath_rx_edma.c: In function 'ath_edma_recv_tasklet': /src/sys/dev/ath/if_ath_rx_edma.c:450: warning: unused variable 'ic' [-Wunused-variable] *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-07-14 12:43:34 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-07-14 12:43:34 - ERROR: failed to build LINT kernel TB --- 2012-07-14 12:43:34 - 8259.34 user 1299.45 system 12214.09 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat Jul 14 20:31:59 2012 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B74E81065679; Sat, 14 Jul 2012 20:31:59 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7E7A68FC0C; Sat, 14 Jul 2012 20:31:59 +0000 (UTC) Received: by pbbro2 with SMTP id ro2so8264744pbb.13 for ; Sat, 14 Jul 2012 13:31:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=+/JiRjGhxHA2qkugoDiNTUDYi040/J2u8QxRYq7Hoco=; b=l1hbKAvgTDzca/UDRGqQDCHfwkTZcoubtVAZjUg6Mays992mT61lkUuyPc7owT/rXa wrqarsM4wI4lBfUloskfC6EbIDWfpYeSIqzUbvOnP+4bGWMpVkwt/WWUTIC/5e6faJyg +h0E4F6wt+KxRaavhQuSA7KkPsfkHKOBGV99PfADRSBxmV9ml0D3Ur8hvQ/qKYByM+Hl CTlC0fzWJNqryOJe4TPlzDXkbUnT8RPOfj28bPAU6hnVk8h0j1eOcXXpmcLUXPT2OlFi KelEFREvefwmSC96LpFYlYpPY2LvSLEXdxmsJWYXvNMG67NcryBWRugajpvlqb6KRb9Y UzUQ== MIME-Version: 1.0 Received: by 10.68.220.193 with SMTP id py1mr14004419pbc.4.1342297919238; Sat, 14 Jul 2012 13:31:59 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.68.195.102 with HTTP; Sat, 14 Jul 2012 13:31:59 -0700 (PDT) In-Reply-To: <201207141243.q6EChYAf016055@freebsd-current.sentex.ca> References: <201207141243.q6EChYAf016055@freebsd-current.sentex.ca> Date: Sat, 14 Jul 2012 13:31:59 -0700 X-Google-Sender-Auth: -9IRIG6sN2ONZQOJ9eXU5eD_MRg Message-ID: From: Adrian Chadd To: FreeBSD Tinderbox Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailman-Approved-At: Sat, 14 Jul 2012 21:04:37 +0000 Cc: amd64@freebsd.org, current@freebsd.org Subject: Re: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jul 2012 20:31:59 -0000 This, like the others, has been fixed. Adrian On 14 July 2012 05:43, FreeBSD Tinderbox wrote: > TB --- 2012-07-14 09:20:00 - tinderbox 2.9 running on freebsd-current.sen= tex.ca > TB --- 2012-07-14 09:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PREREL= EASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebs= d-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 > TB --- 2012-07-14 09:20:00 - starting HEAD tinderbox run for amd64/amd64 > TB --- 2012-07-14 09:20:00 - cleaning the object tree > TB --- 2012-07-14 09:20:00 - cvsupping the source tree > TB --- 2012-07-14 09:20:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sente= x.ca /tinderbox/HEAD/amd64/amd64/supfile > TB --- 2012-07-14 09:22:34 - building world > TB --- 2012-07-14 09:22:34 - CROSS_BUILD_TESTING=3DYES > TB --- 2012-07-14 09:22:34 - MAKEOBJDIRPREFIX=3D/obj > TB --- 2012-07-14 09:22:34 - PATH=3D/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-07-14 09:22:34 - SRCCONF=3D/dev/null > TB --- 2012-07-14 09:22:34 - TARGET=3Damd64 > TB --- 2012-07-14 09:22:34 - TARGET_ARCH=3Damd64 > TB --- 2012-07-14 09:22:34 - TZ=3DUTC > TB --- 2012-07-14 09:22:34 - __MAKE_CONF=3D/dev/null > TB --- 2012-07-14 09:22:34 - cd /src > TB --- 2012-07-14 09:22:34 - /usr/bin/make -B buildworld >>>> World build started on Sat Jul 14 09:22:34 UTC 2012 >>>> Rebuilding the temporary build tree >>>> stage 1.1: legacy release compatibility shims >>>> stage 1.2: bootstrap tools >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3: cross tools >>>> stage 4.1: building includes >>>> stage 4.2: building libraries >>>> stage 4.3: make dependencies >>>> stage 4.4: building everything >>>> stage 5.1: building 32 bit shim libraries >>>> World build completed on Sat Jul 14 12:35:46 UTC 2012 > TB --- 2012-07-14 12:35:46 - generating LINT kernel config > TB --- 2012-07-14 12:35:46 - cd /src/sys/amd64/conf > TB --- 2012-07-14 12:35:46 - /usr/bin/make -B LINT > TB --- 2012-07-14 12:35:46 - cd /src/sys/amd64/conf > TB --- 2012-07-14 12:35:46 - /usr/sbin/config -m LINT > TB --- 2012-07-14 12:35:46 - building LINT kernel > TB --- 2012-07-14 12:35:46 - CROSS_BUILD_TESTING=3DYES > TB --- 2012-07-14 12:35:46 - MAKEOBJDIRPREFIX=3D/obj > TB --- 2012-07-14 12:35:46 - PATH=3D/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-07-14 12:35:46 - SRCCONF=3D/dev/null > TB --- 2012-07-14 12:35:46 - TARGET=3Damd64 > TB --- 2012-07-14 12:35:46 - TARGET_ARCH=3Damd64 > TB --- 2012-07-14 12:35:46 - TZ=3DUTC > TB --- 2012-07-14 12:35:46 - __MAKE_CONF=3D/dev/null > TB --- 2012-07-14 12:35:46 - cd /src > TB --- 2012-07-14 12:35:46 - /usr/bin/make -B buildkernel KERNCONF=3DLINT >>>> Kernel build for LINT started on Sat Jul 14 12:35:47 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything > [...] > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc = -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEAD= ERS -include opt_global.h -fno-common -finline-limit=3D8000 --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -DGPROF -falign-func= tions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilog= ue /src/sys/dev/ath/if_ath_tx_ht.c -I/src/sys/dev/ath > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc = -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEAD= ERS -include opt_global.h -fno-common -finline-limit=3D8000 --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -DGPROF -falign-func= tions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilog= ue /src/sys/dev/ath/if_ath_tdma.c -I/src/sys/dev/ath > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc = -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEAD= ERS -include opt_global.h -fno-common -finline-limit=3D8000 --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -DGPROF -falign-func= tions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilog= ue /src/sys/dev/ath/if_ath_sysctl.c -I/src/sys/dev/ath > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc = -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEAD= ERS -include opt_global.h -fno-common -finline-limit=3D8000 --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -DGPROF -falign-func= tions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilog= ue /src/sys/dev/ath/if_ath_rx.c -I/src/sys/dev/ath > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=3Dc99 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fforma= t-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc = -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEAD= ERS -include opt_global.h -fno-common -finline-limit=3D8000 --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -DGPROF -falign-func= tions=3D16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilog= ue /src/sys/dev/ath/if_ath_rx_edma.c -I/src/sys/dev/ath > cc1: warnings being treated as errors > /src/sys/dev/ath/if_ath_rx_edma.c: In function 'ath_edma_recv_tasklet': > /src/sys/dev/ath/if_ath_rx_edma.c:450: warning: unused variable 'ic' [-Wu= nused-variable] > *** Error code 1 > > Stop in /obj/amd64.amd64/src/sys/LINT. > *** Error code 1 > > Stop in /src. > *** Error code 1 > > Stop in /src. > TB --- 2012-07-14 12:43:34 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2012-07-14 12:43:34 - ERROR: failed to build LINT kernel > TB --- 2012-07-14 12:43:34 - 8259.34 user 1299.45 system 12214.09 real > > > http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.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= "