From owner-freebsd-i386@FreeBSD.ORG Mon Mar 26 00:10:04 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5042C16A401 for ; Mon, 26 Mar 2007 00:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1B11413C484 for ; Mon, 26 Mar 2007 00:10:04 +0000 (UTC) (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 l2Q0A3sn051957 for ; Mon, 26 Mar 2007 00:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2Q0A3pI051951; Mon, 26 Mar 2007 00:10:03 GMT (envelope-from gnats) Resent-Date: Mon, 26 Mar 2007 00:10:03 GMT Resent-Message-Id: <200703260010.l2Q0A3pI051951@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Quinot Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC95916A401 for ; Mon, 26 Mar 2007 00:03:39 +0000 (UTC) (envelope-from thomas@cuivre.fr.eu.org) Received: from melamine.cuivre.fr.eu.org (melusine.cuivre.fr.eu.org [82.225.155.84]) by mx1.freebsd.org (Postfix) with ESMTP id B384813C489 for ; Mon, 26 Mar 2007 00:03:39 +0000 (UTC) (envelope-from thomas@cuivre.fr.eu.org) Received: by melamine.cuivre.fr.eu.org (Postfix, from userid 1000) id 6681A5C0FD; Mon, 26 Mar 2007 02:03:36 +0200 (CEST) Message-Id: <20070326000336.6681A5C0FD@melamine.cuivre.fr.eu.org> Date: Mon, 26 Mar 2007 02:03:36 +0200 (CEST) From: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/110828: boot0sio never sets port speed X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Quinot List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Mar 2007 00:10:04 -0000 >Number: 110828 >Category: i386 >Synopsis: boot0sio never sets port speed >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 26 00:10:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: System: FreeBSD melamine.cuivre.fr.eu.org 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Mar 18 12:49:35 CET 2007 thomas@melamine.cuivre.fr.eu.org:/space/build/obj/space/build/src/RELENG_6/sys/SMP i386 >Description: A junk value is passed in AX when bioscom is called to set up serial port parameters because COMSPEED is treated as an address instead of an immediate value. This causes the port parameters not to be set. >How-To-Repeat: >Fix: Index: boot0.S =================================================================== RCS file: /space/mirror/ncvs/src/sys/boot/i386/boot0/boot0.S,v retrieving revision 1.14.2.1 diff -u -r1.14.2.1 boot0.S --- boot0.S 31 May 2006 21:32:24 -0000 1.14.2.1 +++ boot0.S 25 Mar 2007 23:56:53 -0000 @@ -96,7 +96,7 @@ /* * Initialize the serial port. bioscom preserves the driver number in DX. */ - movw COMSPEED,%ax # defined by Makefile + movw $COMSPEED,%ax # defined by Makefile callw bioscom #endif /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Mar 26 00:14:27 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0405316A400; Mon, 26 Mar 2007 00:14:27 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id D0D6C13C480; Mon, 26 Mar 2007 00:14:26 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from freefall.freebsd.org (thomas@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2Q0EQFP053020; Mon, 26 Mar 2007 00:14:26 GMT (envelope-from thomas@freefall.freebsd.org) Received: (from thomas@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2Q0EQ3o053016; Mon, 26 Mar 2007 00:14:26 GMT (envelope-from thomas) Date: Mon, 26 Mar 2007 00:14:26 GMT From: Thomas Quinot Message-Id: <200703260014.l2Q0EQ3o053016@freefall.freebsd.org> To: thomas@FreeBSD.org, freebsd-i386@FreeBSD.org, thomas@FreeBSD.org Cc: Subject: Re: i386/110828: boot0sio never sets port speed X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Mar 2007 00:14:27 -0000 Synopsis: boot0sio never sets port speed Responsible-Changed-From-To: freebsd-i386->thomas Responsible-Changed-By: thomas Responsible-Changed-When: Mon Mar 26 00:14:03 UTC 2007 Responsible-Changed-Why: I'll take care of this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=110828 From owner-freebsd-i386@FreeBSD.ORG Mon Mar 26 11:08:13 2007 Return-Path: X-Original-To: freebsd-i386@FreeBSD.org Delivered-To: freebsd-i386@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16DDD16A400 for ; Mon, 26 Mar 2007 11:08:13 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0447513C45E for ; Mon, 26 Mar 2007 11:08:13 +0000 (UTC) (envelope-from owner-bugmaster@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 l2QB8C81049282 for ; Mon, 26 Mar 2007 11:08:12 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2QB8BbB049278 for freebsd-i386@FreeBSD.org; Mon, 26 Mar 2007 11:08:11 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 Mar 2007 11:08:11 GMT Message-Id: <200703261108.l2QB8BbB049278@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Mar 2007 11:08:13 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70386 i386 IBM x345 Freezes Randomly o i386/70482 i386 Array adapter problems o i386/70525 i386 [boot] boot0cfg: -o packet not effective o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o i386/70747 i386 ddos attack causes box to crash on kernel 5.2.1 o i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, ata disk atta o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o i386/71035 i386 [kbd] SMP boot hangs in bus_space_write_1 during keybo o i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E attached o i386/72960 i386 BTX halted with Promise Tx2000 Raid o i386/73196 i386 [hang] 5.2.1 boot CD hangs during boot on Athlon XP o i386/73265 i386 FreeBSD kernel crashes when booting on ECS 741GX-M Mai o i386/73666 i386 5.3 UDMA error WD1600 can't partition drive o i386/73934 i386 fdisk sees disk as empty o i386/74008 i386 IBM eServer x225 cannot boot any v5.x - endless dump s o i386/74044 i386 ServerWorks OSB4 SMBus interface does not detected on o i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [introduced in 5.3] o i386/74601 i386 Cardbus fails after busdma_machdep.c update o i386/74816 i386 OS crash with kernel trap 12 in different processes f i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) do not boot. o i386/76666 i386 Booting and Sound are mutually exclusive on Toshiba la o i386/76737 i386 CardBus problem (cbb1: Could not map register memory) o i386/76925 i386 standard pci-ide, install - "NO DISKS FOUND" :) o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o i386/76948 i386 [rl] Slow network with rl0 o i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE-2.1 on IBM o i386/77443 i386 [fdc] can't access floppy -- regression on 5.3 o i386/77529 i386 installation of freebsd 5.3 in laptop an to powereger o i386/78219 i386 Netgear FA-410TX is incorrectly detected o i386/78339 i386 BTX loader crashes on boot on HP Proliant DL140 o i386/78517 i386 [ata] WRITE_DMA and READ_DMA timeouts with ATI RX330 c o i386/78657 i386 [xe] [hang] error installing 5.3-RELEASE due to Compaq o i386/78929 i386 atapicam prevents boot, system hangs o i386/78930 i386 SuperMicro web server with 5.3-RELEASE kernel panics u o i386/79073 i386 System panic and hang after creating a large empty fil o i386/79169 i386 freeze with striped USB Drives under high load o i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4210T (233MMX o i386/79409 i386 Coming back from idles make the server reboot o i386/79686 i386 Spurious notebook disk errors from ATA driver. o i386/79729 i386 umass, da0 not detected by devfs for o i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG error on kernel s o i386/79779 i386 If system memory is above 4GB, one parts of memory wil o i386/79784 i386 [bfe] Broadcom BCM4401 : no carrier o i386/79807 i386 Lock Up on Old Acer P1 Comp o i386/79833 i386 BTX crashes on boot when using Promise TX2Plus SATA co o i386/79943 i386 Very High interupt rate on PCM o i386/80268 i386 [crash] System with Transmeta Efficeon cpu crashes whi o i386/80989 i386 Cannot install 5.4-RELEASE both in my system and in VM p i386/81111 i386 /boot/loader causes reboot due to CFLAGS+= -msse3 o i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeon Mobility 98 o i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR_COMPAT" to p o i386/81311 i386 [smp] [hang] Athlon MP SMP + 3ware + em0 = deadlock, n o i386/81903 i386 Installer hangs on all menu entries on Toshiba A75 mod o i386/82029 i386 Boot Loader installation on MegaRAID controller o i386/82285 i386 [race] kernel panic during reboot o i386/83574 i386 installation failure o i386/83735 i386 [re] network card (realtek 8139) and sound card (CMI87 o i386/83826 i386 can't install any version on Toshiba Sattelite 2800/S2 o i386/83925 i386 [boot] can't boot Dell Latitude D610 after BIOS update o i386/84088 i386 Panic with nforce2 platform on FreeBSD 6.0 beta o i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB memory used o i386/84717 i386 [hang] 5.4-rel booting locks-up on Supermicro 5013C-MT o i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA controller ( o i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o i386/85450 i386 panic: subdisk6 detached (appears to be a sata problem o i386/85454 i386 Panic while booting: No virtual memory for kernel o i386/85866 i386 [hang] bootloader freezes on Pentium2/3 o i386/85938 i386 Install fails, unable to write partitions o i386/85944 i386 FreeBSD restarts after showing "Welcome to FreeBSD" sc o i386/86325 i386 [install] unable to install FreeBSD on IBM BladeCenter o i386/86380 i386 i386_set_ioperm doesn't take effect immediately o i386/86612 i386 SCSI DAT Drive Issue o i386/86651 i386 FAILURE ATA-IDENTIFY o i386/86667 i386 GNOME Battery Applet causing keyboard to lag/drop char o i386/86806 i386 Couldn't alloc kernel virtual memory o i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS o i386/86920 i386 [ndis] ifconfig: SIOCS80211: Invalid argument (regress o i386/87085 i386 Will not install on Microtel system o i386/87122 i386 Installer of 6.0-BETA5 can't find HDD partition of Son o i386/87155 i386 [boot] [panic] Can't Alloc Virtual Memory in FreeBSD 6 o i386/87356 i386 6.0 RC1 cannot see 250GB drive o i386/87576 i386 no installation on Acer aspire 1304xc laptop o i386/87630 i386 [ndis] No match for NdisIMGetCurrentPacketStack o i386/87876 i386 Installation Problems for i368 Compaq R3000 o i386/88124 i386 [hang] X -configure freezes 6.0rc1 o i386/88130 i386 [hang] Machine hangs on dhcp o i386/88139 i386 [i386] feature request: 53C875 Chipset HP 5064-6016 do o i386/88315 i386 [sym] [hang] Symbios/LSI-HBA (SYM83C895) hangs o i386/88459 i386 [panic] Fatal trap 19 (process: idle: cpu0) on HP prol o i386/88583 i386 i can't install freebsd in server ibm xseries 226(adap o i386/88610 i386 FreeBSD 6.0 bootonly crashes during boot after sis0, d o i386/88717 i386 freebsd 5.4 boots from lsi 53c1030 only in safe mode o i386/88755 i386 [panic] FreeBSD R6.0 on ThinkPad R40 installation rebo o i386/88808 i386 V6.0 crashing on install with ICH7 RAID 5 enabled... o i386/88853 i386 [hang] SMP system FreeBSD 6.0-STABLE crashed while tra o i386/88929 i386 FreeBSD 6.0 install CD fails to find disks on Sony S-s o i386/89249 i386 HighPoint RocketRAID 1520 (HPT372N) can't write on har o i386/89288 i386 [acpi] DMA error while booting with acpi enable o i386/89340 i386 [panic] 6.0-STABLE (2005-11-07) panic when mostly idle o i386/89353 i386 [ata] invalid disk controller recognition of intel ICH o i386/89383 i386 [sio] [panic] page fault o i386/90059 i386 panic in 2 mins after power on PC o i386/90065 i386 [wi] System hangs if wireless card wasn't disabled bef o i386/90134 i386 [irq] IDE and SATA disks not detected on various contr o i386/90519 i386 Resume after suspend results in g_vfs_done() errors an o i386/90949 i386 [panic] kernel panic with opera o i386/91038 i386 [panic] 6.0-RELEASE on Fujitsu Siemens Amilo Pro v2040 o i386/91282 i386 6.0R install CD crashes at eip=0x90db (Promise PDC2026 o i386/91745 i386 Second processor not detected on Proliant ML530 G2 wit o i386/91748 i386 acpi problem on Acer TravelMare 4652LMi (nvidia panic, o i386/92193 i386 Can't boot from 6.0 Installation CD: BTX halted (Gigab o i386/92303 i386 [ips] Cannot install FreeBSD 6 on an IBM x226 8488E4Y o i386/93385 i386 Fatal trap 12 occasionally on reboot (Abit NF7-S2 nFor o i386/93524 i386 Automatic reboot o i386/93615 i386 Operating system wont install. Problem with fdisk. o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o i386/93762 i386 Machine lockup at boot loader countdown on SuperMicro o i386/93787 i386 freebsd 6.0 hangs on atkbd0 on Proliant 1850r server a o i386/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o i386/93845 i386 cross-machine installworld broken in sys/boot/i386/loa o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o i386/93989 i386 Can't install FreeBSD from IEEE1394 DVD-RW on Acer Tra o i386/94141 i386 [iwi] iwi doesn't work on Acer Laptop o i386/94364 i386 [kbd] Unable to boot on NX9110 laptop o i386/94420 i386 FreeBSD does NOT support the pcChips M925 motherboard. o i386/94653 i386 Fatal trap 12: page fault while in kernel mode o i386/94911 i386 [ata] ata regression with DOM-IDE o i386/95087 i386 System freeze irrespective of load on Promise FastTrak o i386/95151 i386 Fatal trap 12: page fault while in kernel mode o i386/95365 i386 stability problems: interface not reachable on 6.1-PRE o i386/95515 i386 unable to boot FreeBSD 6.x with SATA150 Promise contro o i386/96014 i386 HP Pavilion zv5000(Intel) reboot installation problem o i386/96049 i386 Generic SMP Kernel Panic in 6.1-RC1 during mount root o i386/96225 i386 Toshiba M70-CL3 Hangs Up During Booting o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o i386/96357 i386 FreeBSD cannot recognize all the logical partitions o i386/96371 i386 Freeze up when booting FBSD 6.0 RELEASE on IBM iSeries o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work o i386/96652 i386 kernel page fault o i386/96870 i386 Crash on loader with ibm intellistation z pro o i386/97025 i386 fbsd (2 cd) dont install in vmware 5.5.0 - reboot. o i386/97127 i386 IBM Intellistation Z Pro crash when boot from cd o i386/97263 i386 [ata] FreeBSD only detects first drive o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In o i386/97525 i386 System freezes when cable modem connected on USB o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o i386/98215 i386 [geode] regression: FreeBSD can no longer boot Geode G o i386/98765 i386 [ata] timeouts on sata drive o i386/98964 i386 [iwi] iwi totally freezes system o i386/99608 i386 ATAPI or CAM crash on FreeBSD 6.1-stable with a Pionee o i386/100160 i386 [mfid] Perc5i: FreeBSD doesn't recognize more than one o i386/100194 i386 On Intel D945GTPLKR delay at start FreeBSD kernel o i386/100420 i386 boot1/boot2 lba error o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o i386/101135 i386 [iwi] iwi goes up and down o i386/101168 i386 ncp kernel panic o i386/101616 i386 FreeBSD freeze on bootup, Compaq Proliant (legacy) ser o i386/101667 i386 [ata] ATA problems when power management is on o i386/101857 i386 Mouse not moving after switching with StarView SV411 K o i386/102410 i386 FreeBSD 6.1-RELEASE installation boot freeze on Asus P o i386/102562 i386 [em] no traffic pass through a em card after approx. a o i386/103031 i386 Panic during installation o i386/103063 i386 Can not install on Dell XPS 700 o i386/103186 i386 Poweredge Raid Controller/AMI Megatrends will not form s i386/103624 i386 [ata] [dell] Problem installing on Dell Powervault 745 o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter o i386/104473 i386 boot loader reboots before loading kernel o i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o i386/104678 i386 SMP not working on Turion XP Laptop o i386/104711 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel - video/ o i386/104719 i386 Seagate ST3802110A errors/delays when using PIO4 or UD o i386/104867 i386 Clock running at 2x speed of wall clock o i386/105708 i386 [em] em driver failed to initialize on thinkpad X60 o i386/106233 i386 System halts on Dell 2950 o i386/107382 i386 "Fatal trap 12" when installing FreeBSD 6.1 on old not o i386/107564 i386 fatal trap 19 during installation on a Dell Latitude D o i386/108139 i386 System hangs after /sbin/shutdown o i386/108185 i386 freebsd 6.2 fatal kernel trap o i386/109200 i386 READ_UDMA UDMA ICRC error cause not detecting cable ty o i386/109250 i386 floppies on 6.2-Release are 6.2-Beta2 f i386/109267 i386 FreeBSD 6.2 Stable Kernel Update Prevents Dell PowerEd o i386/109568 i386 Reboot server with "Fatal trap 12" o i386/109968 i386 Panic while booting with PCscsi II AM53C974AKC SCSI ca o i386/110111 i386 install hangs after APIC inspection, Xeon on ASUS NCLV o i386/110214 i386 FreeBSD 6.2 freezes on SSH activitiy caused by nagios o i386/110218 i386 kmem_malloc(4096): kmem_map too small: 335544320 total 191 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70610 i386 [speaker] [patch] spkr(4): hardcoded assumption HZ == o i386/70832 i386 [re] serious problems with RealTek NIC using re0 drive o i386/72179 i386 [acpi] [patch] Inconsistent apm(8) output regarding th o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o i386/74327 i386 [pmap] [patch] mlock() causes physical memory leakage o i386/74454 i386 [bsd.cpu.mk] [patch] Adding VIA Eden family o i386/74650 i386 System Reboot with umount command o i386/74658 i386 [ata] ATAPI CD not recognized after booting FreeBSD 4. o i386/74966 i386 [rl] Realtek driver seems to misinterpret some packets o i386/75090 i386 [ata] READ_BIG errors with Sony CRX1611 o i386/75420 i386 CMD 648 PCI not work o i386/75776 i386 NO ps/2 keyboard using USB keyboard under bsd4.10 and o i386/75881 i386 ACPI suspend/resume doesn't work on ASUS L5 notebook o i386/75898 i386 Exception and reboot: Loader and kernel use SSE2 instr o i386/76587 i386 ps2 mouse weird... o i386/76653 i386 Problem with Asahi Optical usb device (Pentax Optio S5 o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s o i386/79136 i386 disk controller not detected o i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/6872 PCI-CardBu o i386/79317 i386 Freebsd Erasing NVRAM o i386/79840 i386 Partitioning and formating a new disk fails using sysi o i386/79890 i386 burncd fails on a Pioneer DVD drive o i386/80081 i386 [if_ndis] Problem loading a NDIS kernel module. o i386/80092 i386 PC Cards do not work at all on laptop Compaq N800V o i386/80095 i386 ld-elf.so.1 crashes with executables produced by tinyc o i386/81082 i386 Failure to detect Pioneer CD drive on Intel ICH UDMA66 o i386/81597 i386 My POS-460 system based on a Western Digital LPM/LPX l o i386/82548 i386 VBE video driver incorrectly switches to/from text mod o i386/83018 i386 Installer will not boot o i386/85417 i386 [i386] [patch] Possible bug in ia32 floating-point exc o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85654 i386 [i386] [patch] separate max cpu from max apic in i386 o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/88020 i386 cannot boot unless: hint.apic.0.disabled="1" is set on o i386/88491 i386 [panic] Panic when boot installation CD1 (Acer TravelM o i386/88965 i386 vidcontrol hangs with 2 modules of RAM o i386/90243 i386 Laptop fan doesn't turn off (ACPI enabled) (Packard Be o i386/90839 i386 [ata] burncd gets error on CDRIOCFIXATE with HL-DT-ST o i386/91594 i386 FreeBSD > 5.4 w/ACPI fails to detect Intel Pro/1000 MT o i386/91609 i386 Booting takes *a long time* unless power cord is plugg o i386/91761 i386 [ata] NEC_DVD-RW + system start: semaphore timeout o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o i386/92501 i386 [irq] Hang on boot with ACPI enabled on ASUS A6R noteb o i386/93793 i386 [kbd] Keyboard stops working after a shutdown -p now ( o i386/94850 i386 [bge] FreeBSD 6.0 on Fujitsu BX300, networking doesn't o i386/95106 i386 cannot install freebsd o i386/95993 i386 Cyrix 5530 unable to map interrupt o i386/96397 i386 [dc] strange behaveour of the dc driver on divicom dm9 o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o i386/100204 i386 FreeBSD reports raid as broken - but it is not o i386/101062 i386 Freeze on detect Intel 900 VGA on boot with ACPI o i386/101379 i386 page fault clobbers error code in trap frame o i386/101924 i386 MD5 checksums do not match with checksum file for 6.1 o i386/102678 i386 [kbd] Dell PowerEdge DRAC5 USB Keyboard o i386/102943 i386 kernel crash when unloading the xfs kernel module f i386/103192 i386 no CD/DVD devices found while install Freebsd o i386/105063 i386 US Robotics (3Com) 3CP5609 PCI 16550 Modem works bad i o i386/105175 i386 ipmi acpi trouble o i386/106421 i386 FreeBSD 6.1 Installation - Fatal Trap 12 o i386/106493 i386 [patch] pxeboot uses /pxeroot instead of / o i386/106789 i386 Internal NIC of GA-K8N51GMF-RH does not work properly o i386/106850 i386 powernow0 attach returned 6 o i386/109423 i386 ICH5 smb interface problems o i386/109470 i386 Orinoco Classic Gold PC Card Can't Channel Hop o i386/109760 i386 kldunload acpi_video - crash o i386/110015 i386 kernel: panic: page fault 73 problems total. From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 01:13:02 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A47516A403; Wed, 28 Mar 2007 01:13:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id D682613C465; Wed, 28 Mar 2007 01:13:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D1pC018559; Tue, 27 Mar 2007 21:13:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D1L5030189; Tue, 27 Mar 2007 21:13:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A26A973039; Tue, 27 Mar 2007 20:13:00 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328011300.A26A973039@freebsd-current.sentex.ca> Date: Tue, 27 Mar 2007 20:13:00 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner5 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 01:13:02 -0000 TB --- 2007-03-28 00:14:52 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 00:14:52 - starting HEAD tinderbox run for i386/i386 TB --- 2007-03-28 00:14:52 - cleaning the object tree TB --- 2007-03-28 00:15:42 - checking out the source tree TB --- 2007-03-28 00:15:42 - cd /tinderbox/HEAD/i386/i386 TB --- 2007-03-28 00:15:42 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 00:24:41 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 00:24:41 - cd /src TB --- 2007-03-28 00:24:41 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 00:24:42 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 01:13:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 01:13:00 - ERROR: failed to build world TB --- 2007-03-28 01:13:00 - tinderbox aborted TB --- 0.88 user 2.93 system 3487.30 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 01:13:10 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B19316A402; Wed, 28 Mar 2007 01:13:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 4882113C46A; Wed, 28 Mar 2007 01:13:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D9QO018577; Tue, 27 Mar 2007 21:13:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D9Lh030258; Tue, 27 Mar 2007 21:13:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A91057303E; Tue, 27 Mar 2007 20:13:09 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328011309.A91057303E@freebsd-current.sentex.ca> Date: Tue, 27 Mar 2007 20:13:09 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner4 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 01:13:10 -0000 TB --- 2007-03-28 00:15:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 00:15:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2007-03-28 00:15:00 - cleaning the object tree TB --- 2007-03-28 00:15:44 - checking out the source tree TB --- 2007-03-28 00:15:44 - cd /tinderbox/HEAD/i386/pc98 TB --- 2007-03-28 00:15:44 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 00:24:41 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 00:24:41 - cd /src TB --- 2007-03-28 00:24:41 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 00:24:42 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 01:13:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 01:13:09 - ERROR: failed to build world TB --- 2007-03-28 01:13:09 - tinderbox aborted TB --- 0.73 user 2.86 system 3488.64 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 05:26:31 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7417D16A401; Wed, 28 Mar 2007 05:26:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 2513513C45B; Wed, 28 Mar 2007 05:26:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S5QUfj032486; Wed, 28 Mar 2007 01:26:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S5QUXL024155; Wed, 28 Mar 2007 01:26:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 656CE73039; Wed, 28 Mar 2007 00:26:30 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328052630.656CE73039@freebsd-current.sentex.ca> Date: Wed, 28 Mar 2007 00:26:30 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070108, clamav-milter version devel-111206 on clamscanner2 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 05:26:31 -0000 TB --- 2007-03-28 04:29:06 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 04:29:06 - starting HEAD tinderbox run for i386/i386 TB --- 2007-03-28 04:29:06 - cleaning the object tree TB --- 2007-03-28 04:29:23 - checking out the source tree TB --- 2007-03-28 04:29:23 - cd /tinderbox/HEAD/i386/i386 TB --- 2007-03-28 04:29:23 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 04:38:13 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 04:38:13 - cd /src TB --- 2007-03-28 04:38:13 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 04:38:15 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 05:26:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 05:26:30 - ERROR: failed to build world TB --- 2007-03-28 05:26:30 - tinderbox aborted TB --- 0.43 user 1.53 system 3443.79 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 05:26:40 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B094016A401; Wed, 28 Mar 2007 05:26:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 79AB113C448; Wed, 28 Mar 2007 05:26:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S5QewD032493; Wed, 28 Mar 2007 01:26:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S5Qel1024241; Wed, 28 Mar 2007 01:26:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id E54D47303E; Wed, 28 Mar 2007 00:26:39 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328052639.E54D47303E@freebsd-current.sentex.ca> Date: Wed, 28 Mar 2007 00:26:39 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070108, clamav-milter version devel-111206 on clamscanner2 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 05:26:40 -0000 TB --- 2007-03-28 04:29:32 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 04:29:32 - starting HEAD tinderbox run for i386/pc98 TB --- 2007-03-28 04:29:32 - cleaning the object tree TB --- 2007-03-28 04:29:54 - checking out the source tree TB --- 2007-03-28 04:29:54 - cd /tinderbox/HEAD/i386/pc98 TB --- 2007-03-28 04:29:54 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 04:38:13 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 04:38:13 - cd /src TB --- 2007-03-28 04:38:13 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 04:38:15 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 05:26:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 05:26:39 - ERROR: failed to build world TB --- 2007-03-28 05:26:39 - tinderbox aborted TB --- 0.34 user 1.43 system 3427.84 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 06:30:45 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2069516A403; Wed, 28 Mar 2007 06:30:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from srvmail.telecom.lt (srvmail.telecom.lt [212.59.0.206]) by mx1.freebsd.org (Postfix) with ESMTP id 85BA313C44C; Wed, 28 Mar 2007 06:30:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from mail pickup service by srvmail.telecom.lt with Microsoft SMTPSVC; Wed, 28 Mar 2007 09:18:37 +0300 Received: from mx2.freebsd.org ([69.147.83.53]) by srvmail.telecom.lt with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 Mar 2007 04:16:17 +0300 Received: from hub.freebsd.org (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id C24621052E; Wed, 28 Mar 2007 01:13:07 +0000 (UTC) (envelope-from owner-freebsd-current@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 330F716A41B; Wed, 28 Mar 2007 01:13:07 +0000 (UTC) (envelope-from owner-freebsd-current@freebsd.org) X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A47516A403; Wed, 28 Mar 2007 01:13:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id D682613C465; Wed, 28 Mar 2007 01:13:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D1pC018559; Tue, 27 Mar 2007 21:13:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D1L5030189; Tue, 27 Mar 2007 21:13:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A26A973039; Tue, 27 Mar 2007 20:13:00 -0500 (EST) From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328011300.A26A973039@freebsd-current.sentex.ca> Date: Tue, 27 Mar 2007 20:13:00 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner5 X-Virus-Status: Clean X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Sender: owner-freebsd-current@freebsd.org Errors-To: owner-freebsd-current@freebsd.org X-OriginalArrivalTime: 28 Mar 2007 01:16:17.0615 (UTC) FILETIME=[AFAF1DF0:01C770D6] Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 06:30:45 -0000 TB --- 2007-03-28 00:14:52 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 00:14:52 - starting HEAD tinderbox run for i386/i386 TB --- 2007-03-28 00:14:52 - cleaning the object tree TB --- 2007-03-28 00:15:42 - checking out the source tree TB --- 2007-03-28 00:15:42 - cd /tinderbox/HEAD/i386/i386 TB --- 2007-03-28 00:15:42 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 00:24:41 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 00:24:41 - cd /src TB --- 2007-03-28 00:24:41 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 00:24:42 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 01:13:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 01:13:00 - ERROR: failed to build world TB --- 2007-03-28 01:13:00 - tinderbox aborted TB --- 0.88 user 2.93 system 3487.30 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 06:30:46 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59E0416A404; Wed, 28 Mar 2007 06:30:46 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from srvmail.telecom.lt (srvmail.telecom.lt [212.59.0.206]) by mx1.freebsd.org (Postfix) with ESMTP id C002A13C44B; Wed, 28 Mar 2007 06:30:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from mail pickup service by srvmail.telecom.lt with Microsoft SMTPSVC; Wed, 28 Mar 2007 09:18:37 +0300 Received: from mx2.freebsd.org ([69.147.83.53]) by srvmail.telecom.lt with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 Mar 2007 04:16:48 +0300 Received: from hub.freebsd.org (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 6483D5DF55; Wed, 28 Mar 2007 01:13:17 +0000 (UTC) (envelope-from owner-freebsd-current@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 6007616A46B; Wed, 28 Mar 2007 01:13:17 +0000 (UTC) (envelope-from owner-freebsd-current@freebsd.org) X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B19316A402; Wed, 28 Mar 2007 01:13:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 4882113C46A; Wed, 28 Mar 2007 01:13:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D9QO018577; Tue, 27 Mar 2007 21:13:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2S1D9Lh030258; Tue, 27 Mar 2007 21:13:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A91057303E; Tue, 27 Mar 2007 20:13:09 -0500 (EST) From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070328011309.A91057303E@freebsd-current.sentex.ca> Date: Tue, 27 Mar 2007 20:13:09 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner4 X-Virus-Status: Clean X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Sender: owner-freebsd-current@freebsd.org Errors-To: owner-freebsd-current@freebsd.org X-OriginalArrivalTime: 28 Mar 2007 01:16:48.0927 (UTC) FILETIME=[C258F2F0:01C770D6] Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 06:30:46 -0000 TB --- 2007-03-28 00:15:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2007-03-28 00:15:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2007-03-28 00:15:00 - cleaning the object tree TB --- 2007-03-28 00:15:44 - checking out the source tree TB --- 2007-03-28 00:15:44 - cd /tinderbox/HEAD/i386/pc98 TB --- 2007-03-28 00:15:44 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2007-03-28 00:24:41 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-28 00:24:41 - cd /src TB --- 2007-03-28 00:24:41 - /usr/bin/make -B buildworld >>> World build started on Wed Mar 28 00:24:42 UTC 2007 >>> 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 [...] gzip -cn /src/share/man/man9/pmap_release.9 > pmap_release.9.gz gzip -cn /src/share/man/man9/pmap_remove.9 > pmap_remove.9.gz gzip -cn /src/share/man/man9/pmap_resident_count.9 > pmap_resident_count.9.gz gzip -cn /src/share/man/man9/pmap_zero_page.9 > pmap_zero_page.9.gz gzip -cn /src/share/man/man9/printf.9 > printf.9.gz gzip -cn /src/share/man/man9/prison_check.9 > prison_check.9.gz gzip -cn /src/share/man/man9/priv.9 > priv.9.gz make: don't know how to make priv_check.9. Stop *** Error code 2 Stop in /src/share/man. *** Error code 1 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-28 01:13:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-28 01:13:09 - ERROR: failed to build world TB --- 2007-03-28 01:13:09 - tinderbox aborted TB --- 0.73 user 2.86 system 3488.64 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 10:44:02 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7980116A402; Wed, 28 Mar 2007 10:44:02 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 2CCDC13C465; Wed, 28 Mar 2007 10:44:02 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 6F6AF2088; Wed, 28 Mar 2007 12:11:54 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 5B70D2086; Wed, 28 Mar 2007 12:11:53 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id D34C3A1073; Wed, 28 Mar 2007 12:11:53 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Scott Long References: <20070323212254.54F7D73039@freebsd-current.sentex.ca> <20070323214145.GA3822@krapfengeist> <46044D6C.1070304@samsco.org> Date: Wed, 28 Mar 2007 12:11:53 +0200 In-Reply-To: <46044D6C.1070304@samsco.org> (Scott Long's message of "Fri, 23 Mar 2007 15:58:04 -0600") Message-ID: <86648lsmmu.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: current@freebsd.org, Matteo Riondato , FreeBSD Tinderbox , i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 10:44:02 -0000 Scott Long writes: > The tinderboxes have stricter compile flags than the normal buildworld > environment. The hope is that we'll be able to go to -O2 as the default > optimization someday, which requires the stricter flags. I think what > you're missing here is the -fstrict-aliasing flag. No, the tinderbox just uses -O2 (which implies -fno-strict-aliasing). I highly recommend compiling with -O2, not just for the performance advantages, and not just for the additional warnings it enables, but also because of the additional coverage analysis (required for better optimization) which results in more accurate warnings. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 12:24:39 2007 Return-Path: X-Original-To: freebsd-i386@freebsd.org Delivered-To: freebsd-i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C79316A40B for ; Wed, 28 Mar 2007 12:24:39 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.228]) by mx1.freebsd.org (Postfix) with ESMTP id ED7DB13C4E8 for ; Wed, 28 Mar 2007 12:24:38 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so1584504wra for ; Wed, 28 Mar 2007 05:24:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=QuUgJTtT5nbpZ6ah+US7qYeZWnXlWuyKgGECBSya5ePZvihkUNh0+XxUT1dhETiVfR6T2PJG49G/XTmzTzLbVh9T0ciggCk41hs5Py4XHjiyK5mpZFN4TgzONveMbfJwmJjT2LTARr6rI3ieW202Dz90hBFJmtY0RIvH8Vo4mPs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=S2I21pq1eHSHnZ2ARTaaCtgeRH+cHgghRL82jF42zouaixudYm8TxMYF4qd9e3GFoH0pUtOAGxs8oDC4RFgzDp8uA8nSaXm+aDaZBfAbB4PJPEMa+Vm+srD/cyn5cuYnPoSLbyVrS6nqlCDmCHKkPVSQy/sgA0zuhl49RYlSj78= Received: by 10.114.107.19 with SMTP id f19mr3657566wac.1175083044181; Wed, 28 Mar 2007 04:57:24 -0700 (PDT) Received: by 10.114.132.18 with HTTP; Wed, 28 Mar 2007 04:57:24 -0700 (PDT) Message-ID: Date: Wed, 28 Mar 2007 12:57:24 +0100 From: "Rui Paulo" Sender: rpaulo@gmail.com To: freebsd-i386@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 29ec73272603c035 Subject: Timecounting issue X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 12:24:39 -0000 Hi, I have a machine only knows to count time if I'm using TSC. For example: # sysctl kern.timecounter.hardware=ACPI-fast && time sleep 1 && sysctl kern.timecounter.hardware=i8254 && time sleep 1 && sysctl kern.timecounter.hardware=HPET && time sleep 1 && sysctl kern.timecounter.hardware=TSC && time sleep 1 Gives: kern.timecounter.hardware: HPET -> ACPI-fast sleep 1 0.00s user 0.00s system 0% cpu 1.517 total kern.timecounter.hardware: ACPI-fast -> i8254 sleep 1 0.00s user 0.00s system 0% cpu 1.516 total kern.timecounter.hardware: i8254 -> HPET sleep 1 0.00s user 0.00s system 0% cpu 1.516 total kern.timecounter.hardware: HPET -> TSC sleep 1 0.00s user 0.00s system 0% cpu 1.006 total This happens if I enable SMP or not. Any hint on how to debug this ? Thanks From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 14:26:29 2007 Return-Path: X-Original-To: freebsd-i386@freebsd.org Delivered-To: freebsd-i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 029BA16A412 for ; Wed, 28 Mar 2007 14:26:29 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.247]) by mx1.freebsd.org (Postfix) with ESMTP id B3C5613C4B8 for ; Wed, 28 Mar 2007 14:26:28 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so2703421ana for ; Wed, 28 Mar 2007 07:26:27 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=T/KG05VYgJi68sHzrqGlaH2qQ7byky+z1OU6N4tKcuvTBHXwTn3LEwi/vjEfncBkGswbbALc2WGcaR047P5zsjumxKvLyHZPLZWkfGlL5srUyg5dUSCdjQ+kXgQlTGs38PNV6gckmFjX/wtm2DGazoGHBSTPRljY2IKsme+DkoE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=SlHcSpbIFc803UzPjLdAafxNBlAfWd0Uu3vAdAxZ/1ieRGfG0vHrxHEG0KQNzmvAHtO54Qn2bSg78pk0pnZfnAXlmN02oMbzFAIDVp/BLZ4rVjAc9K3r4GiDEFzuPMSPtVreafp6LKplesMvyVZxdmSFo9IfZc+QFH1YTq27cV4= Received: by 10.100.137.18 with SMTP id k18mr227056and.1175091987289; Wed, 28 Mar 2007 07:26:27 -0700 (PDT) Received: from epsilon.local ( [193.136.39.100]) by mx.google.com with ESMTP id u1sm1047355uge.2007.03.28.07.26.25; Wed, 28 Mar 2007 07:26:26 -0700 (PDT) Message-ID: <460A7B10.7080404@gmail.com> Date: Wed, 28 Mar 2007 15:26:24 +0100 From: Rui Paulo User-Agent: Thunderbird 2.0b2 (Macintosh/20070116) MIME-Version: 1.0 To: freebsd-i386@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Timecounting issue X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 14:26:29 -0000 Rui Paulo wrote: > Hi, > I have a machine only knows to count time if I'm using TSC. > > For example: > # sysctl kern.timecounter.hardware=ACPI-fast && time sleep 1 && sysctl > kern.timecounter.hardware=i8254 && time sleep 1 && sysctl > kern.timecounter.hardware=HPET && time sleep 1 && sysctl > kern.timecounter.hardware=TSC && time sleep 1 > > Gives: > kern.timecounter.hardware: HPET -> ACPI-fast > sleep 1 0.00s user 0.00s system 0% cpu 1.517 total > kern.timecounter.hardware: ACPI-fast -> i8254 > sleep 1 0.00s user 0.00s system 0% cpu 1.516 total > kern.timecounter.hardware: i8254 -> HPET > sleep 1 0.00s user 0.00s system 0% cpu 1.516 total > kern.timecounter.hardware: HPET -> TSC > sleep 1 0.00s user 0.00s system 0% cpu 1.006 total > > This happens if I enable SMP or not. > > Any hint on how to debug this ? I found the problem. My machine only works correctly with HZ=100. -- Rui Paulo | PGP: F0E4 C7C7 1653 79B7 78DC DD73 64FA B2C6 CF45 1F84 From owner-freebsd-i386@FreeBSD.ORG Wed Mar 28 18:13:36 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8302216A402; Wed, 28 Mar 2007 18:13:36 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 701B813C455; Wed, 28 Mar 2007 18:13:36 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 4C6D21A4D8E; Wed, 28 Mar 2007 11:13:36 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 908E0513EB; Wed, 28 Mar 2007 14:13:35 -0400 (EDT) Date: Wed, 28 Mar 2007 14:13:35 -0400 From: Kris Kennaway To: Dag-Erling Sm?rgrav Message-ID: <20070328181335.GA24652@xor.obsecurity.org> References: <20070323212254.54F7D73039@freebsd-current.sentex.ca> <20070323214145.GA3822@krapfengeist> <46044D6C.1070304@samsco.org> <86648lsmmu.fsf@dwp.des.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86648lsmmu.fsf@dwp.des.no> User-Agent: Mutt/1.4.2.2i Cc: Matteo Riondato , Scott Long , i386@freebsd.org, current@freebsd.org, FreeBSD Tinderbox Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2007 18:13:36 -0000 On Wed, Mar 28, 2007 at 12:11:53PM +0200, Dag-Erling Sm?rgrav wrote: > Scott Long writes: > > The tinderboxes have stricter compile flags than the normal buildworld > > environment. The hope is that we'll be able to go to -O2 as the default > > optimization someday, which requires the stricter flags. I think what > > you're missing here is the -fstrict-aliasing flag. > > No, the tinderbox just uses -O2 (which implies -fno-strict-aliasing). No, it implies -fstrict-aliasing, which is why the tinderbox often breaks on code that was tested 100% correctly by the committer prior to running with your nonstandard flags ;) Kris From owner-freebsd-i386@FreeBSD.ORG Thu Mar 29 06:20:05 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EECFE16A405 for ; Thu, 29 Mar 2007 06:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B7B1B13C45D for ; Thu, 29 Mar 2007 06:20:05 +0000 (UTC) (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 l2T6K5mt063339 for ; Thu, 29 Mar 2007 06:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2T6K5NU063338; Thu, 29 Mar 2007 06:20:05 GMT (envelope-from gnats) Resent-Date: Thu, 29 Mar 2007 06:20:05 GMT Resent-Message-Id: <200703290620.l2T6K5NU063338@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, joejoe Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFD0716A401 for ; Thu, 29 Mar 2007 06:11:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id E1C7813C458 for ; Thu, 29 Mar 2007 06:11:25 +0000 (UTC) (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 l2T6BPE5068907 for ; Thu, 29 Mar 2007 06:11:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l2T66NOG068200; Thu, 29 Mar 2007 06:06:23 GMT (envelope-from nobody) Message-Id: <200703290606.l2T66NOG068200@www.freebsd.org> Date: Thu, 29 Mar 2007 06:06:23 GMT From: joejoe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: i386/110997: Some Domain IN FreeBSD can't analysis IP X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2007 06:20:06 -0000 >Number: 110997 >Category: i386 >Synopsis: Some Domain IN FreeBSD can't analysis IP >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 29 06:20:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: joejoe >Release: 6.2 Stable >Organization: Yuan Ze University >Environment: FreeBSD 6.2-STABLE >Description: When domain have "_" in FreeBSD can't analysis IP But in linux , windows or other OS is OK EX: >How-To-Repeat: ping stncenter.ets.org traceroute stncenter.ets.org nslookup stncenter.ets.org >Fix: >Release-Note: >Audit-Trail: >Unformatted: >ping www.emega.com.tw ping: cannot resolve www.emega.com.tw: Unknown server error >traceroute www.emega.com.tw traceroute: unknown host www.emega.com.tw but nslookup is ok > nslookup www.emega.com.tw Non-authoritative answer: Name: trade_web.emega.com.tw Address: 203.69.48.131 Aliases: www.emega.com.tw >ping stncenter.ets.org ping: cannot resolve stncenter.ets.org: Unknown server error >traceroute stncenter.ets.org traceroute: unknown host stncenter.ets.org >nslookup stncenter.ets.org stncenter.ets.org canonical name = stncenter_vip.ets.org. Name: stncenter_vip.ets.org Address: 144.81.87.110 From owner-freebsd-i386@FreeBSD.ORG Thu Mar 29 07:45:32 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA7E916A401; Thu, 29 Mar 2007 07:45:32 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 8546C13C46C; Thu, 29 Mar 2007 07:45:32 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 99A452100; Thu, 29 Mar 2007 09:45:28 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 081E3207E; Thu, 29 Mar 2007 09:45:28 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id F0F50A1073; Thu, 29 Mar 2007 09:45:27 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Kris Kennaway References: <20070323212254.54F7D73039@freebsd-current.sentex.ca> <20070323214145.GA3822@krapfengeist> <46044D6C.1070304@samsco.org> <86648lsmmu.fsf@dwp.des.no> <20070328181335.GA24652@xor.obsecurity.org> Date: Thu, 29 Mar 2007 09:45:27 +0200 In-Reply-To: <20070328181335.GA24652@xor.obsecurity.org> (Kris Kennaway's message of "Wed, 28 Mar 2007 14:13:35 -0400") Message-ID: <86wt10qyqw.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Matteo Riondato , Scott Long , i386@freebsd.org, current@freebsd.org, FreeBSD Tinderbox Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2007 07:45:32 -0000 Kris Kennaway writes: > On Wed, Mar 28, 2007 at 12:11:53PM +0200, Dag-Erling Sm?rgrav wrote: > > No, the tinderbox just uses -O2 (which implies -fno-strict-aliasing). > No, it implies -fstrict-aliasing, Sorry, typo on my part. I meant what you said. > which is why the tinderbox often breaks on code that was tested 100% > correctly by the committer prior to running with your nonstandard > flags ;) The code was obviously not tested 100% correctly, as the C standard forbids aliasing. Unfortunately, there are people in this project who systematically oppose any attempt to improve code quality, especially when it comes to their own code, and they have succeeded to the extent that not only is -O2 not the default, but the kernel build system is even instrumented to prevent its full use. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-freebsd-i386@FreeBSD.ORG Thu Mar 29 07:48:29 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA4A516A401; Thu, 29 Mar 2007 07:48:29 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 844A413C4B8; Thu, 29 Mar 2007 07:48:29 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2T7mTXH078544; Thu, 29 Mar 2007 07:48:29 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2T7mTIO078540; Thu, 29 Mar 2007 07:48:29 GMT (envelope-from remko) Date: Thu, 29 Mar 2007 07:48:29 GMT From: Remko Lodder Message-Id: <200703290748.l2T7mTIO078540@freefall.freebsd.org> To: joejoe@saturn.yzu.edu.tw, remko@FreeBSD.org, freebsd-i386@FreeBSD.org Cc: Subject: Re: i386/110997: Some Domain IN FreeBSD can't analysis IP X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2007 07:48:29 -0000 Synopsis: Some Domain IN FreeBSD can't analysis IP State-Changed-From-To: open->closed State-Changed-By: remko State-Changed-When: Thu Mar 29 07:48:28 UTC 2007 State-Changed-Why: Duplicate of kern/54189 http://www.freebsd.org/cgi/query-pr.cgi?pr=110997 From owner-freebsd-i386@FreeBSD.ORG Thu Mar 29 14:28:43 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7709C16A403; Thu, 29 Mar 2007 14:28:43 +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 26F3013C457; Thu, 29 Mar 2007 14:28:42 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l2TESTTp059326; Thu, 29 Mar 2007 08:28:35 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <460BCD09.9030409@samsco.org> Date: Thu, 29 Mar 2007 08:28:25 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <20070323212254.54F7D73039@freebsd-current.sentex.ca> <20070323214145.GA3822@krapfengeist> <46044D6C.1070304@samsco.org> <86648lsmmu.fsf@dwp.des.no> <20070328181335.GA24652@xor.obsecurity.org> <86wt10qyqw.fsf@dwp.des.no> In-Reply-To: <86wt10qyqw.fsf@dwp.des.no> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Thu, 29 Mar 2007 07:28:36 -0700 (MST) X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: FreeBSD Tinderbox , Matteo Riondato , i386@freebsd.org, current@freebsd.org, Kris Kennaway Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2007 14:28:43 -0000 Dag-Erling Smørgrav wrote: > Kris Kennaway writes: >> On Wed, Mar 28, 2007 at 12:11:53PM +0200, Dag-Erling Sm?rgrav wrote: >>> No, the tinderbox just uses -O2 (which implies -fno-strict-aliasing). >> No, it implies -fstrict-aliasing, > > Sorry, typo on my part. I meant what you said. > >> which is why the tinderbox often breaks on code that was tested 100% >> correctly by the committer prior to running with your nonstandard >> flags ;) > > The code was obviously not tested 100% correctly, as the C standard > forbids aliasing. Unfortunately, there are people in this project who > systematically oppose any attempt to improve code quality, especially > when it comes to their own code, and they have succeeded to the extent > that not only is -O2 not the default, but the kernel build system is > even instrumented to prevent its full use. > > DES I think you need to chill out quite a bit and stop assuming that people are incompetent and out to get you. Scott From owner-freebsd-i386@FreeBSD.ORG Thu Mar 29 14:51:30 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C17416A402; Thu, 29 Mar 2007 14:51:30 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id D93E013C468; Thu, 29 Mar 2007 14:51:29 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 7ACC9208E; Thu, 29 Mar 2007 16:51:25 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 57FAC208D; Thu, 29 Mar 2007 16:51:25 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 56A48A1073; Thu, 29 Mar 2007 16:51:25 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Scott Long References: <20070323212254.54F7D73039@freebsd-current.sentex.ca> <20070323214145.GA3822@krapfengeist> <46044D6C.1070304@samsco.org> <86648lsmmu.fsf@dwp.des.no> <20070328181335.GA24652@xor.obsecurity.org> <86wt10qyqw.fsf@dwp.des.no> <460BCD09.9030409@samsco.org> Date: Thu, 29 Mar 2007 16:51:25 +0200 In-Reply-To: <460BCD09.9030409@samsco.org> (Scott Long's message of "Thu, 29 Mar 2007 08:28:25 -0600") Message-ID: <86tzw42jde.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Tinderbox , Matteo Riondato , i386@freebsd.org, current@freebsd.org, Kris Kennaway Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2007 14:51:30 -0000 Scott Long writes: > I think you need to chill out quite a bit and stop assuming that people > are incompetent and out to get you. I don't usually assume that people are incompetent and out to get me, but like they say - once is an accident, twice is a coincidence, three times is enemy action. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-freebsd-i386@FreeBSD.ORG Fri Mar 30 00:00:13 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44AC216A406 for ; Fri, 30 Mar 2007 00:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1AF6413C45A for ; Fri, 30 Mar 2007 00:00:13 +0000 (UTC) (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 l2U00CnF016644 for ; Fri, 30 Mar 2007 00:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2U00CYr016641; Fri, 30 Mar 2007 00:00:12 GMT (envelope-from gnats) Resent-Date: Fri, 30 Mar 2007 00:00:12 GMT Resent-Message-Id: <200703300000.l2U00CYr016641@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Engel Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F21A16A403 for ; Thu, 29 Mar 2007 23:53:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 015F813C465 for ; Thu, 29 Mar 2007 23:53:57 +0000 (UTC) (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 l2TNru1X056701 for ; Thu, 29 Mar 2007 23:53:56 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l2TNmss1056369; Thu, 29 Mar 2007 23:48:54 GMT (envelope-from nobody) Message-Id: <200703292348.l2TNmss1056369@www.freebsd.org> Date: Thu, 29 Mar 2007 23:48:54 GMT From: Engel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: i386/111020: Konqueror Crash X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Mar 2007 00:00:13 -0000 >Number: 111020 >Category: i386 >Synopsis: Konqueror Crash >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 30 00:00:12 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Engel >Release: 6.2-RELEASE-p2 >Organization: >Environment: FreeBSD dhcppc0 6.2-RELEASE-p2 FreeBSD 6.2-RELEASE-p2 #0: Tue Feb 27 22:41:06 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: [New LWP 100112] [Switching to LWP 100112] 0x29402f23 in nanosleep () from /lib/libc.so.6 #0 0x29402f23 in nanosleep () from /lib/libc.so.6 #1 0x29348ae3 in _nanosleep () from /lib/libpthread.so.2 #2 0x293dddf9 in sleep () from /lib/libc.so.6 #3 0x2933e3fe in sleep () from /lib/libpthread.so.2 #4 0x287fbabe in KCrash::startDrKonqi () from /usr/local/lib/libkdecore.so.6 #5 0x287fbe64 in KCrash::defaultCrashHandler () from /usr/local/lib/libkdecore.so.6 #6 0x29345f5d in sigaction () from /lib/libpthread.so.2 #7 0xbfbfff94 in ?? () #8 0x00000006 in ?? () #9 0xbfbfbae0 in ?? () #10 0xbfbfb820 in ?? () #11 0x00000000 in ?? () #12 0x29345a24 in sigaction () from /lib/libpthread.so.2 #13 0x29418b78 in abort () from /lib/libc.so.6 #14 0x292b4297 in __gnu_cxx::__verbose_terminate_handler () from /usr/lib/libstdc++.so.5 #15 0x292b849c in __cxxabiv1::__terminate () from /usr/lib/libstdc++.so.5 #16 0x292b84d4 in std::terminate () from /usr/lib/libstdc++.so.5 #17 0x292b8428 in __cxa_throw () from /usr/lib/libstdc++.so.5 #18 0x292f7b0a in operator new () from /usr/lib/libstdc++.so.5 #19 0x292f7a53 in operator new[] () from /usr/lib/libstdc++.so.5 #20 0x28f87336 in QString::setLength () from /usr/X11R6/lib/libqt-mt.so.3 #21 0x28f8f16a in operator>> () from /usr/X11R6/lib/libqt-mt.so.3 #22 0x28772af9 in startServiceInternal () from /usr/local/lib/libkdecore.so.6 #23 0x287730df in KApplication::startServiceByDesktopName () from /usr/local/lib/libkdecore.so.6 #24 0x288344a1 in KNotifyClient::startDaemon () from /usr/local/lib/libkdecore.so.6 #25 0x28834722 in sendNotifyEvent () from /usr/local/lib/libkdecore.so.6 #26 0x28834d82 in KNotifyClient::event () from /usr/local/lib/libkdecore.so.6 #27 0x285a3955 in KMessageBox::createKMessageBox () from /usr/local/lib/libkdeui.so.6 #28 0x285a3dad in KMessageBox::createKMessageBox () from /usr/local/lib/libkdeui.so.6 #29 0x285a498a in KMessageBox::errorListWId () from /usr/local/lib/libkdeui.so.6 #30 0x285a4af3 in KMessageBox::error () from /usr/local/lib/libkdeui.so.6 #31 0x2826ff17 in KDEDesktopMimeType::userDefinedServices () from /usr/local/lib/libkio.so.6 #32 0x296484e0 in KonqPopupMenu::setup () from /usr/local/lib/libkonq.so.6 #33 0x2964867b in KonqPopupMenu::init () from /usr/local/lib/libkonq.so.6 #34 0x29648828 in KonqPopupMenu::KonqPopupMenu () from /usr/local/lib/libkonq.so.6 #35 0x297441c2 in KonqMainWindow::slotPopupMenu () from /usr/local/lib/libkdeinit_konqueror.so #36 0x29745301 in KonqMainWindow::slotPopupMenu () from /usr/local/lib/libkdeinit_konqueror.so #37 0x29758d28 in KonqMainWindow::qt_invoke () from /usr/local/lib/libkdeinit_konqueror.so #38 0x28ce36a8 in QObject::activate_signal () from /usr/X11R6/lib/libqt-mt.so.3 #39 0x280b069d in KParts::BrowserExtension::popupMenu () from /usr/local/lib/libkparts.so.3 #40 0x29b12df5 in KHTMLPart::popupMenu () from /usr/local/lib/libkhtml.so.6 #41 0x29b148dc in KHTMLPart::khtmlMousePressEvent () from /usr/local/lib/libkhtml.so.6 #42 0x29af98e5 in KHTMLPart::customEvent () from /usr/local/lib/libkhtml.so.6 #43 0x28ce0c82 in QObject::event () from /usr/X11R6/lib/libqt-mt.so.3 #44 0x28c87549 in QApplication::internalNotify () from /usr/X11R6/lib/libqt-mt.so.3 #45 0x28c876de in QApplication::notify () from /usr/X11R6/lib/libqt-mt.so.3 #46 0x2876c112 in KApplication::notify () from /usr/local/lib/libkdecore.so.6 #47 0x29adc54a in KHTMLView::viewportMousePressEvent () from /usr/local/lib/libkhtml.so.6 #48 0x28de8c5b in QScrollView::eventFilter () from /usr/X11R6/lib/libqt-mt.so.3 #49 0x29ae1fd7 in KHTMLView::eventFilter () from /usr/local/lib/libkhtml.so.6 #50 0x28ce0b84 in QObject::activate_filters () from /usr/X11R6/lib/libqt-mt.so.3 #51 0x28ce0c4a in QObject::event () from /usr/X11R6/lib/libqt-mt.so.3 #52 0x28d15ee2 in QWidget::event () from /usr/X11R6/lib/libqt-mt.so.3 #53 0x28c87549 in QApplication::internalNotify () from /usr/X11R6/lib/libqt-mt.so.3 #54 0x28c87805 in QApplication::notify () from /usr/X11R6/lib/libqt-mt.so.3 #55 0x2876c112 in KApplication::notify () from /usr/local/lib/libkdecore.so.6 #56 0x28c28f23 in QETWidget::translateMouseEvent () from /usr/X11R6/lib/libqt-mt.so.3 #57 0x28c27ea3 in QApplication::x11ProcessEvent () from /usr/X11R6/lib/libqt-mt.so.3 #58 0x28c395f0 in QEventLoop::processEvents () from /usr/X11R6/lib/libqt-mt.so.3 #59 0x28c9b93f in QEventLoop::enterLoop () from /usr/X11R6/lib/libqt-mt.so.3 #60 0x28c9b898 in QEventLoop::exec () from /usr/X11R6/lib/libqt-mt.so.3 #61 0x28c86884 in QApplication::exec () from /usr/X11R6/lib/libqt-mt.so.3 #62 0x296f88d6 in kdemain () from /usr/local/lib/libkdeinit_konqueror.so #63 0x296ac642 in kdeinitmain () from /usr/local/lib/kde3/konqueror.so #64 0x0804e25a in execpath_avoid_loops () #65 0x0804e95a in execpath_avoid_loops () #66 0x0804ee54 in execpath_avoid_loops () #67 0x0804f669 in main () >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri Mar 30 05:37:21 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68A3916A401; Fri, 30 Mar 2007 05:37:21 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4278513C43E; Fri, 30 Mar 2007 05:37:21 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2U5bLrh042896; Fri, 30 Mar 2007 05:37:21 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2U5bLQH042892; Fri, 30 Mar 2007 05:37:21 GMT (envelope-from remko) Date: Fri, 30 Mar 2007 05:37:21 GMT From: Remko Lodder Message-Id: <200703300537.l2U5bLQH042892@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/111020: Konqueror Crash X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Mar 2007 05:37:21 -0000 Synopsis: Konqueror Crash Responsible-Changed-From-To: freebsd-i386->freebsd-ports-bugs Responsible-Changed-By: remko Responsible-Changed-When: Fri Mar 30 05:35:58 UTC 2007 Responsible-Changed-Why: Konquerer is mainly a third party application, assign to the ports team (unless this is a real OS problem, then please reassign it to the -bugs team) http://www.freebsd.org/cgi/query-pr.cgi?pr=111020 From owner-freebsd-i386@FreeBSD.ORG Sat Mar 31 08:41:31 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A749516A401; Sat, 31 Mar 2007 08:41:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 5659F13C45D; Sat, 31 Mar 2007 08:41:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2V8fUTF022946; Sat, 31 Mar 2007 04:41:30 -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.13.8/8.13.8) with ESMTP id l2V8fUpb076215; Sat, 31 Mar 2007 04:41:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-stable.sentex.ca (Postfix, from userid 666) id 89363241BF; Sat, 31 Mar 2007 03:41:30 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070331084130.89363241BF@freebsd-stable.sentex.ca> Date: Sat, 31 Mar 2007 03:41:30 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner3 X-Virus-Status: Clean Cc: Subject: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Mar 2007 08:41:31 -0000 TB --- 2007-03-31 07:39:40 - tinderbox 2.3 running on freebsd-stable.sentex.ca TB --- 2007-03-31 07:39:40 - starting RELENG_6 tinderbox run for i386/i386 TB --- 2007-03-31 07:39:40 - cleaning the object tree TB --- 2007-03-31 07:40:16 - checking out the source tree TB --- 2007-03-31 07:40:16 - cd /tinderbox/RELENG_6/i386/i386 TB --- 2007-03-31 07:40:16 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src TB --- 2007-03-31 07:49:29 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-31 07:49:29 - cd /src TB --- 2007-03-31 07:49:29 - /usr/bin/make -B buildworld >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/ipf/ipresend/../../../contrib/ipfilter -I/src/sbin/ipf/ipresend/../../../contrib/ipfilter/tools -I/src/sbin/ipf/ipresend/../../../sys -I/src/sbin/ipf/ipresend/../../../sys/contrib/ipfilter -DSTATETOP -D__UIO_EXPOSE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -o ipresend ipresend.o ip.o resend.o sbpf.o sock.o 44arp.o /obj/src/sbin/ipf/ipresend/../libipf/libipf.a -lkvm gzip -cn /src/sbin/ipf/ipresend/../../../contrib/ipfilter/ipsend/ipresend.1 > ipresend.1.gz ===> sbin/ipfw (all) cc -O2 -pipe -c /src/sbin/ipfw/ipfw2.c /src/sbin/ipfw/ipfw2.c: In function `add': /src/sbin/ipfw/ipfw2.c:3976: error: `ipfw_insn_pipe' undeclared (first use in this function) /src/sbin/ipfw/ipfw2.c:3976: error: (Each undeclared identifier is reported only once /src/sbin/ipfw/ipfw2.c:3976: error: for each function it appears in.) *** Error code 1 Stop in /src/sbin/ipfw. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-31 08:41:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-31 08:41:30 - ERROR: failed to build world TB --- 2007-03-31 08:41:30 - tinderbox aborted TB --- 1.24 user 3.95 system 3710.35 real http://tinderbox.des.no/tinderbox-releng_6-RELENG_6-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sat Mar 31 09:48:01 2007 Return-Path: X-Original-To: i386@freebsd.org Delivered-To: freebsd-i386@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7E2216A406; Sat, 31 Mar 2007 09:48:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 6E37C13C4AD; Sat, 31 Mar 2007 09:48:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.8/8.13.8) with ESMTP id l2V9m0bg025475; Sat, 31 Mar 2007 05:48:00 -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.13.8/8.13.8) with ESMTP id l2V9m0GD012906; Sat, 31 Mar 2007 05:48:00 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-stable.sentex.ca (Postfix, from userid 666) id 85749241BF; Sat, 31 Mar 2007 04:48:00 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20070331094800.85749241BF@freebsd-stable.sentex.ca> Date: Sat, 31 Mar 2007 04:48:00 -0500 (EST) X-Virus-Scanned: ClamAV version devel-20070102, clamav-milter version devel-111206 on clamscanner5 X-Virus-Status: Clean Cc: Subject: [releng_6 tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Mar 2007 09:48:01 -0000 TB --- 2007-03-31 08:41:30 - tinderbox 2.3 running on freebsd-stable.sentex.ca TB --- 2007-03-31 08:41:30 - starting RELENG_6 tinderbox run for i386/pc98 TB --- 2007-03-31 08:41:30 - cleaning the object tree TB --- 2007-03-31 08:42:04 - checking out the source tree TB --- 2007-03-31 08:42:04 - cd /tinderbox/RELENG_6/i386/pc98 TB --- 2007-03-31 08:42:04 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src TB --- 2007-03-31 08:51:35 - building world (CFLAGS=-O2 -pipe) TB --- 2007-03-31 08:51:35 - cd /src TB --- 2007-03-31 08:51:35 - /usr/bin/make -B buildworld >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/ipf/ipresend/../../../contrib/ipfilter -I/src/sbin/ipf/ipresend/../../../contrib/ipfilter/tools -I/src/sbin/ipf/ipresend/../../../sys -I/src/sbin/ipf/ipresend/../../../sys/contrib/ipfilter -DSTATETOP -D__UIO_EXPOSE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -o ipresend ipresend.o ip.o resend.o sbpf.o sock.o 44arp.o /obj/pc98/src/sbin/ipf/ipresend/../libipf/libipf.a -lkvm gzip -cn /src/sbin/ipf/ipresend/../../../contrib/ipfilter/ipsend/ipresend.1 > ipresend.1.gz ===> sbin/ipfw (all) cc -O2 -pipe -c /src/sbin/ipfw/ipfw2.c /src/sbin/ipfw/ipfw2.c: In function `add': /src/sbin/ipfw/ipfw2.c:3976: error: `ipfw_insn_pipe' undeclared (first use in this function) /src/sbin/ipfw/ipfw2.c:3976: error: (Each undeclared identifier is reported only once /src/sbin/ipfw/ipfw2.c:3976: error: for each function it appears in.) *** Error code 1 Stop in /src/sbin/ipfw. *** Error code 1 Stop in /src/sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2007-03-31 09:48:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2007-03-31 09:48:00 - ERROR: failed to build world TB --- 2007-03-31 09:48:00 - tinderbox aborted TB --- 1.25 user 3.84 system 3989.79 real http://tinderbox.des.no/tinderbox-releng_6-RELENG_6-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sat Mar 31 17:00:11 2007 Return-Path: X-Original-To: freebsd-i386@hub.freebsd.org Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 533A816A407 for ; Sat, 31 Mar 2007 17:00:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1CB3813C44B for ; Sat, 31 Mar 2007 17:00:11 +0000 (UTC) (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 l2VH0AwS035885 for ; Sat, 31 Mar 2007 17:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2VH0AR5035884; Sat, 31 Mar 2007 17:00:10 GMT (envelope-from gnats) Resent-Date: Sat, 31 Mar 2007 17:00:10 GMT Resent-Message-Id: <200703311700.l2VH0AR5035884@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Peter Sanchez Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A75EB16A403 for ; Sat, 31 Mar 2007 16:52:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id 9A0EB13C45E for ; Sat, 31 Mar 2007 16:52:14 +0000 (UTC) (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 l2VGqERT024081 for ; Sat, 31 Mar 2007 16:52:14 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l2VGlC80023065; Sat, 31 Mar 2007 16:47:12 GMT (envelope-from nobody) Message-Id: <200703311647.l2VGlC80023065@www.freebsd.org> Date: Sat, 31 Mar 2007 16:47:12 GMT From: Peter Sanchez To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: i386/111063: ipfw compiliation problem (buildworld) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Mar 2007 17:00:11 -0000 >Number: 111063 >Category: i386 >Synopsis: ipfw compiliation problem (buildworld) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 31 17:00:10 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Peter Sanchez >Release: 6.2-Release >Organization: >Environment: FreeBSD foto.ahcabron.com 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: This is a new server being setup. The OS was initially installed in January but the machine is being taking live now. I used cvsup9.freebsd.org to cvsup to the latest -STABLE on 3/30/2007 about 9pm PST. During the buildworld process I had compialation errors with /usr/src/sbin/ipfw/ipfw2.c at line 3976. The line shows: action->len = F_INSN_SIZE(ipfw_insn_pipe); (same line is also on line 3981) The error is that ipfw_insn_pipe was undeclared. Sorry, I didn't save the actual make error output, but it was just that the variable was not declared previously. I saw no other instance of ipfw_insn_pipe in the source for ipfw, so I changed the 2 lines to the following: action->len = F_INSN_SIZE(ipfw_insn); ipfw_insn appears to be a valid struct variable and is used in other places in the ipfw source. Once I made this change ipfw compiled normally and buildworld was successful. Not sure if this is correct or not, but I don't use ipfw anyways, so I'm happy. Just wanted to report it. >How-To-Repeat: Simply cvsup to latest and buildworld >Fix: - action->len = F_INSN_SIZE(ipfw_insn_pipe); + action->len = F_INSN_SIZE(ipfw_insn); in sbin/ipfw/ipfw2.c >Release-Note: >Audit-Trail: >Unformatted: