From owner-freebsd-i386@FreeBSD.ORG Sun May 22 12:10:03 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E49016A41F for ; Sun, 22 May 2005 12:10:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A672A43D4C for ; Sun, 22 May 2005 12:10:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4MCA2xG089247 for ; Sun, 22 May 2005 12:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4MCA2rX089246; Sun, 22 May 2005 12:10:02 GMT (envelope-from gnats) Resent-Date: Sun, 22 May 2005 12:10:02 GMT Resent-Message-Id: <200505221210.j4MCA2rX089246@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, walter@pelissero.de Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5736E16A41C for ; Sun, 22 May 2005 12:07:57 +0000 (GMT) (envelope-from walter.pelissero@iesy.net) Received: from smtp.iesy.net (mta002.iesy.net [81.210.131.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id C77AA43D49 for ; Sun, 22 May 2005 12:07:55 +0000 (GMT) (envelope-from walter.pelissero@iesy.net) Received: from zaphod.home.loc (unknown [81.210.131.48]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.iesy.net (Postfix) with ESMTP id A0863B532; Sun, 22 May 2005 14:07:53 +0200 (CEST) Received: from zaphod.home.loc (localhost [127.0.0.1]) by zaphod.home.loc (8.13.3/8.13.3) with ESMTP id j4MC7rJm001485; Sun, 22 May 2005 14:07:53 +0200 (CEST) (envelope-from wcp@zaphod.home.loc) Received: (from wcp@localhost) by zaphod.home.loc (8.13.3/8.13.1/Submit) id j4MC7oO2001483; Sun, 22 May 2005 14:07:50 +0200 (CEST) (envelope-from wcp) Message-Id: <200505221207.j4MC7oO2001483@zaphod.home.loc> Date: Sun, 22 May 2005 14:07:50 +0200 (CEST) From: "Walter C. Pelissero" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Danny Braniss , Larry Baird , Florent Thoumie Subject: i386/81358: PC Engines WRAP support X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: walter@pelissero.de List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2005 12:10:03 -0000 >Number: 81358 >Category: i386 >Synopsis: PC Engines WRAP support >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 22 12:10:01 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Walter C. Pelissero >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD zaphod.home.loc 5.4-STABLE FreeBSD 5.4-STABLE #0: Sat May 7 16:41:16 CEST 2005 root@zaphod.home.loc:/usr/src/sys/i386/compile/TYAN-TIGER-MP i386 PC Engines WRAP.1E (but could as well apply to WRAP.1D, 2B, 2C) >Description: FreeBSD 5.x supports Geode-based single board PCs in /sys/i386/i386/geode.c, enabling some special features available only on those platforms, like front panel LEDs or hardware watchdog. Among the supported boards there is the PC Engines WRAP.1C. Apparently new versions of that board (the 1E, for instance) have moved the BIOS id string somewhere different than the original 0xf9000 address. The result is that geode_probe() fails to fully recognise the board and thus doesn't enable the LEDs devices (/dev/led/led*). >How-To-Repeat: Boot FreeBSD 5.x on a recent WRAP.1E and do a: ls /dev/led The command should fail because the directory is not populated by geode_probe(). >Fix: The following tiny patch makes geode_probe() work even with recent WRAP boards: Index: geode.c =================================================================== RCS file: /usr/src.cvs/src/sys/i386/i386/geode.c,v retrieving revision 1.5 diff -c -r1.5 geode.c *** geode.c 16 Jun 2004 09:47:07 -0000 1.5 --- geode.c 22 May 2005 11:38:37 -0000 *************** *** 145,152 **** led1b = 20; led1 = led_create(led_func, &led1b, "error"); } else if (NULL != ! bios_string(0xf9000, 0xf9000, "PC Engines WRAP.1C ", 0)) { ! printf("PC Engines WRAP.1C platfrom\n"); led1b = -2; led2b = -3; led3b = -18; --- 145,152 ---- led1b = 20; led1 = led_create(led_func, &led1b, "error"); } else if (NULL != ! bios_string(0xf9000, 0xf9100, "PC Engines WRAP", 0)) { ! printf("PC Engines WRAP platform\n"); led1b = -2; led2b = -3; led3b = -18; The patch relaxes the requirements on the matched string because, although the BIOS id string didn't appear to be changed from WRAP.1C to WRAP.1E (it's still "PC Engines WRAP1.C"), it may change in the future. Almost identical patches were kept in the drawer by Danny Braniss and Larry Baird, so chances are good this patch has been fully tested. This also fixes the typo pointed out by Florent Thoumie. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon May 23 09:20:02 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED30F16A41F for ; Mon, 23 May 2005 09:20:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F0D643D1D for ; Mon, 23 May 2005 09:20:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4N9K2sI093233 for ; Mon, 23 May 2005 09:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4N9K2D7093232; Mon, 23 May 2005 09:20:02 GMT (envelope-from gnats) Resent-Date: Mon, 23 May 2005 09:20:02 GMT Resent-Message-Id: <200505230920.j4N9K2D7093232@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, Rayene Ben Rayana Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C94816A41C for ; Mon, 23 May 2005 09:15:26 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DBE043D4C for ; Mon, 23 May 2005 09:15:25 +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 j4N9FPi1022402 for ; Mon, 23 May 2005 09:15:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j4N9FPAx022401; Mon, 23 May 2005 09:15:25 GMT (envelope-from nobody) Message-Id: <200505230915.j4N9FPAx022401@www.freebsd.org> Date: Mon, 23 May 2005 09:15:25 GMT From: Rayene Ben Rayana To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/81390: ( usermode ppp ) LCP Negotiation Never Finishes, one of the sides never transmit an ack 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, 23 May 2005 09:20:03 -0000 >Number: 81390 >Category: i386 >Synopsis: ( usermode ppp ) LCP Negotiation Never Finishes, one of the sides never transmit an ack >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 May 23 09:20:01 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Rayene Ben Rayana >Release: 5.3 >Organization: ENSI - ENSTB >Environment: FreeBSD l2tp-lns 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: I'm trying to get usermode ppp working over an L2TP tunnel (ppp is started in -direct mode). The problem is that ppp is unable to accomplish LCP negociation (it can rarely do it). I examined the log Files on the two sides, and here are my conclusions machine A sends an LCP request (MRU = 1500) (Stopped --7 ReqSent) After receiving that request, B sends his REQUEST and logs that it has sent an ack to A. (Stopped --7 AckSent). In reality, It sends only a request (Ethereal Capture). machine A receives the request and sends an ack (ReqSent --7 AckSent). machine B receives the ack. (AckSent --7 Opened). It sends an identification. machine Is still waiting for the Ack --7 Timeout (3 sec by default). ( machine A re-sends a request, Machine B re-sends a request and an ack (I insist that the ack is not really transmitted, It's ppp.log'd) And we repeat the same sequence 5 times. (default LCP retries) In ethereal, I can see : -------------1st iteration------------- A to B : LCP Config Request (id = 1) B to A : LCP Config Request (id = 1) A to B : LCP Config Ack (id = 1) B to A : LCP Identification (id = 0) -------------2nd iteration------------- A to B : LCP Config Request (id = 1) B to A : LCP Config Request (id = 2) A to B : LCP Config Ack (id = 2) B to A : LCP Identification (id = 1) -------------3rd iteration------------- A to B : LCP Config Request (id = 2) B to A : LCP Config Request (id = 3) A to B : LCP Config Ack (id = 3) B to A : LCP Identification (id = 2) -------------4th iteration------------- .. -------------5th iteration------------- .. Here's the Log of machine B (the one that doesn't send the ack) It's seems long but there's repetition. May 23 09:46:32 manooba ppp[712]: LCP: FSM: Using "deflink" as a transport May 23 09:46:32 manooba ppp[712]: LCP: deflink: State change Initial --> Closed May 23 09:46:32 manooba ppp[712]: LCP: deflink: State change Closed --> Stopped May 23 09:46:33 manooba ppp[712]: LCP: deflink: RecvConfigReq(1) state = Stopped May 23 09:46:33 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:33 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:33 manooba ppp[712]: LCP: deflink: SendConfigReq(1) state = Stopped May 23 09:46:33 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:33 manooba ppp[712]: LCP: MAGICNUM[6] 0x14d00770 May 23 09:46:33 manooba ppp[712]: LCP: deflink: SendConfigAck(1) state = Stopped May 23 09:46:33 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:33 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:33 manooba ppp[712]: LCP: deflink: LayerStart May 23 09:46:33 manooba ppp[712]: LCP: deflink: State change Stopped --> Ack-Sent May 23 09:46:33 manooba ppp[712]: LCP: deflink: RecvConfigAck(1) state = Ack-Sent May 23 09:46:33 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:33 manooba ppp[712]: LCP: MAGICNUM[6] 0x14d00770 May 23 09:46:33 manooba ppp[712]: LCP: deflink: State change Ack-Sent --> Opened May 23 09:46:33 manooba ppp[712]: LCP: deflink: LayerUp May 23 09:46:33 manooba ppp[712]: LCP: deflink: SendIdent(0) state = Opened May 23 09:46:33 manooba ppp[712]: LCP: MAGICNUM 14d00770 May 23 09:46:33 manooba ppp[712]: LCP: TEXT user-ppp 3.2 (built Nov 4 2004) May 23 09:46:36 manooba ppp[712]: LCP: deflink: RecvConfigReq(1) state = Opened May 23 09:46:36 manooba ppp[712]: LCP: deflink: LayerDown May 23 09:46:36 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:36 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:36 manooba ppp[712]: LCP: deflink: SendConfigReq(2) state = Opened May 23 09:46:36 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:36 manooba ppp[712]: LCP: MAGICNUM[6] 0x11b37491 May 23 09:46:36 manooba ppp[712]: LCP: deflink: SendConfigAck(1) state = Opened May 23 09:46:36 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:36 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:36 manooba ppp[712]: LCP: deflink: State change Opened --> Ack-Sent May 23 09:46:36 manooba ppp[712]: LCP: deflink: RecvConfigAck(2) state = Ack-Sent May 23 09:46:36 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:36 manooba ppp[712]: LCP: MAGICNUM[6] 0x11b37491 May 23 09:46:36 manooba ppp[712]: LCP: deflink: State change Ack-Sent --> Opened May 23 09:46:36 manooba ppp[712]: LCP: deflink: LayerUp May 23 09:46:36 manooba ppp[712]: LCP: deflink: SendIdent(1) state = Opened May 23 09:46:36 manooba ppp[712]: LCP: MAGICNUM 11b37491 May 23 09:46:36 manooba ppp[712]: LCP: TEXT user-ppp 3.2 (built Nov 4 2004) May 23 09:46:39 manooba ppp[712]: LCP: deflink: RecvConfigReq(2) state = Opened May 23 09:46:39 manooba ppp[712]: LCP: deflink: LayerDown May 23 09:46:39 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:39 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:39 manooba ppp[712]: LCP: deflink: SendConfigReq(3) state = Opened May 23 09:46:39 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:39 manooba ppp[712]: LCP: MAGICNUM[6] 0x4e4ac1eb May 23 09:46:39 manooba ppp[712]: LCP: deflink: SendConfigAck(2) state = Opened May 23 09:46:39 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:39 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:39 manooba ppp[712]: LCP: deflink: State change Opened --> Ack-Sent May 23 09:46:39 manooba ppp[712]: LCP: deflink: RecvConfigAck(3) state = Ack-Sent May 23 09:46:39 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:39 manooba ppp[712]: LCP: MAGICNUM[6] 0x4e4ac1eb May 23 09:46:39 manooba ppp[712]: LCP: deflink: State change Ack-Sent --> Opened May 23 09:46:39 manooba ppp[712]: LCP: deflink: LayerUp May 23 09:46:39 manooba ppp[712]: LCP: deflink: SendIdent(2) state = Opened May 23 09:46:39 manooba ppp[712]: LCP: MAGICNUM 4e4ac1eb May 23 09:46:39 manooba ppp[712]: LCP: TEXT user-ppp 3.2 (built Nov 4 2004) May 23 09:46:42 manooba ppp[712]: LCP: deflink: RecvConfigReq(3) state = Opened May 23 09:46:42 manooba ppp[712]: LCP: deflink: LayerDown May 23 09:46:42 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:42 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:42 manooba ppp[712]: LCP: deflink: SendConfigReq(4) state = Opened May 23 09:46:42 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:42 manooba ppp[712]: LCP: MAGICNUM[6] 0x46fa73b0 May 23 09:46:42 manooba ppp[712]: LCP: deflink: SendConfigAck(3) state = Opened May 23 09:46:42 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:42 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:42 manooba ppp[712]: LCP: deflink: State change Opened --> Ack-Sent May 23 09:46:42 manooba ppp[712]: LCP: deflink: RecvConfigAck(4) state = Ack-Sent May 23 09:46:42 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:42 manooba ppp[712]: LCP: MAGICNUM[6] 0x46fa73b0 May 23 09:46:42 manooba ppp[712]: LCP: deflink: State change Ack-Sent --> Opened May 23 09:46:42 manooba ppp[712]: LCP: deflink: LayerUp May 23 09:46:42 manooba ppp[712]: LCP: deflink: SendIdent(3) state = Opened May 23 09:46:42 manooba ppp[712]: LCP: MAGICNUM 46fa73b0 May 23 09:46:42 manooba ppp[712]: LCP: TEXT user-ppp 3.2 (built Nov 4 2004) May 23 09:46:45 manooba ppp[712]: LCP: deflink: RecvConfigReq(4) state = Opened May 23 09:46:45 manooba ppp[712]: LCP: deflink: LayerDown May 23 09:46:45 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:45 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:45 manooba ppp[712]: LCP: deflink: SendConfigReq(5) state = Opened May 23 09:46:45 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:45 manooba ppp[712]: LCP: MAGICNUM[6] 0x7885184e May 23 09:46:45 manooba ppp[712]: LCP: deflink: SendConfigAck(4) state = Opened May 23 09:46:45 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:45 manooba ppp[712]: LCP: MAGICNUM[6] 0x18557c3a May 23 09:46:45 manooba ppp[712]: LCP: deflink: State change Opened --> Ack-Sent May 23 09:46:45 manooba ppp[712]: LCP: deflink: RecvConfigAck(5) state = Ack-Sent May 23 09:46:45 manooba ppp[712]: LCP: MRU[4] 1500 May 23 09:46:45 manooba ppp[712]: LCP: MAGICNUM[6] 0x7885184e May 23 09:46:45 manooba ppp[712]: LCP: deflink: State change Ack-Sent --> Opened May 23 09:46:45 manooba ppp[712]: LCP: deflink: LayerUp May 23 09:46:45 manooba ppp[712]: LCP: deflink: SendIdent(4) state = Opened May 23 09:46:45 manooba ppp[712]: LCP: MAGICNUM 7885184e May 23 09:46:45 manooba ppp[712]: LCP: TEXT user-ppp 3.2 (built Nov 4 2004) May 23 09:46:48 manooba ppp[712]: LCP: deflink: LayerDown May 23 09:46:48 manooba ppp[712]: LCP: deflink: State change Opened --> Starting May 23 09:46:48 manooba ppp[712]: LCP: deflink: LayerFinish May 23 09:46:48 manooba ppp[712]: LCP: deflink: State change Starting --> Initial >How-To-Repeat: Just Initiate an L2TP tunnel with the peer. The l2tpd daemon will call the ppp and In, 90% of the cases, the same bug. Sometimes It works (B sends an Ack) This happens when IPCP or IPv6CP packets are sent between LCP ones. Strange !! >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon May 23 11:01:49 2005 Return-Path: X-Original-To: freebsd-i386@freebsd.org 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 A856116A426 for ; Mon, 23 May 2005 11:01:49 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6349843D48 for ; Mon, 23 May 2005 11:01:49 +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.3/8.13.3) with ESMTP id j4NB1nVl004039 for ; Mon, 23 May 2005 11:01:49 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4NB1ms7004033 for freebsd-i386@freebsd.org; Mon, 23 May 2005 11:01:48 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 23 May 2005 11:01:48 GMT Message-Id: <200505231101.j4NB1ms7004033@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 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, 23 May 2005 11:01:49 -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/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 o [2005/01/18] i386/76397 i386 ata raid crashes in g_down (heavy load) o [2005/03/14] i386/78837 i386 Partition Table Corruption in 5.3 o [2005/05/18] i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeo 9 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' 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 [ f [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 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/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/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/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 f [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/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 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, 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/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 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/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/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/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/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/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/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/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/17] i386/75201 i386 nge driver causes FreeBSD 5.3-RELEASE and o [2004/12/23] i386/75441 i386 fxp device timeout o [2004/12/27] i386/75531 i386 Various DMA errors result in system panic o [2005/01/06] i386/75887 i386 with vt0.disabled=0 and PCVT in kernel vi o [2005/01/11] i386/76105 i386 PF on renamed interfaces page fault while o [2005/01/17] i386/76372 i386 cannot burn iso image disk2 of any releas o [2005/01/20] i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) o [2005/01/25] i386/76666 i386 Booting and Sound are mutually exclusive o [2005/01/27] i386/76737 i386 CardBus problem (cbb1: Could not map regi f [2005/01/28] i386/76785 i386 Installation Errors o [2005/01/31] i386/76925 i386 standard pci-ide, install - "NO DISKS FOU o [2005/02/01] i386/76944 i386 [patch] i386 bus_dmamap_create() bug o [2005/02/01] i386/76948 i386 Slow network with rl0 (rl0 driver problem o [2005/02/06] i386/77154 i386 5.3 refuses to boot when IDE channel2 is o [2005/02/10] i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE o [2005/02/13] i386/77443 i386 Can't access floppy - "/dev/fd0: Input/ou o [2005/02/14] i386/77529 i386 installation of freebsd 5.3 in laptop an o [2005/02/17] i386/77643 i386 SATA PCI controllers fail with WRITE_DMA o [2005/02/21] i386/77825 i386 dc driver pagefaults on bootup o [2005/02/22] i386/77935 i386 Can't boot with 5.x CD or floppy o [2005/02/25] i386/78075 i386 filesystem corruption o [2005/03/01] i386/78218 i386 kue not detected on Sony PCG-F370 VAIO o [2005/03/01] i386/78219 i386 Netgear FA-410TX is incorrectly detected o [2005/03/02] i386/78301 i386 Fatal trap 12 o [2005/03/03] i386/78339 i386 BTX loader crashes on boot on HP Proliant o [2005/03/07] i386/78517 i386 WRITE_DMA and READ_DMA timeouts with ATI o [2005/03/10] i386/78657 i386 error installing 5.3-RELEASE due to Compa o [2005/03/10] i386/78666 i386 ata0-master: FAILURE ATA-IDENTIFY timed o o [2005/03/16] i386/78929 i386 atapicam prevents boot, system hangs o [2005/03/16] i386/78930 i386 SuperMicro web server with 5.3-RELEASE ke o [2005/03/21] i386/79073 i386 System panic and hang after creating a la f [2005/03/21] i386/79097 i386 mount new partition maps / f [2005/03/22] i386/79141 i386 5.4Beta1 does not recognize my intel grap o [2005/03/23] i386/79169 i386 freeze with striped USB Drives under high o [2005/03/27] i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4 o [2005/03/28] i386/79323 i386 authmod setup with ifconfig on dlink wlan o [2005/03/31] i386/79409 i386 [ataidle?] Come back from idle make the s o [2005/04/08] i386/79686 i386 Spurious notebook disk errors from ATA dr o [2005/04/09] i386/79729 i386 umass, da0 not detected by devfs for o [2005/04/09] i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG erro o [2005/04/11] i386/79779 i386 If system memory is above 4GB, one parts o [2005/04/11] i386/79784 i386 Broadcom BCM4401 (bfe) : no carrier f [2005/04/11] i386/79797 i386 [panic] pmap_dev: Coud't alloc kernel vir o [2005/04/12] i386/79807 i386 Lock Up on Old Acer P1 Comp o [2005/04/12] i386/79833 i386 BTX crashes on boot when using Promise TX o [2005/04/14] i386/79912 i386 Sound broken for 2 VIA chipsets o [2005/04/14] i386/79943 i386 Very High interupt rate on PCM o [2005/04/22] i386/80268 i386 [crash] System with Transmeta Efficeon cp o [2005/04/28] i386/80426 i386 5.4-RC3 still panic when boot on ASUS P2B o [2005/04/28] i386/80433 i386 write failure on transfer! o [2005/05/02] i386/80539 i386 bug /dev/bpf (/usr/ports/net-mg o [2005/05/03] i386/80572 i386 bridge/ipfw works intermittantly. o [2005/05/07] i386/80739 i386 Strange panic (keyboard related?) on 5.4 o [2005/05/10] i386/80853 i386 ed driver - support for Compex RL2000/ISA o [2005/05/12] i386/80938 i386 gmirror: DEVFS Overflow table o [2005/05/13] i386/80969 i386 Repeatable double fault panic after CARP o [2005/05/13] i386/80989 i386 Cannot install 5.4-RELEASE both in my sys o [2005/05/14] i386/81019 i386 RealTek 8169S32 behaves erratically o [2005/05/16] i386/81111 i386 /boot/loader causes reboot due to CFLAGS+ o [2005/05/19] i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR o [2005/05/20] i386/81311 i386 Athlon MP SMP + 3ware + em0 = deadlock, n o [2005/05/23] i386/81390 i386 ( usermode ppp ) LCP Negotiation Never Fi 209 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/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic 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/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/17] i386/62977 i386 Mouse daemon during install/setup 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- 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 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/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 f [2004/07/23] i386/69460 i386 the nic's speed slow down when both side 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 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 unable to install on AMD 2500+,NF2,GF MX4 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/12] i386/73847 i386 volume label - 5.3 cd 1 o [2004/11/14] i386/73921 i386 sysctlbyname for machdep.tsc_freq doesn't o [2004/11/15] i386/73978 i386 an error message appears during loading o 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/27] i386/74454 i386 [PATCH] Adding VIA Eden family to bsd.cpu 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 [patch] FreeBSD 5.3-RELEASE hangs during o [2004/12/12] i386/74966 i386 Realtek driver seems to misinterpret some o [2004/12/15] i386/75090 i386 READ_BIG errors with Sony CRX1611 o [2004/12/22] i386/75387 i386 Future support of Promise SATAII150 TX4 w o [2004/12/23] i386/75420 i386 CMD 648 PCI not work o [2004/12/28] i386/75583 i386 Installation fails o [2004/12/29] i386/75589 i386 O2Micro pccard1 slot not functioning whil o [2005/01/04] i386/75776 i386 NO ps/2 keyboard using USB keyboard under o [2005/01/06] i386/75898 i386 Exception and reboot: Loader and kernel u o [2005/01/23] i386/76587 i386 ps2 mouse weird... f [2005/01/25] i386/76653 i386 Problem with Asahi Optical usb device (Pe o [2005/02/07] i386/77239 i386 3Com 3CXFEM656C does not seem to be suppo o [2005/02/14] i386/77477 i386 AHA-1542CP SCSI failed to probe o [2005/02/15] i386/77541 i386 em driver if_oerrors book keeping error o [2005/03/07] i386/78569 i386 seg fault compiling after install on AMD o [2005/03/21] i386/79091 i386 [patch] Small optimization for i386/suppo o [2005/03/22] i386/79136 i386 disk controller not detected o [2005/03/22] i386/79143 i386 Broadcom NIC driver do not work for IPMI o [2005/03/27] i386/79272 i386 "ata" detects and enables UDMA66 or UDMA1 o [2005/03/27] i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/68 o [2005/03/28] i386/79317 i386 Freebsd Erasing NVRAM o [2005/03/30] i386/79350 i386 "ata" unrequested increase in xDMAx speed o [2005/04/12] i386/79840 i386 Partitioning and formating a new disk fai o [2005/04/14] i386/79890 i386 burncd fails on a Pioneer DVD drive o [2005/04/18] i386/80081 i386 Problem loading a NDIS kernel module. o [2005/04/19] i386/80092 i386 PC Cards do not work at all on laptop Com o [2005/04/19] i386/80095 i386 ld-elf.so.1 crashes with executables prod o [2005/04/19] i386/80097 i386 df reports incorrect stats with gmirror o [2005/04/22] i386/80236 i386 atacontrol outputs minimal usage o [2005/04/22] i386/80265 i386 D-Link NIC with VIA Rhine II has no carr o [2005/04/27] i386/80391 i386 sound card driver o [2005/04/29] i386/80465 i386 pcm0:record:0: record interrupt timeout o [2005/05/03] i386/80580 i386 4.11 router panic in lockmgr: locking aga o [2005/05/15] i386/81082 i386 Failure to detect Pioneer CD drive on Int o [2005/05/19] i386/81263 i386 rc.conf error on startup o [2005/05/22] i386/81358 i386 PC Engines WRAP support 99 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon May 23 21:52:06 2005 Return-Path: X-Original-To: freebsd-i386@FreeBSD.org 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 7DC8016A41C for ; Mon, 23 May 2005 21:52:06 +0000 (GMT) (envelope-from douglas@atech.br) Received: from purus.atech.br (purus.atech.br [200.230.133.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E209043D1F for ; Mon, 23 May 2005 21:51:56 +0000 (GMT) (envelope-from douglas@atech.br) Received: from [10.30.6.37] ([10.30.6.37]) by purus.atech.br with Microsoft SMTPSVC(5.0.2195.6713); Mon, 23 May 2005 17:57:50 -0400 Message-ID: <429251DD.8090303@atech.br> Date: Mon, 23 May 2005 17:57:49 -0400 From: Douglas Braga de Alencar User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-i386@FreeBSD.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 23 May 2005 21:57:50.0328 (UTC) FILETIME=[76618F80:01C55FE2] Cc: Subject: Problem Report i386/63776 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, 23 May 2005 21:52:06 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I resolved this problem by just disabling the USB Legacy Support on the BIOS. ;) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCklHd85ckK7ofBqERAhMYAJwP6UHqDRgc/5sjeuwO8t1FhDxrfQCfVLlh qt2XwGZEXooA1rFsuM0snzU= =3GGv -----END PGP SIGNATURE----- From owner-freebsd-i386@FreeBSD.ORG Mon May 23 21:52:18 2005 Return-Path: X-Original-To: freebsd-i386@FreeBSD.org 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 A387916A41C for ; Mon, 23 May 2005 21:52:18 +0000 (GMT) (envelope-from douglas@atech.br) Received: from purus.atech.br (purus.atech.br [200.230.133.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 785F943D1F for ; Mon, 23 May 2005 21:52:15 +0000 (GMT) (envelope-from douglas@atech.br) Received: from [10.30.6.37] ([10.30.6.37]) by purus.atech.br with Microsoft SMTPSVC(5.0.2195.6713); Mon, 23 May 2005 17:58:52 -0400 Message-ID: <4292521C.9010101@atech.br> Date: Mon, 23 May 2005 17:58:52 -0400 From: Douglas Braga de Alencar User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-i386@FreeBSD.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 23 May 2005 21:58:52.0846 (UTC) FILETIME=[9BA50CE0:01C55FE2] Cc: Subject: Problem Report i386/68900 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, 23 May 2005 21:52:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I resolved this problem by just disabling the USB Legacy Support in the BIOS. ;) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCklIc85ckK7ofBqERAtAJAJ9vlsropuR7jzbA5jDggbJ624IzpwCdHPmJ QH9+5tvVRz8T3cyrTo+2bKo= =j36M -----END PGP SIGNATURE----- From owner-freebsd-i386@FreeBSD.ORG Tue May 24 14:40:02 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE4B116A41C for ; Tue, 24 May 2005 14:40:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B64843D53 for ; Tue, 24 May 2005 14:40:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4OEe2rl067978 for ; Tue, 24 May 2005 14:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4OEe2F1067977; Tue, 24 May 2005 14:40:02 GMT (envelope-from gnats) Resent-Date: Tue, 24 May 2005 14:40:02 GMT Resent-Message-Id: <200505241440.j4OEe2F1067977@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, Arnaud de Prelle Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D90316A41C for ; Tue, 24 May 2005 14:39:31 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DC2743D4C for ; Tue, 24 May 2005 14:39:31 +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 j4OEdVj9093818 for ; Tue, 24 May 2005 14:39:31 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j4OEdVqS093817; Tue, 24 May 2005 14:39:31 GMT (envelope-from nobody) Message-Id: <200505241439.j4OEdVqS093817@www.freebsd.org> Date: Tue, 24 May 2005 14:39:31 GMT From: Arnaud de Prelle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/81438: Ataidle seems broken + problem with ATA wakeup 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: Tue, 24 May 2005 14:40:02 -0000 >Number: 81438 >Category: i386 >Synopsis: Ataidle seems broken + problem with ATA wakeup >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: Tue May 24 14:40:01 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Arnaud de Prelle >Release: 6.0-Current >Organization: >Environment: FreeBSD pnserver.pnzone.net 6.0-CURRENT FreeBSD 6.0-CURRENT #0: Tue May 24 15:41:42 CEST 2005 i386 >Description: First, there seems to be some problem with a PATA-133 Maxtor disk when trying to wake it up (it has been waked up before with 'ataidle -S'): kernel log messages: >How-To-Repeat: Every times >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: >> ad2: TIMEOUT - READ_DMA retrying (2 retries left) LBA=12127 >> ad2: WARNING - removed from configuration >> ata1-master: FAILURE - READ_DMA timed out And when I manually try to remove it from the mounting point in the tree 'unmount /mount_point' of this ad2 makes the server freezing. This brand-new disk has those properties: ad2: 194481MB [395136/16/63] at ata1-master UDMA133 So I tried to upgrade to 6.0-Current, successfully, but with this version, ataidle does simply not working: # ataidle -l error getting maximum channel: Operation not supported # ataidle -S 20 1 0 error getting maximum channel: Operation not supported So I tought maybe the binary for 5.4 isn't compatible with 6.0 and I tried to recompile ataidle. And it seems to be broken: # pwd /usr/ports/sysutils/ataidle # cat distinfo MD5 (ataidle-0.8.tar.gz) = c7486da942c4fcd47a3724270ac4012d SIZE (ataidle-0.8.tar.gz) = 13618 # make install clean ===> Building for ataidle-0.8 /bin/sh Make.sh clean all rm -f *.o ataidle cc -O -pipe -std=c99 -Wall -pedantic -c freebsd/ataidle.c In file included from freebsd/ataidle.h:39, from freebsd/ataidle.c:63: freebsd/../mi/atagen.h:81: error: field `atacmd' has incomplete type In file included from freebsd/ataidle.c:65: freebsd/../mi/atadefs.h:11: error: syntax error before numeric constant freebsd/../mi/atadefs.h:13: error: syntax error before numeric constant freebsd/ataidle.c: In function `ata_cmd': freebsd/ataidle.c:88: error: `ATAGMAXCHANNEL' undeclared (first use in this function) freebsd/ataidle.c:88: error: (Each undeclared identifier is reported only once freebsd/ataidle.c:88: error: for each function it appears in.) freebsd/ataidle.c:99: error: `ATAREQUEST' undeclared (first use in this function) freebsd/ataidle.c:103: error: `IOCATA' undeclared (first use in this function) freebsd/ataidle.c: In function `ata_setataparams': freebsd/ataidle.c:113: error: invalid application of `sizeof' to incomplete type `ata_cmd' freebsd/ataidle.c:114: error: `ATAREQUEST' undeclared (first use in this function) freebsd/ataidle.c: In function `ata_devpresent': freebsd/ataidle.c:153: error: `ATAGPARM' undeclared (first use in this function) freebsd/ataidle.c:155: error: `IOCATA' undeclared (first use in this function) freebsd/ataidle.c: In function `ata_getmaxchan': freebsd/ataidle.c:170: error: `ATAGMAXCHANNEL' undeclared (first use in this function) *** Error code 1 Stop in /usr/ports/sysutils/ataidle/work/ataidle-0.8. *** Error code 1 Stop in /usr/ports/sysutils/ataidle/work/ataidle-0.8. *** Error code 1 Stop in /usr/ports/sysutils/ataidle. From owner-freebsd-i386@FreeBSD.ORG Tue May 24 16:30:09 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF03016A41C for ; Tue, 24 May 2005 16:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB2B643D1D for ; Tue, 24 May 2005 16:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4OGU92J082109 for ; Tue, 24 May 2005 16:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4OGU9mw082107; Tue, 24 May 2005 16:30:09 GMT (envelope-from gnats) Date: Tue, 24 May 2005 16:30:09 GMT Message-Id: <200505241630.j4OGU9mw082107@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: arnaud de prelle Cc: Subject: Re: i386/81438: Ataidle seems broken + problem with ATA wakeup X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: arnaud de prelle List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 16:30:10 -0000 The following reply was made to PR i386/81438; it has been noted by GNATS. From: arnaud de prelle To: bug-followup@FreeBSD.org, support@pnzone.net Cc: Subject: Re: i386/81438: Ataidle seems broken + problem with ATA wakeup Date: Tue, 24 May 2005 18:28:52 +0200 I made little c program for manually setting idle a disk but now there appears errors in the /usr/include/sys/ata.h ! root@pnserver# cat sleep.c #include #include #include #include #include #include int main (int argc, char *argv[]) { int fd; char *dev = argv[argc-1]; if (argc != 2) { printf("Error with number of args, usage:\n"); printf("$ sleep /dev/device_node\n"); exit(EXIT_FAILURE); } if ( (fd = open(dev, O_RDONLY)) == -1) { printf("Error while trying to open %s\n", dev); exit(EXIT_FAILURE); } if ( ioctl (fd, ATA_IDLE_IMMEDIATE, sizeof(ATA_IDLE_IMMEDIATE)) == -1 ) { printf("Error while trying to idle the disk\n"); printf("-> ATA_IDLE_IMMEDIATE Code: %d\n", ATA_IDLE_IMMEDIATE); printf("-> Error Code: %s\n", strerror (errno)); exit(EXIT_FAILURE); } else printf("Disk is now idle\n"); exit(EXIT_SUCCESS); } root@pnserver# cc sleep.c In file included from sleep.c:6: /usr/include/sys/ata.h:38: error: syntax error before "u_int16_t" /usr/include/sys/ata.h:130: error: syntax error before "u_int16_t" /usr/include/sys/ata.h:164: error: syntax error before "u_int16_t" /usr/include/sys/ata.h:349: error: syntax error before "u_int8_t" /usr/include/sys/ata.h:358: error: syntax error before "caddr_t" And when I manually set up ATA_IDLE_IMMEDIATE as seen in sys/ata.h: #define ATA_IDLE_IMMEDIATE 0xe1 Here is the result: root@pnserver# cc sleep.c -o sleep root@pnserver# ./sleep /dev/ad1 Error while trying to idle the disk -> ATA_IDLE_IMMEDIATE Code: 225 -> Error Code: Inappropriate ioctl for device root@pnserver# df -h Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 9.7G 4.5G 4.4G 50% / devfs 1.0K 1.0K 0B 100% /dev /dev/ad0s1f 45G 13G 29G 31% /home /dev/ad0s1e 15G 2.5G 11G 19% /net /dev/ad0s1d 3.9G 212M 3.4G 6% /var /dev/ad1s1a 5.9G 4.3G 1.1G 80% /dd3 /dev/ad1s1f 2.9G 1.8G 871M 68% /dd3/home /dev/ad1s1e 989M 346M 564M 38% /dd3/var /dev/ad1s1d 2.9G 2.1G 554M 80% /dd3/net /dev/ad2s1d 184G 101G 68G 60% /dd2 procfs 4.0K 4.0K 0B 100% /proc devfs 1.0K 1.0K 0B 100% /var/named/de So it tells me that 0xe1 is an Inappropriate ioctl for device. I dont understand anything of this ! ps: When trying with ATA_STANDBY_IMMEDIATE it's the same problem. ps2: I cant open the device in O_WRONLY maybe it's there the problem, I don't know well. Does ata.h and all stuffes related to ata still in development on the 6.0-Current ? Will ata idle be repaired on 5.4-Release in future (see first post) or must I shift to another distribution (I hope not!!) ? -- Arnaud de Prelle arnaud@pnzone.net From owner-freebsd-i386@FreeBSD.ORG Tue May 24 18:10:03 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F62B16A41C for ; Tue, 24 May 2005 18:10:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9BBE43D48 for ; Tue, 24 May 2005 18:10:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4OIA2lm097672 for ; Tue, 24 May 2005 18:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4OIA24V097671; Tue, 24 May 2005 18:10:02 GMT (envelope-from gnats) Resent-Date: Tue, 24 May 2005 18:10:02 GMT Resent-Message-Id: <200505241810.j4OIA24V097671@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, jiashiun@gmail.com Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3194916A41C for ; Tue, 24 May 2005 18:04:22 +0000 (GMT) (envelope-from root@gmail.com) Received: from mail.synology.com (dns1.synology.com [210.202.102.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C9C643D48 for ; Tue, 24 May 2005 18:04:19 +0000 (GMT) (envelope-from root@gmail.com) Received: from jsli-x4.synology.com ([192.168.33.33]) by mail.synology.com (8.13.1/8.13.1) with SMTP id j4OI2IRG020136 for ; Wed, 25 May 2005 02:02:18 +0800 (CST) Received: by jsli-x4.synology.com (sSMTP sendmail emulation); Wed, 25 May 2005 02:03:48 +0800 Message-Id: <200505241802.j4OI2IRG020136@mail.synology.com> Date: Wed, 25 May 2005 02:03:48 +0800 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/81445: [patch] Make VESA work on VMWare X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jiashiun@gmail.com List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 18:10:03 -0000 >Number: 81445 >Category: i386 >Synopsis: [patch] Make VESA work on VMWare >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: Tue May 24 18:10:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jia-Shiun Li >Release: FreeBSD 6.0-CURRENT i386 >Organization: n/a >Environment: System: FreeBSD jsli-x4 6.0-CURRENT FreeBSD 6.0-CURRENT #4: Wed May 18 19:55:37 CST 2005 root@jsli-x4.synology.com:/usr/obj/usr/src/sys/x4 i386 >Description: VESA driver in current source tree checks the NONVGA flag of VESA information block when loading. If this flag is set it will refuse to initialize. Most VESA adapters do not set this flag, but the virtual display adapter in VMWare does. As a result VESA cannot be used on VMWare. http://lists.freebsd.org/mailman/htdig/freebsd-current/2005-March/047559.html >How-To-Repeat: Boot verbose and type the following command under shell: # kldload vesa will result: VESA: information block 56 45 53 41 00 02 f0 5a 00 c0 03 00 00 00 a9 5f 00 c0 00 01 00 02 e4 5a 00 c0 cd 5a 00 c0 c9 5a 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 module_register_init: MOD_LOAD (vesa, 0xc178c138, 0) error 6 >Fix: --- vesa.diff begins here --- Index: src/sys/i386/isa/vesa.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/vesa.c,v retrieving revision 1.50 diff -b -u -r1.50 vesa.c --- src/sys/i386/isa/vesa.c 4 Mar 2005 00:53:03 -0000 1.50 +++ src/sys/i386/isa/vesa.c 20 May 2005 07:27:07 -0000 @@ -652,8 +652,6 @@ printf("VESA: information block\n"); dump_buffer(buf, 64); } - if (vesa_adp_info->v_flags & V_NONVGA) - return 1; if (vesa_adp_info->v_version < 0x0102) { printf("VESA: VBE version %d.%d is not supported; " "version 1.2 or later is required.\n", --- vesa.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed May 25 15:10:06 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B48D16A41C for ; Wed, 25 May 2005 15:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D66CC43D48 for ; Wed, 25 May 2005 15:10:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4PFA58K004932 for ; Wed, 25 May 2005 15:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4PFA5OR004931; Wed, 25 May 2005 15:10:05 GMT (envelope-from gnats) Date: Wed, 25 May 2005 15:10:05 GMT Message-Id: <200505251510.j4PFA5OR004931@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: John Pettitt Cc: Subject: Re: i386/79169: freeze with striped USB Drives under high load X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Pettitt List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 May 2005 15:10:06 -0000 The following reply was made to PR i386/79169; it has been noted by GNATS. From: John Pettitt To: bug-followup@FreeBSD.org, jpp@cloudview.com Cc: Subject: Re: i386/79169: freeze with striped USB Drives under high load Date: Wed, 25 May 2005 08:02:35 -0700 5.4 didn't fix this however "options PREEMPTION" seems to prevent the bug from triggering (I've had a test system at 100% disk for 24 hours with no failure) From owner-freebsd-i386@FreeBSD.ORG Thu May 26 10:10:06 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7030016A42A for ; Thu, 26 May 2005 10:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB98543D1D for ; Thu, 26 May 2005 10:10:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4QAA5JN073464 for ; Thu, 26 May 2005 10:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4QAA5Ww073463; Thu, 26 May 2005 10:10:05 GMT (envelope-from gnats) Date: Thu, 26 May 2005 10:10:05 GMT Message-Id: <200505261010.j4QAA5Ww073463@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: "Anton Ludwik" Cc: Subject: Re: i386/81019: RealTek 8169S32 behaves erratically X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton Ludwik List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 May 2005 10:10:06 -0000 The following reply was made to PR i386/81019; it has been noted by GNATS. From: "Anton Ludwik" To: , Cc: Subject: Re: i386/81019: RealTek 8169S32 behaves erratically Date: Thu, 26 May 2005 12:07:41 +0200 This is a multi-part message in MIME format. ------=_NextPart_000_0032_01C561EB.86E30180 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit I have a strange problem here as well with a Cnet ProG-2000S based on the RealTek 8169S32 chip. I am using pcbsd 0.7, which is based on Freebsd 5.4. Well here the Nic is identified and working but if I try to download something the speed goes down to 0 and the its stalled. I changed the MTU and full to half duplex and so on but nothing worked. And one time the card was completely down after changing full to half-duplex, I don't know if this is normal. In pcbsd 0.6 (based on Freebsd 5.3) it was working, so this is strange did they change something on the driver support? ------=_NextPart_000_0032_01C561EB.86E30180 Content-Type: text/html; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable

I have a strange problem here as well with a = Cnet ProG-2000S based on the RealTek = 8169S32 chip. I am using pcbsd 0.7, which is based on Freebsd 5.4. Well here the Nic is = identified and working but if I try to download something the speed goes down to 0 = and the its stalled.

I changed the = MTU and full to half duplex and so on but nothing worked. And one time the card = was completely down after changing full to half-duplex, I don’t know if this is = normal. In pcbsd 0.6 (based on Freebsd 5.3) it was working, so this is strange did = they change something on the driver support? =

 

------=_NextPart_000_0032_01C561EB.86E30180-- From owner-freebsd-i386@FreeBSD.ORG Thu May 26 16:50:05 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5693216A41C for ; Thu, 26 May 2005 16:50:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21D3943D1D for ; Thu, 26 May 2005 16:50:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4QGo4Bw019207 for ; Thu, 26 May 2005 16:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4QGo4AN019205; Thu, 26 May 2005 16:50:04 GMT (envelope-from gnats) Date: Thu, 26 May 2005 16:50:04 GMT Message-Id: <200505261650.j4QGo4AN019205@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Pascal de Bruijn Cc: Subject: Re: i386/81019: RealTek 8169S32 behaves erratically X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pascal de Bruijn List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 May 2005 16:50:05 -0000 The following reply was made to PR i386/81019; it has been noted by GNATS. From: Pascal de Bruijn To: bug-followup@FreeBSD.org, pmjdebruijn@gmail.com Cc: Subject: Re: i386/81019: RealTek 8169S32 behaves erratically Date: Thu, 26 May 2005 18:41:46 +0200 I got this card: http://www.sweexeurope.com/product.asp?pid=259 Thought the PCB on the picture isn't correct. My card really is the single chip version without an external Marvell Alaska PHY... My PCB looks really cheap, though the card works fine under other operating systems. Most recent cheap Gigabit card are based on either this chip or the Marvell Yukon... Regards, Pascal de Bruijn From owner-freebsd-i386@FreeBSD.ORG Fri May 27 20:47:14 2005 Return-Path: X-Original-To: i386@freebsd.org 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 E74B716A41C; Fri, 27 May 2005 20:47:14 +0000 (GMT) (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 85D8B43D49; Fri, 27 May 2005 20:47:14 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.3/8.13.3) with ESMTP id j4RKlecc007257; Fri, 27 May 2005 16:47:40 -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.3/8.13.3) with ESMTP id j4RKlDlA061824; Fri, 27 May 2005 16:47:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id ECAC77306E; Fri, 27 May 2005 16:47:12 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20050527204712.ECAC77306E@freebsd-current.sentex.ca> Date: Fri, 27 May 2005 16:47:12 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.51 on 64.7.153.18 Cc: Subject: [releng_5 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: Fri, 27 May 2005 20:47:15 -0000 TB --- 2005-05-27 19:25:14 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2005-05-27 19:25:14 - starting RELENG_5 tinderbox run for i386/i386 TB --- 2005-05-27 19:25:14 - cleaning the object tree TB --- 2005-05-27 19:25:55 - checking out the source tree TB --- 2005-05-27 19:25:55 - cd /home/tinderbox/RELENG_5/i386/i386 TB --- 2005-05-27 19:25:55 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_5 src TB --- 2005-05-27 19:34:27 - building world (CFLAGS=-O -pipe) TB --- 2005-05-27 19:34:27 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-27 19:34:27 - /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 --- 2005-05-27 20:26:35 - building generic kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-27 20:26:35 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-27 20:26:35 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri May 27 20:26:35 UTC 2005 >>> 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 >>> Kernel build for GENERIC completed on Fri May 27 20:38:12 UTC 2005 TB --- 2005-05-27 20:38:12 - generating LINT kernel config TB --- 2005-05-27 20:38:12 - cd /home/tinderbox/RELENG_5/i386/i386/src/sys/i386/conf TB --- 2005-05-27 20:38:12 - /usr/bin/make -B LINT TB --- 2005-05-27 20:38:12 - building LINT kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-27 20:38:12 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-27 20:38:12 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 27 20:38:12 UTC 2005 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_async.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_atmllc.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_base.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_bpf.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_bridge.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_cisco.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_device.c /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_device.c:137: warning: 'ng_device_mod_event' defined but not used *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/obj/tinderbox/RELENG_5/i386/i386/src/sys/LINT. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/src. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/src. TB --- 2005-05-27 20:47:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2005-05-27 20:47:12 - ERROR: failed to build lint kernel TB --- 2005-05-27 20:47:12 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Fri May 27 22:05:16 2005 Return-Path: X-Original-To: i386@freebsd.org 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 8B5F316A41C; Fri, 27 May 2005 22:05:16 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C8B643D1D; Fri, 27 May 2005 22:05:15 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.13.3/8.13.3) with ESMTP id j4RM5FkI028506; Fri, 27 May 2005 18:05:15 -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.3/8.13.3) with ESMTP id j4RM5FxB089814; Fri, 27 May 2005 18:05:15 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id E10F67306E; Fri, 27 May 2005 18:05:14 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20050527220514.E10F67306E@freebsd-current.sentex.ca> Date: Fri, 27 May 2005 18:05:14 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on smarthost2.sentex.ca X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on clamscanner1 X-Virus-Status: Clean Cc: Subject: [releng_5 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: Fri, 27 May 2005 22:05:16 -0000 TB --- 2005-05-27 20:47:12 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2005-05-27 20:47:12 - starting RELENG_5 tinderbox run for i386/pc98 TB --- 2005-05-27 20:47:12 - cleaning the object tree TB --- 2005-05-27 20:47:43 - checking out the source tree TB --- 2005-05-27 20:47:43 - cd /home/tinderbox/RELENG_5/i386/pc98 TB --- 2005-05-27 20:47:43 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_5 src TB --- 2005-05-27 20:56:14 - building world (CFLAGS=-O -pipe) TB --- 2005-05-27 20:56:14 - cd /home/tinderbox/RELENG_5/i386/pc98/src TB --- 2005-05-27 20:56:14 - /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 --- 2005-05-27 21:48:06 - building generic kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-27 21:48:06 - cd /home/tinderbox/RELENG_5/i386/pc98/src TB --- 2005-05-27 21:48:06 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Fri May 27 21:48:06 UTC 2005 >>> 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 >>> Kernel build for GENERIC completed on Fri May 27 21:57:54 UTC 2005 TB --- 2005-05-27 21:57:54 - generating LINT kernel config TB --- 2005-05-27 21:57:54 - cd /home/tinderbox/RELENG_5/i386/pc98/src/sys/pc98/conf TB --- 2005-05-27 21:57:54 - /usr/bin/make -B LINT TB --- 2005-05-27 21:57:54 - building LINT kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-27 21:57:54 - cd /home/tinderbox/RELENG_5/i386/pc98/src TB --- 2005-05-27 21:57:54 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 27 21:57:54 UTC 2005 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_async.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_atmllc.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_base.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_bpf.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_bridge.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_cisco.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/pc98/src/sys -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/pc98/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/pc98/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_device.c /tinderbox/RELENG_5/i386/pc98/src/sys/netgraph/ng_device.c:137: warning: 'ng_device_mod_event' defined but not used *** Error code 1 Stop in /tinderbox/RELENG_5/i386/pc98/obj/pc98/tinderbox/RELENG_5/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/pc98/src. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/pc98/src. TB --- 2005-05-27 22:05:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2005-05-27 22:05:14 - ERROR: failed to build lint kernel TB --- 2005-05-27 22:05:14 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sat May 28 19:37:17 2005 Return-Path: X-Original-To: i386@freebsd.org 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 230AF16A41C; Sat, 28 May 2005 19:37:17 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id B677343D1D; Sat, 28 May 2005 19:37:16 +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.3/8.13.3) with ESMTP id j4SJbFmI060674; Sat, 28 May 2005 15:37:16 -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.3/8.13.3) with ESMTP id j4SJbFJt087835; Sat, 28 May 2005 15:37:15 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 899EE7306E; Sat, 28 May 2005 15:37:15 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20050528193715.899EE7306E@freebsd-current.sentex.ca> Date: Sat, 28 May 2005 15:37:15 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on smarthost2.sentex.ca X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on clamscanner1 X-Virus-Status: Clean Cc: Subject: [releng_5 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, 28 May 2005 19:37:17 -0000 TB --- 2005-05-28 18:15:55 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2005-05-28 18:15:55 - starting RELENG_5 tinderbox run for i386/i386 TB --- 2005-05-28 18:15:55 - cleaning the object tree TB --- 2005-05-28 18:16:30 - checking out the source tree TB --- 2005-05-28 18:16:30 - cd /home/tinderbox/RELENG_5/i386/i386 TB --- 2005-05-28 18:16:30 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_5 src TB --- 2005-05-28 18:25:10 - building world (CFLAGS=-O -pipe) TB --- 2005-05-28 18:25:10 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-28 18:25:10 - /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 --- 2005-05-28 19:16:58 - building generic kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-28 19:16:58 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-28 19:16:58 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sat May 28 19:16:58 UTC 2005 >>> 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 >>> Kernel build for GENERIC completed on Sat May 28 19:28:46 UTC 2005 TB --- 2005-05-28 19:28:46 - generating LINT kernel config TB --- 2005-05-28 19:28:46 - cd /home/tinderbox/RELENG_5/i386/i386/src/sys/i386/conf TB --- 2005-05-28 19:28:46 - /usr/bin/make -B LINT TB --- 2005-05-28 19:28:46 - building LINT kernel (COPTFLAGS=-O -pipe) TB --- 2005-05-28 19:28:46 - cd /home/tinderbox/RELENG_5/i386/i386/src TB --- 2005-05-28 19:28:46 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat May 28 19:28:46 UTC 2005 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_async.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_atmllc.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_base.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_bpf.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_bridge.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_cisco.c cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/RELENG_5/i386/i386/src/sys -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/altq -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/pf -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/RELENG_5/i386/i386/src/sys/contrib/ngatm -I/tinderbox/RELENG_5/i386/i386/src/sys/dev/twa -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-fun ctions -Wno-inline /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_device.c /tinderbox/RELENG_5/i386/i386/src/sys/netgraph/ng_device.c:137: warning: 'ng_device_mod_event' defined but not used *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/obj/tinderbox/RELENG_5/i386/i386/src/sys/LINT. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/src. *** Error code 1 Stop in /tinderbox/RELENG_5/i386/i386/src. TB --- 2005-05-28 19:37:15 - WARNING: /usr/bin/make returned exit code 1 TB --- 2005-05-28 19:37:15 - ERROR: failed to build lint kernel TB --- 2005-05-28 19:37:15 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sat May 28 23:41:57 2005 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06B9A16A41C; Sat, 28 May 2005 23:41:57 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C338043D1F; Sat, 28 May 2005 23:41:56 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4SNfuuV002180; Sat, 28 May 2005 23:41:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4SNfunm002176; Sat, 28 May 2005 23:41:56 GMT (envelope-from linimon) Date: Sat, 28 May 2005 23:41:56 GMT From: Mark Linimon Message-Id: <200505282341.j4SNfunm002176@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-i386@FreeBSD.org Cc: Subject: Re: i386/81597: My POS-460 system based on a Western Digital LPM/LPX layout hangs after reboot 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, 28 May 2005 23:41:57 -0000 Synopsis: My POS-460 system based on a Western Digital LPM/LPX layout hangs after reboot Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 28 23:41:15 GMT 2005 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=81597