From owner-freebsd-amd64@FreeBSD.ORG Sun Mar 1 05:35:14 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4425F1065673 for ; Sun, 1 Mar 2009 05:35:14 +0000 (UTC) (envelope-from freebsd@sopwith.solgatos.com) Received: from sopwith.solgatos.com (pool-173-50-229-3.ptldor.fios.verizon.net [173.50.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id B3BF38FC0C for ; Sun, 1 Mar 2009 05:35:12 +0000 (UTC) (envelope-from freebsd@sopwith.solgatos.com) Received: by sopwith.solgatos.com (Postfix, from userid 66) id 4D688B64F; Sat, 28 Feb 2009 21:17:59 -0800 (PST) Received: from localhost by sopwith.solgatos.com (8.8.8/6.24) id VAA17590; Sat, 28 Feb 2009 21:06:41 GMT Message-Id: <200902282106.VAA17590@sopwith.solgatos.com> To: freebsd-amd64@freebsd.org Date: Sat, 28 Feb 2009 13:06:41 +0000 From: Dieter Subject: Re: 32-bit truncation of 64-bit values X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@sopwith.solgatos.com List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2009 05:35:14 -0000 > Having just tracked down an issue caused by a pointer-to-int truncation, Was this in C? Didn't the compiler complain? cat demo_ptr_into_int.c ; gcc -O3 -o demo_ptr_into_int demo_ptr_into_int.c ; ./demo_ptr_into_int /* demo_ptr_into_int.c * * Verify that compiler complains about truncation when * attempting to stuff a 64 bit pointer into a 32 bit int. */ #include /* for printf(3) */ int main(int argc, char **argv) { int i; int *p; p = &i; i = p; printf("i = 0x%x p = 0x%p\n", i, p); return(0); } demo_ptr_into_int.c: In function 'main': demo_ptr_into_int.c:16: warning: assignment makes integer from pointer without a cast i = 0xffffebc4 p = 0x0x7fffffffebc4 Adding a cast still yields a complaint: i = (int) p; demo_ptr_into_int.c: In function 'main': demo_ptr_into_int.c:16: warning: cast from pointer to integer of different size From owner-freebsd-amd64@FreeBSD.ORG Sun Mar 1 19:31:20 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 263741065674 for ; Sun, 1 Mar 2009 19:31:20 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail16.syd.optusnet.com.au (mail16.syd.optusnet.com.au [211.29.132.197]) by mx1.freebsd.org (Postfix) with ESMTP id AAA558FC16 for ; Sun, 1 Mar 2009 19:31:19 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (c122-106-216-167.belrs3.nsw.optusnet.com.au [122.106.216.167]) by mail16.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n21JVGSW032048 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 2 Mar 2009 06:31:17 +1100 X-Bogosity: Ham, spamicity=0.000000 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.3/8.14.3) with ESMTP id n21JVGUv000589; Mon, 2 Mar 2009 06:31:16 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.3/8.14.3/Submit) id n21JVFwe000588; Mon, 2 Mar 2009 06:31:15 +1100 (EST) (envelope-from peter) Date: Mon, 2 Mar 2009 06:31:15 +1100 From: Peter Jeremy To: Dieter Message-ID: <20090301193115.GD3540@server.vk2pj.dyndns.org> References: <200902282106.VAA17590@sopwith.solgatos.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RhUH2Ysw6aD5utA4" Content-Disposition: inline In-Reply-To: <200902282106.VAA17590@sopwith.solgatos.com> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-amd64@freebsd.org Subject: Re: 32-bit truncation of 64-bit values 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, 01 Mar 2009 19:31:21 -0000 --RhUH2Ysw6aD5utA4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2009-Feb-28 13:06:41 +0000, Dieter wrote: >> Having just tracked down an issue caused by a pointer-to-int truncation, > >Was this in C? Didn't the compiler complain? Yes and no. It wasn't as obvious as your example, rather it was missing function prototypes. After unrolling macros, the offending code did: int input_line; int cursor =3D 0; extern void putchar_x(); extern char *CM; =2E.. tputs(tgoto(CM, cursor, input_line), 0, putchar_x); =2E.. without , or other prototypes. As a result, tgoto() was implicitly assumed to return (int) instead of (char *) - which doesn't produce any warning unless compiled with -Wall. (If you want to experiment, this is ports/irc/blackened - the above code is in source/input.c, though there seem to be several other similar problems in the code, resulting in the current BROKEN flag). --=20 Peter Jeremy --RhUH2Ysw6aD5utA4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkmq4oMACgkQ/opHv/APuIdcPgCguPMdUC4EJ9QHgYv0+Xjfg+Qn zrMAnA61cLbWqsajtHw+HDsF5f5ZbZLo =9t+/ -----END PGP SIGNATURE----- --RhUH2Ysw6aD5utA4-- From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 06:25:55 2009 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 06C02106566B; Mon, 2 Mar 2009 06:25:55 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id C269F8FC14; Mon, 2 Mar 2009 06:25:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n226Pqa4026482; Mon, 2 Mar 2009 01:25:52 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n226Pqnd069103; Mon, 2 Mar 2009 01:25:52 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id E8B967302F; Mon, 2 Mar 2009 01:25:51 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090302062551.E8B967302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 01:25:51 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 06:25:55 -0000 TB --- 2009-03-02 05:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-02 05:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-02 05:40:00 - cleaning the object tree TB --- 2009-03-02 05:40:53 - cvsupping the source tree TB --- 2009-03-02 05:40:53 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-02 05:41:04 - building world TB --- 2009-03-02 05:41:04 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-02 05:41:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-02 05:41:04 - TARGET=amd64 TB --- 2009-03-02 05:41:04 - TARGET_ARCH=amd64 TB --- 2009-03-02 05:41:04 - TZ=UTC TB --- 2009-03-02 05:41:04 - __MAKE_CONF=/dev/null TB --- 2009-03-02 05:41:04 - cd /src TB --- 2009-03-02 05:41:04 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 2 05:41:06 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-02 06:25:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-02 06:25:51 - ERROR: failed to build world TB --- 2009-03-02 06:25:51 - 2042.16 user 247.94 system 2751.15 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 10:05:21 2009 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 8F3E31065674; Mon, 2 Mar 2009 10:05:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 6108F8FC21; Mon, 2 Mar 2009 10:05:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n22A5J3p035625; Mon, 2 Mar 2009 05:05:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n22A5IKi014506; Mon, 2 Mar 2009 05:05:18 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id C10DC7302F; Mon, 2 Mar 2009 05:05:18 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090302100518.C10DC7302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 05:05:18 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 10:05:25 -0000 TB --- 2009-03-02 09:20:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-02 09:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-02 09:20:00 - cleaning the object tree TB --- 2009-03-02 09:20:23 - cvsupping the source tree TB --- 2009-03-02 09:20:23 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-02 09:20:31 - building world TB --- 2009-03-02 09:20:31 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-02 09:20:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-02 09:20:31 - TARGET=amd64 TB --- 2009-03-02 09:20:31 - TARGET_ARCH=amd64 TB --- 2009-03-02 09:20:31 - TZ=UTC TB --- 2009-03-02 09:20:31 - __MAKE_CONF=/dev/null TB --- 2009-03-02 09:20:31 - cd /src TB --- 2009-03-02 09:20:31 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 2 09:20:33 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-02 10:05:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-02 10:05:18 - ERROR: failed to build world TB --- 2009-03-02 10:05:18 - 2041.37 user 244.87 system 2718.04 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 10:18:03 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D04C9106564A; Mon, 2 Mar 2009 10:18:03 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from smtp-out.abv.bg (smtp-out.abv.bg [194.153.145.80]) by mx1.freebsd.org (Postfix) with ESMTP id 7F5DE8FC1D; Mon, 2 Mar 2009 10:18:03 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from mail53.abv.bg (mail53.ni.bg [192.168.151.29]) by smtp-out.abv.bg (Postfix) with ESMTP id CD2D887ABD; Mon, 2 Mar 2009 12:18:01 +0200 (EET) DomainKey-Signature: a=rsa-sha1; s=smtp-out; d=abv.bg; c=simple; q=dns; b=CoHuaLX9gIaWAYtjGKoW3KNZ6R/L7TzI7RW3eRPLiiYepDFCOwYVCKbfIL/0oS2qo qwV39XEZlGdtKdprqw6JFgoTvJ2q94RMsfKXaL4H3caY0cjF6s6TFMR5JG8HUI7iS5P rzIcxEuL4pQpEYlGTeS4tMO4KZTuePPyPDg1uVM= DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=abv.bg; s=smtp-out; t=1235989081; bh=Wejqlzen8BPwRaetzw9DORFh4ggHeMyXK7gfWlWtplw=; h=Date:From:To:Cc:Message-ID:Subject:MIME-Version:Content-Type: Content-Transfer-Encoding:DKIM; b=njk2DfKjr26WteQC/MrLcz6WLK6LddhX 6ATKpWF89VIEqMR5wqDuQmNymjOA7WQZzlongogjAxid13g5IYYSxmAWNdb2IjRBXBj ZR+8PmlVaLP7Dzl4Zfdt78Ny1I+nSCoLjgrbADzNWUWCiynqXTP6ifvYc1AW65oWfHj 58dms= Received: from mail53.abv.bg (localhost.localdomain [127.0.0.1]) by mail53.abv.bg (Postfix) with ESMTP id 302251E4B0A; Mon, 2 Mar 2009 12:18:01 +0200 (EET) Date: Mon, 2 Mar 2009 12:18:01 +0200 (EET) From: Mario Pavlov To: freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Message-ID: <875050024.51828.1235989081194.JavaMail.apache@mail53.abv.bg> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Priority: 3 X-Mailer: AbvMail 1.0 X-Originating-IP: 78.128.21.208 Cc: dev@lists.pcbsd.org, kris@pcbsd.com Subject: Re: Re: [Fw: Re: [PC-BSD Dev] vmap()-like kernel interface ] - call for review 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, 02 Mar 2009 10:18:04 -0000 >On Fri, Feb 13, 2009 at 1:04 PM, Mario Pavlov wrote: >> Hi, >> please find the attached e-mail >> >> regards >> mgp >> >> P.S. thanks, PC-BSD team > > I'm not a kernel dev, but I noted that pmap_unmapcontig doesn't >take into consideration when va is NULL; I know it's bad driver >programming if uncontig is implicitly called with NULL, but there >should be some error handling or something here (a NULL deref will >occur in pmap_qremove, which will cause a panic). >Thanks, >-Garrett Hi, looks like most people just ignored this email. I am sure you all are very busy and you don't have time for everything but please try to find some time and review this work. People made an effort ... don't just throw it away. You know, many people long for 64bit driver. here's the attachment: http://lists.freebsd.org/pipermail/freebsd-amd64/attachments/20090213/567e04b7/PC-BSDDevvmap-likekernelinterface.eml thank you regards, mgp From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 11:07:00 2009 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA09310656C1 for ; Mon, 2 Mar 2009 11:07:00 +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 CEED58FC18 for ; Mon, 2 Mar 2009 11:06:48 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n22B6mvL057230 for ; Mon, 2 Mar 2009 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n22B6mWE057226 for freebsd-amd64@FreeBSD.org; Mon, 2 Mar 2009 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 2 Mar 2009 11:06:48 GMT Message-Id: <200903021106.n22B6mWE057226@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 X-Mailman-Approved-At: Mon, 02 Mar 2009 12:25:12 +0000 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, 02 Mar 2009 11:07:29 -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/132170 amd64 7.1 kernel compilation problem o amd64/132019 amd64 [install] kernel trap 12 while installation o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 f amd64/131456 amd64 ACPI & ATA problems o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o amd64/131209 amd64 [panic] 7.1-STABLE amd64 crash f amd64/130885 amd64 sockstat(1) on amd64 does not work o amd64/130864 amd64 [hang] Problem with copying files to a large partition o amd64/130817 amd64 FreeBSD does not support HP DL160G5 [regression] o amd64/130494 amd64 [boot] netbooting BTX fails on amd64 o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o amd64/129889 amd64 [boot] The booting process stops at the line mounting o amd64/129721 amd64 [hang] Motherboard K9N2G Neo-FD hangs on boot of 7.0-R o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize o amd64/129488 amd64 [smbfs] Kernel "bug" when using smbfs in smbfs_smb.c: o amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o amd64/129315 amd64 [boot] amd64 motherboard: Intel DG965WH motherboard co f amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o amd64/128810 amd64 AMD 64 port installation o amd64/128765 amd64 [install] Install CD loads to Install choices but stop o amd64/128686 amd64 [ata] can't detect SATA Disk on 8.0-Current with NF550 o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o amd64/128259 amd64 csh(1): "`" crashes csh o amd64/127640 amd64 gcc(1) will not build shared libraries with -fprofile- o amd64/127492 amd64 [zfs] System hang on ZFS input-output o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 o amd64/127451 amd64 [scheduler] incorrect load on quad core o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI s amd64/127276 amd64 ldd(1) invokes linux yes o amd64/127129 amd64 mdconfig(8) is core dumping with Segmentation Fault 11 o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o amd64/123562 amd64 [install] FreeBSD amd64 not installs o amd64/123520 amd64 [ahd] unable to boot from net while using ahd o amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o amd64/122624 amd64 unusable minimal installation of FreeBSD-7.0 o amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial o amd64/122468 amd64 Compile problems after upgrading to 7.0 o amd64/122174 amd64 [panic] 7.0 no longer includes "device atpic" so fails o amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o amd64/121439 amd64 [boot] Installation of FreeBSD 7.0 fails: ACPI problem o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o amd64/117418 amd64 [hang] FreeBSD 6.2 crash on amd64 4400+ with ssh o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 s amd64/116689 amd64 [request] support for MSI K9MM-V o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on o amd64/116322 amd64 [panic] At start fsck on current, the system panics o amd64/116159 amd64 [panic] Panic while debugging on CURRENT s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern o amd64/114111 amd64 [nfs] System crashes while writing on NFS-mounted shar f amd64/113021 amd64 [re] ASUS M2A-VM onboard NIC does not work o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number f amd64/111992 amd64 [boot] BTX failed - HP Laptop dv2315nr o amd64/110655 amd64 [threads] 32 bit threaded applications crash on amd64 o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o amd64/106186 amd64 [panic] panic in swap_pager_swap_init (amd64/smp/6.2-p f amd64/105629 amd64 [re] TrendNet TEG-BUSR 10/100/1000 disables itself on f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does f amd64/105514 amd64 [boot] FreeBSD/amd64 - Fails to boot on HP Pavilion dv o amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP f amd64/94989 amd64 [boot] BTX Halts on Sun Fire X2100 w/6.1-BETA4 (amd64) o amd64/94677 amd64 [panic] panic in amd64 install at non-root user creati o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff f amd64/91492 amd64 [boot] BTX halted o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o amd64/89501 amd64 [install] System crashes on install using ftp on local o amd64/88790 amd64 [panic] kernel panic on first boot (after the FreeBSD o amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in f amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Areca ARC-1160 r f amd64/86080 amd64 [radeon] [hang] radeon DRI causes system hang on amd64 s amd64/85273 amd64 [install] FreeBSD (NetBSD or OpenBSD) not install on l o amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/ports' and sys o amd64/76136 amd64 [hang] system halts before reboot o amd64/74747 amd64 [panic] System panic on shutdown when process will not o amd64/73322 amd64 [msdosfs] [hang] unarchiving /etc to msdosfs locks up 94 problems total. From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 13:45:07 2009 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 55056106566C; Mon, 2 Mar 2009 13:45:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 286868FC17; Mon, 2 Mar 2009 13:45:06 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n22Dj47X051382; Mon, 2 Mar 2009 08:45:04 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n22Dj3DL083203; Mon, 2 Mar 2009 08:45:03 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id C6B407302F; Mon, 2 Mar 2009 08:45:03 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090302134503.C6B407302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 08:45:03 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 13:45:08 -0000 TB --- 2009-03-02 13:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-02 13:00:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-02 13:00:00 - cleaning the object tree TB --- 2009-03-02 13:00:21 - cvsupping the source tree TB --- 2009-03-02 13:00:21 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-02 13:00:31 - building world TB --- 2009-03-02 13:00:31 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-02 13:00:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-02 13:00:31 - TARGET=amd64 TB --- 2009-03-02 13:00:31 - TARGET_ARCH=amd64 TB --- 2009-03-02 13:00:31 - TZ=UTC TB --- 2009-03-02 13:00:31 - __MAKE_CONF=/dev/null TB --- 2009-03-02 13:00:31 - cd /src TB --- 2009-03-02 13:00:31 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 2 13:00:34 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-02 13:45:03 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-02 13:45:03 - ERROR: failed to build world TB --- 2009-03-02 13:45:03 - 2039.84 user 245.42 system 2703.14 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 17:25:01 2009 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 374E7106566B; Mon, 2 Mar 2009 17:25:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.freebsd.org (Postfix) with ESMTP id F1F7B8FC19; Mon, 2 Mar 2009 17:25:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.3/8.14.3) with ESMTP id n22HOwir057015; Mon, 2 Mar 2009 12:24:58 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.3/8.14.3) with ESMTP id n22HOwLo026026; Mon, 2 Mar 2009 12:24:58 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 628EA7302F; Mon, 2 Mar 2009 12:24:58 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090302172458.628EA7302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 12:24:58 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.1/8983/Thu Feb 12 07:48:01 2009 clamav-milter version 0.94.2 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 205.211.164.50 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 17:25:02 -0000 TB --- 2009-03-02 16:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-02 16:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-02 16:40:00 - cleaning the object tree TB --- 2009-03-02 16:40:22 - cvsupping the source tree TB --- 2009-03-02 16:40:22 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-02 16:40:31 - building world TB --- 2009-03-02 16:40:31 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-02 16:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-02 16:40:31 - TARGET=amd64 TB --- 2009-03-02 16:40:31 - TARGET_ARCH=amd64 TB --- 2009-03-02 16:40:31 - TZ=UTC TB --- 2009-03-02 16:40:31 - __MAKE_CONF=/dev/null TB --- 2009-03-02 16:40:31 - cd /src TB --- 2009-03-02 16:40:31 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 2 16:40:34 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-02 17:24:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-02 17:24:58 - ERROR: failed to build world TB --- 2009-03-02 17:24:58 - 2032.70 user 244.37 system 2697.90 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 18:02:38 2009 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 5215F1065709 for ; Mon, 2 Mar 2009 18:02:38 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.234]) by mx1.freebsd.org (Postfix) with ESMTP id 1F3F88FC1B for ; Mon, 2 Mar 2009 18:02:37 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by rv-out-0506.google.com with SMTP id f6so2682482rvb.43 for ; Mon, 02 Mar 2009 10:02:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:references:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:cc; bh=YiCyDXTb5bvQjZX+iJGmOdZjLX+Lo0Y/aL2WLsxtvyQ=; b=a8aszuRSvXlJ2BJUmT1u8BD5fjohye0Cpd4QDcMApzLPoCaLuWJVVqggc759qsnD+D wOU09dyGIK8Btbi/MNLh5U0OFxiLWmPSBYzRV4y8NtSis+xvXkCwZu9R9nlDa/LJW0B3 L4jplx+uBnfSLPEYRBffZD0Y7ZDhe/Jb/J6g4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=references:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date:cc; b=kFWWgitbojCM0MGWd9HISyVrKc+tQ32e3cpW7vpnYUEIZ3ixKgLB2Zyb7BCuRuaxbn nSylhsYmSFUqaIVEWAkQMSpwlASbGY0CwgVZ0MaUlfAmGbGiNdd4E79HDpLodoUzvH0B KGp2PLLv7uarmwQn1bx/vyQwPOk5sw7QwrKpA= Received: by 10.141.45.16 with SMTP id x16mr2998590rvj.290.1236015522359; Mon, 02 Mar 2009 09:38:42 -0800 (PST) Received: from ?10.94.99.168? ([32.159.245.59]) by mx.google.com with ESMTPS id b8sm1513535rvf.8.2009.03.02.09.38.39 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 02 Mar 2009 09:38:41 -0800 (PST) References: <20090302062551.E8B967302F@freebsd-current.sentex.ca> <49AC14AA.4080001@freebsd.org> Message-Id: <56DFA1ED-244C-4DA1-88BB-58EF77605EC9@gmail.com> From: Garrett Cooper To: Sam Leffler In-Reply-To: <49AC14AA.4080001@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (5H11) Mime-Version: 1.0 (iPhone Mail 5H11) Date: Mon, 2 Mar 2009 09:38:32 -0800 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: Mon, 02 Mar 2009 18:02:39 -0000 Sent from my iPhone On Mar 2, 2009, at 9:17, Sam Leffler wrote: > FreeBSD Tinderbox wrote: >> ===> usr.sbin/wpa/wpa_passphrase (depend) >> make: don't know how to make wpa_passphrase.c. Stop >> *** Error code 2 >> > > Sorry, thought this was fixed last night. Looking at it but if > anyone already knows what is wrong please contact me offline. You need to add wpa before wpa_supplicant in the Makefile noted above; that will fix the compile. Hth, -Garrett From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 17:45:46 2009 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 86149106564A for ; Mon, 2 Mar 2009 17:45:46 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 45F1F8FC13 for ; Mon, 2 Mar 2009 17:45:46 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id n22HHULc070518 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 2 Mar 2009 09:17:31 -0800 (PST) (envelope-from sam@freebsd.org) Message-ID: <49AC14AA.4080001@freebsd.org> Date: Mon, 02 Mar 2009 09:17:30 -0800 From: Sam Leffler Organization: FreeBSD Project User-Agent: Thunderbird 2.0.0.18 (X11/20081209) MIME-Version: 1.0 To: current@freebsd.org References: <20090302062551.E8B967302F@freebsd-current.sentex.ca> In-Reply-To: <20090302062551.E8B967302F@freebsd-current.sentex.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-x.dcc-servers-Metrics: ebb.errno.com; whitelist X-Mailman-Approved-At: Mon, 02 Mar 2009 18:21:58 +0000 Cc: amd64@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: Mon, 02 Mar 2009 17:45:46 -0000 FreeBSD Tinderbox wrote: > ===> usr.sbin/wpa/wpa_passphrase (depend) > make: don't know how to make wpa_passphrase.c. Stop > *** Error code 2 > Sorry, thought this was fixed last night. Looking at it but if anyone already knows what is wrong please contact me offline. Sam From owner-freebsd-amd64@FreeBSD.ORG Mon Mar 2 21:05:00 2009 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 8883C1065754; Mon, 2 Mar 2009 21:05:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 4ED188FC13; Mon, 2 Mar 2009 21:05:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n22L4v6Q054233; Mon, 2 Mar 2009 16:04:57 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n22L4vCq055018; Mon, 2 Mar 2009 16:04:57 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 3B6317302F; Mon, 2 Mar 2009 16:04:57 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090302210457.3B6317302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 16:04:57 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 21:05:01 -0000 TB --- 2009-03-02 20:20:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-02 20:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-02 20:20:00 - cleaning the object tree TB --- 2009-03-02 20:20:21 - cvsupping the source tree TB --- 2009-03-02 20:20:21 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-02 20:20:29 - building world TB --- 2009-03-02 20:20:29 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-02 20:20:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-02 20:20:29 - TARGET=amd64 TB --- 2009-03-02 20:20:29 - TARGET_ARCH=amd64 TB --- 2009-03-02 20:20:29 - TZ=UTC TB --- 2009-03-02 20:20:29 - __MAKE_CONF=/dev/null TB --- 2009-03-02 20:20:29 - cd /src TB --- 2009-03-02 20:20:29 - /usr/bin/make -B buildworld >>> World build started on Mon Mar 2 20:20:32 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-02 21:04:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-02 21:04:57 - ERROR: failed to build world TB --- 2009-03-02 21:04:57 - 2034.02 user 243.91 system 2696.31 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 00:45:09 2009 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 A6DE7106567F; Tue, 3 Mar 2009 00:45:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 6DD788FC22; Tue, 3 Mar 2009 00:45:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n230j6jb080507; Mon, 2 Mar 2009 19:45:06 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n230j6GN032925; Mon, 2 Mar 2009 19:45:06 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 577F57302F; Mon, 2 Mar 2009 19:45:06 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303004506.577F57302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 19:45:06 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 00:45:11 -0000 TB --- 2009-03-03 00:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 00:00:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 00:00:00 - cleaning the object tree TB --- 2009-03-03 00:00:23 - cvsupping the source tree TB --- 2009-03-03 00:00:23 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 00:00:33 - building world TB --- 2009-03-03 00:00:33 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 00:00:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 00:00:33 - TARGET=amd64 TB --- 2009-03-03 00:00:33 - TARGET_ARCH=amd64 TB --- 2009-03-03 00:00:33 - TZ=UTC TB --- 2009-03-03 00:00:33 - __MAKE_CONF=/dev/null TB --- 2009-03-03 00:00:33 - cd /src TB --- 2009-03-03 00:00:33 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 00:00:35 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 00:45:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 00:45:06 - ERROR: failed to build world TB --- 2009-03-03 00:45:06 - 2034.74 user 242.82 system 2705.74 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 04:25:21 2009 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 BD48D106566C; Tue, 3 Mar 2009 04:25:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 840568FC12; Tue, 3 Mar 2009 04:25:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n234PIit092472; Mon, 2 Mar 2009 23:25:18 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n234PI1S079665; Mon, 2 Mar 2009 23:25:18 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A11227302F; Mon, 2 Mar 2009 23:25:18 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303042518.A11227302F@freebsd-current.sentex.ca> Date: Mon, 2 Mar 2009 23:25:18 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 04:25:22 -0000 TB --- 2009-03-03 03:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 03:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 03:40:00 - cleaning the object tree TB --- 2009-03-03 03:40:20 - cvsupping the source tree TB --- 2009-03-03 03:40:20 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 03:40:31 - building world TB --- 2009-03-03 03:40:31 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 03:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 03:40:31 - TARGET=amd64 TB --- 2009-03-03 03:40:31 - TARGET_ARCH=amd64 TB --- 2009-03-03 03:40:31 - TZ=UTC TB --- 2009-03-03 03:40:31 - __MAKE_CONF=/dev/null TB --- 2009-03-03 03:40:31 - cd /src TB --- 2009-03-03 03:40:31 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 03:40:33 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 04:25:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 04:25:18 - ERROR: failed to build world TB --- 2009-03-03 04:25:18 - 2035.49 user 242.24 system 2718.41 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 08:08:10 2009 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 D7B221065672; Tue, 3 Mar 2009 08:08:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 9ED1C8FC18; Tue, 3 Mar 2009 08:08:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n23887Ti000882; Tue, 3 Mar 2009 03:08:07 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n238870h036362; Tue, 3 Mar 2009 03:08:07 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 498877302F; Tue, 3 Mar 2009 03:08:07 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303080807.498877302F@freebsd-current.sentex.ca> Date: Tue, 3 Mar 2009 03:08:07 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 08:08:11 -0000 TB --- 2009-03-03 07:20:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 07:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 07:20:01 - cleaning the object tree TB --- 2009-03-03 07:20:23 - cvsupping the source tree TB --- 2009-03-03 07:20:23 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 07:20:33 - building world TB --- 2009-03-03 07:20:33 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 07:20:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 07:20:33 - TARGET=amd64 TB --- 2009-03-03 07:20:33 - TARGET_ARCH=amd64 TB --- 2009-03-03 07:20:33 - TZ=UTC TB --- 2009-03-03 07:20:33 - __MAKE_CONF=/dev/null TB --- 2009-03-03 07:20:33 - cd /src TB --- 2009-03-03 07:20:33 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 07:20:35 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 08:08:07 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 08:08:07 - ERROR: failed to build world TB --- 2009-03-03 08:08:07 - 2036.37 user 241.45 system 2886.05 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 11:44:51 2009 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 56295106566B; Tue, 3 Mar 2009 11:44:51 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 2B0558FC17; Tue, 3 Mar 2009 11:44:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n23Bijhk010634; Tue, 3 Mar 2009 06:44:45 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n23Bij5W006675; Tue, 3 Mar 2009 06:44:45 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 4C1117302F; Tue, 3 Mar 2009 06:44:45 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303114445.4C1117302F@freebsd-current.sentex.ca> Date: Tue, 3 Mar 2009 06:44:45 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 11:44:51 -0000 TB --- 2009-03-03 11:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 11:00:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 11:00:00 - cleaning the object tree TB --- 2009-03-03 11:00:21 - cvsupping the source tree TB --- 2009-03-03 11:00:21 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 11:00:29 - building world TB --- 2009-03-03 11:00:29 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 11:00:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 11:00:29 - TARGET=amd64 TB --- 2009-03-03 11:00:29 - TARGET_ARCH=amd64 TB --- 2009-03-03 11:00:29 - TZ=UTC TB --- 2009-03-03 11:00:29 - __MAKE_CONF=/dev/null TB --- 2009-03-03 11:00:29 - cd /src TB --- 2009-03-03 11:00:29 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 11:00:31 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 11:44:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 11:44:45 - ERROR: failed to build world TB --- 2009-03-03 11:44:45 - 2034.73 user 242.63 system 2685.04 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 13:02:51 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42394106564A for ; Tue, 3 Mar 2009 13:02:51 +0000 (UTC) (envelope-from darcsis@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.233]) by mx1.freebsd.org (Postfix) with ESMTP id 034778FC25 for ; Tue, 3 Mar 2009 13:02:50 +0000 (UTC) (envelope-from darcsis@gmail.com) Received: by rv-out-0506.google.com with SMTP id f6so3166934rvb.43 for ; Tue, 03 Mar 2009 05:02:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject :in-reply-to:organization:references:user-agent:x-envelope-to :mail-followup-to:date:message-id:mime-version:content-type; bh=zNc/9I46tJPEPIPlU9jKV9ghHgXKWYTsmfE3jBr2zkA=; b=nJmnjGsK4SAV6+zuSP6qhI9jhPza0k659qSzj4cTCVCk3aHvgcZ03NdxthfkI6p1ZX ddiwmQOiNdrgskH2lkRpkQHLj93Ln/visoDCN/jtCrJMsUBy+av9zhLBqqBli+2oO2MV Rl6A1Ym34V8WIbqm2f9YQNPHTvZFOkL91+ZYc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:in-reply-to:organization:references:user-agent :x-envelope-to:mail-followup-to:date:message-id:mime-version :content-type; b=dUNAKDPY9XzAtNWpeJ5hHePUd/PZ/QXWENgjzTlz2EEHrb02nr2mXCiLcrD51xtfEb FqKlBv5JKVT8ltwMztj3y4xTjauUMn/cDNrp/BC9kcTtP1i2/UESoR8zmliubtDr6poG y3myQ4ucPCBGY8Qxh0m6cwQdu+gZbuEblt4VM= Received: by 10.141.142.15 with SMTP id u15mr3512977rvn.112.1236084069638; Tue, 03 Mar 2009 04:41:09 -0800 (PST) Received: from pluton.xbsd.name ([125.34.67.56]) by mx.google.com with ESMTPS id f42sm9573332rvb.3.2009.03.03.04.41.04 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Mar 2009 04:41:08 -0800 (PST) From: darcsis@gmail.com (Denise H. G.) To: Mario Pavlov In-Reply-To: <875050024.51828.1235989081194.JavaMail.apache@mail53.abv.bg> (Mario Pavlov's message of "Mon, 2 Mar 2009 12:18:01 +0200 (EET)") Organization: Terra Firma References: <875050024.51828.1235989081194.JavaMail.apache@mail53.abv.bg> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (berkeley-unix) X-Envelope-To: freebsd@abv.bg Mail-Followup-To: Mario Pavlov , freebsd-current@freebsd.org, freebsd-amd64@freebsd.org, dev@lists.pcbsd.org, kris@pcbsd.com Date: Tue, 03 Mar 2009 20:40:44 +0800 Message-ID: <86wsb6hj8z.fsf@pluton.xbsd.name> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@lists.pcbsd.org, kris@pcbsd.com, freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: [Fw: Re: [PC-BSD Dev] vmap()-like kernel interface ] - call for review 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: Tue, 03 Mar 2009 13:02:51 -0000 >>>>> "Mario" == Mario Pavlov writes: >> On Fri, Feb 13, 2009 at 1:04 PM, Mario Pavlov wrote: >>> Hi, please find the attached e-mail >>> >>> regards mgp >>> >>> P.S. thanks, PC-BSD team >> >> I'm not a kernel dev, but I noted that pmap_unmapcontig doesn't >> take into consideration when va is NULL; I know it's bad driver >> programming if uncontig is implicitly called with NULL, but there >> should be some error handling or something here (a NULL deref >> will occur in pmap_qremove, which will cause a panic). Thanks, >> -Garrett Mario> Hi, looks like most people just ignored this email. I am sure Mario> you all are very busy and you don't have time for everything Mario> but please try to find some time and review this work. People Mario> made an effort ... don't just throw it away. You know, many Mario> people long for 64bit driver. here's the attachment: Mario> http://lists.freebsd.org/pipermail/freebsd-amd64/attachments/20090213/567e04b7/PC-BSDDevvmap-likekernelinterface.eml Mario> thank you Mario> regards, mgp _______________________________________________ Mario> freebsd-amd64@freebsd.org mailing list Mario> http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To Mario> unsubscribe, send any mail to Mario> "freebsd-amd64-unsubscribe@freebsd.org" Does this have something to do with Nvidia amd64 driver? I am not very familiar with kernel stuff... But I know that Nvidia amd64 driver badly needs some work on some kernel ABIs. -- darcsis ZAI gmail DIAN com From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 15:25:07 2009 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 261AE1065672; Tue, 3 Mar 2009 15:25:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id C6A198FC20; Tue, 3 Mar 2009 15:25:06 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n23FP4lH041853; Tue, 3 Mar 2009 10:25:04 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n23FP4YH035096; Tue, 3 Mar 2009 10:25:04 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 097187302F; Tue, 3 Mar 2009 10:25:04 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303152504.097187302F@freebsd-current.sentex.ca> Date: Tue, 3 Mar 2009 10:25:04 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 15:25:08 -0000 TB --- 2009-03-03 14:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 14:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 14:40:00 - cleaning the object tree TB --- 2009-03-03 14:40:21 - cvsupping the source tree TB --- 2009-03-03 14:40:21 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 14:40:32 - building world TB --- 2009-03-03 14:40:32 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 14:40:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 14:40:32 - TARGET=amd64 TB --- 2009-03-03 14:40:32 - TARGET_ARCH=amd64 TB --- 2009-03-03 14:40:32 - TZ=UTC TB --- 2009-03-03 14:40:32 - __MAKE_CONF=/dev/null TB --- 2009-03-03 14:40:32 - cd /src TB --- 2009-03-03 14:40:32 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 14:40:33 UTC 2009 >>> 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 [...] mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp -DCONFIG_DRIVER_BSD -DCONFIG_DRIVER_NDIS -DCONFIG_DRIVER_WIRED -DCONFIG_TERMINATE_ONLASTIF -DCONFIG_DEBUG_SYSLOG -DCONFIG_BACKEND_FILE -DIEEE8021X_EAPOL -DEAP_TLS -DEAP_PEAP -DEAP_MSCHAPv2 -DEAP_LEAP -DEAP_PSK -DEAP_TLV -DEAP_TLS_FUNCS -DEAP_TLS_OPENSSL -DEAP_TTLS -DEAP_MD5 -I/src/usr.sbin/wpa/wpa_supplicant -I/src/usr.sbin/wpa/wpa_supplic ant/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/aes_wrap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/blacklist.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/ctrl_iface_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/drivers.c /src/usr .sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/eloop.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/events.c /src/usr.sbin/wpa/wpa_supplicant/../l2_packet.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/main.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/md5.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/preauth.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/pmksa_cache.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/rc4.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/scan.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/scan_helpers.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/sha1.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/common/wpa_common.c /src/usr.sbin/wpa/wpa_supplican t/../../../contrib/wpa//src/utils/wpa_debug.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/rsn_supp/wpa_ie.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpa_supplicant.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/wpabuf.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/wpas_glue.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/drivers/driver_ndis.c /src/usr.sbin/wpa/wpa_supplicant/Packet32.c /src/usr.sbin/wpa/wpa_supplicant/driver_wired.c /src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/os_unix.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//wpa_supplicant/config_file.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/utils/base64.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eapol_supp/eapol_supp_sm.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap.c /src/us r.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_methods.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/chap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/crypto_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_leap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_peap.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_peap_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_psk.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_common/eap_psk_common.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_tls_common.c /src/usr.sbin/ wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/mschapv2.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/ms_funcs.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/crypto/tls_openssl.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_ttls.c /src/usr.sbin/wpa/wpa_supplicant/../../../contrib/wpa//src/eap_peer/eap_md5.c echo wpa_supplicant: /obj/amd64/src/tmp/usr/lib/libc.a /obj/amd64/src/tmp/usr/lib/libpcap.a /obj/amd64/src/tmp/usr/lib/libssl.a /obj/amd64/src/tmp/usr/lib/libcrypto.a >> .depend ===> usr.sbin/wpa/wpa_cli (depend) rm -f .depend mkdep -f .depend -a -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX -I/src/usr.sbin/wpa/wpa_cli -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/crypto -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/l2_packet -I/src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/utils -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//wpa_supplicant/wpa_cli.c /src/usr.sbin/wpa/wpa_cli/../../../contrib/wpa//src/common/wpa_ctrl.c /src/usr.sbin/wpa/wpa_cli/../../. ./contrib/wpa//src/utils/os_unix.c echo wpa_cli: /obj/amd64/src/tmp/usr/lib/libc.a >> .depend ===> usr.sbin/wpa/wpa_passphrase (depend) make: don't know how to make wpa_passphrase.c. Stop *** Error code 2 Stop in /src/usr.sbin/wpa. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 15:25:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 15:25:04 - ERROR: failed to build world TB --- 2009-03-03 15:25:04 - 2036.24 user 241.42 system 2703.35 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 16:32:53 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D094A106564A; Tue, 3 Mar 2009 16:32:53 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from smtp-out.abv.bg (smtp-out.abv.bg [194.153.145.99]) by mx1.freebsd.org (Postfix) with ESMTP id 4A3D98FC0C; Tue, 3 Mar 2009 16:32:53 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from mail54.abv.bg (mail54.ni.bg [192.168.151.57]) by smtp-out.abv.bg (Postfix) with ESMTP id 8376814EBBD; Tue, 3 Mar 2009 18:31:48 +0200 (EET) DomainKey-Signature: a=rsa-sha1; s=smtp-out; d=abv.bg; c=simple; q=dns; b=rLg9JyOjS9if7Ln3IK2NQtcZ2JCH3T6Z8z9vxgtGW1UBKn0DQb/RePfqg3vFSRzI0 wj2vzxJWiDWIPneA+Q7yK4C++Sde+gS69qY9Cnyfy2EOl4NAiku5wiMREDlpvabrDW1 PQGjL8KWguv4kmTCMb02m8r+9yil6fGKSlW3kMw= DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=abv.bg; s=smtp-out; t=1236097908; bh=FRvjPQ8XJ/LqdLCwLT6DrmmdWYE7YyPLsdkBKk3Rj+o=; h=Date:From:To:Cc:Message-ID:Subject:MIME-Version:Content-Type: Content-Transfer-Encoding:DKIM; b=UcDJfUmawihHNtXpXTkc+Bn62oRRkAdM a/XkbRwfj7+mgp3c9lfUAyP5gBpnaIbMYzKIQ5LGAkg7C9HGS3AOZvhGh8u8Tc/zOY3 2mnqal1i3kXShFN+96bQZl4x2R+G1C6iOgqsxWQlv7Wg7AUg2fglvDde1YTCTlei1V4 VHCjU= Received: from mail54.abv.bg (mail54.abv.bg [127.0.0.1]) by mail54.abv.bg (Postfix) with ESMTP id 5B94611EE64; Tue, 3 Mar 2009 18:32:50 +0200 (EET) Date: Tue, 3 Mar 2009 18:32:50 +0200 (EET) From: Mario Pavlov To: "Denise H. G." Message-ID: <1024670995.74919.1236097970373.JavaMail.apache@mail54.abv.bg> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Priority: 3 X-Mailer: AbvMail 1.0 X-Originating-IP: 78.128.21.208 Cc: dev@lists.pcbsd.org, kris@pcbsd.com, freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Re: [Fw: Re: [PC-BSD Dev] vmap()-like kernel interface ] - call for review 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: Tue, 03 Mar 2009 16:32:54 -0000 >>>>>> "Mario" == Mario Pavlov writes: > > >> On Fri, Feb 13, 2009 at 1:04 PM, Mario Pavlov wrote: > >>> Hi, please find the attached e-mail > >>> > >>> regards mgp > >>> > >>> P.S. thanks, PC-BSD team > >> > >> I'm not a kernel dev, but I noted that pmap_unmapcontig doesn't > >> take into consideration when va is NULL; I know it's bad driver > >> programming if uncontig is implicitly called with NULL, but there > >> should be some error handling or something here (a NULL deref > >> will occur in pmap_qremove, which will cause a panic). Thanks, > >> -Garrett > > Mario> Hi, looks like most people just ignored this email. I am sure > Mario> you all are very busy and you don't have time for everything > Mario> but please try to find some time and review this work. People > Mario> made an effort ... don't just throw it away. You know, many > Mario> people long for 64bit driver. here's the attachment: > Mario> http://lists.freebsd.org/pipermail/freebsd-amd64/attachments/20090213/567e04b7/PC-BSDDevvmap-likekernelinterface.eml > > Mario> thank you > > Mario> regards, mgp _______________________________________________ > Mario> freebsd-amd64@freebsd.org mailing list > Mario> http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To > Mario> unsubscribe, send any mail to > Mario> "freebsd-amd64-unsubscribe@freebsd.org" > >Does this have something to do with Nvidia amd64 driver? >I am not very familiar with kernel stuff... But I know that Nvidia amd64 >driver badly needs some work on some kernel ABIs. > > >-- >darcsis ZAI gmail DIAN com Hi Darcsis, yes it has a lot to do with the 64bit nVidia driver that patch I'm trying to get reviewed implements one of the features requested by nVidia note that there are only two missing features left ... and this is one of them ... in other words this one could potentially leave us with only one missing features check this out: http://wiki.freebsd.org/NvidiaFeatureRequests regards, mgp From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 17:54:07 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8F201065689; Tue, 3 Mar 2009 17:54:07 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id AB86B8FC14; Tue, 3 Mar 2009 17:54:07 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from [192.168.1.2] (adsl-1-207-68.bna.bellsouth.net [65.1.207.68]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n23HqiOG058322 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 3 Mar 2009 12:52:44 -0500 (EST) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Mario Pavlov In-Reply-To: <1024670995.74919.1236097970373.JavaMail.apache@mail54.abv.bg> References: <1024670995.74919.1236097970373.JavaMail.apache@mail54.abv.bg> Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-QDHE2igv9RupzwqyBdJ2" Organization: FreeBSD Date: Tue, 03 Mar 2009 11:53:57 -0600 Message-Id: <1236102837.1384.6.camel@widget.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.4 FreeBSD GNOME Team Port X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_PBL, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net X-Mailman-Approved-At: Tue, 03 Mar 2009 17:58:37 +0000 Cc: kris@pcbsd.com, freebsd-current@freebsd.org, freebsd-amd64@freebsd.org, dev@lists.pcbsd.org Subject: Re: Re: [Fw: Re: [PC-BSD Dev] vmap()-like kernel interface ] - call for review 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: Tue, 03 Mar 2009 17:54:08 -0000 --=-QDHE2igv9RupzwqyBdJ2 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2009-03-03 at 18:32 +0200, Mario Pavlov wrote: > >>>>>> "Mario" =3D=3D Mario Pavlov writes: > > > > >> On Fri, Feb 13, 2009 at 1:04 PM, Mario Pavlov wrote: > > >>> Hi, please find the attached e-mail > > >>>=20 > > >>> regards mgp > > >>>=20 > > >>> P.S. thanks, PC-BSD team > > >>=20 > > >> I'm not a kernel dev, but I noted that pmap_unmapcontig doesn't > > >> take into consideration when va is NULL; I know it's bad driver > > >> programming if uncontig is implicitly called with NULL, but ther= e > > >> should be some error handling or something here (a NULL deref > > >> will occur in pmap_qremove, which will cause a panic). Thanks, > > >> -Garrett > > > > Mario> Hi, looks like most people just ignored this email. I am sur= e > > Mario> you all are very busy and you don't have time for everything > > Mario> but please try to find some time and review this work. Peopl= e > > Mario> made an effort ... don't just throw it away. You know, many > > Mario> people long for 64bit driver. here's the attachment: > > Mario> http://lists.freebsd.org/pipermail/freebsd-amd64/attachments= /20090213/567e04b7/PC-BSDDevvmap-likekernelinterface.eml > > > > Mario> thank you > > > > Mario> regards, mgp _______________________________________________ > > Mario> freebsd-amd64@freebsd.org mailing list > > Mario> http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To > > Mario> unsubscribe, send any mail to > > Mario> "freebsd-amd64-unsubscribe@freebsd.org" > > > >Does this have something to do with Nvidia amd64 driver? > >I am not very familiar with kernel stuff... But I know that Nvidia amd6= 4 > >driver badly needs some work on some kernel ABIs. > > > > > >--=20 > >darcsis ZAI gmail DIAN com >=20 > Hi Darcsis, > yes it has a lot to do with the 64bit nVidia driver > that patch I'm trying to get reviewed implements one of the features requ= ested by nVidia > note that there are only two missing features left ... and this is one of= them ... in other words this one could potentially leave us with only one = missing features > check this out: http://wiki.freebsd.org/NvidiaFeatureRequests Ok, I guess this is going to fall into my court, at least initially. I'll try and give it a look soon. Assuming that the feature is what we want, someone with more experience with the vm system will need to review. robert. > regards, > mgp > _______________________________________________ > 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= " --=20 Robert Noland FreeBSD --=-QDHE2igv9RupzwqyBdJ2 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEABECAAYFAkmtbrUACgkQM4TrQ4qfROMyGgCfSDDOqc9mfbI58uXQKYPzLiDF sHgAn1yOf5V9RU4MXmjmMEtE/aKQPPEk =aSjD -----END PGP SIGNATURE----- --=-QDHE2igv9RupzwqyBdJ2-- From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 19:53:16 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A03310656FF; Tue, 3 Mar 2009 19:53:16 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from smtp-out.abv.bg (smtp-out.abv.bg [194.153.145.70]) by mx1.freebsd.org (Postfix) with ESMTP id D71C08FC17; Tue, 3 Mar 2009 19:53:15 +0000 (UTC) (envelope-from freebsd@abv.bg) Received: from mail52.abv.bg (mail52.ni.bg [192.168.151.19]) by smtp-out.abv.bg (Postfix) with ESMTP id 612BC3EE190; Tue, 3 Mar 2009 21:53:14 +0200 (EET) DomainKey-Signature: a=rsa-sha1; s=smtp-out; d=abv.bg; c=simple; q=dns; b=E+mBVg8XkFXVKhGJV5EPMUFb+d6V77oAT7qZ4YAiKQMjocIdg6rOBh7NdmUS1dYZ2 nKtLvQrUaTIGPK/uDSXzulmY5GmRjH2A6V4pbXybVh3X1iBf5yQBI60ZAdCcQQIQ4E7 IfeKE5J4ZmkVR2XQNqEm+c0yusmhW/BrXlwiQfo= DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=abv.bg; s=smtp-out; t=1236109994; bh=buLf1VXCl+xLkDNv2S65xRSo666zayVbTQtOfCi8N8A=; h=Date:From:To:Cc:Message-ID:Subject:MIME-Version:Content-Type: Content-Transfer-Encoding:DKIM; b=kO52kkVjsoH70OQqqSJaL2WvGE6m7gnH qrumS91QRjal7XA9jRBOokUqZE1LfdyAp9v/nasjv9f8R+lZFY2U21xsji69mPTLhiK s4usAAEaesK9+29N8R+6lrwx++dmbZlSJ6lJYIPA9b9ApTngUF2NArMH0LW862si3Ps 1TL0k= Received: from mail52.abv.bg (mail52.abv.bg [127.0.0.1]) by mail52.abv.bg (Postfix) with ESMTP id 52CE51ACA64; Tue, 3 Mar 2009 21:53:13 +0200 (EET) Date: Tue, 3 Mar 2009 21:53:13 +0200 (EET) From: Mario Pavlov To: Robert Noland Message-ID: <1842113996.78401.1236109993322.JavaMail.apache@mail52.abv.bg> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Priority: 3 X-Mailer: AbvMail 1.0 X-Originating-IP: 78.128.21.208 Cc: kris@pcbsd.com, freebsd-current@freebsd.org, freebsd-amd64@freebsd.org, dev@lists.pcbsd.org Subject: Re: Re: Re: [Fw: Re: [PC-BSD Dev] vmap()-like kernel interface ] - call for review 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: Tue, 03 Mar 2009 19:53:17 -0000 >On Tue, 2009-03-03 at 18:32 +0200, Mario Pavlov wrote: >> >>>>>> "Mario" == Mario Pavlov writes: >> > >> > >> On Fri, Feb 13, 2009 at 1:04 PM, Mario Pavlov wrote: >> > >>> Hi, please find the attached e-mail >> > >>> >> > >>> regards mgp >> > >>> >> > >>> P.S. thanks, PC-BSD team >> > >> >> > >> I'm not a kernel dev, but I noted that pmap_unmapcontig doesn't >> > >> take into consideration when va is NULL; I know it's bad driver >> > >> programming if uncontig is implicitly called with NULL, but there >> > >> should be some error handling or something here (a NULL deref >> > >> will occur in pmap_qremove, which will cause a panic). Thanks, >> > >> -Garrett >> > >> > Mario> Hi, looks like most people just ignored this email. I am sure >> > Mario> you all are very busy and you don't have time for everything >> > Mario> but please try to find some time and review this work. People >> > Mario> made an effort ... don't just throw it away. You know, many >> > Mario> people long for 64bit driver. here's the attachment: >> > Mario> http://lists.freebsd.org/pipermail/freebsd-amd64/attachments/20090213/567e04b7/PC-BSDDevvmap-likekernelinterface.eml >> > >> > Mario> thank you >> > >> > Mario> regards, mgp _______________________________________________ >> > Mario> freebsd-amd64@freebsd.org mailing list >> > Mario> http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To >> > Mario> unsubscribe, send any mail to >> > Mario> "freebsd-amd64-unsubscribe@freebsd.org" >> > >> >Does this have something to do with Nvidia amd64 driver? >> >I am not very familiar with kernel stuff... But I know that Nvidia amd64 >> >driver badly needs some work on some kernel ABIs. >> > >> > >> >-- >> >darcsis ZAI gmail DIAN com >> >> Hi Darcsis, >> yes it has a lot to do with the 64bit nVidia driver >> that patch I'm trying to get reviewed implements one of the features requested by nVidia >> note that there are only two missing features left ... and this is one of them ... in other words this one could potentially leave us with only one missing features >> check this out: http://wiki.freebsd.org/NvidiaFeatureRequests > >Ok, I guess this is going to fall into my court, at least initially. >I'll try and give it a look soon. Assuming that the feature is what we >want, someone with more experience with the vm system will need to >review. > >robert. > >> regards, >> mgp >> _______________________________________________ >> 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" >-- >Robert Noland >FreeBSD Great, thank you! regards, mgp From owner-freebsd-amd64@FreeBSD.ORG Tue Mar 3 20:34:45 2009 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 7C143106564A; Tue, 3 Mar 2009 20:34:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 1A6488FC1D; Tue, 3 Mar 2009 20:34:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n23KYgaD099594; Tue, 3 Mar 2009 15:34:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.3/8.14.3) with ESMTP id n23KYg1F093523; Tue, 3 Mar 2009 15:34:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 072A37302F; Tue, 3 Mar 2009 15:34:41 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090303203442.072A37302F@freebsd-current.sentex.ca> Date: Tue, 3 Mar 2009 15:34:41 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.1/8983/Thu Feb 12 07:48:01 2009 clamav-milter version 0.94.2 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 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, 03 Mar 2009 20:34:46 -0000 TB --- 2009-03-03 18:20:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-03 18:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-03 18:20:00 - cleaning the object tree TB --- 2009-03-03 18:20:21 - cvsupping the source tree TB --- 2009-03-03 18:20:21 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-03 18:20:36 - building world TB --- 2009-03-03 18:20:36 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 18:20:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 18:20:36 - TARGET=amd64 TB --- 2009-03-03 18:20:36 - TARGET_ARCH=amd64 TB --- 2009-03-03 18:20:36 - TZ=UTC TB --- 2009-03-03 18:20:36 - __MAKE_CONF=/dev/null TB --- 2009-03-03 18:20:36 - cd /src TB --- 2009-03-03 18:20:36 - /usr/bin/make -B buildworld >>> World build started on Tue Mar 3 18:20:38 UTC 2009 >>> 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 3 20:19:02 UTC 2009 TB --- 2009-03-03 20:19:02 - generating LINT kernel config TB --- 2009-03-03 20:19:02 - cd /src/sys/amd64/conf TB --- 2009-03-03 20:19:02 - /usr/bin/make -B LINT TB --- 2009-03-03 20:19:03 - building LINT kernel TB --- 2009-03-03 20:19:03 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-03 20:19:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-03 20:19:03 - TARGET=amd64 TB --- 2009-03-03 20:19:03 - TARGET_ARCH=amd64 TB --- 2009-03-03 20:19:03 - TZ=UTC TB --- 2009-03-03 20:19:03 - __MAKE_CONF=/dev/null TB --- 2009-03-03 20:19:03 - cd /src TB --- 2009-03-03 20:19:03 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Mar 3 20:19:03 UTC 2009 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/audit/audit_trigger.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/audit/audit_worker.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/mac/mac_atalk.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/mac/mac_audit.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/mac/mac_cred.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/security/mac/mac_framework.c /src/sys/security/mac/mac_framework.c:91: error: expected ',' or ';' before 'struct' /src/sys/security/mac/mac_framework.c:91: error: 'sdt_mac_kernel_policy_modevent1' undeclared here (not in a function) *** Error code 1 Stop in /obj/amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-03 20:34:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-03 20:34:41 - ERROR: failed to build lint kernel TB --- 2009-03-03 20:34:41 - 6366.71 user 635.32 system 8080.83 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Mar 4 23:22:43 2009 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AA9F106567D; Wed, 4 Mar 2009 23:22:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2049C8FC2C; Wed, 4 Mar 2009 23:22:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n24NMhcI055191; Wed, 4 Mar 2009 23:22:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n24NMgPa055187; Wed, 4 Mar 2009 23:22:42 GMT (envelope-from linimon) Date: Wed, 4 Mar 2009 23:22:42 GMT Message-Id: <200903042322.n24NMgPa055187@freefall.freebsd.org> To: loic@abcmultimedia.fr, linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org From: linimon@FreeBSD.org X-Mailman-Approved-At: Wed, 04 Mar 2009 23:32:15 +0000 Cc: Subject: Re: amd64/132170: 7.1 kernel compilation problem 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, 04 Mar 2009 23:22:43 -0000 Synopsis: 7.1 kernel compilation problem State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Wed Mar 4 23:22:32 UTC 2009 State-Changed-Why: Is this still a problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=132170 From owner-freebsd-amd64@FreeBSD.ORG Thu Mar 5 05:17:48 2009 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 93B00106564A; Thu, 5 Mar 2009 05:17:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 520338FC14; Thu, 5 Mar 2009 05:17:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.3/8.14.3) with ESMTP id n255Hj0x095204; Thu, 5 Mar 2009 00:17:45 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.3/8.14.3) with ESMTP id n255HjSd057597; Thu, 5 Mar 2009 00:17:45 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 5E3C47302F; Thu, 5 Mar 2009 00:17:45 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20090305051745.5E3C47302F@freebsd-current.sentex.ca> Date: Thu, 5 Mar 2009 00:17:45 -0500 (EST) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on clamscanner4 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2009 05:17:49 -0000 TB --- 2009-03-05 04:40:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2009-03-05 04:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2009-03-05 04:40:00 - cleaning the object tree TB --- 2009-03-05 04:40:52 - cvsupping the source tree TB --- 2009-03-05 04:40:52 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/amd64/amd64/supfile TB --- 2009-03-05 04:41:00 - building world TB --- 2009-03-05 04:41:00 - MAKEOBJDIRPREFIX=/obj TB --- 2009-03-05 04:41:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2009-03-05 04:41:00 - TARGET=amd64 TB --- 2009-03-05 04:41:00 - TARGET_ARCH=amd64 TB --- 2009-03-05 04:41:00 - TZ=UTC TB --- 2009-03-05 04:41:00 - __MAKE_CONF=/dev/null TB --- 2009-03-05 04:41:00 - cd /src TB --- 2009-03-05 04:41:00 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 5 04:41:03 UTC 2009 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] cc -O2 -pipe -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -I/obj/amd64/src/lib/libarchive -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 -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c /src/lib/libarchive/archive_read_open_file.c cc -O2 -pipe -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -I/obj/amd64/src/lib/libarchive -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 -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c /src/lib/libarchive/archive_read_open_filename.c cc -O2 -pipe -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -I/obj/amd64/src/lib/libarchive -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 -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c /src/lib/libarchive/archive_read_open_memory.c cc -O2 -pipe -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -I/obj/amd64/src/lib/libarchive -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 -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c /src/lib/libarchive/archive_read_support_compression_all.c cc -O2 -pipe -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -I/obj/amd64/src/lib/libarchive -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 -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wno-pointer-sign -c /src/lib/libarchive/archive_read_support_compression_bzip2.c cc1: warnings being treated as errors /src/lib/libarchive/archive_read_support_compression_bzip2.c: In function 'bzip2_filter_read': /src/lib/libarchive/archive_read_support_compression_bzip2.c:265: warning: passing argument 3 of '__archive_read_filter_ahead' from incompatible pointer type *** Error code 1 Stop in /src/lib/libarchive. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2009-03-05 05:17:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2009-03-05 05:17:45 - ERROR: failed to build world TB --- 2009-03-05 05:17:45 - 1721.27 user 193.66 system 2264.48 real http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Mar 5 14:50:05 2009 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 463B4106567C for ; Thu, 5 Mar 2009 14:50:05 +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 22B718FC14 for ; Thu, 5 Mar 2009 14:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n25Eo5oj092201 for ; Thu, 5 Mar 2009 14:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n25Eo5b5092200; Thu, 5 Mar 2009 14:50:05 GMT (envelope-from gnats) Resent-Date: Thu, 5 Mar 2009 14:50:05 GMT Resent-Message-Id: <200903051450.n25Eo5b5092200@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, Li Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6684106564A for ; Thu, 5 Mar 2009 14:43:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 8B86C8FC0C for ; Thu, 5 Mar 2009 14:43:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n25EhuIl063999 for ; Thu, 5 Mar 2009 14:43:56 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n25Ehu9w063987; Thu, 5 Mar 2009 14:43:56 GMT (envelope-from nobody) Message-Id: <200903051443.n25Ehu9w063987@www.freebsd.org> Date: Thu, 5 Mar 2009 14:43:56 GMT From: Li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Thu, 05 Mar 2009 16:35:25 +0000 Cc: Subject: amd64/132336: ga-ma770ud3 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, 05 Mar 2009 14:50:05 -0000 >Number: 132336 >Category: amd64 >Synopsis: ga-ma770ud3 >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: Thu Mar 05 14:50:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Li >Release: 7.1 >Organization: >Environment: >Description: Realtek ALC888 audio chipset do not work with snd_hda driver. Ethernet 8111c work with re friver. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Thu Mar 5 19:09:17 2009 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C695210656D3; Thu, 5 Mar 2009 19:09:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 862568FC25; Thu, 5 Mar 2009 19:09:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n25J9GAP090118; Thu, 5 Mar 2009 19:09:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n25J9GOi090114; Thu, 5 Mar 2009 19:09:16 GMT (envelope-from linimon) Date: Thu, 5 Mar 2009 19:09:16 GMT Message-Id: <200903051909.n25J9GOi090114@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: linimon@FreeBSD.org X-Mailman-Approved-At: Thu, 05 Mar 2009 20:06:36 +0000 Cc: Subject: Re: kern/132336: [snd_hda] Realtek ALC888 audio chipset does not work with snd_hda driver. 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, 05 Mar 2009 19:09:35 -0000 Old Synopsis: ga-ma770ud3 New Synopsis: [snd_hda] Realtek ALC888 audio chipset does not work with snd_hda driver. Responsible-Changed-From-To: freebsd-amd64->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Thu Mar 5 19:08:09 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=132336 From owner-freebsd-amd64@FreeBSD.ORG Fri Mar 6 18:44:53 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E2FB1065670 for ; Fri, 6 Mar 2009 18:44:53 +0000 (UTC) (envelope-from krisp@mlode.com) Received: from imail.mlode.com (mail.mlode.com [216.86.176.88]) by mx1.freebsd.org (Postfix) with ESMTP id 543198FC14 for ; Fri, 6 Mar 2009 18:44:53 +0000 (UTC) (envelope-from krisp@mlode.com) Received: from ITKRIS ([216.86.176.50]) by imail.mlode.com (InterMail vK.4.04.00.00 201-232-137 license 2050c735484ddb873ae322ed9895e89d) with ESMTP id <20090306183451.TTHD27548.imail@ITKRIS> for ; Fri, 6 Mar 2009 10:34:51 -0800 From: "Kris Persson" To: Date: Fri, 6 Mar 2009 10:34:54 -0800 Message-ID: <014e01c99e8a$3e999da0$bbccd8e0$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acmeij5/TrC2NdraRGaYSIapAPF0dg== Content-Language: en-us X-Mailman-Approved-At: Fri, 06 Mar 2009 18:46:12 +0000 Subject: downgrade 7.1 to7.0 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: Fri, 06 Mar 2009 18:44:53 -0000 I am using "7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 08:58:24 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 " I would like to downgrade from freebsd 7.1.x to freebsd 7.0.x I am using a 3ware controller for my raid drives. I have never done a freebsd downgrade before and would like any recommended steps or how-to's so I can accomplish this without a wipe and reload. Thanks Kris From owner-freebsd-amd64@FreeBSD.ORG Sat Mar 7 20:00:15 2009 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A34DC1065677 for ; Sat, 7 Mar 2009 20:00:15 +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 7D9E58FC19 for ; Sat, 7 Mar 2009 20:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n27K0Fa0048213 for ; Sat, 7 Mar 2009 20:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n27K0F7D048212; Sat, 7 Mar 2009 20:00:15 GMT (envelope-from gnats) Resent-Date: Sat, 7 Mar 2009 20:00:15 GMT Resent-Message-Id: <200903072000.n27K0F7D048212@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, Sylwester Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66C78106566C for ; Sat, 7 Mar 2009 19:57:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 49B3D8FC1A for ; Sat, 7 Mar 2009 19:57:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n27JvnBg062311 for ; Sat, 7 Mar 2009 19:57:49 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n27JvncT062310; Sat, 7 Mar 2009 19:57:49 GMT (envelope-from nobody) Message-Id: <200903071957.n27JvncT062310@www.freebsd.org> Date: Sat, 7 Mar 2009 19:57:49 GMT From: Sylwester To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Sat, 07 Mar 2009 23:08:43 +0000 Cc: Subject: amd64/132394: isp(4) - bad underruns with QLogic qla2300 and 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, 07 Mar 2009 20:00:15 -0000 >Number: 132394 >Category: amd64 >Synopsis: isp(4) - bad underruns with QLogic qla2300 and amd64 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 07 20:00:15 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sylwester >Release: FreeBSD 7.1-RELEASE >Organization: >Environment: FreeBSD amd64.test.no-route.org 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan 1 08:58:24 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: If you're using the QLogic ISP2300 Fibre Channel HBA with isp(4) on FreeBSD 7.1-RELEASE amd64 you'll get a lot of bad underrun errors, cam_periph_alloc, sesasync, and passasync. Anyway it's possible to access the attached disks. A full description is attached below. Relevant 'dmesg' output: isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) (about 20 times) ses0 at isp0 bus 0 target 5 lun 0 ses0: Fixed Enclosure Services SCSI-3 device ses0: 100.000MB/s transfers WWNN 0x508002000008c768 WWPN 0x508002000008c769 PortID 0xd2 ses0: SCSI-3 SES Device da0 at isp0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 100.000MB/s transfers da0: Command Queueing Enabled da0: 239375MB (490240000 512 byte sectors: 255H 63S/T 30516C) da1 at isp0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 100.000MB/s transfers WWNN 0x20000011c616c721 WWPN 0x21000011c616c721 PortID 0xe8 da1: Command Queueing Enabled da1: 239375MB (490240000 512 byte sectors: 255H 63S/T 30516C) da2 at isp0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-3 device da2: 100.000MB/s transfers WWNN 0x2000001862b21a7e WWPN 0x2100001862b21a7e PortID 0xe4 da2: Command Queueing Enabled da2: 476837MB (976562500 512 byte sectors: 255H 63S/T 60788C) da3 at isp0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-3 device da3: 100.000MB/s transfers WWNN 0x20000000877be6fb WWPN 0x21000000877be6fb PortID 0xe2 da3: Command Queueing Enabled da3: 239375MB (490240000 512 byte sectors: 255H 63S/T 30516C) SMP: AP CPU #1 Launched! da4 at isp0 bus 0 target 4 lun 0 da4: Fixed Direct Access SCSI-3 device da4: 100.000MB/s transfers WWNN 0x200000008771ebd9 WWPN 0x210000008771ebd9 PortID 0xe1 da4: Command Queueing Enabled da4: 239375MB (490240000 512 byte sectors: 255H 63S/T 30516C) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) cam_periph_alloc: attempt to re-allocate valid device ses0 rejected sesasync: Unable to probe new device due to status 0x6 cam_periph_alloc: attempt to re-allocate valid device pass5 rejected passasync: Unable to attach new device due to status 0x6: CCB request was invalid isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) cam_periph_alloc: attempt to re-allocate valid device ses0 rejected sesasync: Unable to probe new device due to status 0x6 cam_periph_alloc: attempt to re-allocate valid device pass5 rejected passasync: Unable to attach new device due to status 0x6: CCB request was invalid isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) cam_periph_alloc: attempt to re-allocate valid device ses0 rejected sesasync: Unable to probe new device due to status 0x6 cam_periph_alloc: attempt to re-allocate valid device pass5 rejected passasync: Unable to attach new device due to status 0x6: CCB request was invalid isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) isp0: bad underrun for 5.0 (count 255, resid 127, status not marked) cam_periph_alloc: attempt to re-allocate valid device ses0 rejected sesasync: Unable to probe new device due to status 0x6 cam_periph_alloc: attempt to re-allocate valid device pass5 rejected passasync: Unable to attach new device due to status 0x6: CCB request was invalid Relevant 'pciconf -lv' output: isp0@pci0:1:8:0: class=0x0c0400 card=0x00091077 chip=0x23001077 rev=0x01 hdr=0x00 vendor = 'QLogic Corporation' device = 'QLA2300 SANblade 2300 64-bit FC-AL Adapter' class = serial bus subclass = Fibre Channel >How-To-Repeat: Perform a basic FreeBSD 7.1-RELEASE installation >Fix: >Release-Note: >Audit-Trail: >Unformatted: