From owner-freebsd-amd64@FreeBSD.ORG Sun May 21 18:00:49 2006 Return-Path: X-Original-To: freebsd-amd64@hub.freebsd.org Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A87D16A478 for ; Sun, 21 May 2006 18:00:49 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FE2F43D45 for ; Sun, 21 May 2006 18:00:48 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4LI0mWK064371 for ; Sun, 21 May 2006 18:00:48 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4LI0lAv064370; Sun, 21 May 2006 18:00:47 GMT (envelope-from gnats) Resent-Date: Sun, 21 May 2006 18:00:47 GMT Resent-Message-Id: <200605211800.k4LI0lAv064370@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, Roland Smith Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 878D216A4D2 for ; Sun, 21 May 2006 17:58:11 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id F205943D46 for ; Sun, 21 May 2006 17:58:10 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr13.xs4all.nl (8.13.6/8.13.6) with ESMTP id k4LHw99C071651; Sun, 21 May 2006 19:58:09 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 2981BB863; Sun, 21 May 2006 19:58:09 +0200 (CEST) Message-Id: <20060521175809.2981BB863@slackbox.xs4all.nl> Date: Sun, 21 May 2006 19:58:09 +0200 (CEST) From: Roland Smith To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Ulrich Spoerlein Subject: amd64/97566: compilation of /usr/src/tools/tools/recoverdisk fails on amd64. X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roland Smith List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 May 2006 18:01:01 -0000 >Number: 97566 >Category: amd64 >Synopsis: compilation of /usr/src/tools/tools/recoverdisk fails on amd64. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 21 18:00:47 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Roland Smith >Release: FreeBSD 6.1-STABLE amd64 >Organization: >Environment: System: FreeBSD slackbox.xs4all.nl 6.1-STABLE FreeBSD 6.1-STABLE #0: Tue May 9 22:46:51 CEST 2006 rsmith@slackbox.xs4all.nl:/usr/obj/usr/src/sys/RFS amd64 >Description: Compilation of the recoverdisk tool fails on amd64: slackbox# make cc -O2 -fno-strict-aliasing -pipe -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 -c recoverdisk.c recoverdisk.c: In function `main': recoverdisk.c:231: warning: comparison between signed and unsigned recoverdisk.c:231: warning: signed and unsigned type in conditional expression recoverdisk.c:233: warning: comparison between signed and unsigned recoverdisk.c:233: warning: signed and unsigned type in conditional expression recoverdisk.c:235: warning: comparison between signed and unsigned recoverdisk.c:235: warning: signed and unsigned type in conditional expression recoverdisk.c:237: warning: comparison between signed and unsigned *** Error code 1 Stop in /usr/src/tools/tools/recoverdisk. This is due to the -W flag and the difference between size_t and off_t on amd64 (and possibly other 64-bit platforms). On i386 size_t and off_t totally overlap, while on amd64 they only partially overlap. >How-To-Repeat: cd /usr/src/tools/tools/recoverdisk make >Fix: Apply the following patch, tested on i386 and amd64: -------- recoverdisk.c patch -------- --- recoverdisk.c.orig Sun May 21 19:33:38 2006 +++ recoverdisk.c Sun May 21 19:41:45 2006 @@ -228,13 +228,13 @@ if (lp == NULL) break; while (lp->len > 0 && !aborting) { - i = MIN(lp->len, bigsize); + i = MIN(lp->len, (off_t)bigsize); if (lp->state == 1) - i = MIN(lp->len, medsize); + i = MIN(lp->len, (off_t)medsize); if (lp->state > 1) - i = MIN(lp->len, minsize); + i = MIN(lp->len, (off_t)minsize); time(&t2); - if (t1 != t2 || lp->len < bigsize) { + if (t1 != t2 || lp->len < (off_t)bigsize) { printf("\r%13jd %7zu %13jd %5d %13jd %13jd %.7f", (intmax_t)lp->start, i, -------- recoverdisk.c patch -------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Mon May 22 11:02:41 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CFB616A567 for ; Mon, 22 May 2006 11:02:41 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A799143D4C for ; Mon, 22 May 2006 11:02:40 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4MB2evL034803 for ; Mon, 22 May 2006 11:02:40 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4MB2dnv034799 for freebsd-amd64@freebsd.org; Mon, 22 May 2006 11:02:39 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 22 May 2006 11:02:39 GMT Message-Id: <200605221102.k4MB2dnv034799@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Cc: Subject: Current problem reports assigned to you 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, 22 May 2006 11:02:44 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [2005/08/09] amd64/84693 amd64 Keyboard not recognized during first step o [2005/11/17] amd64/89202 amd64 [ufs] [panic] Kernel crash when accessing o [2006/03/01] amd64/93961 amd64 Problem in bounce buffer handling in sys/ o [2006/05/09] amd64/97019 amd64 Cannot load the kernel after installation 4 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/07/28] amd64/69704 amd64 ext2/ext3 unstable in amd64 o [2004/07/28] amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o [2004/09/12] amd64/71644 amd64 [panic] amd64 5.3-BETA4 crash when heavy o [2004/10/28] amd64/73252 amd64 ad6: WARNING - READ_DMA interrupt was see o [2004/10/30] amd64/73322 amd64 [msdosfs] [hang] unarchiving /etc to msdo o [2004/11/07] amd64/73650 amd64 5.3-release panics on boot o [2004/11/10] amd64/73775 amd64 Kernel panic (trap 12) when booting with o [2004/12/05] amd64/74747 amd64 System panic on shutdown when process wil o [2005/01/12] amd64/76136 amd64 system halts before reboot o [2005/01/17] amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Tra o [2005/03/04] amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/p o [2005/03/14] amd64/78848 amd64 [sis] sis driver on FreeBSD 5.x does not o [2005/04/12] amd64/79813 amd64 Will not install/run on amd64 nForce 4 pl o [2005/04/19] amd64/80114 amd64 kldload snd_ich causes interrupt storm wh o [2005/05/06] amd64/80691 amd64 amd64 kernel hangs on load o [2005/05/14] amd64/81037 amd64 SATA problem o [2005/05/28] amd64/81602 amd64 SATA crashes with parallel pcm access o [2005/06/09] amd64/82071 amd64 incorrect -march's parameter to build 32b o [2005/06/19] amd64/82425 amd64 [fxp] fxp0: device timeout, fxp interface o [2005/06/23] amd64/82555 amd64 Kernel Panic - after i connect to my "amd o [2005/07/05] amd64/83005 amd64 Memory Occupied during installation of th o [2005/08/12] amd64/84832 amd64 Installation crashes just at boot AMD64/ o [2005/08/14] amd64/84930 amd64 [msdosfs] something wrong with msdosfs on o [2005/08/29] amd64/85431 amd64 AMD64 has short but temporary freezes (ha o [2005/08/29] amd64/85451 amd64 [hang] 6.0-BETA3 lockups on AMD64 (PREEMP o [2005/09/13] amd64/86080 amd64 [radeon] [hang] radeon DRI causes system o [2005/09/23] amd64/86503 amd64 [atapicam] [panic] k3b crash the system l o [2005/10/09] amd64/87156 amd64 First Installation: Kernel crashes o [2005/10/11] amd64/87258 amd64 [smp] [boot] cannot boot with SMP and Are o [2005/10/12] amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powe o [2005/10/12] amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD a [2005/10/12] amd64/87328 amd64 [boot] BTX halted error o [2005/10/12] amd64/87348 amd64 amd64+smp+startkde always crashing o [2005/10/15] amd64/87472 amd64 I downloaded 5.4 and went to install it, o [2005/10/16] amd64/87514 amd64 6.0-CURRENT freezes machine using >4GB on o [2005/10/19] amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron o [2005/10/25] amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock c o [2005/10/31] amd64/88299 amd64 swapcontext fails with errno 0 o [2005/11/06] amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not b f [2005/11/09] amd64/88746 amd64 Buffer problem with SSH2 under amd64 arch o [2005/11/10] amd64/88790 amd64 kernel panic on first boot (after the Fre o [2005/11/24] amd64/89501 amd64 System crashes on install using ftp on lo o [2005/11/24] amd64/89503 amd64 Cant Boot Installation Disk o [2005/11/25] amd64/89546 amd64 [geom] GEOM error o [2005/11/25] amd64/89549 amd64 [amd64] nve timeouts on 6.0-release o [2005/11/25] amd64/89550 amd64 [amd64] sym0: VTOBUS failed (6.0 Release) o [2005/12/05] amd64/89968 amd64 [ata] Asus A8N-E MediaShield RAID problem o [2006/01/06] amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr o [2006/01/08] amd64/91492 amd64 BTX halted o [2006/01/26] amd64/92337 amd64 FreeBsd 6.0 Release Intel Pro 1000 MT em1 o [2006/02/06] amd64/92889 amd64 xdr double buffer overflow o [2006/02/07] amd64/92991 amd64 FreeBSD(amd64) freezes when primary disk o [2006/02/08] amd64/93065 amd64 Running make depend on GENERIC kernel fai o [2006/02/14] amd64/93325 amd64 mount_ufs fails mounting Nero UFS DVD+RW o [2006/02/16] amd64/93413 amd64 lpd does not remove lock file from /var/s o [2006/02/17] amd64/93469 amd64 uninitialised struct stat in lpd prevents o [2006/03/19] amd64/94677 amd64 panic in amd64 install at non-root user c o [2006/03/24] amd64/94896 amd64 Where support VESA Modes for AMD64 kernel o [2006/03/27] amd64/94989 amd64 BTX Halts on Sun Fire X2100 w/6.1-BETA4 ( o [2006/03/28] amd64/95056 amd64 Nvidia Nforce ETH Driver -> Timeout Error o [2006/03/31] amd64/95167 amd64 driver for SuperMicro H8DAR-T (Adaptec AI o [2006/04/06] amd64/95414 amd64 kernel crashes during install o [2006/04/06] amd64/95418 amd64 pthread segmentation fault o [2006/04/09] amd64/95554 amd64 undetected sata drive on 6.1, detected on o [2006/04/16] amd64/95888 amd64 kernel: ad2: TIMEOUT - WRITE_DMA retrying o [2006/04/27] amd64/96400 amd64 FreeBSD 6.0 Bootin Conflict between Broad o [2006/05/10] amd64/97075 amd64 Panic, Trap 12 o [2006/05/11] amd64/97123 amd64 Vinum isn't in included in kernel o [2006/05/12] amd64/97184 amd64 Error compiling 6.1 zlib module (kernel) o [2006/05/16] amd64/97337 amd64 xorg reboots system if dri module is enab o [2006/05/19] amd64/97504 amd64 IPFW Rules bug 71 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/01/11] amd64/61209 amd64 ppc0: cannot reserve I/O port range o [2004/02/21] amd64/63188 amd64 [ti] ti(4) broken on amd64 o [2004/07/28] amd64/69705 amd64 IPC problem (msq_queues) o [2004/12/02] amd64/74608 amd64 [mpt] [hang] mpt hangs 5 minutes when boo o [2004/12/07] amd64/74811 amd64 [nfs] df, nfs mount, negative Avail -> 32 o [2005/03/17] amd64/78954 amd64 kerberos 5 failed to build o [2005/06/18] amd64/82399 amd64 MSI K8N Neo4 Platinium is not supported o [2005/08/07] amd64/84652 amd64 kbdmap -r dumps core o [2005/08/20] amd64/85144 amd64 Asus K8S-MX mobo, integ LAN not recognize o [2005/09/06] amd64/85812 amd64 "Rebooting..." on serial console appears o [2005/09/07] amd64/85820 amd64 1.5 times slower performance with SCHED_U o [2005/10/23] amd64/87882 amd64 emu10k1 and APCI on amd64 is just noisy o [2005/11/09] amd64/88730 amd64 kernel panics during booting from the ins o [2006/01/02] amd64/91195 amd64 FreeBSD 6.0(amd64) and Asus A8R-MVP o [2006/01/30] amd64/92527 amd64 no driver for "CICADA VSC 8201 Gigabit LA o [2006/02/07] amd64/93002 amd64 amd64 (6.0) coredumps at unpredictable ti o [2006/02/09] amd64/93090 amd64 NIC on GA-K8NF-9 motherboard is recognize o [2006/02/28] amd64/93930 amd64 Page fault on `kldunload snd_driver` o [2006/04/03] amd64/95282 amd64 patch: fix ed for RELENG_5 amd64 so that o [2006/04/12] amd64/95651 amd64 CANT INSTALL o [2006/04/29] amd64/96516 amd64 FreeBSD/amd64 intermittent Network-Proble o [2006/05/19] amd64/97489 amd64 nForce 410 ATA controller dma time out o [2006/05/21] amd64/97566 amd64 compilation of /usr/src/tools/tools/recov 23 problems total. From owner-freebsd-amd64@FreeBSD.ORG Mon May 22 16:22:11 2006 Return-Path: X-Original-To: freebsd-amd64@FreeBSD.org Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 812CF16AC52 for ; Mon, 22 May 2006 16:22:11 +0000 (UTC) (envelope-from support@richdex.com) Received: from richdex.com (dsl-165-16-51.telkomadsl.co.za [165.165.16.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 210F643D67 for ; Mon, 22 May 2006 16:22:02 +0000 (GMT) (envelope-from support@richdex.com) Received: from Spooler by richdex.com (Mercury/32 v4.01b) ID MO007AA4; 22 May 2006 18:21:55 +0200 Received: from spooler by richdex.com (Mercury/32 v4.01b); 22 May 2006 16:46:26 +0200 Received: from Laptop (192.168.0.1) by richdex.com (Mercury/32 v4.01b) with ESMTP ID MG007A93; 22 May 2006 16:46:20 +0200 From: "Richdex" To: Date: Mon, 22 May 2006 16:46:33 +0200 Message-ID: <7f0801c67dae$854e71d0$1700a8c0@Laptop> MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_NextPart_000_7F09_01C67DBF.48D741D0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Notice: Please Update your Richdex Online Listing! 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, 22 May 2006 16:22:13 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_7F09_01C67DBF.48D741D0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Dear Customer, This communication should be dealt with by your marketing dept. Please update your directory listing at Richdex as soon as possible. We have listed your website/homepage for no charge on our Online Directory in an effort to provide you with as much exposure as is possible. Richdex is the world's largest human edited online directory and search engine and can boost your website/homepage exposure immediately. To enjoy the full power of Richdex it is essential that you update your listing without further delay. Please click here to go to Richdex, search for your website/homepage listing and update. It's that easy. For assistance click here. Thank you Trevor Richardson Managing Director - Richdex.com Important restrictions, qualifications and disclaimers ("the Disclaimer") apply to this email. To read this click on the following address or copy into your Internet browser: http://www.richdex.com/rich/dex/en/index.php/Richdex:Email_disclaimer The Disclaimer forms part of the content of this email in terms of section 11 of the Electronic Communications and Transactions Act, 25 of 2002. If you are unable to access the Disclaimer, send a blank e-mail to disclaimer@richdex.com and we will send you a copy of the Disclaimer. http://www.richdex.com http://www.richdex.com/rich/dex/en/index.php/Help:Contents ------=_NextPart_000_7F09_01C67DBF.48D741D0-- From owner-freebsd-amd64@FreeBSD.ORG Tue May 23 00:18:52 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75BDA16AA8C for ; Tue, 23 May 2006 00:18:52 +0000 (UTC) (envelope-from ohartman@mail.uni-mainz.de) Received: from mailgate2.zdv.Uni-Mainz.DE (mailgate2.zdv.Uni-Mainz.DE [134.93.178.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5E6943D46 for ; Tue, 23 May 2006 00:18:51 +0000 (GMT) (envelope-from ohartman@mail.uni-mainz.de) Received: from [192.168.1.128] (e178062218.adsl.alicedsl.de [85.178.62.218]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailgate2.zdv.Uni-Mainz.DE (Postfix) with ESMTP id 294DC30008CD for ; Tue, 23 May 2006 02:18:50 +0200 (CEST) Message-ID: <4472551C.5020803@mail.uni-mainz.de> Date: Tue, 23 May 2006 02:19:40 +0200 From: "O. Hartmann" User-Agent: Thunderbird 1.5.0.2 (X11/20060517) MIME-Version: 1.0 To: freebsd-amd64@freebsd.org X-Enigmail-Version: 0.94.0.0 OpenPGP: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at uni-mainz.de Subject: nve0: device timeout 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, 23 May 2006 00:18:56 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello. Running a FreeBSD 6.1-STABLE/AMD box (most recently cvsupdated and built world) based on an ASUS A8N32-SLI Deluxe I have trouble with the nve0 NIC. I already searched the mailinglists and found a lot of posts, but no solution. My box is connected to a DSL router. Whenever the nve0-NIC reports ths timeout, mouse pointer get stuck for several seconds or the last typed letter is repeated endless or other weird keyboard malfunctions occur. The longer the box runs, the more likely those nve0-timeouts are. Rebooting fix the problem for a while but after heavy network load the desribed baheviour occurs after a few minutes. Is there a solution on its way? What is about the Berkeley native nfe-code? oliver P.S. If you need more details, especially dmesg output, let me know! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEclUZ9PZHcThI6nsRAqB1AJ9ybynmQrEU33NQSFjk7VNc/7VXzgCgi8zx AXIrtbrrETR+g7AVaINI0Uk= =CES2 -----END PGP SIGNATURE----- From owner-freebsd-amd64@FreeBSD.ORG Tue May 23 03:05:53 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6606C16A42D for ; Tue, 23 May 2006 03:05:53 +0000 (UTC) (envelope-from nathanw@uchicago.edu) Received: from relay01.uchicago.edu (relay01.uchicago.edu [128.135.12.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id E542D43D48 for ; Tue, 23 May 2006 03:05:52 +0000 (GMT) (envelope-from nathanw@uchicago.edu) Received: from [128.135.116.74] (stony-116-074.rh.uchicago.edu [128.135.116.74]) by relay01.uchicago.edu (8.12.10/8.12.9) with ESMTP id k4N35p8V027536; Mon, 22 May 2006 22:05:51 -0500 (CDT) Message-ID: <44727C0E.2080905@uchicago.edu> Date: Mon, 22 May 2006 22:05:50 -0500 From: Nathan Whitehorn User-Agent: Thunderbird 1.5.0.2 (X11/20060424) MIME-Version: 1.0 To: "O. Hartmann" References: <4472551C.5020803@mail.uni-mainz.de> In-Reply-To: <4472551C.5020803@mail.uni-mainz.de> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-amd64@freebsd.org Subject: Re: nve0: device timeout 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, 23 May 2006 03:05:54 -0000 There is currently a fix in -CURRENT for this, which I believe will be merged into the RELENG_6 branch in a little less than 2 weeks. If you go onto cvsweb.freebsd.org and grab the new src/sys/dev/nve/if_nve.c and overwrite the current one with it, the problem should go away. Let me know if it works, and especially let me know if you encounter any problems. -Nathan O. Hartmann wrote: > Hello. > Running a FreeBSD 6.1-STABLE/AMD box (most recently cvsupdated and built > world) based on an ASUS A8N32-SLI Deluxe I have trouble with the nve0 > NIC. I already searched the mailinglists and found a lot of posts, but > no solution. > > My box is connected to a DSL router. Whenever the nve0-NIC reports ths > timeout, mouse pointer get stuck for several seconds or the last typed > letter is repeated endless or other weird keyboard malfunctions occur. > > The longer the box runs, the more likely those nve0-timeouts are. > Rebooting fix the problem for a while but after heavy network load the > desribed baheviour occurs after a few minutes. > > Is there a solution on its way? What is about the Berkeley native nfe-code? > > oliver > > P.S. If you need more details, especially dmesg output, let me know! _______________________________________________ freebsd-amd64@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org" From owner-freebsd-amd64@FreeBSD.ORG Tue May 23 19:08:34 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6F2016A52D for ; Tue, 23 May 2006 19:08:34 +0000 (UTC) (envelope-from ohartman@mail.uni-mainz.de) Received: from mailgate1.zdv.Uni-Mainz.DE (mailgate1.zdv.Uni-Mainz.DE [134.93.178.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54DB043D49 for ; Tue, 23 May 2006 19:08:34 +0000 (GMT) (envelope-from ohartman@mail.uni-mainz.de) Received: from [192.168.1.128] (e178005013.adsl.alicedsl.de [85.178.5.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailgate1.zdv.Uni-Mainz.DE (Postfix) with ESMTP id A4452300113A; Tue, 23 May 2006 21:08:32 +0200 (CEST) Message-ID: <44735DE4.20103@mail.uni-mainz.de> Date: Tue, 23 May 2006 21:09:24 +0200 From: "O. Hartmann" User-Agent: Thunderbird 1.5.0.2 (X11/20060517) MIME-Version: 1.0 To: Nathan Whitehorn References: <4472551C.5020803@mail.uni-mainz.de> <44727C0E.2080905@uchicago.edu> In-Reply-To: <44727C0E.2080905@uchicago.edu> X-Enigmail-Version: 0.94.0.0 OpenPGP: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at uni-mainz.de Cc: freebsd-amd64@freebsd.org Subject: Re: nve0: device timeout 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, 23 May 2006 19:08:36 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 All right, will go for a try ... but it seems we also need src/sys/contrib/dev/nve/nvenet_version.h? Nathan Whitehorn wrote: > There is currently a fix in -CURRENT for this, which I believe will be > merged into the RELENG_6 branch in a little less than 2 weeks. If you go > onto cvsweb.freebsd.org and grab the new src/sys/dev/nve/if_nve.c and > overwrite the current one with it, the problem should go away. > > Let me know if it works, and especially let me know if you encounter any > problems. > -Nathan > > O. Hartmann wrote: >> Hello. >> Running a FreeBSD 6.1-STABLE/AMD box (most recently cvsupdated and built >> world) based on an ASUS A8N32-SLI Deluxe I have trouble with the nve0 >> NIC. I already searched the mailinglists and found a lot of posts, but >> no solution. >> >> My box is connected to a DSL router. Whenever the nve0-NIC reports ths >> timeout, mouse pointer get stuck for several seconds or the last typed >> letter is repeated endless or other weird keyboard malfunctions occur. >> >> The longer the box runs, the more likely those nve0-timeouts are. >> Rebooting fix the problem for a while but after heavy network load the >> desribed baheviour occurs after a few minutes. >> >> Is there a solution on its way? What is about the Berkeley native nfe-code? >> >> oliver >> >> P.S. If you need more details, especially dmesg output, let me know! > _______________________________________________ > freebsd-amd64@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 > To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEc13i9PZHcThI6nsRAi3bAJwPWqNO2Cmkg+bl3VJMJ7XSzwKXKQCgg2lu 3EfKMbPqDvDpB2j1yPvOBDQ= =xaiO -----END PGP SIGNATURE----- From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 04:42:13 2006 Return-Path: X-Original-To: freebsd-amd64@hub.freebsd.org Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE49416A422; Wed, 24 May 2006 04:42:13 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E2A43D45; Wed, 24 May 2006 04:42:13 +0000 (GMT) (envelope-from grog@FreeBSD.org) Received: from freefall.freebsd.org (grog@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4O4gD2K013612; Wed, 24 May 2006 04:42:13 GMT (envelope-from grog@freefall.freebsd.org) Received: (from grog@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4O4gDJY013608; Wed, 24 May 2006 04:42:13 GMT (envelope-from grog) Date: Wed, 24 May 2006 04:42:13 GMT From: Greg Lehey Message-Id: <200605240442.k4O4gDJY013608@freefall.freebsd.org> To: fbug1@merdin.com, grog@FreeBSD.org, freebsd-amd64@FreeBSD.org, grog@FreeBSD.org Cc: Subject: Re: amd64/95418: pthread segmentation fault 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, 24 May 2006 04:42:13 -0000 Synopsis: pthread segmentation fault State-Changed-From-To: open->feedback State-Changed-By: grog State-Changed-When: Wed May 24 03:59:44 UTC 2006 State-Changed-Why: Feedback solicited from submitter. Responsible-Changed-From-To: freebsd-amd64->grog Responsible-Changed-By: grog Responsible-Changed-When: Wed May 24 03:59:44 UTC 2006 Responsible-Changed-Why: grog is looking at this PR and also MySQL BUG#19496, which appears to be the same thing. http://www.freebsd.org/cgi/query-pr.cgi?pr=95418 From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 12:13:17 2006 Return-Path: X-Original-To: freebsd-amd64@hub.freebsd.org Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E2F416A49A; Wed, 24 May 2006 12:13:17 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD8CB43D4C; Wed, 24 May 2006 12:13:16 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4OCDGb5044410; Wed, 24 May 2006 12:13:16 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4OCDGsu044406; Wed, 24 May 2006 12:13:16 GMT (envelope-from glebius) Date: Wed, 24 May 2006 12:13:16 GMT From: Gleb Smirnoff Message-Id: <200605241213.k4OCDGsu044406@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-amd64@FreeBSD.org, sos@FreeBSD.org Cc: Subject: Re: kern/95554: [ata] undetected sata drive on 6.1, detected on 6.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: Wed, 24 May 2006 12:13:22 -0000 Old Synopsis: undetected sata drive on 6.1, detected on 6.0 New Synopsis: [ata] undetected sata drive on 6.1, detected on 6.0 Responsible-Changed-From-To: freebsd-amd64->sos Responsible-Changed-By: glebius Responsible-Changed-When: Wed May 24 12:11:18 UTC 2006 Responsible-Changed-Why: Assign to ATA driver maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=95554 From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 18:34:13 2006 Return-Path: X-Original-To: amd64@freebsd.org Delivered-To: freebsd-amd64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2F7216A43D for ; Wed, 24 May 2006 18:34:13 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4060E43D48 for ; Wed, 24 May 2006 18:34:13 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [IPv6:::1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k4OIVxNV014256 for ; Wed, 24 May 2006 12:31:59 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 24 May 2006 12:31:59 -0600 (MDT) Message-Id: <20060524.123159.59667797.imp@bsdimp.com> To: amd64@freebsd.org From: Warner Losh X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: firefox? 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, 24 May 2006 18:34:15 -0000 Anybody using firefox on -current having just built it? Both firefox and firefox-devel exit immediately for me. Warner From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 20:03:21 2006 Return-Path: X-Original-To: amd64@freebsd.org Delivered-To: freebsd-amd64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4072916A441 for ; Wed, 24 May 2006 20:03:21 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id A215843D45 for ; Wed, 24 May 2006 20:03:20 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k4OK3BG8020962; Wed, 24 May 2006 14:03:17 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4474BBF5.4040201@samsco.org> Date: Wed, 24 May 2006 14:03:01 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Warner Losh References: <20060524.123159.59667797.imp@bsdimp.com> In-Reply-To: <20060524.123159.59667797.imp@bsdimp.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: amd64@freebsd.org Subject: Re: firefox? 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, 24 May 2006 20:03:22 -0000 Warner Losh wrote: > Anybody using firefox on -current having just built it? > > Both firefox and firefox-devel exit immediately for me. > > Warner I use mozilla regularly on amd64. Scott From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 20:06:53 2006 Return-Path: X-Original-To: amd64@freebsd.org Delivered-To: freebsd-amd64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0851C16A435 for ; Wed, 24 May 2006 20:06:53 +0000 (UTC) (envelope-from geekout@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 609C543D53 for ; Wed, 24 May 2006 20:06:52 +0000 (GMT) (envelope-from geekout@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so2289871uge for ; Wed, 24 May 2006 13:06:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NKKlWSJmyk1ag/510hMXf4bLRfLpRweX/C3qeqfY6oqqLi6FaBpE253FMyR/FaDyc964yDHEBWpG8djuQDYfrtOR0ykJGBZ0DkYdjIKnP4dGzMV3PlLpBcTF8SZg0SnxIftSsx7Xr1DDMGK2gTu2ND30s1zFpRXl59YsuHNH01c= Received: by 10.78.17.1 with SMTP id 1mr1924386huq; Wed, 24 May 2006 13:06:49 -0700 (PDT) Received: by 10.78.52.6 with HTTP; Wed, 24 May 2006 13:06:49 -0700 (PDT) Message-ID: <6e01203b0605241306k3834b49fl44900943979baf85@mail.gmail.com> Date: Wed, 24 May 2006 10:06:49 -1000 From: "Tyler Gee" To: "Scott Long" In-Reply-To: <4474BBF5.4040201@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060524.123159.59667797.imp@bsdimp.com> <4474BBF5.4040201@samsco.org> Cc: amd64@freebsd.org, Warner Losh Subject: Re: firefox? 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, 24 May 2006 20:06:53 -0000 Sometimes you have to run it once as root although I thought that was fixed. Still, run it as sudo once, and if it works, then chown -R the .mozilla directory. Tyler On 5/24/06, Scott Long wrote: > Warner Losh wrote: > > Anybody using firefox on -current having just built it? > > > > Both firefox and firefox-devel exit immediately for me. > > > > Warner > > I use mozilla regularly on amd64. > > Scott > > _______________________________________________ > freebsd-amd64@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 > To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org" > -- ~Tyler From owner-freebsd-amd64@FreeBSD.ORG Wed May 24 21:19:14 2006 Return-Path: X-Original-To: amd64@freebsd.org Delivered-To: freebsd-amd64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4295E16AD85 for ; Wed, 24 May 2006 21:19:14 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id C514643D66 for ; Wed, 24 May 2006 21:19:13 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [IPv6:::1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k4OLHKZ5015950; Wed, 24 May 2006 15:17:21 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 24 May 2006 15:17:20 -0600 (MDT) Message-Id: <20060524.151720.28800080.imp@bsdimp.com> To: geekout@gmail.com From: Warner Losh In-Reply-To: <6e01203b0605241306k3834b49fl44900943979baf85@mail.gmail.com> References: <20060524.123159.59667797.imp@bsdimp.com> <4474BBF5.4040201@samsco.org> <6e01203b0605241306k3834b49fl44900943979baf85@mail.gmail.com> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: amd64@freebsd.org Subject: Re: firefox? 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, 24 May 2006 21:19:16 -0000 > Sometimes you have to run it once as root although I thought that was > fixed. Still, run it as sudo once, and if it works, then chown -R the > .mozilla directory. sudo firefox-devel sudo chown -R imp firefox-devel did the trick for me. Warner From owner-freebsd-amd64@FreeBSD.ORG Thu May 25 10:53:55 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4778016A420 for ; Thu, 25 May 2006 10:53:55 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id CED5543D45 for ; Thu, 25 May 2006 10:53:54 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0IZT00FR2I9TMW40@osl1smout1.broadpark.no> for freebsd-amd64@freebsd.org; Thu, 25 May 2006 12:53:53 +0200 (CEST) Received: from kg-work.kg4.no ([80.202.172.162]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0IZT005GRI9S7600@osl1sminn1.broadpark.no> for freebsd-amd64@freebsd.org; Thu, 25 May 2006 12:53:53 +0200 (CEST) Date: Thu, 25 May 2006 12:53:52 +0200 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH To: freebsd-amd64@freebsd.org Message-id: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.17; i386-portbld-freebsd5.5) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: boinc-setiathome-enhanced-5.12 crashes on 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: Thu, 25 May 2006 10:53:55 -0000 Hello, Is it just me, or does the new setiathome client always crash / core dump on amd64? One machine runs the old client: boinc-setiathome-4.18 and everything works fine there. root@kg-quiet# uname -a FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #5: Wed May 10 01:07:01 CEST 2006 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 The other machine runs the new client: boinc-setiathome-enhanced-5.12 and I see in /var/log/messages: May 25 11:12:30 kg-fil kernel: pid 80114 (setiathome-5.12.i38), uid 1002: exited on signal 11 (core dumped) May 25 11:22:46 kg-fil kernel: pid 80136 (setiathome-5.12.i38), uid 1002: exited on signal 11 (core dumped) May 25 11:33:02 kg-fil kernel: pid 80156 (setiathome-5.12.i38), uid 1002: exited on signal 11 (core dumped) May 25 11:43:18 kg-fil kernel: pid 80163 (setiathome-5.12.i38), uid 1002: exited on signal 11 (core dumped) root@kg-fil# uname -a FreeBSD kg-fil.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #8: Sun May 7 22:51:56 CEST 2006 root@kg-fil.kg4.no:/usr/obj/usr/src/sys/FIL60 amd64 Both machines run the newest boinc client: boinc-client-5.4.9 and both machines run 6.1-stable. Has anyone else seen / reported this? Or should I just send-pr it? Have a nice day. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-amd64@FreeBSD.ORG Thu May 25 11:38:17 2006 Return-Path: X-Original-To: freebsd-amd64@FreeBSD.org Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED9C916A423 for ; Thu, 25 May 2006 11:38:17 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from e0-a11.b1.lan.prg.vol.cz (e0-a11.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF1F843D4C for ; Thu, 25 May 2006 11:38:16 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by e0-a11.b1.lan.prg.vol.cz (8.13.6/8.13.6) with ESMTP id k4PBcA1p027670; Thu, 25 May 2006 13:38:10 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.13.6/8.13.6/Submit) id k4PBc5E6027669; Thu, 25 May 2006 13:38:05 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Torfinn Ingolfsen In-Reply-To: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-9IGvsm6LRJo81+NizC63" Date: Thu, 25 May 2006 13:38:04 +0200 Message-Id: <1148557084.25760.27.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Cc: freebsd-amd64@FreeBSD.org Subject: Re: boinc-setiathome-enhanced-5.12 crashes on amd64? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 May 2006 11:38:18 -0000 --=-9IGvsm6LRJo81+NizC63 Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Torfinn Ingolfsen p=ED=B9e v =E8t 25. 05. 2006 v 12:53 +0200: > Hello, >=20 > Is it just me, or does the new setiathome client always crash / core > dump on amd64? > One machine runs the old client: boinc-setiathome-4.18 and everything > works fine there. > root@kg-quiet# uname -a > FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #5: Wed May 10 01:0= 7:01 CEST 2006 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 >=20 >=20 > The other machine runs the new client: boinc-setiathome-enhanced-5.12 > and I see in /var/log/messages: > May 25 11:12:30 kg-fil kernel: pid 80114 (setiathome-5.12.i38), uid 1002:= exited on signal 11 (core dumped) > May 25 11:22:46 kg-fil kernel: pid 80136 (setiathome-5.12.i38), uid 1002:= exited on signal 11 (core dumped) > May 25 11:33:02 kg-fil kernel: pid 80156 (setiathome-5.12.i38), uid 1002:= exited on signal 11 (core dumped) > May 25 11:43:18 kg-fil kernel: pid 80163 (setiathome-5.12.i38), uid 1002:= exited on signal 11 (core dumped) >=20 > root@kg-fil# uname -a > FreeBSD kg-fil.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #8: Sun May 7 22:51:= 56 CEST 2006 root@kg-fil.kg4.no:/usr/obj/usr/src/sys/FIL60 amd64 >=20 > Both machines run the newest boinc client: boinc-client-5.4.9 and both ma= chines run 6.1-stable. >=20 > Has anyone else seen / reported this? Or should I just send-pr it? Looks like this will need same hack as boinc-einsteinathome needed: %%AMD64%% IMPORTANT NOTICE FOR AMD64 USERS RUNNING 6.X: %%AMD64%% %%AMD64%% You have to have this line in /etc/libmap32.conf: %%AMD64%% libpthread.so.1 libc_r.so.5 %%AMD64%% before you attach the project. Otherwise it will not work. Please try that out. The rationale behind are binary incompatible threading libraries between 5.X and 6.X when running on amd64 in 32-bit compatibility mode. --=20 Pav Lucistnik Me go and see Elves and all! Hooray! --=-9IGvsm6LRJo81+NizC63 Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEdZccntdYP8FOsoIRAidPAKCxD4UXwbYT1LCED93Q/r8zpd3f6ACgp2jg jM/2WksI4wAAxqRjrDlq5Z8= =raIV -----END PGP SIGNATURE----- --=-9IGvsm6LRJo81+NizC63-- From owner-freebsd-amd64@FreeBSD.ORG Thu May 25 16:42:07 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 124B316A5C5 for ; Thu, 25 May 2006 16:42:07 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 338F843D70 for ; Thu, 25 May 2006 16:42:06 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0IZT00LJJYE5M000@osl1smout1.broadpark.no> for freebsd-amd64@freebsd.org; Thu, 25 May 2006 18:42:05 +0200 (CEST) Received: from kg-work.kg4.no ([80.202.172.162]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0IZT009XWYE4AW30@osl1sminn1.broadpark.no> for freebsd-amd64@freebsd.org; Thu, 25 May 2006 18:42:04 +0200 (CEST) Date: Thu, 25 May 2006 18:42:03 +0200 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <1148557084.25760.27.camel@pav.hide.vol.cz> To: freebsd-amd64@freebsd.org Message-id: <20060525184203.7870f394.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.17; i386-portbld-freebsd5.5) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> <1148557084.25760.27.camel@pav.hide.vol.cz> Subject: Re: boinc-setiathome-enhanced-5.12 crashes on 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: Thu, 25 May 2006 16:42:18 -0000 On Thu, 25 May 2006 13:38:04 +0200 Pav Lucistnik wrote: > Looks like this will need same hack as boinc-einsteinathome needed: > > Please try that out. Wilco. Will this work when I have previously (as in with an earlier version of the setiathome client) attached the setiathome project? I.e. can I just restart the boinc client an everythig should work? > The rationale behind are binary incompatible threading libraries > between 5.X and 6.X when running on amd64 in 32-bit compatibility > mode. The files are on my machine at least: root@kg-fil# find / -name libc_r.so.5 -print /usr/local/lib/compat/libc_r.so.5 /usr/local/lib32/compat/libc_r.so.5 root@kg-fil# find / -name libpthread.so.1 -print /usr/local/lib/compat/libpthread.so.1 /usr/local/lib32/compat/libpthread.so.1 -- Later, Torfinn Ingolfsen, Norway From owner-freebsd-amd64@FreeBSD.ORG Thu May 25 18:40:56 2006 Return-Path: X-Original-To: freebsd-amd64@FreeBSD.org Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B6A16A988 for ; Thu, 25 May 2006 18:40:56 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from e0-a11.b1.lan.prg.vol.cz (e0-a11.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A76B43D48 for ; Thu, 25 May 2006 18:40:55 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by e0-a11.b1.lan.prg.vol.cz (8.13.6/8.13.6) with ESMTP id k4PIeqY9030533; Thu, 25 May 2006 20:40:53 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.13.6/8.13.6/Submit) id k4PIeqHd030532; Thu, 25 May 2006 20:40:52 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Torfinn Ingolfsen In-Reply-To: <20060525184203.7870f394.torfinn.ingolfsen@broadpark.no> References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> <1148557084.25760.27.camel@pav.hide.vol.cz> <20060525184203.7870f394.torfinn.ingolfsen@broadpark.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-fhNBchXvOyr9en2KEIF0" Date: Thu, 25 May 2006 20:40:51 +0200 Message-Id: <1148582451.25760.42.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Cc: freebsd-amd64@FreeBSD.org Subject: Re: boinc-setiathome-enhanced-5.12 crashes on amd64? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 May 2006 18:41:05 -0000 --=-fhNBchXvOyr9en2KEIF0 Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Torfinn Ingolfsen p=ED=B9e v =E8t 25. 05. 2006 v 18:42 +0200: > On Thu, 25 May 2006 13:38:04 +0200 > Pav Lucistnik wrote: >=20 > > Looks like this will need same hack as boinc-einsteinathome needed: > >=20 > > Please try that out. >=20 > Wilco. > Will this work when I have previously (as in with an earlier version of > the setiathome client) attached the setiathome project? > I.e. can I just restart the boinc client an everythig should work? Yes. Restarting boinc client is easiest. --=20 Pav Lucistnik You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes.... --=-fhNBchXvOyr9en2KEIF0 Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEdfozntdYP8FOsoIRAmYgAJoCCBScFKZQ3RYUQ1VnVn71LtiLMgCfbN/5 FzDeA3n6RQs8j9IQWBFfW3A= =G1EK -----END PGP SIGNATURE----- --=-fhNBchXvOyr9en2KEIF0-- From owner-freebsd-amd64@FreeBSD.ORG Thu May 25 22:23:48 2006 Return-Path: X-Original-To: freebsd-amd64@hub.freebsd.org Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4874016CFEF; Thu, 25 May 2006 22:19:00 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC0B243D4C; Thu, 25 May 2006 22:18:59 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4PMIxmf085671; Thu, 25 May 2006 22:18:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4PMIxGk085667; Thu, 25 May 2006 22:18:59 GMT (envelope-from linimon) Date: Thu, 25 May 2006 22:18:59 GMT From: Mark Linimon Message-Id: <200605252218.k4PMIxGk085667@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/97019: Cannot load the kernel after installation on Supermicro H8DAR-T 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, 25 May 2006 22:23:51 -0000 Synopsis: Cannot load the kernel after installation on Supermicro H8DAR-T Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu May 25 22:18:43 UTC 2006 Responsible-Changed-Why: Apparently also happens on i386. http://www.freebsd.org/cgi/query-pr.cgi?pr=97019 From owner-freebsd-amd64@FreeBSD.ORG Fri May 26 17:59:13 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F172F16AE70 for ; Fri, 26 May 2006 17:59:13 +0000 (UTC) (envelope-from kgunders@teamcool.net) Received: from koyukuk.teamcool.net (koyukuk.teamcool.net [209.161.34.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1C0043D64 for ; Fri, 26 May 2006 17:59:11 +0000 (GMT) (envelope-from kgunders@teamcool.net) Received: from koyukuk.teamcool.net (localhost [127.0.0.1]) by koyukuk.teamcool.net (TeamCool Rocks) with ESMTP id 8A7EAF812 for ; Fri, 26 May 2006 11:59:15 -0600 (MDT) Received: from cochise.teamcool.net (unknown [192.168.1.57]) by koyukuk.teamcool.net (TeamCool Rocks) with ESMTP id 4EC72F7BB for ; Fri, 26 May 2006 11:59:15 -0600 (MDT) Date: Fri, 26 May 2006 12:20:18 -0600 From: Ken Gunderson To: freebsd-amd64@freebsd.org Message-Id: <20060526122018.42e833b7.kgunders@teamcool.net> In-Reply-To: <200605161043.k4GAhJAA030932@www.freebsd.org> References: <200605161043.k4GAhJAA030932@www.freebsd.org> Organization: Teamcool Networks X-Mailer: Sylpheed version 1.9.12 (GTK+ 2.6.7; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: amd64/97337: xorg reboots system if dri module is enabled 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, 26 May 2006 17:59:18 -0000 On Tue, 16 May 2006 10:43:19 GMT Jonatan Cerri wrote: > > >Number: 97337 > >Category: amd64 > >Synopsis: xorg reboots system if dri module is enabled > >Confidential: no > >Severity: serious > >Priority: low > >Responsible: freebsd-amd64 > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue May 16 10:50:15 GMT 2006 > >Closed-Date: > >Last-Modified: > >Originator: Jonatan Cerri > >Release: 6.1-RELENG/amd64 > >Organization: > student > >Environment: > FreeBSD 6.1-RELEASE FreeBSD 6.1-RELEASE #2: Mon May 15 17:54:15 CEST 2006 root@:/usr/src/sys/amd64/compile/MINE amd64 > >Description: > Using supported VGA-Card (ATI Radeon 9250 PCI), which is recognized at boot time, starting Xorg reboots the machine ungracefully, if the dri-module is uncommented in xorg.conf. This is the case in the default xorg configuration file generated with Xorg -configure. Commenting the line 'load "dri"' in the section "Module" of xorg.conf makes the problem go away. The card worked with dri hardware acceleration in a previous FreeBSD/i386 installation on a different mainboard/cpu. The Problem started when changing the mainboard and CPU. Current CPU is Pentium D 805, current Board is Asrock 775Dual-880Pro with VIA PT880Pro Chipset and 1GB DDRII Ram in dualchannel configuration. > > Output of dmesg |grep drm: > > drm0: port 0xe000-0xe0ff mem 0xd8000000-0xdfffffff,0xff6f0000-0xff6fffff irq 17 at device 9.0 on pci0 > info: [drm] Initialized radeon 1.19.0 20050911 > drm0: port 0xe000-0xe0ff mem 0xd8000000-0xdfffffff,0xff6f0000-0xff6fffff irq 17 at device 9.0 on pci0 > info: [drm] Initialized radeon 1.19.0 20050911 > > 'device agp' was removed from the kernel. the kernel runs with the new scheduler, but the problem persists when running with the old 4BSD scheduler. > >How-To-Repeat: > Install 6.1-RELEASE with bundled Xorg. Execute startx using xorg.conf with line 'load "dri"' in the section "Module". > >Fix: > Comment line 'load "dri"' in the section "Module" in xorg.conf. > >Release-Note: > >Audit-Trail: > >Unformatted: I've got an X300 based card in a test system. I know 3d isn't supported on this card but dri.freedesktop.org says 2d hardware accel is. I seem to recall dri 2d accel working on 6.0. But when I try loading dri in 6.1 the box just totally locks up. Uncommenting dri in xorg.conf isn't really a "fix" but does let me load X.... -- Best regards, Ken Gunderson Q: Because it reverses the logical flow of conversation. A: Why is putting a reply at the top of the message frowned upon? From owner-freebsd-amd64@FreeBSD.ORG Sat May 27 08:20:42 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A62516AC95 for ; Sat, 27 May 2006 08:20:42 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAAFC43D46 for ; Sat, 27 May 2006 08:20:41 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0IZX00I1Z0IHUDC0@osl1smout1.broadpark.no> for freebsd-amd64@freebsd.org; Sat, 27 May 2006 10:20:41 +0200 (CEST) Received: from kg-work.kg4.no ([80.202.172.162]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0IZX00JFZ0IGY8E0@osl1sminn1.broadpark.no> for freebsd-amd64@freebsd.org; Sat, 27 May 2006 10:20:41 +0200 (CEST) Date: Sat, 27 May 2006 10:20:40 +0200 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <1148557084.25760.27.camel@pav.hide.vol.cz> To: freebsd-amd64@freebsd.org Message-id: <20060527102040.d901fa80.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.17; i386-portbld-freebsd5.5) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> <1148557084.25760.27.camel@pav.hide.vol.cz> Subject: Re: boinc-setiathome-enhanced-5.12 crashes on 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, 27 May 2006 08:20:49 -0000 On Thu, 25 May 2006 13:38:04 +0200 Pav Lucistnik wrote: > Looks like this will need same hack as boinc-einsteinathome needed: > > %%AMD64%% IMPORTANT NOTICE FOR AMD64 USERS RUNNING 6.X: > %%AMD64%% > %%AMD64%% You have to have this line in /etc/libmap32.conf: > %%AMD64%% libpthread.so.1 libc_r.so.5 > %%AMD64%% before you attach the project. Otherwise it will not work. Just for the record; this does indeed fix the problems I had. Now setiathome is working again. Thanks! -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-amd64@FreeBSD.ORG Sat May 27 08:44:38 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBA2816A8CB for ; Sat, 27 May 2006 08:44:37 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5485543D46 for ; Sat, 27 May 2006 08:44:37 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr8.xs4all.nl (8.13.6/8.13.6) with ESMTP id k4R8iYZA062605; Sat, 27 May 2006 10:44:34 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 23B28B863; Sat, 27 May 2006 10:44:34 +0200 (CEST) Date: Sat, 27 May 2006 10:44:34 +0200 From: Roland Smith To: Torfinn Ingolfsen Message-ID: <20060527084434.GA20477@slackbox.xs4all.nl> Mail-Followup-To: Torfinn Ingolfsen , freebsd-amd64@freebsd.org References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> <1148557084.25760.27.camel@pav.hide.vol.cz> <20060527102040.d901fa80.torfinn.ingolfsen@broadpark.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <20060527102040.d901fa80.torfinn.ingolfsen@broadpark.no> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.11 X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-amd64@freebsd.org Subject: Re: boinc-setiathome-enhanced-5.12 crashes on 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, 27 May 2006 08:44:44 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 27, 2006 at 10:20:40AM +0200, Torfinn Ingolfsen wrote: > On Thu, 25 May 2006 13:38:04 +0200 > Pav Lucistnik wrote: >=20 > > Looks like this will need same hack as boinc-einsteinathome needed: > >=20 > > %%AMD64%% IMPORTANT NOTICE FOR AMD64 USERS RUNNING 6.X: > > %%AMD64%% > > %%AMD64%% You have to have this line in /etc/libmap32.conf: > > %%AMD64%% libpthread.so.1 libc_r.so.5 > > %%AMD64%% before you attach the project. Otherwise it will not work. >=20 > Just for the record; this does indeed fix the problems I had. Now > setiathome is working again. > Thanks! What I don't understand is why ports supplies a i386 version, while the development versions of boinc and seti@home-enhanced build perfectly well on amd64. So a better alternative (IMHO) is to download and compile the latest boinc = and seti_boinc. That way you get a native amd64 version. You need to have /usr/ports/math/fftw and /usr/ports/ftp/curl installed, though. This is what I did to compile both on my amd64 box: # Download and build latest boinc: cd ~/tmp/src mkdir foo cd foo # Unfortunately, no tarballs here, otherwise I'd make it a port. cvs -d :pserver:anonymous:@alien.ssl.berkeley.edu:/home/cvs/cvsroot checkou= t boinc cd boinc # Adapt the following line to the actual versions you have # installed. The _autosetup script doesn't work, because it doesn't like # FreeBSD's m4. aclocal19 -I m4 && autoheader259 && automake19 && autoconf259 CFLAGS=3D'-O3 -pipe' CXXFLAGS=3D$CFLAGS ./configure --disable-server --disable-dependency-tracking --enable-bitness=3D64 --enable-shared=3Dno gmake rm -f ~/boinc/boinc_client cp client/boinc_client ~/boinc cd .. # The zipfile is a nightly zipball from the seti@home site. You need the # development version of boinc to compile it. unzip ../../setiathome_enhanced-client-cvs-2006-05-26.zip cd seti_boinc/ CFLAGS=3D'-O3 -pipe' CXXFLAGS=3D$CFLAGS ./configure --disable-graphics --di= sable-server --disable-dependency-tracking --enable-bitness=3D64 --enable-f= ast-math gmake cp client/setiathome-5.15.x86_64-unknown-freebsd ~/boinc/projects/setiathom= e.berkeley.edu/ # Modify your app_info.xml file. cat >~/boinc/projects/setiathome.berkeley.edu/app_info.xml < setiathome_enhanced setiathome-5.15.x86_64-unknown-freebsd setiathome_enhanced 515 setiathome-5.15.x86_64-unknown-freebsd EOF HTH, Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEeBFyEnfvsMMhpyURAkI4AJ9wMa/EmVzMVHWARPSvTz2oHKYg6QCfSPIh tbg2zR3jLDVVINOr9q57yk0= =JJzZ -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-amd64@FreeBSD.ORG Sat May 27 12:19:07 2006 Return-Path: X-Original-To: freebsd-amd64@FreeBSD.org Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3266816ACA6 for ; Sat, 27 May 2006 12:19:07 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from hood.oook.cz (hood.oook.cz [195.250.137.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC4EE43D4C for ; Sat, 27 May 2006 12:19:04 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from ikaros.oook.cz (localhost [127.0.0.1]) by hood.oook.cz (8.13.6/8.13.6) with ESMTP id k4RCIlIN002717 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 27 May 2006 14:18:53 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by ikaros.oook.cz (8.13.6/8.13.6/Submit) id k4RCIjRi002716; Sat, 27 May 2006 14:18:45 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: ikaros.oook.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Roland Smith In-Reply-To: <20060527084434.GA20477@slackbox.xs4all.nl> References: <20060525125352.7e0c73b4.torfinn.ingolfsen@broadpark.no> <1148557084.25760.27.camel@pav.hide.vol.cz> <20060527102040.d901fa80.torfinn.ingolfsen@broadpark.no> <20060527084434.GA20477@slackbox.xs4all.nl> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ZFKM/+vPBg/ZzCElETmF" Date: Sat, 27 May 2006 14:18:44 +0200 Message-Id: <1148732324.2446.5.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Cc: freebsd-amd64@FreeBSD.org Subject: Re: boinc-setiathome-enhanced-5.12 crashes on amd64? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 May 2006 12:19:46 -0000 --=-ZFKM/+vPBg/ZzCElETmF Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Roland Smith p=ED=B9e v so 27. 05. 2006 v 10:44 +0200: > On Sat, May 27, 2006 at 10:20:40AM +0200, Torfinn Ingolfsen wrote: > > On Thu, 25 May 2006 13:38:04 +0200 > > Pav Lucistnik wrote: > >=20 > > > Looks like this will need same hack as boinc-einsteinathome needed: > > >=20 > > > %%AMD64%% IMPORTANT NOTICE FOR AMD64 USERS RUNNING 6.X: > > > %%AMD64%% > > > %%AMD64%% You have to have this line in /etc/libmap32.conf: > > > %%AMD64%% libpthread.so.1 libc_r.so.5 > > > %%AMD64%% before you attach the project. Otherwise it will not work. > >=20 > > Just for the record; this does indeed fix the problems I had. Now > > setiathome is working again. > > Thanks! >=20 > What I don't understand is why ports supplies a i386 version, while the > development versions of boinc and seti@home-enhanced build perfectly > well on amd64. The reason to provide a i386 binary is because that binary is heavy optimized. If you build yourself from sources, you'll get many times slower application. The boinc-client itself is of course built from sources every time, because there are no performance critical parts in it. --=20 Pav Lucistnik He had found a Nutri-Matic machine which had provided him with a plastic cu= p filled with a liquid that was almost, but not quite, entirely unlike tea. --=-ZFKM/+vPBg/ZzCElETmF Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEeEOkntdYP8FOsoIRAhWlAKCDFJulvuo05kEw/ZS6lLmKyG8wXACfbnNQ nARLJo0ELqcwHdL3EASMMKU= =rXk7 -----END PGP SIGNATURE----- --=-ZFKM/+vPBg/ZzCElETmF-- From owner-freebsd-amd64@FreeBSD.ORG Sat May 27 16:50:20 2006 Return-Path: X-Original-To: freebsd-amd64@hub.freebsd.org Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90F6916C38A for ; Sat, 27 May 2006 16:50:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 965DC43D53 for ; Sat, 27 May 2006 16:50:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4RGoHj3050626 for ; Sat, 27 May 2006 16:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4RGoHGU050620; Sat, 27 May 2006 16:50:17 GMT (envelope-from gnats) Resent-Date: Sat, 27 May 2006 16:50:17 GMT Resent-Message-Id: <200605271650.k4RGoHGU050620@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, miks Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B1316C2A0 for ; Sat, 27 May 2006 16:41:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 283C043D58 for ; Sat, 27 May 2006 16:40:56 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k4RGeuHA041898 for ; Sat, 27 May 2006 16:40:56 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k4RGeuNP041897; Sat, 27 May 2006 16:40:56 GMT (envelope-from nobody) Message-Id: <200605271640.k4RGeuNP041897@www.freebsd.org> Date: Sat, 27 May 2006 16:40:56 GMT From: miks To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: amd64/98016: Buffer problem with SSH2 under 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, 27 May 2006 16:50:36 -0000 >Number: 98016 >Category: amd64 >Synopsis: Buffer problem with SSH2 under amd64 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 27 16:50:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: miks >Release: freebsd 6.0 >Organization: skynet >Environment: FreeBSD sun 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu May 25 14:35:44 UTC 2006 >Description: This is a problem with ssh2 (ssh2-nox11-3.2.9.1_5 Secure shell client and server for V.2 SSH protocol). It seems broken under this freebsd release (6.0 amd64). [root@sun /home]# ssh -v test@192.168.1.19 OpenSSH_4.2p1 FreeBSD-20050903, OpenSSL 0.9.7e-p1 25 Oct 2004 debug1: Reading configuration data /etc/ssh/ssh_config debug1: Connecting to 192.168.1.19 [192.168.1.19] port 22. debug1: Connection established. debug1: permanently_set_uid: 0/0 debug1: identity file /root/.ssh/identity type -1 debug1: identity file /root/.ssh/id_rsa type -1 debug1: identity file /root/.ssh/id_dsa type -1 debug1: Remote protocol version 2.0, remote software version 3.2.9.1 SSH Secure Shell (non-commercial) debug1: no match: 3.2.9.1 SSH Secure Shell (non-commercial) debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_4.2p1 FreeBSD-20050903 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-cbc hmac-md5 none debug1: kex: client->server aes128-cbc hmac-md5 none debug1: sending SSH2_MSG_KEXDH_INIT debug1: expecting SSH2_MSG_KEXDH_REPLY debug1: Host '192.168.1.19' is known and matches the DSA host key. debug1: Found key in /root/.ssh/known_hosts:2 debug1: ssh_dss_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,password debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Trying private key: /root/.ssh/id_rsa debug1: Trying private key: /root/.ssh/id_dsa debug1: Next authentication method: password test@192.168.1.19's password: debug1: Authentication succeeded (password). debug1: channel 0: new [client-session] debug1: Entering interactive session. buffer_get_ret: trying to get more bytes 1 than in buffer 0 buffer_get_char_ret: buffer_get_ret failed buffer_get_char: buffer error in fact: "[root@sun /home]# ssh test@localhost" works fine. some kind of problems with DNS? >How-To-Repeat: just login in system with amd64 release and ssh2 >Fix: >Release-Note: >Audit-Trail: >Unformatted: