From owner-freebsd-amd64@FreeBSD.ORG Sun Oct 3 03:20:03 2010 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 4FFA01065670 for ; Sun, 3 Oct 2010 03:20:03 +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 2E31F8FC15 for ; Sun, 3 Oct 2010 03:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o933K3VG010562 for ; Sun, 3 Oct 2010 03:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o933K3EY010561; Sun, 3 Oct 2010 03:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 3 Oct 2010 03:20:03 GMT Resent-Message-Id: <201010030320.o933K3EY010561@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, Zhouyi Zhou Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D241106564A for ; Sun, 3 Oct 2010 03:10:05 +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 2CAFF8FC08 for ; Sun, 3 Oct 2010 03:10:05 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o933A4ix095897 for ; Sun, 3 Oct 2010 03:10:04 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o933A41i095896; Sun, 3 Oct 2010 03:10:04 GMT (envelope-from nobody) Message-Id: <201010030310.o933A41i095896@www.freebsd.org> Date: Sun, 3 Oct 2010 03:10:04 GMT From: Zhouyi Zhou To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Sun, 03 Oct 2010 03:26:43 +0000 Cc: Subject: amd64/151167: amd64 remote debug fails 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, 03 Oct 2010 03:20:03 -0000 >Number: 151167 >Category: amd64 >Synopsis: amd64 remote debug fails >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: Sun Oct 03 03:20:02 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Zhouyi Zhou >Release: FreeBSD 8.0 >Organization: Institute of Computing Technology, CAS >Environment: FreeBSD zzy 8.0-RELEASE FreeBSD 8.0-RELEASE #137: Sun Oct 3 14:25:54 UTC 2010 root@zzy:/usr/src/sys/amd64/compile/GENERIC amd64 >Description: When remote debug FreeBSD 8.0 using gdb on a Intel x86_64 machine, the next command will cause kernel panic. >How-To-Repeat: use next command to step over a function all will cause kernel panic for example: Breakpoint 1, fork1 (td=0xffffff0002fce390, flags=20, pages=4, procp=0xffffff804a0afaf0) at ../../../kern/kern_fork.c:283 283 newproc = uma_zalloc(proc_zone, M_WAITOK); (gdb) n >Fix: The problems is in some intel x86_64 machines, the computing the rsp from trap frame is not correct. void makectx(struct trapframe *tf, struct pcb *pcb) { pcb->pcb_r12 = tf->tf_r12; pcb->pcb_r13 = tf->tf_r13; pcb->pcb_r14 = tf->tf_r14; pcb->pcb_r15 = tf->tf_r15; pcb->pcb_rbp = tf->tf_rbp; pcb->pcb_rbx = tf->tf_rbx; pcb->pcb_rip = tf->tf_rip; pcb->pcb_rsp = (ISPL(tf->tf_cs)) ? tf->tf_rsp : (long)(tf + 1) - 8; } But according to section 5.14.2: (64-bit mode also pushes SS:RSP unconditionally, rather than only on a CPL change). So the function makectx in sys/amd64/amd64/machdep.c should be modified as void makectx(struct trapframe *tf, struct pcb *pcb) { pcb->pcb_r12 = tf->tf_r12; pcb->pcb_r13 = tf->tf_r13; pcb->pcb_r14 = tf->tf_r14; pcb->pcb_r15 = tf->tf_r15; pcb->pcb_rbp = tf->tf_rbp; pcb->pcb_rbx = tf->tf_rbx; pcb->pcb_rip = tf->tf_rip; pcb->pcb_rsp = tf->tf_rsp; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Sun Oct 3 14:00:17 2010 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 461171065675 for ; Sun, 3 Oct 2010 14:00:17 +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 1AE488FC0A for ; Sun, 3 Oct 2010 14:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93E0GK4008609 for ; Sun, 3 Oct 2010 14:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93E0Gvl008603; Sun, 3 Oct 2010 14:00:16 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 14:00:16 GMT Message-Id: <201010031400.o93E0Gvl008603@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) X-Mailman-Approved-At: Sun, 03 Oct 2010 14:09:26 +0000 Cc: Subject: Re: amd64/151167: commit references a PR X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 14:00:17 -0000 The following reply was made to PR amd64/151167; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: amd64/151167: commit references a PR Date: Sun, 3 Oct 2010 13:52:22 +0000 (UTC) Author: kib Date: Sun Oct 3 13:52:17 2010 New Revision: 213382 URL: http://svn.freebsd.org/changeset/base/213382 Log: The makectx() function, used by kdb_trap() to reconstruct pcb from trap frame when trap initiated kdb entry, incorrectly calculated the value of %rsp for trapped thread. According to Intel(R) 64 and IA-32 Architectures Software Developer's Manual Volume 3A: System Programming Guide, Part 1, rev. 035, 6.14.2 64-Bit Mode Stack Frame, "64-bit mode ... pushes SS:RSP unconditionally, rather than only on a CPL change." Even assuming the conditional push of the %ss:%rsp, the calculation was still wrong because sizeof(tf_ss) + sizeof(tf_rsp) == 16 on amd64. Always use the tf_rsp from trap frame. The change supposedly fixes stepping when using kgdb backend for kdb. Submitted by: Zhouyi Zhou PR: amd64/151167 Reviewed by: avg MFC after: 1 week Modified: head/sys/amd64/amd64/machdep.c Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Sun Oct 3 13:13:10 2010 (r213381) +++ head/sys/amd64/amd64/machdep.c Sun Oct 3 13:52:17 2010 (r213382) @@ -1799,7 +1799,7 @@ makectx(struct trapframe *tf, struct pcb pcb->pcb_rbp = tf->tf_rbp; pcb->pcb_rbx = tf->tf_rbx; pcb->pcb_rip = tf->tf_rip; - pcb->pcb_rsp = (ISPL(tf->tf_cs)) ? tf->tf_rsp : (long)(tf + 1) - 8; + pcb->pcb_rsp = tf->tf_rsp; } int _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-amd64@FreeBSD.ORG Mon Oct 4 11:06:52 2010 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 6CCDD106566B for ; Mon, 4 Oct 2010 11:06:52 +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 07EAF8FC15 for ; Mon, 4 Oct 2010 11:06:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o94B6pXR065758 for ; Mon, 4 Oct 2010 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o94B6pEW065756 for freebsd-amd64@FreeBSD.org; Mon, 4 Oct 2010 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Oct 2010 11:06:51 GMT Message-Id: <201010041106.o94B6pEW065756@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Oct 2010 11:06:52 -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/151167 amd64 amd64 remote debug fails o amd64/151031 amd64 Not all RAM is found on GA-E7AUM-DS2H motherboard o amd64/150909 amd64 [hang] FreeBSD freezes a few minutes booting on Intel o amd64/150170 amd64 [patch] [amd64] [headers] SIG_ATOMIC_MIN/SIG_ATOMIC_MA o amd64/150023 amd64 network subsystem does not work at all o amd64/149713 amd64 [ata] [panic] Kernel crashes on HD timeout o amd64/149322 amd64 [boot] 8.1-RELEASE does not boot on DL785 G6 o amd64/149038 amd64 [panic] Upgrading to 8.1 causes kernel panic when remo o amd64/148805 amd64 [hang] FreeBSD 7.2, 8.0, and 9.0 hang during install a o amd64/148675 amd64 [panic] kernel panics - reboots o amd64/148526 amd64 [ahci] ahci driver does not boot on AMD chip s amd64/148489 amd64 [ata] Generic driver is used for Nvidia SATA (nforce? o amd64/148152 amd64 [boot] Run levels crash on boot up for dv7-1130US HP L o amd64/147560 amd64 [boot] Booting 8.1-PRERELEASE raidz system take ages o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf o amd64/145873 amd64 [build] cannot buildworld 8.0-STABLE o amd64/145761 amd64 [lor] rt2870 lock order reversal hold up system in 8.0 f amd64/144756 amd64 [panic] Transferring files on samba causes the kernel o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t o amd64/144376 amd64 [panic] continuous reboot on motherboards with ATI SB7 o amd64/143854 amd64 [build] error in make world during upgrade from 7 to 8 s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' o amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o amd64/141060 amd64 [install] Can't install 8.0-RELEASE on the server wher o amd64/140715 amd64 [boot] Dell M600 Blade fails to boot 7.2+ 64 bit o amd64/140145 amd64 [boot] Installation boot sequence freezes o amd64/139998 amd64 [panic] 7.2 amd64 panic in kern_mutex.c:339 o amd64/139924 amd64 [boot] cd or dvd not load o amd64/139614 amd64 [minidump] minidumps fail when many interrupts fire f amd64/138661 amd64 [panic] Kernel Panic after typing "reboot" o amd64/138029 amd64 [panic] periodically kernel panic and reboot o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o amd64/135265 amd64 [install] Boot from install cd hangs on HP DL160 G5 wi o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o amd64/134978 amd64 [panic] g_up pmap amd64 panic o amd64/134757 amd64 32 bit processes on 64 bit platforms occasionally drop o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO o amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT f amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 o amd64/131456 amd64 ACPI & ATA problems o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL 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/130368 amd64 [hang] Switching from xorg to console locks up compute o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo 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/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o amd64/129315 amd64 [boot] [reboot] amd64 motherboard: Intel DG965WH mothe o amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o amd64/128765 amd64 [install] Install CD loads to Install choices but stop o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o amd64/127640 amd64 [amd64] gcc(1) will not build shared libraries with -f o amd64/127451 amd64 [scheduler] incorrect load on quad core o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI 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/123520 amd64 [ahd] unable to boot from net while using ahd p amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor 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/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/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 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/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 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 o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff 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 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 89 problems total. From owner-freebsd-amd64@FreeBSD.ORG Thu Oct 7 05:00:11 2010 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 55E9A1065670 for ; Thu, 7 Oct 2010 05:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13A4C8FC0A for ; Thu, 7 Oct 2010 05:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9750AX6065565 for ; Thu, 7 Oct 2010 05:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9750AqE065556; Thu, 7 Oct 2010 05:00:10 GMT (envelope-from gnats) Resent-Date: Thu, 7 Oct 2010 05:00:10 GMT Resent-Message-Id: <201010070500.o9750AqE065556@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, Fabrizio Rubino Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55658106564A for ; Thu, 7 Oct 2010 04:52:47 +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 4473A8FC08 for ; Thu, 7 Oct 2010 04:52:47 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o974qkVk023963 for ; Thu, 7 Oct 2010 04:52:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o974qknC023962; Thu, 7 Oct 2010 04:52:46 GMT (envelope-from nobody) Message-Id: <201010070452.o974qknC023962@www.freebsd.org> Date: Thu, 7 Oct 2010 04:52:46 GMT From: Fabrizio Rubino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Thu, 07 Oct 2010 05:12:12 +0000 Cc: Subject: amd64/151280: vmware guestd port install error in /usr/ports/emulators/vmware-guestd* missing vmmemctl.ko during compiling 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, 07 Oct 2010 05:00:11 -0000 >Number: 151280 >Category: amd64 >Synopsis: vmware guestd port install error in /usr/ports/emulators/vmware-guestd* missing vmmemctl.ko during compiling >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 07 05:00:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Fabrizio Rubino >Release: 8.1 >Organization: none >Environment: # cd /usr/ports/emulators/vmware-guestd6 # make install clean install: /usr/ports/emulators/vmware-guestd6/work/vmmemctl-only/vmmemctl.ko: No such file or directory *** Error code 71 >Description: When I try to install port vmware-guestd6 or 5 I get the error: --------------------------------------- # cd /usr/ports/emulators/vmware-guestd6 # make install clean install: /usr/ports/emulators/vmware-guestd6/work/vmmemctl-only/vmmemctl.ko: No such file or directory *** Error code 71 --------------------------------------- I don't know if this problem persists also in vmware-guestd3 or 4, because I cannot install them cause their installation is available only for i368 and I run amd64 >How-To-Repeat: Impossible compiling vmware-guestd port cause missing library >Fix: I can fix the problem manually moving the vmmemctl.ko : # cp /usr/ports/emulators/vmware-guestd6/work/vmmemctl.ko \ /usr/ports/emulators/vmware-guestd6/work/vmmemctl-only/ # make install clean OK! >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-amd64@FreeBSD.ORG Thu Oct 7 22:57:51 2010 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 5C6301065700 for ; Thu, 7 Oct 2010 22:57:51 +0000 (UTC) (envelope-from sathler90@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id E0C8F8FC08 for ; Thu, 7 Oct 2010 22:57:50 +0000 (UTC) Received: by bwz6 with SMTP id 6so372681bwz.13 for ; Thu, 07 Oct 2010 15:57:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type:content-transfer-encoding; bh=H6fw0QBimOK/HbIsjUCf1krULF9ej0259gqEx6Nw/Yg=; b=WTVuutVFiSnBOsnlHLPv9DwNZt4A7RtoSZA+6mJATzAoHjp8aIlkZIHrThBiMWfuxZ m4XzGW658O2ffmd68XKJMVp0R5JOg2pdRTHn4m0IT7aRw0cJwOsGjBgYRC9ksUflTn/g dnQorYv5NyJcq2EFW5nRB9s8R/u66PAJE6lU4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=tmtrWYL9ZeZ4WUg77WOlDzDG3X9ZOHIv7A5sdSP7HbZqejox4oI0MjvKQbnXE/aauh DURz7Fnc5GSAFSVOdUIyQrOHvzD5uUtYFlD9Wz7W+h1pykfD7h7uprA4tnDP5qK15e4I i/uQCt79/u889RRLAG8ULmH5R8FYyyTRJ1wbE= MIME-Version: 1.0 Received: by 10.204.79.81 with SMTP id o17mr1234781bkk.103.1286490686748; Thu, 07 Oct 2010 15:31:26 -0700 (PDT) Received: by 10.204.70.18 with HTTP; Thu, 7 Oct 2010 15:31:26 -0700 (PDT) Date: Fri, 8 Oct 2010 01:31:26 +0300 Message-ID: From: Eduardo To: freebsd-amd64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: i386 vs AMD64 for web/mysql server 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, 07 Oct 2010 22:57:51 -0000 Hello, Today I am running my web and mysql server in FreeBSD i386 and I have the chance of moving to AMD64 architecture. This new server has 4 GB of RAM and 64 bit intel xeon cpus. Should I move to AMD64 or stick to i386 ? I don=B4t have a lot of experience with AMD64 and would like to know to know what you all think... also will the performance be better with in the AMD64 ? thanks in advance, -Ed. From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 04:28:49 2010 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 54AD7106564A for ; Fri, 8 Oct 2010 04:28:49 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 0EF468FC0C for ; Fri, 8 Oct 2010 04:28:48 +0000 (UTC) Received: from mr16.lnh.mail.rcn.net ([207.172.157.36]) by smtp02.lnh.mail.rcn.net with ESMTP; 08 Oct 2010 00:00:18 -0400 Received: from mx04.lnh.mail.rcn.net (mx04.lnh.mail.rcn.net [207.172.157.54]) by mr16.lnh.mail.rcn.net (MOS 4.1.9-GA) with ESMTP id AQQ71330; Thu, 7 Oct 2010 23:59:53 -0400 Received: from 209-6-91-204.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.91.204]) by smtp04.lnh.mail.rcn.net with ESMTP; 07 Oct 2010 23:59:53 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19630.38712.914848.866639@jerusalem.litteratus.org> Date: Thu, 7 Oct 2010 23:59:52 -0400 To: Eduardo In-Reply-To: References: X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr16.lnh.mail.rcn.net) Cc: freebsd-amd64@freebsd.org Subject: i386 vs AMD64 for web/mysql server 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, 08 Oct 2010 04:28:49 -0000 Eduardo writes: > Should I move to AMD64 or stick to i386 ? I made the jump from i386 to amd64 about a year ago. With very minor exceptions it has been painless, including not finding any desired programs that don't work. Your experience may differ. (Though I hope not.) Robert Huff From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 08:14:47 2010 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 BD3DA10657E2 for ; Fri, 8 Oct 2010 08:14:47 +0000 (UTC) (envelope-from gljennjohn@googlemail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 47EE48FC1E for ; Fri, 8 Oct 2010 08:14:46 +0000 (UTC) Received: by fxm4 with SMTP id 4so128931fxm.13 for ; Fri, 08 Oct 2010 01:14:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:in-reply-to:references:reply-to:x-mailer:mime-version :content-type:content-transfer-encoding; bh=BccnHCLj5UdiQazDRzium9EOicdbrpc03bW2EUB219k=; b=RA48oCv3kMXiRY/7fUOVj0WYGJclI98/MPx3Ip61VHhUZ1ziVS+wc89Y4OgMruC2RR HsQVhaDI7n4EDTlSRT9Ot2gkA5gerrxp+UW/19EPP7+XJRzpyXVPqGxBXiTgbA/9Kd0D 4ct4hUG25+HPnOzv5ajBh1HbXqAZlEaLArs1A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:reply-to :x-mailer:mime-version:content-type:content-transfer-encoding; b=mgHqsrzTc1LcZG783zzh+5R9p8zjVrY1yvRlQQ5fHqqSwXZWrKf6jIibDB+QjiB1Mz GPZ42ZYf4ruGaH6sY799dgpwcpop8Y7CU7NShOKpHNq8m1RkWlqxtyjtI8qgmgMM9EWn 0kcVUYIa+nczat+oadUHkpLzBT5pguiwbiP+g= Received: by 10.223.86.200 with SMTP id t8mr176309fal.66.1286523861922; Fri, 08 Oct 2010 00:44:21 -0700 (PDT) Received: from ernst.jennejohn.org (p578E2EA5.dip.t-dialin.net [87.142.46.165]) by mx.google.com with ESMTPS id h12sm1501022faa.13.2010.10.08.00.44.20 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 08 Oct 2010 00:44:21 -0700 (PDT) Date: Fri, 8 Oct 2010 09:44:19 +0200 From: Gary Jennejohn To: Robert Huff Message-ID: <20101008094419.5e3430ff@ernst.jennejohn.org> In-Reply-To: <19630.38712.914848.866639@jerusalem.litteratus.org> References: <19630.38712.914848.866639@jerusalem.litteratus.org> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.18.7; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-amd64@freebsd.org Subject: Re: i386 vs AMD64 for web/mysql server X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gljennjohn@googlemail.com List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 08:14:47 -0000 On Thu, 7 Oct 2010 23:59:52 -0400 Robert Huff wrote: > > Eduardo writes: > > > Should I move to AMD64 or stick to i386 ? > > I made the jump from i386 to amd64 about a year ago. > With very minor exceptions it has been painless, including not > finding any desired programs that don't work. > Your experience may differ. (Though I hope not.) > AMD64 has the advantage that it can use the RAM which the BIOS may map above 4GB due to the PCI device hole. i386 can't do that. AMD64 also has a much larger kernel virtual address space, which can be an advantage for e.g. ZFS. -- Gary Jennejohn From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:53:33 2010 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 0EE661065670 for ; Fri, 8 Oct 2010 09:53:33 +0000 (UTC) (envelope-from petefrench@ticketswitch.com) Received: from constantine.ticketswitch.com (constantine.ticketswitch.com [IPv6:2002:57e0:1d4e:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id C69318FC13 for ; Fri, 8 Oct 2010 09:53:32 +0000 (UTC) Received: from dilbert.rattatosk ([10.64.50.6] helo=dilbert.ticketswitch.com) by constantine.ticketswitch.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1P49dr-000ARI-Hy; Fri, 08 Oct 2010 10:53:31 +0100 Received: from petefrench by dilbert.ticketswitch.com with local (Exim 4.72 (FreeBSD)) (envelope-from ) id 1P49dr-000NAO-HC; Fri, 08 Oct 2010 10:53:31 +0100 Date: Fri, 08 Oct 2010 10:53:31 +0100 Message-Id: To: freebsd-amd64@freebsd.org, sathler90@gmail.com In-Reply-To: From: Pete French Cc: Subject: Re: i386 vs AMD64 for web/mysql server 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, 08 Oct 2010 09:53:33 -0000 > Today I am running my web and mysql server in FreeBSD i386 and I have > the chance of moving to AMD64 architecture. > > This new server has 4 GB of RAM and 64 bit intel xeon cpus. > > Should I move to AMD64 or stick to i386 ? Yes, move to amd64 - if you are running a webserver and mysql then this is a very good thing to do.We did this a couple of years ago and have never looked back. Performance wise, you wont see it 20% faster like some places claim, but you shoudl see somewhere around 8% - thats what I got when I made some measurements (with some jobs being about 14% faster). Also, if you run ZFS, that has been a lot smoother ride for me under amd64! The only point where I would advise being cautious if if you have any home-written C code that you are running, as that will need to be looked at carefully to find any possible 32->64 issues (though -Wall on the compiler should find quite a few). -pete. From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:16:37 2010 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 620BB1065715; Fri, 8 Oct 2010 09:16:37 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2E0DE8FC1B; Fri, 8 Oct 2010 09:16:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989GaAi092402; Fri, 8 Oct 2010 09:16:36 GMT (envelope-from avg@freefall.freebsd.org) Received: (from avg@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989Ga3O092398; Fri, 8 Oct 2010 09:16:36 GMT (envelope-from avg) Date: Fri, 8 Oct 2010 09:16:36 GMT Message-Id: <201010080916.o989Ga3O092398@freefall.freebsd.org> To: "Thor Frøthor@abekat.netølich" , avg@FreeBSD.org, freebsd-amd64@FreeBSD.org From: avg@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:17:53 +0000 Cc: Subject: Re: amd64/151031: Not all RAM is found on GA-E7AUM-DS2H motherboard 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, 08 Oct 2010 09:16:37 -0000 Synopsis: Not all RAM is found on GA-E7AUM-DS2H motherboard State-Changed-From-To: open->closed State-Changed-By: avg State-Changed-When: Fri Oct 8 09:14:47 UTC 2010 State-Changed-Why: Reporter says that it is not a FreeBSD problem and possibly a HW issue. Message ID of the followup from the reporter is http://www.freebsd.org/cgi/query-pr.cgi?pr=151031 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:20:28 2010 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 3B6151065672; Fri, 8 Oct 2010 09:20:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 112E08FC1D; Fri, 8 Oct 2010 09:20:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989KRpt094115; Fri, 8 Oct 2010 09:20:27 GMT (envelope-from kib@freefall.freebsd.org) Received: (from kib@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989KRwe094086; Fri, 8 Oct 2010 09:20:27 GMT (envelope-from kib) Date: Fri, 8 Oct 2010 09:20:27 GMT Message-Id: <201010080920.o989KRwe094086@freefall.freebsd.org> To: zhouzhouyi@gmail.com, kib@FreeBSD.org, freebsd-amd64@FreeBSD.org, kib@FreeBSD.org From: kib@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:00 +0000 Cc: Subject: Re: amd64/151167: amd64 remote debug fails 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, 08 Oct 2010 09:20:28 -0000 Synopsis: amd64 remote debug fails State-Changed-From-To: open->patched State-Changed-By: kib State-Changed-When: Fri Oct 8 09:19:37 UTC 2010 State-Changed-Why: Take. Responsible-Changed-From-To: freebsd-amd64->kib Responsible-Changed-By: kib Responsible-Changed-When: Fri Oct 8 09:19:37 UTC 2010 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=151167 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:25:37 2010 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 45410106566C; Fri, 8 Oct 2010 09:25:37 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0D0598FC1F; Fri, 8 Oct 2010 09:25:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989Pafw002058; Fri, 8 Oct 2010 09:25:36 GMT (envelope-from avg@freefall.freebsd.org) Received: (from avg@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989PaNx002054; Fri, 8 Oct 2010 09:25:36 GMT (envelope-from avg) Date: Fri, 8 Oct 2010 09:25:36 GMT Message-Id: <201010080925.o989PaNx002054@freefall.freebsd.org> To: avg@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: avg@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:10 +0000 Cc: Subject: Re: amd64/150023: network subsystem does not work at all 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, 08 Oct 2010 09:25:37 -0000 Synopsis: network subsystem does not work at all Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: avg Responsible-Changed-When: Fri Oct 8 09:23:39 UTC 2010 Responsible-Changed-Why: The PR doesn't describe any amd64-specific problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=150023 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:30:06 2010 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 88BE61065672 for ; Fri, 8 Oct 2010 09:30:06 +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 5C5918FC13 for ; Fri, 8 Oct 2010 09:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989U5iK002474 for ; Fri, 8 Oct 2010 09:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989U5Wp002469; Fri, 8 Oct 2010 09:30:05 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:30:05 GMT Message-Id: <201010080930.o989U5Wp002469@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:20 +0000 Cc: Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on Intel s5500wb board X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:30:06 -0000 The following reply was made to PR amd64/150909; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, astatutov@gmail.com Cc: Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on Intel s5500wb board Date: Fri, 08 Oct 2010 12:22:48 +0300 Can this be related to number of disks/partition that you have, your hardware or BIOS configuration, etc? It's also not clear from your report whether the initial delay is in loader or in kernel. Enabling debug in loader, verbose messages in kernel and sending us a link to a screenshot taken during freeze would be a good start. -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:30:13 2010 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 B3718106564A for ; Fri, 8 Oct 2010 09:30:13 +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 86EE48FC14 for ; Fri, 8 Oct 2010 09:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989UDWm003012 for ; Fri, 8 Oct 2010 09:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989UDV4003003; Fri, 8 Oct 2010 09:30:13 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:30:13 GMT Message-Id: <201010080930.o989UDV4003003@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:27 +0000 Cc: Subject: Re: amd64/149322: [boot] 8.1-RELEASE does not boot on DL785 G6 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:30:13 -0000 The following reply was made to PR amd64/149322; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, weeks@iastate.edu Cc: Subject: Re: amd64/149322: [boot] 8.1-RELEASE does not boot on DL785 G6 Date: Fri, 08 Oct 2010 12:29:17 +0300 Can try to boot custom-built FreeBSD 8.1 kernel with debug support and obtain debugging information? At the very least, please provide messages from verbose boot leading up to the crash. -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:33:16 2010 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 33439106566B; Fri, 8 Oct 2010 09:33:16 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E6AF98FC0C; Fri, 8 Oct 2010 09:33:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989XFYX013322; Fri, 8 Oct 2010 09:33:15 GMT (envelope-from avg@freefall.freebsd.org) Received: (from avg@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989XFI1013318; Fri, 8 Oct 2010 09:33:15 GMT (envelope-from avg) Date: Fri, 8 Oct 2010 09:33:15 GMT Message-Id: <201010080933.o989XFI1013318@freefall.freebsd.org> To: avg@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: avg@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:34 +0000 Cc: Subject: Re: amd64/148805: [hang] FreeBSD 7.2, 8.0, and 9.0 hang during install at probing devices 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, 08 Oct 2010 09:33:16 -0000 Synopsis: [hang] FreeBSD 7.2, 8.0, and 9.0 hang during install at probing devices Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: avg Responsible-Changed-When: Fri Oct 8 09:32:10 UTC 2010 Responsible-Changed-Why: There is no indication in the report (and followups) that this is a problem specific to amd64 architecture. Seems like a sysinstall issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=148805 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:36:24 2010 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 24F3C106566B; Fri, 8 Oct 2010 09:36:24 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF1DC8FC1F; Fri, 8 Oct 2010 09:36:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989aNjC013583; Fri, 8 Oct 2010 09:36:23 GMT (envelope-from avg@freefall.freebsd.org) Received: (from avg@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989aNAQ013579; Fri, 8 Oct 2010 09:36:23 GMT (envelope-from avg) Date: Fri, 8 Oct 2010 09:36:23 GMT Message-Id: <201010080936.o989aNAQ013579@freefall.freebsd.org> To: avg@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: avg@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:41 +0000 Cc: Subject: Re: amd64/148675: [panic] kernel panics - reboots 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, 08 Oct 2010 09:36:24 -0000 Synopsis: [panic] kernel panics - reboots Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: avg Responsible-Changed-When: Fri Oct 8 09:34:55 UTC 2010 Responsible-Changed-Why: This seems like a know locking problem in ATA code that is not specific to amd64 arch. The problem is typically triggered by command timeout. To reporter: please try using ahci(4) driver and ATA_CAM kernel option. http://www.freebsd.org/cgi/query-pr.cgi?pr=148675 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:39:46 2010 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 7EA63106566C; Fri, 8 Oct 2010 09:39:46 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 54B528FC1A; Fri, 8 Oct 2010 09:39:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989dkSa013654; Fri, 8 Oct 2010 09:39:46 GMT (envelope-from avg@freefall.freebsd.org) Received: (from avg@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989dkPp013650; Fri, 8 Oct 2010 09:39:46 GMT (envelope-from avg) Date: Fri, 8 Oct 2010 09:39:46 GMT Message-Id: <201010080939.o989dkPp013650@freefall.freebsd.org> To: avg@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-bugs@FreeBSD.org From: avg@FreeBSD.org X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:47 +0000 Cc: Subject: Re: amd64/147560: [boot] Booting 8.1-PRERELEASE raidz system take ages 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, 08 Oct 2010 09:39:46 -0000 Synopsis: [boot] Booting 8.1-PRERELEASE raidz system take ages Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs Responsible-Changed-By: avg Responsible-Changed-When: Fri Oct 8 09:37:58 UTC 2010 Responsible-Changed-Why: This is a generic zfs boot problem resulting from how the code finds disks for zfs pools. Not sure if we can do any better here. http://www.freebsd.org/cgi/query-pr.cgi?pr=147560 From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:40:03 2010 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 0921610656C9 for ; Fri, 8 Oct 2010 09:40:03 +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 D100F8FC0A for ; Fri, 8 Oct 2010 09:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989e2f8013736 for ; Fri, 8 Oct 2010 09:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989e25a013735; Fri, 8 Oct 2010 09:40:02 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:40:02 GMT Message-Id: <201010080940.o989e25a013735@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:54 +0000 Cc: Subject: Re: amd64/149038: [panic] Upgrading to 8.1 causes kernel panic when removing file: linux-f10-atk-1.240 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:40:03 -0000 The following reply was made to PR amd64/149038; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, dejamuse@yahoo.com Cc: Subject: Re: amd64/149038: [panic] Upgrading to 8.1 causes kernel panic when removing file: linux-f10-atk-1.240 Date: Fri, 08 Oct 2010 12:30:44 +0300 Please reproduce with debug support in kernel. At the very least provide a backtrace from the crash. -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:50:02 2010 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 96864106564A for ; Fri, 8 Oct 2010 09:50:02 +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 609CE8FC1B for ; Fri, 8 Oct 2010 09:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989o2iX023082 for ; Fri, 8 Oct 2010 09:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989o2NC023081; Fri, 8 Oct 2010 09:50:02 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:50:02 GMT Message-Id: <201010080950.o989o2NC023081@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:18:59 +0000 Cc: Subject: Re: amd64/145991: [NOTES] [patch] Add a requires line to /sys/amd64/conf/NOTES X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:50:02 -0000 The following reply was made to PR amd64/145991; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, jhs@berklix.com Cc: Subject: Re: amd64/145991: [NOTES] [patch] Add a requires line to /sys/amd64/conf/NOTES Date: Fri, 08 Oct 2010 12:41:21 +0300 Is still an issue with 8.1 and/or stable/8? -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:50:04 2010 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 BE109106566C for ; Fri, 8 Oct 2010 09:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 808CD8FC13 for ; Fri, 8 Oct 2010 09:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989o4Lb023105 for ; Fri, 8 Oct 2010 09:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989o4aV023104; Fri, 8 Oct 2010 09:50:04 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:50:04 GMT Message-Id: <201010080950.o989o4aV023104@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:19:07 +0000 Cc: Subject: Re: amd64/145873: [build] cannot buildworld 8.0-STABLE X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:50:04 -0000 The following reply was made to PR amd64/145873; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, andy.lavr@gmail.com Cc: Subject: Re: amd64/145873: [build] cannot buildworld 8.0-STABLE Date: Fri, 08 Oct 2010 12:42:15 +0300 Can this PR be closed now? -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 09:50:07 2010 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 E1E081065672 for ; Fri, 8 Oct 2010 09:50:07 +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 B57898FC16 for ; Fri, 8 Oct 2010 09:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o989o7Zs023173 for ; Fri, 8 Oct 2010 09:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o989o7c2023172; Fri, 8 Oct 2010 09:50:07 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 09:50:07 GMT Message-Id: <201010080950.o989o7c2023172@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:19:14 +0000 Cc: Subject: Re: amd64/145761: [lor] rt2870 lock order reversal hold up system in 8.0-RELEASE-p2 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 09:50:08 -0000 The following reply was made to PR amd64/145761; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, erob@gthcfoundation.org Cc: Subject: Re: amd64/145761: [lor] rt2870 lock order reversal hold up system in 8.0-RELEASE-p2 Date: Fri, 08 Oct 2010 12:47:47 +0300 If you use out-of-tree driver, shouldn't you report this issue to the author of the driver? -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 10:00:13 2010 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 4BA7B1065679 for ; Fri, 8 Oct 2010 10:00:13 +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 1FBFD8FC0A for ; Fri, 8 Oct 2010 10:00:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o98A0CsP033618 for ; Fri, 8 Oct 2010 10:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o98A0C9I033250; Fri, 8 Oct 2010 10:00:12 GMT (envelope-from gnats) Date: Fri, 8 Oct 2010 10:00:12 GMT Message-Id: <201010081000.o98A0C9I033250@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andriy Gapon X-Mailman-Approved-At: Fri, 08 Oct 2010 11:19:21 +0000 Cc: Subject: Re: amd64/144376: [panic] continuous reboot on motherboards with ATI SB7xx controller and RAID enabled X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andriy Gapon List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 10:00:13 -0000 The following reply was made to PR amd64/144376; it has been noted by GNATS. From: Andriy Gapon To: bug-followup@FreeBSD.org, luigiitaliano@libero.it Cc: Subject: Re: amd64/144376: [panic] continuous reboot on motherboards with ATI SB7xx controller and RAID enabled Date: Fri, 08 Oct 2010 12:49:59 +0300 Please use digital camera to obtain screenshots (you can then post links to them). Or even better use serial console to do proper debugging. Without technical information we won't be able to help. -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 14:06:14 2010 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 78DC61065670 for ; Fri, 8 Oct 2010 14:06:14 +0000 (UTC) (envelope-from sathler90@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 073DF8FC13 for ; Fri, 8 Oct 2010 14:06:13 +0000 (UTC) Received: by bwz6 with SMTP id 6so827402bwz.13 for ; Fri, 08 Oct 2010 07:06:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=YAQ8yfKUUNIZWf3l+I6BAogGsIiVJBMK9DbRB6Gwnq8=; b=dvLrwdMgAVOXxdnstmWiYGUXuiRjZblNqtJbCyMzi155ycufOrPscAUkeWvpVv8ldI Bepya60BANw9/IBp7QychmKwv1UIUUfF7Vk06oLiB+X8WcOVKsvDFDHmS7wK0NQOODQ2 WZT2EVUhbg0m6QpbZbGPmTww59yj2yxSMKd90= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=wSfHqVFtRVsh9RTvVD2ILiuKK24ab+gvg10sAk4GnhSjO4uDsaQWpi6dk11r3Bpa84 sOL/twNpWTios5xPT9RHP1GQn8PVe4VotYBI1hxh7Qq7mVvQkeBV67PhhIfAHmAEF3WH MwwYFq56VOgvcxpe1Kw5zJGkz0xg80ql9RQhU= MIME-Version: 1.0 Received: by 10.204.84.144 with SMTP id j16mr588701bkl.92.1286546772948; Fri, 08 Oct 2010 07:06:12 -0700 (PDT) Received: by 10.204.70.18 with HTTP; Fri, 8 Oct 2010 07:06:12 -0700 (PDT) In-Reply-To: References: Date: Fri, 8 Oct 2010 17:06:12 +0300 Message-ID: From: Eduardo To: freebsd-amd64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: i386 vs AMD64 for web/mysql server 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, 08 Oct 2010 14:06:14 -0000 Thanks to you all who replied ... I was already leaning to go for it ... now I'll do it for sure. -Ed. On Fri, Oct 8, 2010 at 12:53 PM, Pete French wrote: >> Today I am running my web and mysql server in FreeBSD i386 and I have >> the chance of moving to AMD64 architecture. >> >> This new server has 4 GB of RAM and 64 bit intel xeon cpus. >> >> Should I move to AMD64 or stick to i386 ? > > Yes, move to amd64 - if you are running a webserver and mysql then > this is a very good thing to do.We did this a couple of years ago and > have never looked back. Performance wise, you wont see it 20% faster like > some places claim, but you shoudl see somewhere around 8% - thats what I > got when I made some measurements (with some jobs being about 14% faster). > Also, if you run ZFS, that has been a lot smoother ride for me under amd64! > > The only point where I would advise being cautious if if you have > any home-written C code that you are running, as that will need to > be looked at carefully to find any possible 32->64 issues (though > -Wall on the compiler should find quite a few). > > -pete. > From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 18:13:49 2010 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 D001B1065697 for ; Fri, 8 Oct 2010 18:13:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id A54F38FC1B for ; Fri, 8 Oct 2010 18:13:49 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 5C79646B66; Fri, 8 Oct 2010 14:13:49 -0400 (EDT) Received: from jhbbsd.localnet (smtp.hudson-trading.com [209.249.190.9]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 8A88B8A050; Fri, 8 Oct 2010 14:13:48 -0400 (EDT) From: John Baldwin To: freebsd-amd64@freebsd.org, Andriy Gapon Date: Fri, 8 Oct 2010 13:20:01 -0400 User-Agent: KMail/1.13.5 (FreeBSD/7.3-CBSD-20100819; KDE/4.4.5; amd64; ; ) References: <201010080930.o989U5Wp002469@freefall.freebsd.org> In-Reply-To: <201010080930.o989U5Wp002469@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201010081320.01485.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Fri, 08 Oct 2010 14:13:48 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=4.2 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on Intel s5500wb board 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, 08 Oct 2010 18:13:49 -0000 On Friday, October 08, 2010 5:30:05 am Andriy Gapon wrote: > The following reply was made to PR amd64/150909; it has been noted by GNATS. > > From: Andriy Gapon > To: bug-followup@FreeBSD.org, astatutov@gmail.com > Cc: > Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on > Intel s5500wb board > Date: Fri, 08 Oct 2010 12:22:48 +0300 > > Can this be related to number of disks/partition that you have, your hardware or > BIOS configuration, etc? > It's also not clear from your report whether the initial delay is in loader or > in kernel. > Enabling debug in loader, verbose messages in kernel and sending us a link to a > screenshot taken during freeze would be a good start. I think someone narrowed this down earlier to inb()'s from the AT keyboard controller taking an abnormally long time. -- John Baldwin From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 19:17:58 2010 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 145D4106564A for ; Fri, 8 Oct 2010 19:17:58 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 57D138FC0C for ; Fri, 8 Oct 2010 19:17:56 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id WAA10442; Fri, 08 Oct 2010 22:02:44 +0300 (EEST) (envelope-from avg@icyb.net.ua) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1P4IDM-000Ap2-2L; Fri, 08 Oct 2010 22:02:44 +0300 Message-ID: <4CAF6AD3.9000105@icyb.net.ua> Date: Fri, 08 Oct 2010 22:02:43 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.9) Gecko/20100918 Lightning/1.0b2 Thunderbird/3.1.4 MIME-Version: 1.0 To: John Baldwin References: <201010080930.o989U5Wp002469@freefall.freebsd.org> <201010081320.01485.jhb@freebsd.org> In-Reply-To: <201010081320.01485.jhb@freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Fri, 08 Oct 2010 19:44:24 +0000 Cc: freebsd-amd64@freebsd.org Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on Intel s5500wb board 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, 08 Oct 2010 19:17:58 -0000 on 08/10/2010 20:20 John Baldwin said the following: > On Friday, October 08, 2010 5:30:05 am Andriy Gapon wrote: >> The following reply was made to PR amd64/150909; it has been noted by GNATS. >> >> From: Andriy Gapon >> To: bug-followup@FreeBSD.org, astatutov@gmail.com >> Cc: >> Subject: Re: amd64/150909: [hang] FreeBSD freezes a few minutes booting on >> Intel s5500wb board >> Date: Fri, 08 Oct 2010 12:22:48 +0300 >> >> Can this be related to number of disks/partition that you have, your hardware or >> BIOS configuration, etc? >> It's also not clear from your report whether the initial delay is in loader or >> in kernel. >> Enabling debug in loader, verbose messages in kernel and sending us a link to a >> screenshot taken during freeze would be a good start. > > I think someone narrowed this down earlier to inb()'s from the AT keyboard > controller taking an abnormally long time. Oh, I think that it was sobomax@ But I don't recall what was his solution/workaround. -- Andriy Gapon From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 22:17:01 2010 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 B727B106566B for ; Fri, 8 Oct 2010 22:17:01 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 7E93F8FC08 for ; Fri, 8 Oct 2010 22:17:01 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.4/8.14.4) with ESMTP id o98MH1eh089999 for ; Fri, 8 Oct 2010 15:17:01 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.4/8.14.4/Submit) id o98MH1Dj089998 for freebsd-amd64@freebsd.org; Fri, 8 Oct 2010 15:17:01 -0700 (PDT) (envelope-from sgk) Date: Fri, 8 Oct 2010 15:17:01 -0700 From: Steve Kargl To: freebsd-amd64@freebsd.org Message-ID: <20101008221701.GA89977@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Subject: linux32 sysctl limits? 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, 08 Oct 2010 22:17:01 -0000 'man linux' does not list or describe the following sysctl variables. compat.linux32.maxvmem: 0 compat.linux32.maxssiz: 67108864 compat.linux32.maxdsiz: 536870912 Are there any limitations with setting these to say 1G for stack and 4G for data on a system with 16G of memory? -- Steve From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 22:59:07 2010 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 EFB021065693 for ; Fri, 8 Oct 2010 22:59:07 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 6B3A98FC08 for ; Fri, 8 Oct 2010 22:59:06 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id o98MKDP0091280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 9 Oct 2010 01:20:13 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4) with ESMTP id o98MKDo8038871; Sat, 9 Oct 2010 01:20:13 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id o98MKDco038870; Sat, 9 Oct 2010 01:20:13 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sat, 9 Oct 2010 01:20:13 +0300 From: Kostik Belousov To: Steve Kargl Message-ID: <20101008222013.GT2392@deviant.kiev.zoral.com.ua> References: <20101008221701.GA89977@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsUBxXnnTURmGdap" Content-Disposition: inline In-Reply-To: <20101008221701.GA89977@troutmask.apl.washington.edu> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-3.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: freebsd-amd64@freebsd.org Subject: Re: linux32 sysctl limits? 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, 08 Oct 2010 22:59:08 -0000 --KsUBxXnnTURmGdap Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 08, 2010 at 03:17:01PM -0700, Steve Kargl wrote: > 'man linux' does not list or describe the following sysctl > variables. >=20 > compat.linux32.maxvmem: 0 > compat.linux32.maxssiz: 67108864 > compat.linux32.maxdsiz: 536870912 >=20 > Are there any limitations with setting these to > say 1G for stack and 4G for data on a system with > 16G of memory? The linux ABI processes are 32bit, so you cannot reallistically assign 4Gb to maxdsiz. The space between data (bss) end and stack bottom is used for mappings, so it should be kept large enough. --KsUBxXnnTURmGdap Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAkyvmRwACgkQC3+MBN1Mb4inLwCg5PZQIU1cbWlOctQl18MgIDn+ eYYAoNEl+wfibkeAzIsFg669MPInN1Bo =f3H3 -----END PGP SIGNATURE----- --KsUBxXnnTURmGdap-- From owner-freebsd-amd64@FreeBSD.ORG Fri Oct 8 23:12:10 2010 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 B38821065673 for ; Fri, 8 Oct 2010 23:12:10 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 7C1148FC0A for ; Fri, 8 Oct 2010 23:12:10 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.4/8.14.4) with ESMTP id o98NCAAb090211; Fri, 8 Oct 2010 16:12:10 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.4/8.14.4/Submit) id o98NCAF7090210; Fri, 8 Oct 2010 16:12:10 -0700 (PDT) (envelope-from sgk) Date: Fri, 8 Oct 2010 16:12:10 -0700 From: Steve Kargl To: Kostik Belousov Message-ID: <20101008231210.GA90183@troutmask.apl.washington.edu> References: <20101008221701.GA89977@troutmask.apl.washington.edu> <20101008222013.GT2392@deviant.kiev.zoral.com.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101008222013.GT2392@deviant.kiev.zoral.com.ua> User-Agent: Mutt/1.4.2.3i Cc: freebsd-amd64@freebsd.org Subject: Re: linux32 sysctl limits? 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, 08 Oct 2010 23:12:10 -0000 On Sat, Oct 09, 2010 at 01:20:13AM +0300, Kostik Belousov wrote: > On Fri, Oct 08, 2010 at 03:17:01PM -0700, Steve Kargl wrote: > > 'man linux' does not list or describe the following sysctl > > variables. > > > > compat.linux32.maxvmem: 0 > > compat.linux32.maxssiz: 67108864 > > compat.linux32.maxdsiz: 536870912 > > > > Are there any limitations with setting these to > > say 1G for stack and 4G for data on a system with > > 16G of memory? > > The linux ABI processes are 32bit, so you cannot reallistically assign > 4Gb to maxdsiz. The space between data (bss) end and stack bottom is > used for mappings, so it should be kept large enough. Does this mean that maxssiz+maxdsiz=3G would allow 1G for mappings? The only linux app that will be running is matlab (and I suppose any children processes of matlab). -- Steve From owner-freebsd-amd64@FreeBSD.ORG Sat Oct 9 06:45:18 2010 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 C48561065674 for ; Sat, 9 Oct 2010 06:45:18 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 33C1B8FC16 for ; Sat, 9 Oct 2010 06:45:17 +0000 (UTC) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id o996jCU4027241 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 9 Oct 2010 09:45:12 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4) with ESMTP id o996jBqC050517; Sat, 9 Oct 2010 09:45:11 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.4/8.14.4/Submit) id o996jB0j050516; Sat, 9 Oct 2010 09:45:11 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Sat, 9 Oct 2010 09:45:11 +0300 From: Kostik Belousov To: Steve Kargl Message-ID: <20101009064511.GV2392@deviant.kiev.zoral.com.ua> References: <20101008221701.GA89977@troutmask.apl.washington.edu> <20101008222013.GT2392@deviant.kiev.zoral.com.ua> <20101008231210.GA90183@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DXai+D0O/pduKrS9" Content-Disposition: inline In-Reply-To: <20101008231210.GA90183@troutmask.apl.washington.edu> User-Agent: Mutt/1.4.2.3i X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-3.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DNS_FROM_OPENWHOIS autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: freebsd-amd64@freebsd.org Subject: Re: linux32 sysctl limits? 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, 09 Oct 2010 06:45:18 -0000 --DXai+D0O/pduKrS9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 08, 2010 at 04:12:10PM -0700, Steve Kargl wrote: > On Sat, Oct 09, 2010 at 01:20:13AM +0300, Kostik Belousov wrote: > > On Fri, Oct 08, 2010 at 03:17:01PM -0700, Steve Kargl wrote: > > > 'man linux' does not list or describe the following sysctl > > > variables. > > >=20 > > > compat.linux32.maxvmem: 0 > > > compat.linux32.maxssiz: 67108864 > > > compat.linux32.maxdsiz: 536870912 > > >=20 > > > Are there any limitations with setting these to > > > say 1G for stack and 4G for data on a system with > > > 16G of memory? > >=20 > > The linux ABI processes are 32bit, so you cannot reallistically assign > > 4Gb to maxdsiz. The space between data (bss) end and stack bottom is > > used for mappings, so it should be kept large enough. >=20 > Does this mean that maxssiz+maxdsiz=3D3G would allow=20 > 1G for mappings? The only linux app that will be > running is matlab (and I suppose any children processes > of matlab). It has a chance of working. I do not know how much is linux userland sensitive to the address space layout change. --DXai+D0O/pduKrS9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAkywD3cACgkQC3+MBN1Mb4iZlACgvAQNK4wRChMtYz6cTGbsOU8W MusAoKujmZjuwYG0p5AhnZs//NA9F8c1 =ECRR -----END PGP SIGNATURE----- --DXai+D0O/pduKrS9-- From owner-freebsd-amd64@FreeBSD.ORG Sat Oct 9 15:57:39 2010 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 677CD106564A; Sat, 9 Oct 2010 15:57:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (unknown [IPv6:2607:f3e0:0:1::12]) by mx1.freebsd.org (Postfix) with ESMTP id 1DF168FC14; Sat, 9 Oct 2010 15:57:39 +0000 (UTC) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.14.4/8.14.4) with ESMTP id o99FvTOJ010700 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 9 Oct 2010 11:57:29 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [64.7.128.103]) by smtp1.sentex.ca (8.14.4/8.14.4) with ESMTP id o99FvTVY043360; Sat, 9 Oct 2010 11:57:29 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-stable.sentex.ca (Postfix, from userid 666) id 4A0961B5060; Sat, 9 Oct 2010 11:57:29 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20101009155729.4A0961B5060@freebsd-stable.sentex.ca> Date: Sat, 9 Oct 2010 11:57:29 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.96.1 at smtp1.sentex.ca X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.67 on 64.7.153.18 Cc: Subject: [releng_7 tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2010 15:57:39 -0000 TB --- 2010-10-09 14:18:05 - tinderbox 2.6 running on freebsd-stable.sentex.ca TB --- 2010-10-09 14:18:05 - starting RELENG_7 tinderbox run for amd64/amd64 TB --- 2010-10-09 14:18:05 - cleaning the object tree TB --- 2010-10-09 14:18:38 - cvsupping the source tree TB --- 2010-10-09 14:18:39 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/RELENG_7/amd64/amd64/supfile TB --- 2010-10-09 14:18:50 - building world TB --- 2010-10-09 14:18:50 - MAKEOBJDIRPREFIX=/obj TB --- 2010-10-09 14:18:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-10-09 14:18:50 - TARGET=amd64 TB --- 2010-10-09 14:18:50 - TARGET_ARCH=amd64 TB --- 2010-10-09 14:18:50 - TZ=UTC TB --- 2010-10-09 14:18:50 - __MAKE_CONF=/dev/null TB --- 2010-10-09 14:18:50 - cd /src TB --- 2010-10-09 14:18:50 - /usr/bin/make -B buildworld >>> World build started on Sat Oct 9 14:18:51 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sat Oct 9 15:49:21 UTC 2010 TB --- 2010-10-09 15:49:21 - generating LINT kernel config TB --- 2010-10-09 15:49:21 - cd /src/sys/amd64/conf TB --- 2010-10-09 15:49:21 - /usr/bin/make -B LINT TB --- 2010-10-09 15:49:21 - building LINT kernel TB --- 2010-10-09 15:49:21 - MAKEOBJDIRPREFIX=/obj TB --- 2010-10-09 15:49:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-10-09 15:49:21 - TARGET=amd64 TB --- 2010-10-09 15:49:21 - TARGET_ARCH=amd64 TB --- 2010-10-09 15:49:21 - TZ=UTC TB --- 2010-10-09 15:49:21 - __MAKE_CONF=/dev/null TB --- 2010-10-09 15:49:21 - cd /src TB --- 2010-10-09 15:49:21 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Oct 9 15:49:21 UTC 2010 >>> 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-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/sdhci/sdhci.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-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/sf/if_sf.c /src/sys/dev/sf/if_sf.c: In function 'sf_poll': /src/sys/dev/sf/if_sf.c:1827: error: 'rx_npkts' undeclared (first use in this function) /src/sys/dev/sf/if_sf.c:1827: error: (Each undeclared identifier is reported only once /src/sys/dev/sf/if_sf.c:1827: error: for each function it appears in.) cc1: warnings being treated as errors /src/sys/dev/sf/if_sf.c:1827: warning: 'return' with a value, in function returning void *** Error code 1 Stop in /obj/amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-10-09 15:57:29 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-10-09 15:57:29 - ERROR: failed to build lint kernel TB --- 2010-10-09 15:57:29 - 4972.50 user 554.31 system 5963.77 real http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat Oct 9 20:54:14 2010 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 D2AD5106566B; Sat, 9 Oct 2010 20:54:14 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 944D98FC0C; Sat, 9 Oct 2010 20:54:14 +0000 (UTC) Received: by pzk33 with SMTP id 33so341351pzk.13 for ; Sat, 09 Oct 2010 13:54:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:date:to:cc :subject:message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=glFUurbAybc/Jpd1yFE+j1MPpNn2OZuQBP6dH6U7W0w=; b=nOlWf3xJDxCjgOd6NtJ0BUgqdxWuRcWgz5OmrGPTCrp8DItyAdR3SMQk6k3W7Ql+CO YQ+wmCThKD8j4jS7WomwODnENCrtYd9AiQABqTEh5hZPooobYnI6BZtsIDckZINuV7oQ YHHnbNwSIqnnDce3erv+qzl2RPUXYAkjip6oI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=U0LXDsnUEsnXl8bWygZp+blTP6WbEQMD/+xwyxpv/pyrO0tn5Pc24oX1F1rQoLhAym 2d3P9hxQwAbTOVYZ2xLPJo06CAAXfRkYMcGHYC2rWf1VTufHFrl/UAVmoYMgW03F3y3q vslLdKqQCCIbtzZhSB/ul+OUlWaBSdF9MkPG4= Received: by 10.143.28.9 with SMTP id f9mr1953713wfj.231.1286657652954; Sat, 09 Oct 2010 13:54:12 -0700 (PDT) Received: from pyunyh@gmail.com ([174.35.1.224]) by mx.google.com with ESMTPS id d31sm6192551wam.17.2010.10.09.13.54.09 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 09 Oct 2010 13:54:10 -0700 (PDT) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Sat, 9 Oct 2010 13:52:27 -0700 From: Pyun YongHyeon Date: Sat, 9 Oct 2010 13:52:27 -0700 To: FreeBSD Tinderbox Message-ID: <20101009205227.GA33450@michelle.cdnetworks.com> References: <20101009155729.4A0961B5060@freebsd-stable.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101009155729.4A0961B5060@freebsd-stable.sentex.ca> User-Agent: Mutt/1.4.2.3i Cc: amd64@freebsd.org, stable@freebsd.org Subject: Re: [releng_7 tinderbox] failure on amd64/amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2010 20:54:14 -0000 On Sat, Oct 09, 2010 at 11:57:29AM -0400, FreeBSD Tinderbox wrote: > TB --- 2010-10-09 14:18:05 - tinderbox 2.6 running on freebsd-stable.sentex.ca > TB --- 2010-10-09 14:18:05 - starting RELENG_7 tinderbox run for amd64/amd64 > TB --- 2010-10-09 14:18:05 - cleaning the object tree > TB --- 2010-10-09 14:18:38 - cvsupping the source tree > TB --- 2010-10-09 14:18:39 - /usr/bin/csup -z -r 3 -g -L 1 -h localhost -s /tinderbox/RELENG_7/amd64/amd64/supfile > TB --- 2010-10-09 14:18:50 - building world > TB --- 2010-10-09 14:18:50 - MAKEOBJDIRPREFIX=/obj > TB --- 2010-10-09 14:18:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2010-10-09 14:18:50 - TARGET=amd64 > TB --- 2010-10-09 14:18:50 - TARGET_ARCH=amd64 > TB --- 2010-10-09 14:18:50 - TZ=UTC > TB --- 2010-10-09 14:18:50 - __MAKE_CONF=/dev/null > TB --- 2010-10-09 14:18:50 - cd /src > TB --- 2010-10-09 14:18:50 - /usr/bin/make -B buildworld > >>> World build started on Sat Oct 9 14:18:51 UTC 2010 > >>> Rebuilding the temporary build tree > >>> stage 1.1: legacy release compatibility shims > >>> stage 1.2: bootstrap tools > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3: cross tools > >>> stage 4.1: building includes > >>> stage 4.2: building libraries > >>> stage 4.3: make dependencies > >>> stage 4.4: building everything > >>> stage 5.1: building 32 bit shim libraries > >>> World build completed on Sat Oct 9 15:49:21 UTC 2010 > TB --- 2010-10-09 15:49:21 - generating LINT kernel config > TB --- 2010-10-09 15:49:21 - cd /src/sys/amd64/conf > TB --- 2010-10-09 15:49:21 - /usr/bin/make -B LINT > TB --- 2010-10-09 15:49:21 - building LINT kernel > TB --- 2010-10-09 15:49:21 - MAKEOBJDIRPREFIX=/obj > TB --- 2010-10-09 15:49:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2010-10-09 15:49:21 - TARGET=amd64 > TB --- 2010-10-09 15:49:21 - TARGET_ARCH=amd64 > TB --- 2010-10-09 15:49:21 - TZ=UTC > TB --- 2010-10-09 15:49:21 - __MAKE_CONF=/dev/null > TB --- 2010-10-09 15:49:21 - cd /src > TB --- 2010-10-09 15:49:21 - /usr/bin/make -B buildkernel KERNCONF=LINT > >>> Kernel build for LINT started on Sat Oct 9 15:49:21 UTC 2010 > >>> 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-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/sdhci/sdhci.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-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/sf/if_sf.c > /src/sys/dev/sf/if_sf.c: In function 'sf_poll': > /src/sys/dev/sf/if_sf.c:1827: error: 'rx_npkts' undeclared (first use in this function) > /src/sys/dev/sf/if_sf.c:1827: error: (Each undeclared identifier is reported only once > /src/sys/dev/sf/if_sf.c:1827: error: for each function it appears in.) > cc1: warnings being treated as errors > /src/sys/dev/sf/if_sf.c:1827: warning: 'return' with a value, in function returning void > *** Error code 1 > > Stop in /obj/amd64/src/sys/LINT. > *** Error code 1 > > Stop in /src. > *** Error code 1 > > Stop in /src. > TB --- 2010-10-09 15:57:29 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2010-10-09 15:57:29 - ERROR: failed to build lint kernel > TB --- 2010-10-09 15:57:29 - 4972.50 user 554.31 system 5963.77 real > > > http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-amd64-amd64.full Should be fixed now. Sorry for the breakage.