From owner-freebsd-i386@FreeBSD.ORG Sun Dec 19 06:40:24 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AD8016A4CE for ; Sun, 19 Dec 2004 06:40:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0752143D2D for ; Sun, 19 Dec 2004 06:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBJ6eNmN097445 for ; Sun, 19 Dec 2004 06:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBJ6eNc9097444; Sun, 19 Dec 2004 06:40:23 GMT (envelope-from gnats) Resent-Date: Sun, 19 Dec 2004 06:40:23 GMT Resent-Message-Id: <200412190640.iBJ6eNc9097444@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, Eric Anholt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04CFB16A4CE for ; Sun, 19 Dec 2004 06:30:35 +0000 (GMT) Received: from leguin.anholt.net (69-30-77-85.dq1sn.easystreet.com [69.30.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 672FB43D31 for ; Sun, 19 Dec 2004 06:30:34 +0000 (GMT) (envelope-from anholt@leguin.anholt.net) Received: from leguin.anholt.net (localhost [127.0.0.1]) by leguin.anholt.net (8.13.1/8.13.1) with ESMTP id iBJ6UXTA027648 for ; Sat, 18 Dec 2004 22:30:33 -0800 (PST) (envelope-from anholt@leguin.anholt.net) Received: (from anholt@localhost) by leguin.anholt.net (8.13.1/8.13.1/Submit) id iBJ6UX1N027647; Sat, 18 Dec 2004 22:30:33 -0800 (PST) (envelope-from anholt) Message-Id: <200412190630.iBJ6UX1N027647@leguin.anholt.net> Date: Sat, 18 Dec 2004 22:30:33 -0800 (PST) From: Eric Anholt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/75251: Beginnings of an ATI AGP driver. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eric Anholt List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Dec 2004 06:40:24 -0000 >Number: 75251 >Category: i386 >Synopsis: Beginnings of an ATI AGP driver. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 19 06:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Eric Anholt >Release: FreeBSD 5.3-STABLE amd64 >Organization: >Environment: System: FreeBSD leguin.anholt.net 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 2 18:17:11 PST 2004 anholt@leguin.anholt.net:/usr/obj/usr/src/current/sys/MYKERNEL amd64 >Description: An AGP driver is required to use the 3d features of ATI's IGP graphics chipsets. Attached is a first attempt at one, written by reading the linux driver and reimplementing. I'm sending a PR so that this code doesn't get lost, and someone interested in the issue could pick it up. (I don't have the hardware, myself) >How-To-Repeat: cd /usr/src/sys/pci && patch -p0 < agp_ati.diff >Fix: --- ati-agp.diff begins here --- Index: agp_ati.c =================================================================== RCS file: agp_ati.c diff -N agp_ati.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ agp_ati.c 19 Dec 2004 06:24:51 -0000 @@ -0,0 +1,365 @@ +/*- + * Copyright (c) 2004 Eric Anholt + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * Based on reading the Linux 2.6.8.1 driver by Dave Jones. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include "opt_bus.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +MALLOC_DECLARE(M_AGP); + +#define READ4(off) bus_space_read_4(sc->bst, sc->bsh, off) +#define WRITE4(off,v) bus_space_write_4(sc->bst, sc->bsh, off, v) + +struct agp_ati_softc { + struct agp_softc agp; + struct resource *regs; /* memory mapped control registers */ + bus_space_tag_t bst; /* bus_space tag */ + bus_space_handle_t bsh; /* bus_space handle */ + u_int32_t initial_aperture; /* aperture size at startup */ + char is_rs300; + + /* The GATT */ + u_int32_t ag_entries; + u_int32_t *ag_virtual; /* virtual address of gatt */ + u_int32_t *ag_vdir; /* virtual address of page dir */ + vm_offset_t ag_pdir; /* physical address of page dir */ +}; + + +static const char* +agp_ati_match(device_t dev) +{ + if (pci_get_class(dev) != PCIC_BRIDGE + || pci_get_subclass(dev) != PCIS_BRIDGE_HOST) + return NULL; + + if (agp_find_caps(dev) == 0) + return NULL; + + switch (pci_get_devid(dev)) { + case 0xcab01002: + return ("ATI RS100 AGP bridge"); + case 0xcab21002: + return ("ATI RS200 AGP bridge"); + case 0xcab31002: + return ("ATI RS250 AGP bridge"); + case 0x58301002: + return ("ATI RS300_100 AGP bridge"); + case 0x58311002: + return ("ATI RS300_133 AGP bridge"); + case 0x58321002: + return ("ATI RS300_166 AGP bridge"); + case 0x58331002: + return ("ATI RS300_200 AGP bridge"); + }; + + return NULL; +} + +static int +agp_ati_probe(device_t dev) +{ + const char *desc; + + desc = agp_ati_match(dev); + if (desc) { + device_verbose(dev); + device_set_desc(dev, desc); + return 0; + } + + return ENXIO; +} + +static int +agp_ati_alloc_gatt(device_t dev) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + u_int32_t apsize = AGP_GET_APERTURE(dev); + u_int32_t entries = apsize >> AGP_PAGE_SHIFT; + int i; + + /* Alloc the GATT -- pointers to pages of AGP memory */ + sc->ag_entries = entries; + sc->ag_virtual = malloc(entries * sizeof(u_int32_t), M_AGP, + M_NOWAIT | M_ZERO); + if (sc->ag_virtual == NULL) { + if (bootverbose) + device_printf(dev, "aperture allocation failed\n"); + return ENOMEM; + } + + /* Alloc the page directory -- pointers to each page of the GATT */ + sc->ag_vdir = malloc(AGP_PAGE_SIZE, M_AGP, M_NOWAIT | M_ZERO); + if (sc->ag_vdir == NULL) { + if (bootverbose) + device_printf(dev, "pagedir allocation failed\n"); + free(sc->ag_virtual, M_AGP); + return ENOMEM; + } + sc->ag_pdir = vtophys((vm_offset_t)sc->ag_vdir); + + /* Fill in the pagedir's pointers to GATT pages */ + for (i = 0; i < sc->ag_entries / 1024; i++) { + vm_offset_t va; + vm_offset_t pa; + + va = ((vm_offset_t)sc->ag_virtual) + i * AGP_PAGE_SIZE; + pa = vtophys(va); + sc->ag_vdir[i] = pa | 1; + } + + /* + * Make sure the chipset can see everything. + */ + agp_flush_cache(); + + return 0; +} + + +static int +agp_ati_attach(device_t dev) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + int error, rid; + u_int32_t temp; + + error = agp_generic_attach(dev); + if (error) + return error; + + switch (pci_get_devid(dev)) { + case 0xcab01002: /* ATI RS100 AGP bridge */ + case 0xcab21002: /*ATI RS200 AGP bridge */ + case 0xcab31002: /* ATI RS250 AGP bridge */ + sc->is_rs300 = 0; + case 0x58301002: /* ATI RS300_100 AGP bridge */ + case 0x58311002: /* ATI RS300_133 AGP bridge */ + case 0x58321002: /* ATI RS300_166 AGP bridge */ + case 0x58331002: /* ATI RS300_200 AGP bridge */ + sc->is_rs300 = 1; + default: + /* Unknown chipset */ + return EINVAL; + }; + + rid = ATI_GART_MMADDR; + sc->regs = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE); + if (!sc->regs) { + agp_generic_detach(dev); + return ENOMEM; + } + + sc->bst = rman_get_bustag(sc->regs); + sc->bsh = rman_get_bushandle(sc->regs); + + sc->initial_aperture = AGP_GET_APERTURE(dev); + + for (;;) { + if (agp_ati_alloc_gatt(dev) == 0) + break; + + /* + * Probably contigmalloc failure. Try reducing the + * aperture so that the gatt size reduces. + */ + if (AGP_SET_APERTURE(dev, AGP_GET_APERTURE(dev) / 2)) + return ENOMEM; + } + + if (sc->is_rs300) + pci_write_config(dev, ATI_RS300_IG_AGPMODE, 0x20000, 4); + else + pci_write_config(dev, ATI_RS100_IG_AGPMODE, 0x20000, 4); + + WRITE4(ATI_GART_FEATURE_ID, 0x00060000); + + temp = pci_read_config(dev, 4, 4); /* XXX: Magic reg# */ + pci_write_config(dev, 4, temp | (1 << 14), 4); + + WRITE4(ATI_GART_BASE, sc->ag_pdir); + + AGP_FLUSH_TLB(dev); + + return 0; +} + +static int +agp_ati_detach(device_t dev) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + int error; + + error = agp_generic_detach(dev); + if (error) + return error; + + /* Clear the GATT base */ + WRITE4(ATI_GART_BASE, 0); + + /* Put the aperture back the way it started. */ + AGP_SET_APERTURE(dev, sc->initial_aperture); + + free(sc->ag_vdir, M_AGP); + free(sc->ag_virtual, M_AGP); + + bus_release_resource(dev, SYS_RES_MEMORY, ATI_GART_MMADDR, sc->regs); + + return 0; +} + +static u_int32_t +agp_ati_get_aperture(device_t dev) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + int size_value; + + if (sc->is_rs300) + size_value = pci_read_config(dev, ATI_RS300_APSIZE, 4); + else + size_value = pci_read_config(dev, ATI_RS100_APSIZE, 4); + + size_value = (size_value & 0x0000000e) >> 1; + size_value = (32 * 1024 * 1024) << size_value; + + return size_value; +} + +static int +agp_ati_set_aperture(device_t dev, u_int32_t aperture) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + int size_value; + + if (sc->is_rs300) + size_value = pci_read_config(dev, ATI_RS300_APSIZE, 4); + else + size_value = pci_read_config(dev, ATI_RS100_APSIZE, 4); + + size_value &= ~0x0000000e; + size_value |= (ffs(aperture / (32 * 1024 * 1024)) - 1) << 1; + + return 0; +} + +static int +agp_ati_bind_page(device_t dev, int offset, vm_offset_t physical) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + + if (offset < 0 || offset >= (sc->ag_entries << AGP_PAGE_SHIFT)) + return EINVAL; + + sc->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical; + + /* invalidate the cache */ + AGP_FLUSH_TLB(dev); + return 0; +} + +static int +agp_ati_unbind_page(device_t dev, int offset) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + + if (offset < 0 || offset >= (sc->ag_entries << AGP_PAGE_SHIFT)) + return EINVAL; + + sc->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0; + AGP_FLUSH_TLB(dev); /* XXX: Shouldn't other drivers be doing this? */ + return 0; +} + +static void +agp_ati_flush_tlb(device_t dev) +{ + struct agp_ati_softc *sc = device_get_softc(dev); + + /* Set the cache invalidate bit and wait for the chipset to clear */ + WRITE4(ATI_GART_CACHE_CNTRL, 1); +} + +static device_method_t agp_ati_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, agp_ati_probe), + DEVMETHOD(device_attach, agp_ati_attach), + DEVMETHOD(device_detach, agp_ati_detach), + DEVMETHOD(device_shutdown, bus_generic_shutdown), + DEVMETHOD(device_suspend, bus_generic_suspend), + DEVMETHOD(device_resume, bus_generic_resume), + + /* AGP interface */ + DEVMETHOD(agp_get_aperture, agp_ati_get_aperture), + DEVMETHOD(agp_set_aperture, agp_ati_set_aperture), + DEVMETHOD(agp_bind_page, agp_ati_bind_page), + DEVMETHOD(agp_unbind_page, agp_ati_unbind_page), + DEVMETHOD(agp_flush_tlb, agp_ati_flush_tlb), + DEVMETHOD(agp_enable, agp_generic_enable), + DEVMETHOD(agp_alloc_memory, agp_generic_alloc_memory), + DEVMETHOD(agp_free_memory, agp_generic_free_memory), + DEVMETHOD(agp_bind_memory, agp_generic_bind_memory), + DEVMETHOD(agp_unbind_memory, agp_generic_unbind_memory), + + { 0, 0 } +}; + +static driver_t agp_ati_driver = { + "agp", + agp_ati_methods, + sizeof(struct agp_ati_softc), +}; + +static devclass_t agp_devclass; + +DRIVER_MODULE(agp_ati, pci, agp_ati_driver, agp_devclass, 0, 0); +MODULE_DEPEND(agp_ati, agp, 1, 1, 1); +MODULE_DEPEND(agp_ati, pci, 1, 1, 1); Index: agpreg.h =================================================================== RCS file: /home/ncvs/src/sys/pci/agpreg.h,v retrieving revision 1.13 diff -u -r1.13 agpreg.h --- agpreg.h 16 Aug 2004 12:25:48 -0000 1.13 +++ agpreg.h 19 Dec 2004 06:22:26 -0000 @@ -262,4 +262,16 @@ #define AGP_AMD64_CACHECTRL_INVGART 0x00000001 #define AGP_AMD64_CACHECTRL_PTEERR 0x00000002 +/* + * ATI IGP registers + */ +#define ATI_GART_MMADDR 0x14 +#define ATI_RS100_APSIZE 0xac +#define ATI_RS100_IG_AGPMODE 0xb0 +#define ATI_RS300_APSIZE 0xf8 +#define ATI_RS300_IG_AGPMODE 0xfc +#define ATI_GART_FEATURE_ID 0x00 +#define ATI_GART_BASE 0x04 +#define ATI_GART_CACHE_CNTRL 0x0c + #endif /* !_PCI_AGPREG_H_ */ --- ati-agp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun Dec 19 06:42:16 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C95016A4CE; Sun, 19 Dec 2004 06:42:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5747F43D1D; Sun, 19 Dec 2004 06:42:16 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBJ6gGfg098926; Sun, 19 Dec 2004 06:42:16 GMT (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBJ6gGCC098922; Sun, 19 Dec 2004 06:42:16 GMT (envelope-from anholt) Date: Sun, 19 Dec 2004 06:42:16 GMT From: Eric Anholt Message-Id: <200412190642.iBJ6gGCC098922@freefall.freebsd.org> To: anholt@FreeBSD.org, freebsd-i386@FreeBSD.org, anholt@FreeBSD.org Subject: Re: i386/75251: Beginnings of an ATI AGP driver. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Dec 2004 06:42:16 -0000 Synopsis: Beginnings of an ATI AGP driver. Responsible-Changed-From-To: freebsd-i386->anholt Responsible-Changed-By: anholt Responsible-Changed-When: Sun Dec 19 06:41:57 GMT 2004 Responsible-Changed-Why: Hang on to this one, unless someone else wanted to pick it up. http://www.freebsd.org/cgi/query-pr.cgi?pr=75251 From owner-freebsd-i386@FreeBSD.ORG Sat Dec 18 16:29:03 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F057C16A4CE for ; Sat, 18 Dec 2004 16:29:03 +0000 (GMT) Received: from hotmail.com (bay17-f33.bay17.hotmail.com [64.4.43.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF55243D48 for ; Sat, 18 Dec 2004 16:29:03 +0000 (GMT) (envelope-from bkbsd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 18 Dec 2004 08:29:03 -0800 Message-ID: Received: from 222.35.117.168 by by17fd.bay17.hotmail.msn.com with HTTP; Sat, 18 Dec 2004 16:28:15 GMT X-Originating-IP: [222.35.117.168] X-Originating-Email: [bkbsd@hotmail.com] X-Sender: bkbsd@hotmail.com From: "bk bk" To: freebsd-i386@freebsd.org Date: Sun, 19 Dec 2004 00:28:15 +0800 X-OriginalArrivalTime: 18 Dec 2004 16:29:03.0571 (UTC) FILETIME=[AFE05230:01C4E51E] X-Mailman-Approved-At: Sun, 19 Dec 2004 15:06:23 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312"; format="flowed" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: The mouse display abnormal in GNOME2.8.2 on a IBM THINKPAD T23 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Dec 2004 16:29:04 -0000 Hi: My system's info: IBM THINKPAD T23 && the video chipset is S3 SuperSavage IXC/16 FreeBSD 5.3-release with GENERIC kernel, xorg & gnome 2.8.2 installed through package. The display is normal except the mouse. The photo of my screen is [1]here. Tried method: 1, Turn off the ACPI no effect 2, Download a savage_drv.o(v 4.10) and copy to /usr/X11R6/lib/modules/driver The GNOME got an kernel dump. So, what can I do? Thanks and really sorry for my weak English. :) _________________________________________________________________ Ãâ·ÑÏÂÔØ [2]MSN Explorer References 1. http://18x7.myrice.com/IMG_3549.jpg 2. http://g.msn.com/8HMACNCN/2740??PS=47575 From owner-freebsd-i386@FreeBSD.ORG Sun Dec 19 19:18:01 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DAD616A4CE; Sun, 19 Dec 2004 19:18:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2767443D3F; Sun, 19 Dec 2004 19:18:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from freefall.freebsd.org (obrien@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBJJI1pw006795; Sun, 19 Dec 2004 19:18:01 GMT (envelope-from obrien@freefall.freebsd.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBJJI0R9006791; Sun, 19 Dec 2004 19:18:00 GMT (envelope-from obrien) Date: Sun, 19 Dec 2004 19:18:00 GMT From: "David E. O'Brien" Message-Id: <200412191918.iBJJI0R9006791@freefall.freebsd.org> To: rloef@interfold.com, obrien@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/60643: 5.2 RC2 disk1 ISO will not boot on an Asus A7N8X Deluxe MB based machine. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Dec 2004 19:18:01 -0000 Synopsis: 5.2 RC2 disk1 ISO will not boot on an Asus A7N8X Deluxe MB based machine. State-Changed-From-To: feedback->closed State-Changed-By: obrien State-Changed-When: Sun Dec 19 19:17:38 GMT 2004 State-Changed-Why: The sk(4) driver has been much fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=60643 From owner-freebsd-i386@FreeBSD.ORG Mon Dec 20 11:02:08 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3200916A4CE for ; Mon, 20 Dec 2004 11:02:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D700043D54 for ; Mon, 20 Dec 2004 11:02:07 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBKB27w8047041 for ; Mon, 20 Dec 2004 11:02:07 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBKB26pT047035 for freebsd-i386@freebsd.org; Mon, 20 Dec 2004 11:02:06 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 20 Dec 2004 11:02:06 GMT Message-Id: <200412201102.iBKB26pT047035@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Dec 2004 11:02:08 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/10/06] i386/57673 i386 [disklabel] Odd/dangerous disklabel behav o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/04/16] i386/65646 i386 FreeBSD suddenly turns off the power o [2004/04/28] i386/66039 i386 panic: system panic with file system corr o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/09/05] i386/71395 i386 Data corrupted on Serverworks CG-SL chips o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi 7 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/03/13] i386/25781 i386 Statclocks cannot be disabled on ServerWo o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/10/16] i386/44130 i386 Enabled apm hangs up FreeBSD kernel on i8 o [2003/02/24] i386/48614 i386 VESA VGA modes for syscons lock up machin o [2003/05/22] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/06/06] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/11] i386/53200 i386 [boot] 5.1-RC1 SMP kernel boot gags at "A o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press a [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [hang] ar driver with 2 port PCI card loc f [2003/09/22] i386/57097 i386 [hang] Promise Ultra 100 TX2 causes locku p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' f [2003/10/06] i386/57632 i386 [boot] Dell PowerEdge 4300 is allergic to o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p o [2003/10/23] i386/58458 i386 ATAPI-CDROM DMA Support on ALi Aladdin V o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/11/02] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/12/02] i386/59895 i386 [hang] system hangs from disk IO errors [ o [2003/12/02] i386/59897 i386 [hang] problems with swap-pager with grea f [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/17] i386/60344 i386 [boot] Intel ICH5 SATA RAID boot problems o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60633 i386 [hang] SIS motherboard with the SIS 5591 o [2003/12/27] i386/60641 i386 Sporadic SCSI bus resets with 53C810 unde o [2003/12/28] i386/60671 i386 FreeBSD 5.2RC2 installation process doesn o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/08] i386/61063 i386 [ata] ata hangs in smp system f [2004/01/10] i386/61163 i386 [boot] "/:write failed, filesystem is ful o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/22] i386/61705 i386 [ntp] Random "bus errors" on 5.2-RELEASE o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/25] i386/61890 i386 [fdisk] FDisk uses incorrect calculations f [2004/02/02] i386/62248 i386 [boot] 5.2 current hangs on boot o [2004/02/02] i386/62280 i386 em0 broken after resume in 5.2-CURRENT o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se o [2004/02/20] i386/63098 i386 Compaq Workstation IDE CDROM drive not pr o [2004/02/24] i386/63305 i386 reading udf filesystem on dvd+rw leads to o [2004/02/27] i386/63430 i386 [ata] TIMEOUT - ATA READ o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with o [2004/02/27] i386/63467 i386 [ata] Sil 3114: RAID not detected using S o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/04] i386/63776 i386 [boot] hang during boot on a toshiba p25 o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/06] i386/63853 i386 [hang] 5.2.1 boot CD hangs during boot (T o [2004/03/07] i386/63871 i386 [panic] kernel panic in swi8 after 1 hour o [2004/03/09] i386/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad o [2004/03/12] i386/64183 i386 5.1-RELEASE Install hung at "Probing devi o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) fr o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64697 i386 5.2.x BTX loader halts with Promise FastT o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa o [2004/04/14] i386/65523 i386 [patch] PXE loader malfunction in multipl o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun o [2004/04/22] i386/65896 i386 [panic] 5.2-RELEASE re(4) driver, kernel f [2004/04/25] i386/65954 i386 [panic] Sil0680 panic [5.2.1-p5] o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic f [2004/05/06] i386/66339 i386 [hang] XFree86 initialization with an Lap o [2004/05/07] i386/66350 i386 [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/19] i386/66876 i386 [patch] Cannot extract tar(1) multi-volum o [2004/05/22] i386/67047 i386 mpt driver does not recognize messages fr o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling f [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] i386/68460 i386 [nfs] NFS mounts lock processes in sbwait o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/11] i386/68900 i386 5.x install CDs fail to boot on Toshiba S o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/19] i386/69260 i386 [install] Problem starting the installati o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD o [2004/08/01] i386/69876 i386 [panic] new kernel panic on boot (-CURREN f [2004/08/03] i386/69945 i386 "Page fault" while shutting down on VIA K o [2004/08/05] i386/70028 i386 umass isuue in the boot prcess on SONY La o [2004/08/11] i386/70330 i386 Re-Open 33262? - gdb does not handle pend o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [patch] boot0 hides Lilo in extended slic o [2004/08/19] i386/70663 i386 Freebsd 4.10 ncplogin + Netware 4.11 = nw o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel f [2004/08/21] i386/70805 i386 [apm] page fault early during boot with a o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] i386/70962 i386 [install] When downloading the installer o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] i386/71208 i386 Intel EtherExpress not working o [2004/09/05] i386/71392 i386 5.3-Beta[2-5] crash after final sync when o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] o [2004/09/07] i386/71470 i386 [hang] Asus P4P800-E Promise 20378 RAID 1 o [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load o [2004/09/19] i386/71894 i386 burncd unkillable with bad CD's o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA f [2004/09/24] i386/72069 i386 [panic] Fatal trap 12: page fault while i o [2004/09/30] i386/72215 i386 with acpi enabled network card will not w o [2004/10/04] i386/72334 i386 7) i386|[boot] FreeBSD 5.3 Beta6 and Beta o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/06] i386/72378 i386 NFS hangs in 5.3-BETA7 [3Com gbit card] o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl o [2004/10/08] i386/72441 i386 HP Proliant DL380 hangs on reboot with 5. o [2004/10/09] i386/72456 i386 5.xx Releases Do Not Identify ATA when 4. o [2004/10/12] i386/72579 i386 unable to install FreeBSD on Intel E7520 o [2004/10/17] i386/72778 i386 5.3beta7 never boots, suspected SMP probl o [2004/10/21] i386/72960 i386 BTX halted with Promise Tx2000 Raid o [2004/10/21] i386/72976 i386 [panic] trap 9 on boot [ACPI-related] o [2004/10/25] i386/73102 i386 FreeBSD hangs on boot-up of omnibook 4150 o [2004/10/27] i386/73182 i386 fxp0: device timeout o [2004/10/27] i386/73196 i386 [hang]5.2.1 boot CD hangs during boot on o [2004/10/29] i386/73265 i386 FreeBSD kernel crashes when booting on EC o [2004/10/30] i386/73298 i386 "Fatal trap 12: page fault while in kerne o [2004/11/03] i386/73484 i386 Kernel panic when doing `ls` from the cli o [2004/11/07] i386/73640 i386 FreeBSD 5.2.1 y ahora 5.3 se queda congel o [2004/11/08] i386/73658 i386 ed(4) can't get correct MAC address o [2004/11/08] i386/73666 i386 5.3 UDMA error WD1600 can't partition dri o [2004/11/09] i386/73706 i386 ATA_IDENTIFY timed out under FreeBSD 5.3 f [2004/11/10] i386/73765 i386 Install Issue on DELL Oplex 260 [5.3R] o [2004/11/14] i386/73934 i386 fdisk sees disk as empty o [2004/11/16] i386/74008 i386 IBM eServer x225 cannot boot any v5.x - e o [2004/11/17] i386/74044 i386 ServerWorks OSB4 SMBus interface does not o [2004/11/18] i386/74074 i386 hw.ata.wc=0 / but write cache still enabl o [2004/11/19] i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [intro o [2004/11/21] i386/74217 i386 init died [Presario 2500] o [2004/11/28] i386/74467 i386 On a freshly installed FreeBSD-4.10 (bina o [2004/11/29] i386/74532 i386 Install will not boot on Toshiba Satalite o [2004/12/01] i386/74576 i386 FAILURE - ATA_IDENTIFY no interrupt o [2004/12/01] i386/74595 i386 Suspected FreeBSD-4.10 rndcontrol(8) rela o [2004/12/01] i386/74601 i386 Cardbus fails after busdma_machdep.c upda o [2004/12/02] i386/74605 i386 5.3 networking impossibly slow on 32M p15 o [2004/12/07] i386/74816 i386 OS crash with kernel trap 12 in different o [2004/12/08] i386/74860 i386 on kernel recompile, "make depend" fails o [2004/12/09] i386/74892 i386 FBSD 5.3-STABLE randomly crashes (Fatal t o [2004/12/10] i386/74923 i386 kernel panic with ncplist on 5.3-release o [2004/12/12] i386/74988 i386 dma errors with large maxtor hard drives o [2004/12/14] i386/75041 i386 Sk driver gets "Corrupt MAC on input" dur o [2004/12/16] i386/75165 i386 if ng_pppoe switches to nonstandard mode o [2004/12/17] i386/75201 i386 nge driver causes FreeBSD 5.3-RELEASE and 170 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/07/24] i386/40958 i386 apm on Acer TravelMate 351 could not resu o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic o [2003/11/23] conf/59600 i386 [PATCH] Improved us.emacs.kbd mapping f [2003/11/30] i386/59854 i386 System panics when AMD 762 AGP is loaded o [2003/12/17] i386/60319 i386 [hang] read error 34/0 during installatio o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install o [2004/01/05] misc/60919 i386 No login possible (sporadic) o [2004/01/06] i386/60963 i386 [PATCH] Win32 Applications abort on PECOF o [2004/01/07] i386/61005 i386 [boot] The Boot Manager in FreeBSD 5.2RC o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed o [2004/01/24] i386/61838 i386 Realtek -8139C Card Not Supported o [2004/01/24] i386/61843 i386 Intel PRO/100 VE adapter is not recognize f [2004/01/25] i386/61889 i386 Have to reinsert pccard after reboot o [2004/01/27] i386/62003 i386 [patch] make /boot/loader "reboot" code s o [2004/02/11] i386/62699 i386 fstat randomly crashes with "out of memor o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup f [2004/02/25] i386/63334 i386 make kernel error o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- f [2004/03/27] i386/64795 i386 Network Adapter not configuring o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/14] i386/65528 i386 mouse cursor disapears on moving o [2004/04/18] i386/65691 i386 fxp0: device timeout p [2004/04/18] i386/65729 i386 Document machdep.hlt_cpus sysctl f [2004/05/21] i386/66996 i386 Problem with CD/DVD ROM o [2004/05/22] i386/67055 i386 Mouse (wheel) detection problem on SIS748 o [2004/05/30] i386/67383 i386 [patch] do a better job disassembling cod o [2004/06/01] i386/67456 i386 [LOR] LOR on dual-xeon w/ ht o [2004/06/09] i386/67763 i386 [patch] PCMCIA: MELCO manufacturer code s o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e o [2004/06/18] i386/68087 i386 wget core dumps with: Assertion failed: ( o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve o [2004/06/30] i386/68514 i386 Realtek driver halts on oversized frames o [2004/06/30] i386/68518 i386 Hangs while loading 82443BX agp during bo o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/18] i386/69257 i386 [patch] in_cksum_hdr is non-functional wi o [2004/07/23] i386/69460 i386 the nic's speed slow down when both side o [2004/07/28] kern/69688 i386 NATD does not work with outgoing PPTP VPN o [2004/07/28] i386/69722 i386 wi0: init failed o [2004/07/29] i386/69730 i386 [patch] puc driver doesn't support PC-Com o [2004/08/02] kern/69931 i386 PS/2 Optical Mouse (Micro Innovations) mi f [2004/08/05] i386/70036 i386 pcn device not recognizing device o [2004/08/18] i386/70610 i386 [patch] spkr(4): hardcoded assumption HZ o [2004/08/22] i386/70810 i386 [patch] Enable SMBus device on Asus P4B s o [2004/08/22] i386/70832 i386 Serious problems with RealTek NIC using r o [2004/08/25] i386/70926 i386 [boot] 5.3Beta-1 bootstrap error: "atapci o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/29] i386/72179 i386 Inconsistent apm(8) output regarding the o [2004/10/30] i386/73308 i386 kevinxlinuz@126.com o [2004/10/30] i386/73328 i386 top shows NICE as -111 on processes start o [2004/11/08] i386/73663 i386 module_register_init: MOD_LOAD (ibcs2, 0x o [2004/11/08] i386/73673 i386 ifconfig tun0 destroy report: ifconfig: S o [2004/11/09] i386/73742 i386 5.3 rel i386 disk2 image not copying o [2004/11/10] i386/73785 i386 I have just downloaded 5.3 ISO to try.. N o [2004/11/12] i386/73847 i386 volume label - 5.3 cd 1 o [2004/11/12] i386/73865 i386 NOINET6=yes in /etc/make.conf ignored o [2004/11/14] i386/73921 i386 sysctlbyname for machdep.tsc_freq doesn't o [2004/11/15] i386/73968 i386 pkg_version ends with Unable to open INDE o [2004/11/15] i386/73978 i386 an error message appears during loading o o [2004/11/18] i386/74091 i386 PCMCIA: MELCO Manufacturer code should be o [2004/11/20] i386/74153 i386 FreeBSD 5.3 cannot boot ftom pst o [2004/11/21] i386/74188 i386 no sound on a7v600-x with chipset VT8237 o [2004/11/21] i386/74191 i386 Notebook PC2001 Compliant AC97 audio work o [2004/11/21] i386/74211 i386 USB flash drive causes CAM status 0x4 on o [2004/11/21] i386/74216 i386 system halts o [2004/11/21] i386/74218 i386 boot floppy (2nd time) read error o [2004/11/24] i386/74327 i386 mlock() causes physical memory leakage o [2004/11/26] i386/74406 i386 sysinstall accepts but discards media opt o [2004/11/27] i386/74454 i386 [PATCH] Adding VIA Eden family to bsd.cpu o [2004/12/01] i386/74593 i386 Installer installs the wrong version of l o [2004/12/03] i386/74650 i386 System Reboot with umount command o [2004/12/07] i386/74803 i386 3Com509B o [2004/12/08] i386/74829 i386 FreeBSD 5.3-RELEASE hangs during boot/ins o [2004/12/12] i386/74966 i386 Realtek driver seems to misinterpret some o [2004/12/12] i386/74971 i386 vinum creates (shows) incorrect volume (s o [2004/12/14] i386/75057 i386 [QUIRK] Add support for ZICPlay USB MP3 P o [2004/12/15] i386/75090 i386 READ_BIG errors with Sony CRX1611 88 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon Dec 20 17:10:20 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0977A16A4CE for ; Mon, 20 Dec 2004 17:10:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4AF543D2F for ; Mon, 20 Dec 2004 17:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBKHAJSC002078 for ; Mon, 20 Dec 2004 17:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBKHAJ7T002077; Mon, 20 Dec 2004 17:10:19 GMT (envelope-from gnats) Resent-Date: Mon, 20 Dec 2004 17:10:19 GMT Resent-Message-Id: <200412201710.iBKHAJ7T002077@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, Stéphane Thiell Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1060F16A4CE for ; Mon, 20 Dec 2004 17:08:49 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEF9743D2D for ; Mon, 20 Dec 2004 17:08:48 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBKH8mHL005727 for ; Mon, 20 Dec 2004 17:08:48 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBKH8mht005726; Mon, 20 Dec 2004 17:08:48 GMT (envelope-from nobody) Message-Id: <200412201708.iBKH8mht005726@www.freebsd.org> Date: Mon, 20 Dec 2004 17:08:48 GMT From: Stéphane Thiell To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/75319: SATA not recognized on ATI RS300 chipset X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Dec 2004 17:10:20 -0000 >Number: 75319 >Category: i386 >Synopsis: SATA not recognized on ATI RS300 chipset >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 20 17:10:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stéphane Thiell >Release: 5.3 >Organization: >Environment: FreeBSD nova.thiell.com 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #2: Mon Dec 20 20:53:39 CET 2004 root@nova.thiell.com:/usr/obj/usr/src/sys/NOVA i386 >Description: With 5.3-release, on an Asus M/B Chipset: ATI RS300 / IXP200, a SATA disk is only recognized as an UDMA33 disk: atapci0: port 0xff00-0xff0f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 20.1 on pci0 ata0: channel #0 on atapci0 ata1: channel #1 on atapci0 acd0: CDROM at ata0-master UDMA33 ad2: 239372MB [486344/16/63] at ata1-master UDMA33 {18:05}[root@nova]~# atacontrol cap 1 0 ATA channel 1, Master, device ad2: Protocol device model Maxtor 7Y250M0 serial number Y640NL9E firmware revision YAR51HW0 cylinders 16383 heads 16 sectors/track 63 lba supported 268435455 sectors lba48 supported 490234752 sectors dma supported overlap not supported Feature Support Enable Value Vendor write cache yes yes read ahead yes yes SATA NCQ no - 0/0x00 SMART yes yes microcode download yes yes security yes no power management yes yes advanced power management yes no 0/0x00 automatic acoustic management yes yes 254/0xFE 192/0xC0 >How-To-Repeat: >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed Dec 22 15:10:29 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7324516A4CE for ; Wed, 22 Dec 2004 15:10:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F3BB43D46 for ; Wed, 22 Dec 2004 15:10:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBMFATcX080305 for ; Wed, 22 Dec 2004 15:10:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBMFATjm080304; Wed, 22 Dec 2004 15:10:29 GMT (envelope-from gnats) Resent-Date: Wed, 22 Dec 2004 15:10:29 GMT Resent-Message-Id: <200412221510.iBMFATjm080304@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, Sebastian Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACBAE16A4CF for ; Wed, 22 Dec 2004 15:10:13 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B6043D3F for ; Wed, 22 Dec 2004 15:10:13 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBMFADxR005221 for ; Wed, 22 Dec 2004 15:10:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBMFADCL005215; Wed, 22 Dec 2004 15:10:13 GMT (envelope-from nobody) Message-Id: <200412221510.iBMFADCL005215@www.freebsd.org> Date: Wed, 22 Dec 2004 15:10:13 GMT From: Sebastian To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/75387: Future support of Promise SATAII150 TX4 wanted X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Dec 2004 15:10:29 -0000 >Number: 75387 >Category: i386 >Synopsis: Future support of Promise SATAII150 TX4 wanted >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 22 15:10:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sebastian >Release: FreeBSD 5.3 >Organization: >Environment: >Description: The Promise SATAII 150 TX4 is not supported by FreeBSD at this time. It's predecessor (Promise SATA 150 TX4) is however supported. The chip used by SATAII 150 TX4 is PDC40518 and I found this in the current-mail-list: http://lists.freebsd.org/pipermail/freebsd-current/2004-October/040327.html Looks like they got no further. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Thu Dec 23 07:00:50 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 118A516A4CE for ; Thu, 23 Dec 2004 07:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC98B43D55 for ; Thu, 23 Dec 2004 07:00:49 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBN70nOS008917 for ; Thu, 23 Dec 2004 07:00:49 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBN70n75008914; Thu, 23 Dec 2004 07:00:49 GMT (envelope-from gnats) Resent-Date: Thu, 23 Dec 2004 07:00:49 GMT Resent-Message-Id: <200412230700.iBN70n75008914@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, toto Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63CF816A4CE for ; Thu, 23 Dec 2004 06:59:08 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51C4343D45 for ; Thu, 23 Dec 2004 06:59:08 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBN6x7cj000230 for ; Thu, 23 Dec 2004 06:59:07 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBN6x7pD000229; Thu, 23 Dec 2004 06:59:07 GMT (envelope-from nobody) Message-Id: <200412230659.iBN6x7pD000229@www.freebsd.org> Date: Thu, 23 Dec 2004 06:59:07 GMT From: toto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/75420: CMD 648 PCI not work X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Dec 2004 07:00:50 -0000 >Number: 75420 >Category: i386 >Synopsis: CMD 648 PCI not work >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: Thu Dec 23 07:00:49 GMT 2004 >Closed-Date: >Last-Modified: >Originator: toto >Release: 5.3 (cvs) >Organization: Tomica >Environment: FreeBSD mediaclub.tomsk.ru 5.3-STABLE FreeBSD 5.3-STABLE #1: Wed Dec 22 16:26:10 NOVT 2004 toto@mediaclub.tomsk.ru:/usr/obj/usr/src/sys/GENERIC i386 >Description: Hello, This is dmesg: atapci1: port 0xd600-0xd60f,0xd800-0xd803,0xda00-0xda07,0xdc00-0xdc03,0xde00-0xde07 irq 10 at device 9.0 on pci0 ata2: channel #0 on atapci1 device_attach: ata2 attach returned 6 ata3: channel #1 on atapci1 ___ imho this is proplem device_attach: ata2 attach returned 6 CMD don't see HDD like ad4 On FreeBSD 4.11(cvs) all ok. Like MAKEDEV ad4 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Thu Dec 23 18:10:32 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1735616A4CE for ; Thu, 23 Dec 2004 18:10:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E866843D41 for ; Thu, 23 Dec 2004 18:10:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBNIAVhl029124 for ; Thu, 23 Dec 2004 18:10:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBNIAVkN029123; Thu, 23 Dec 2004 18:10:31 GMT (envelope-from gnats) Resent-Date: Thu, 23 Dec 2004 18:10:31 GMT Resent-Message-Id: <200412231810.iBNIAVkN029123@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 Trifonov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 157ED16A4E0 for ; Thu, 23 Dec 2004 18:07:13 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0054843D3F for ; Thu, 23 Dec 2004 18:07:13 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBNI7CBO060869 for ; Thu, 23 Dec 2004 18:07:12 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBNI7CJp060856; Thu, 23 Dec 2004 18:07:12 GMT (envelope-from nobody) Message-Id: <200412231807.iBNI7CJp060856@www.freebsd.org> Date: Thu, 23 Dec 2004 18:07:12 GMT From: Peter Trifonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/75441: fxp device timeout X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Dec 2004 18:10:32 -0000 >Number: 75441 >Category: i386 >Synopsis: fxp device timeout >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 23 18:10:31 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Peter Trifonov >Release: 5.3 >Organization: St.Petersburg State Polytechnic University >Environment: FreeBSD firewall.xj.dcn 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Sat Dec 18 11:45:40 MSK 2004 bugman@firewall.xj.dcn:/usr/src/sys/i386/compile/FIREWALL i386 >Description: The system is dual processor PentiumPro with both IDE& SCSI hard drives and 3 NICs xl0,fxp0,fxp1 xl0: flags=8843 mtu 1500 options=9 inet 10.0.103.3 netmask 0xffffff00 broadcast 10.0.103.255 inet xxxxxxxxxx netmask 0xfffffff0 broadcast xxxxxxxxxxx ether 00:50:da:39:91:99 media: Ethernet autoselect (100baseTX ) status: active fxp0: flags=8843 mtu 1500 options=8 inet xxxxxxxxx netmask 0xffffffc0 broadcast xxxxxxxxxxxxxx ether 00:60:b0:67:21:6f media: Ethernet autoselect (100baseTX ) status: active fxp1: flags=8843 mtu 1500 options=8 inet xxxxxxxxxxxxxxxx netmask 0xfffffffc broadcast xxxxxxxxxxxxxxx ether 00:60:b0:67:31:ec media: Ethernet autoselect (10baseT/UTP) status: active From time to time both fxp's SIMULTANEOUSLY stop working and produce messages fxp*: device timeout. After doing ifconfig fxp* down& up the system said fxp1: SCB timeout: 0x70 0x0 0x50 0x0 fxp1: SCB timeout: 0x20 0x0 0x50 0x0 fxp0: SCB timeout: 0x70 0x0 0x50 0x0 fxp1: SCB timeout: 0x20 0x0 0x50 0x0 The system resumes normal operation only after reboot. xl0 does not experience any problems. >How-To-Repeat: The problem occurs sporadically approximately two times per day. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri Dec 24 22:11:22 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2B3F16A4CE; Fri, 24 Dec 2004 22:11:21 +0000 (GMT) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BDCE43D45; Fri, 24 Dec 2004 22:11:21 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.13.1/8.13.1) with ESMTP id iBOMBL6w046472; Fri, 24 Dec 2004 17:11:21 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.1/8.13.1) with ESMTP id iBOMBLOL078286; Fri, 24 Dec 2004 17:11:21 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id EBB087306E; Fri, 24 Dec 2004 17:11:20 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041224221120.EBB087306E@freebsd-current.sentex.ca> Date: Fri, 24 Dec 2004 17:11:20 -0500 (EST) X-Virus-Scanned: ClamAV 0.80/640/Thu Dec 23 13:48:27 2004 clamav-milter version 0.80j on avscan2 X-Virus-Status: Clean Subject: [current tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Dec 2004 22:11:22 -0000 TB --- 2004-12-24 20:45:52 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-12-24 20:45:52 - starting CURRENT tinderbox run for i386/i386 TB --- 2004-12-24 20:45:52 - checking out the source tree TB --- 2004-12-24 20:45:52 - cd /home/tinderbox/CURRENT/i386/i386 TB --- 2004-12-24 20:45:52 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-12-24 20:52:03 - building world (CFLAGS=-O2 -pipe) TB --- 2004-12-24 20:52:03 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-12-24 20:52:03 - /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 TB --- 2004-12-24 21:58:47 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-12-24 21:58:47 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-12-24 21:58:47 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri Dec 24 21:58:48 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.h:501:1: warning: "PFIL_HOOKS" redefined :6:1: warning: this is the location of the previous definition /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `fr_forgetifp': /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: `ipf_mutex' undeclared (first use in this function) /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: for each function it appears in.) /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `ipfr_fastroute': /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:1779: error: `ipf_rw' undeclared (first use in this function) *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/obj/tinderbox/CURRENT/i386/i386/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. TB --- 2004-12-24 22:11:20 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-12-24 22:11:20 - ERROR: failed to build generic kernel TB --- 2004-12-24 22:11:20 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Fri Dec 24 22:26:08 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E93A216A4D1; Fri, 24 Dec 2004 22:26:08 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAC0C43D39; Fri, 24 Dec 2004 22:26:06 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-a130.otenet.gr [212.205.215.130]) iBOMQ2hU017704; Sat, 25 Dec 2004 00:26:04 +0200 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id iBOMQ1e1051419; Sat, 25 Dec 2004 00:26:01 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id iBOMQ1xk051415; Sat, 25 Dec 2004 00:26:01 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 25 Dec 2004 00:26:01 +0200 From: Giorgos Keramidas To: FreeBSD Tinderbox Message-ID: <20041224222601.GB39539@gothmog.gr> References: <20041224221120.EBB087306E@freebsd-current.sentex.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041224221120.EBB087306E@freebsd-current.sentex.ca> cc: current@freebsd.org cc: i386@freebsd.org Subject: Re: [current tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Dec 2004 22:26:09 -0000 On 2004-12-24 17:11, FreeBSD Tinderbox wrote: > >>> stage 3.2: building everything > [...] > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.h:501:1: warning: "PFIL_HOOKS" redefined > :6:1: warning: this is the location of the previous definition > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `fr_forgetifp': > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: `ipf_mutex' undeclared (first use in this function) > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: (Each undeclared identifier is reported only once > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: for each function it appears in.) > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `ipfr_fastroute': > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:1779: error: `ipf_rw' undeclared (first use in this function) > *** Error code 1 Apparently, ipf_rw is not defined for FreeBSD builds of `fil.c'. The following will probably fix the build (I'm running a test build now): % gothmog:/usr/src# cvs -q di -u sys/contrib/ipfilter/netinet % Index: sys/contrib/ipfilter/netinet/fil.c % =================================================================== % RCS file: /home/ncvs/src/sys/contrib/ipfilter/netinet/fil.c,v % retrieving revision 1.40 % diff -u -r1.40 fil.c % --- sys/contrib/ipfilter/netinet/fil.c 16 Dec 2004 21:02:15 -0000 1.40 % +++ sys/contrib/ipfilter/netinet/fil.c 24 Dec 2004 22:19:19 -0000 % @@ -115,10 +115,10 @@ % # define FR_VERBOSE(verb_pr) % # define FR_DEBUG(verb_pr) % # define IPLLOG(a, c, d, e) ipflog(a, c, d, e) % -# if SOLARIS || defined(__sgi) % +# if SOLARIS || defined(__sgi) || defined(__FreeBSD_version) % extern KRWLOCK_T ipf_mutex, ipf_auth, ipf_nat; % extern kmutex_t ipf_rw; % -# endif /* SOLARIS || __sgi */ % +# endif /* SOLARIS || __sgi || __FreeBSD_version */ % #endif /* _KERNEL */ % % % gothmog:/usr/src# From owner-freebsd-i386@FreeBSD.ORG Fri Dec 24 23:07:09 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C60516A4E1; Fri, 24 Dec 2004 23:07:08 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84FB843D39; Fri, 24 Dec 2004 23:07:06 +0000 (GMT) (envelope-from keramida@linux.gr) Received: from gothmog.gr (patr530-a130.otenet.gr [212.205.215.130]) iBON6sA9023014; Sat, 25 Dec 2004 01:06:58 +0200 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id iBON6qGO070680; Sat, 25 Dec 2004 01:06:52 +0200 (EET) (envelope-from keramida@linux.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id iBON6diO070592; Sat, 25 Dec 2004 01:06:39 +0200 (EET) (envelope-from keramida@linux.gr) Date: Sat, 25 Dec 2004 01:06:39 +0200 From: Giorgos Keramidas To: FreeBSD Tinderbox Message-ID: <20041224230639.GA64800@gothmog.gr> References: <20041224221120.EBB087306E@freebsd-current.sentex.ca> <20041224222601.GB39539@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041224222601.GB39539@gothmog.gr> cc: current@freebsd.org cc: i386@freebsd.org Subject: Re: [current tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Dec 2004 23:07:09 -0000 On 2004-12-25 00:26, Giorgos Keramidas wrote: > On 2004-12-24 17:11, FreeBSD Tinderbox wrote: > > >>> stage 3.2: building everything > > [...] > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.h:501:1: warning: "PFIL_HOOKS" redefined > > :6:1: warning: this is the location of the previous definition > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `fr_forgetifp': > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: `ipf_mutex' undeclared (first use in this function) > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: (Each undeclared identifier is reported only once > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: for each function it appears in.) > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `ipfr_fastroute': > > /tinderbox/CURRENT/i386/i386/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:1779: error: `ipf_rw' undeclared (first use in this function) > > *** Error code 1 > > Apparently, ipf_rw is not defined for FreeBSD builds of `fil.c'. > The following will probably fix the build (I'm running a test build now): > > % gothmog:/usr/src# cvs -q di -u sys/contrib/ipfilter/netinet > % Index: sys/contrib/ipfilter/netinet/fil.c > % =================================================================== > % RCS file: /home/ncvs/src/sys/contrib/ipfilter/netinet/fil.c,v > % retrieving revision 1.40 > % diff -u -r1.40 fil.c > % --- sys/contrib/ipfilter/netinet/fil.c 16 Dec 2004 21:02:15 -0000 1.40 > % +++ sys/contrib/ipfilter/netinet/fil.c 24 Dec 2004 22:19:19 -0000 > % @@ -115,10 +115,10 @@ > % # define FR_VERBOSE(verb_pr) > % # define FR_DEBUG(verb_pr) > % # define IPLLOG(a, c, d, e) ipflog(a, c, d, e) > % -# if SOLARIS || defined(__sgi) > % +# if SOLARIS || defined(__sgi) || defined(__FreeBSD_version) > % extern KRWLOCK_T ipf_mutex, ipf_auth, ipf_nat; > % extern kmutex_t ipf_rw; > % -# endif /* SOLARIS || __sgi */ > % +# endif /* SOLARIS || __sgi || __FreeBSD_version */ > % #endif /* _KERNEL */ > % > % > % gothmog:/usr/src# I sent this message too hastily. The full fix for the buildkernel problems of today's CURRENT is a bit longer: %%% gothmog:/usr/src# cvs -q di -u sys/contrib/ipfilter Index: sys/contrib/ipfilter/netinet/fil.c =================================================================== RCS file: /home/ncvs/src/sys/contrib/ipfilter/netinet/fil.c,v retrieving revision 1.40 diff -u -r1.40 fil.c --- sys/contrib/ipfilter/netinet/fil.c 16 Dec 2004 21:02:15 -0000 1.40 +++ sys/contrib/ipfilter/netinet/fil.c 24 Dec 2004 22:49:58 -0000 @@ -115,10 +115,10 @@ # define FR_VERBOSE(verb_pr) # define FR_DEBUG(verb_pr) # define IPLLOG(a, c, d, e) ipflog(a, c, d, e) -# if SOLARIS || defined(__sgi) +# if SOLARIS || defined(__sgi) || (__FreeBSD_version >= 500043) extern KRWLOCK_T ipf_mutex, ipf_auth, ipf_nat; extern kmutex_t ipf_rw; -# endif /* SOLARIS || __sgi */ +# endif /* SOLARIS || __sgi || __FreeBSD_version */ #endif /* _KERNEL */ Index: sys/contrib/ipfilter/netinet/ip_fil.c =================================================================== RCS file: /home/ncvs/src/sys/contrib/ipfilter/netinet/ip_fil.c,v retrieving revision 1.49 diff -u -r1.49 ip_fil.c --- sys/contrib/ipfilter/netinet/ip_fil.c 29 Sep 2004 04:54:32 -0000 1.49 +++ sys/contrib/ipfilter/netinet/ip_fil.c 24 Dec 2004 22:49:49 -0000 @@ -171,6 +171,9 @@ extern int tcp_mtudisc; extern kmutex_t ipf_rw; extern KRWLOCK_T ipf_mutex; +# elif (__FreeBSD_version >= 500043) +extern kmutex_t ipf_rw; +extern KRWLOCK_T ipf_mutex; # endif #else void init_ifp __P((void)); gothmog:/usr/src# %%% From owner-freebsd-i386@FreeBSD.ORG Fri Dec 24 23:34:35 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E78016A4CE; Fri, 24 Dec 2004 23:34:35 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEFD743D2D; Fri, 24 Dec 2004 23:34:34 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.1/8.13.1) with ESMTP id iBONYY0m003609; Fri, 24 Dec 2004 18:34:34 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.1/8.13.1) with ESMTP id iBONYYtT033951; Fri, 24 Dec 2004 18:34:34 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 110317306E; Fri, 24 Dec 2004 18:34:33 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041224233433.110317306E@freebsd-current.sentex.ca> Date: Fri, 24 Dec 2004 18:34:33 -0500 (EST) X-Virus-Scanned: ClamAV 0.80/625/Fri Dec 10 12:41:57 2004 clamav-milter version 0.80j on clamscanner2 X-Virus-Scanned: ClamAV 0.80/640/Thu Dec 23 13:48:27 2004 clamav-milter version 0.80j on avscan2 X-Virus-Status: Clean X-Virus-Status: Clean Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Dec 2004 23:34:35 -0000 TB --- 2004-12-24 22:11:21 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-12-24 22:11:21 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-12-24 22:11:21 - checking out the source tree TB --- 2004-12-24 22:11:21 - cd /home/tinderbox/CURRENT/i386/pc98 TB --- 2004-12-24 22:11:21 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-12-24 22:17:36 - building world (CFLAGS=-O2 -pipe) TB --- 2004-12-24 22:17:36 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-12-24 22:17:36 - /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 TB --- 2004-12-24 23:24:48 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-12-24 23:24:48 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-12-24 23:24:48 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri Dec 24 23:24:48 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.h:501:1: warning: "PFIL_HOOKS" redefined :6:1: warning: this is the location of the previous definition /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `fr_forgetifp': /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: `ipf_mutex' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:922: error: for each function it appears in.) /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c: In function `ipfr_fastroute': /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter/../../contrib/ipfilter/netinet/ip_fil.c:1779: error: `ipf_rw' undeclared (first use in this function) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/ipfilter. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-12-24 23:34:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-12-24 23:34:33 - ERROR: failed to build generic kernel TB --- 2004-12-24 23:34:33 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sat Dec 25 07:50:20 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E9FD16A4CE for ; Sat, 25 Dec 2004 07:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2941643D46 for ; Sat, 25 Dec 2004 07:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBP7oK06099233 for ; Sat, 25 Dec 2004 07:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBP7oKuT099232; Sat, 25 Dec 2004 07:50:20 GMT (envelope-from gnats) Resent-Date: Sat, 25 Dec 2004 07:50:20 GMT Resent-Message-Id: <200412250750.iBP7oKuT099232@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, Hans Meyer Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20E3416A4CE for ; Sat, 25 Dec 2004 07:49:58 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F02C43D2D for ; Sat, 25 Dec 2004 07:49:58 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBP7nvMI023856 for ; Sat, 25 Dec 2004 07:49:57 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id iBP7nvGf023854; Sat, 25 Dec 2004 07:49:57 GMT (envelope-from nobody) Message-Id: <200412250749.iBP7nvGf023854@www.freebsd.org> Date: Sat, 25 Dec 2004 07:49:57 GMT From: Hans Meyer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/75483: ipfw count does not count X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Dec 2004 07:50:20 -0000 >Number: 75483 >Category: i386 >Synopsis: ipfw count does not count >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 25 07:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hans Meyer >Release: 5.3-R >Organization: Infomatik >Environment: FreeBSD wipcentral2.bommtempo.com.br 5.3-RELEASE FreeBSD 5.3-RELEASE #1: Mon Dec 6 12:10:41 BRST2004 hmm@wipcentral.bommtempo.com.br:/usr/src/sys/i386/compile/wipcentral i386 >Description: appearently ipfw on 5.3-R count do not count outgoing traffic 0100  0     0             count ip from any to 200.170.143.195 via wi0 0200  2179 539153   count ip from 200.170.143.195 to any via wi0 recv/xmit instead of via does not make a difference. Using another Interface as xl0|rl0 also not. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sat Dec 25 10:40:27 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 824F516A4CE for ; Sat, 25 Dec 2004 10:40:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B24243D2D for ; Sat, 25 Dec 2004 10:40:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iBPAeRx4018473 for ; Sat, 25 Dec 2004 10:40:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iBPAeRjh018472; Sat, 25 Dec 2004 10:40:27 GMT (envelope-from gnats) Date: Sat, 25 Dec 2004 10:40:27 GMT Message-Id: <200412251040.iBPAeRjh018472@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Peter Trifonov Subject: Re: i386/75441: fxp device timeout X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Peter Trifonov List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Dec 2004 10:40:27 -0000 The following reply was made to PR i386/75441; it has been noted by GNATS. From: Peter Trifonov To: freebsd-gnats-submit@FreeBSD.org, petert@dcn.infos.ru Cc: Subject: Re: i386/75441: fxp device timeout Date: Sat, 25 Dec 2004 13:43:04 +0300 After further testing I have found a deterministic way to reproduce the problem. Doing flood ping over both fxp interfaces always causes the system to say "device timeout" on both of them. Moreover, bringing both fxp's down, waiting for a few seconds and bringing them up in most cases fixes the problem.