From owner-freebsd-i386@FreeBSD.ORG Sun Aug 6 02:20:15 2006 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 E212C16A4E1 for ; Sun, 6 Aug 2006 02:20:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 293EA43D55 for ; Sun, 6 Aug 2006 02:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k762KFfE015582 for ; Sun, 6 Aug 2006 02:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k762KEQu015581; Sun, 6 Aug 2006 02:20:14 GMT (envelope-from gnats) Resent-Date: Sun, 6 Aug 2006 02:20:14 GMT Resent-Message-Id: <200608060220.k762KEQu015581@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, "Justin T. Gibbs" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9408916A4DA for ; Sun, 6 Aug 2006 02:17:40 +0000 (UTC) (envelope-from gibbs@ns1.scsiguy.com) Received: from ns1.scsiguy.com (ns1.scsiguy.com [70.89.174.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4941D43D46 for ; Sun, 6 Aug 2006 02:17:40 +0000 (GMT) (envelope-from gibbs@ns1.scsiguy.com) Received: from ns1.scsiguy.com (gibbs@localhost [127.0.0.1]) by ns1.scsiguy.com (8.13.6/8.13.6) with ESMTP id k762HdEQ023159 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 5 Aug 2006 20:17:39 -0600 (MDT) (envelope-from gibbs@ns1.scsiguy.com) Received: (from gibbs@localhost) by ns1.scsiguy.com (8.13.6/8.13.6/Submit) id k762Hcqs023158; Sat, 5 Aug 2006 20:17:38 -0600 (MDT) (envelope-from gibbs) Message-Id: <200608060217.k762Hcqs023158@ns1.scsiguy.com> Date: Sat, 5 Aug 2006 20:17:38 -0600 (MDT) From: "Justin T. Gibbs" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/101453: linprocfs disallows non-zero file offsets for maps files X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Justin T. Gibbs" List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2006 02:20:16 -0000 >Number: 101453 >Category: i386 >Synopsis: linprocfs disallows non-zero file offsets for maps files >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 06 02:20:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Justin T. Gibbs >Release: FreeBSD 6.1-STABLE i386 >Organization: >Environment: System: FreeBSD aslan.scsiguy.com 6.1-STABLE FreeBSD 6.1-STABLE #4: Sat May 6 17:23:37 MDT 2006 gibbs@aslan.scsiguy.com:/usr/obj/usr/src/sys/ASLAN i386 >Description: While trying to run Matlab R2006a under linux emulation, its embedded JVM complained of being unable to locate the position of thread stacks. The JRE uses the linux procfs filesystem's "maps" file to determine this information. Using ktrace I determined that the JRE was reading the maps file in 4k chunks, but that the output for the matlab process was much larger than this and was being truncated. The attached patch allows the maps file to be read in chunks rather than all at once. After applying this patch, the ktrace output indicated that all data was read correctly and the JVM error dissappeared. Unfortunately, Matlab still hangs when attempting to launch its java based GUI. I'm still investigating that issue, but currently believe that the root cause for that is elsewhere in our compatibility framework. >How-To-Repeat: Attempt to read the maps file in linprocfs in multiple chunks. >Fix: Index: linprocfs.c =================================================================== RCS file: /usr/cvs/src/sys/compat/linprocfs/linprocfs.c,v retrieving revision 1.89.2.3 diff -u -r1.89.2.3 linprocfs.c --- linprocfs.c 3 Jul 2006 06:38:53 -0000 1.89.2.3 +++ linprocfs.c 26 Jul 2006 02:35:11 -0000 @@ -851,12 +851,14 @@ vm_object_t obj, tobj, lobj; vm_ooffset_t off = 0; char *name = "", *freename = NULL; + char *bufptr; size_t len; ino_t ino; int ref_count, shadow_count, flags; int error; struct vnode *vp; struct vattr vat; + off_t cur_offset; PROC_LOCK(p); error = p_candebug(td, p); @@ -867,10 +869,8 @@ if (uio->uio_rw != UIO_READ) return (EOPNOTSUPP); - if (uio->uio_offset != 0) - return (0); - error = 0; + cur_offset = 0; if (map != &curthread->td_proc->p_vmspace->vm_map) vm_map_lock_read(map); for (entry = map->header.next; @@ -924,12 +924,35 @@ if (freename) free(freename, M_TEMP); len = strlen(mebuffer); + bufptr = mebuffer; + if (cur_offset < uio->uio_offset) { + off_t delta; + + /* + * Discard data until we get to the + * desired offset in the data. + */ + delta = uio->uio_offset - cur_offset; + if (delta >= len) { + cur_offset += len; + continue; + } + bufptr += delta; + len -= delta; + } + if (len > uio->uio_resid) len = uio->uio_resid; /* * XXX We should probably return * EFBIG here, as in procfs. */ - error = uiomove(mebuffer, len, uio); + error = uiomove(bufptr, len, uio); + /* + * Once we start outputing data, there is no need to + * look for where the data will start, so keep + * cur_offset in sync with the offset in the uio struct. + */ + cur_offset = uio->uio_offset; if (error) break; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Aug 7 04:27:42 2006 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 C202E16A4DA for ; Mon, 7 Aug 2006 04:27:42 +0000 (UTC) (envelope-from mklein@nmedia.net) Received: from ref.nmedia.net (ref.nmedia.net [66.39.177.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9957643D45 for ; Mon, 7 Aug 2006 04:27:42 +0000 (GMT) (envelope-from mklein@nmedia.net) Received: from ref.nmedia.net (localhost.nmedia.net [127.0.0.1]) by ref.nmedia.net (Postfix) with ESMTP id DC58464A47 for ; Sun, 6 Aug 2006 21:27:41 -0700 (PDT) Received: from localhost (mklein@localhost) by ref.nmedia.net (8.13.6/8.13.4/Submit) with ESMTP id k774RfwB002490 for ; Sun, 6 Aug 2006 21:27:41 -0700 (PDT) X-Authentication-Warning: ref.nmedia.net: mklein owned process doing -bs Date: Sun, 6 Aug 2006 21:27:41 -0700 (PDT) From: Matt Klein To: freebsd-i386@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Problems w/ Freeswitch - fbsd 6.0->fbsd 6.1, APR 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, 07 Aug 2006 04:27:42 -0000 http://pastebin.ca/120007 path=0x282ed014
clear_addr = 0x282ed014
I noticed on google, a similar problem w/ firefox a while back.. Has anyone been able to get freeswitch to compile and run on freebsd 6.1? -m From owner-freebsd-i386@FreeBSD.ORG Mon Aug 7 23:00:32 2006 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 4596D16A521 for ; Mon, 7 Aug 2006 23:00:32 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 165B643D4C for ; Mon, 7 Aug 2006 23:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k77N0U9k091113 for ; Mon, 7 Aug 2006 23:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k77N0Ufh091108; Mon, 7 Aug 2006 23:00:30 GMT (envelope-from gnats) Resent-Date: Mon, 7 Aug 2006 23:00:30 GMT Resent-Message-Id: <200608072300.k77N0Ufh091108@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, Jeff Norris Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7176016A4E5 for ; Mon, 7 Aug 2006 22:58:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFBF943D4C for ; Mon, 7 Aug 2006 22:58:09 +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 k77Mw9VP043988 for ; Mon, 7 Aug 2006 22:58:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k77Mw9uS043987; Mon, 7 Aug 2006 22:58:09 GMT (envelope-from nobody) Message-Id: <200608072258.k77Mw9uS043987@www.freebsd.org> Date: Mon, 7 Aug 2006 22:58:09 GMT From: Jeff Norris To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101616: FREEBSD FREEZE ON BOOTUP, COMPAQ PROLIANT (legacy) servers 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, 07 Aug 2006 23:00:32 -0000 >Number: 101616 >Category: i386 >Synopsis: FREEBSD FREEZE ON BOOTUP, COMPAQ PROLIANT (legacy) servers >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 07 23:00:30 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jeff Norris >Release: 6.0, 6.1 >Organization: Norristechs DOT net >Environment: NA, System freezes at keyboard board and USB (no USB on this chipset) >Description: System will boot with FreBSD 5.x or 4.x release, however using 6.1, or 6.0-Release the system will hang/freeze at keyboard detection. It will not test keyboard (numlock/scroll/caps) and flash LEDs. Using ACPI or safe mode results in the same problem. SMP support on Compaq 1850r (Dual P3/450/512/100) is required, would prefer running 6.x release of BSD. >How-To-Repeat: Boot with FreeBSD 6.0-Release or FreeBSD 6-1 BOOT ONLY or install CD #1. >Fix: NO KNOWN FIX >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 01:34:14 2006 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 5021416A4DA; Tue, 8 Aug 2006 01:34:14 +0000 (UTC) (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 CAA4E43D45; Tue, 8 Aug 2006 01:34:13 +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.6/8.13.4) with ESMTP id k781YCfa059135; Mon, 7 Aug 2006 21:34:12 -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.6/8.13.6) with ESMTP id k781YCF6025962; Mon, 7 Aug 2006 21:34:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id B314C7302F; Mon, 7 Aug 2006 21:34:12 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060808013412.B314C7302F@freebsd-current.sentex.ca> Date: Mon, 7 Aug 2006 21:34:12 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner3 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 01:34:14 -0000 TB --- 2006-08-08 00:19:18 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-08-08 00:19:18 - starting HEAD tinderbox run for i386/i386 TB --- 2006-08-08 00:19:18 - cleaning the object tree TB --- 2006-08-08 00:19:52 - checking out the source tree TB --- 2006-08-08 00:19:52 - cd /tinderbox/HEAD/i386/i386 TB --- 2006-08-08 00:19:52 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-08-08 00:26:52 - building world (CFLAGS=-O2 -pipe) TB --- 2006-08-08 00:26:52 - cd /src TB --- 2006-08-08 00:26:52 - /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 [...] makedevs.c:10: error: syntax error before ',' token makedevs.c:13: error: syntax error before ',' token makedevs.c:16: error: syntax error before ',' token makedevs.c:19: error: syntax error before ',' token makedevs.c:22: error: syntax error before ',' token makedevs.c:25: error: syntax error before ',' token makedevs.c:28: error: syntax error before ',' token makedevs.c:31: error: syntax error before ',' token *** Error code 1 Stop in /src/usr.sbin/sade. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-08-08 01:34:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-08-08 01:34:12 - ERROR: failed to build world TB --- 2006-08-08 01:34:12 - tinderbox aborted TB --- 1.09 user 5.88 system 4493.69 real From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 02:48:55 2006 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 D927916A4DD; Tue, 8 Aug 2006 02:48:55 +0000 (UTC) (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 6985643D45; Tue, 8 Aug 2006 02:48:55 +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.6/8.13.4) with ESMTP id k782mssQ063455; Mon, 7 Aug 2006 22:48:54 -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.4P/8.13.4) with ESMTP id k782msSW033931; Mon, 7 Aug 2006 22:48:54 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 6E1EC7302F; Mon, 7 Aug 2006 22:48:54 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060808024854.6E1EC7302F@freebsd-current.sentex.ca> Date: Mon, 7 Aug 2006 22:48:54 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner2 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 02:48:56 -0000 TB --- 2006-08-08 01:34:12 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-08-08 01:34:12 - starting HEAD tinderbox run for i386/pc98 TB --- 2006-08-08 01:34:12 - cleaning the object tree TB --- 2006-08-08 01:34:36 - checking out the source tree TB --- 2006-08-08 01:34:36 - cd /tinderbox/HEAD/i386/pc98 TB --- 2006-08-08 01:34:36 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-08-08 01:41:39 - building world (CFLAGS=-O2 -pipe) TB --- 2006-08-08 01:41:39 - cd /src TB --- 2006-08-08 01:41:39 - /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 [...] makedevs.c:10: error: syntax error before ',' token makedevs.c:13: error: syntax error before ',' token makedevs.c:16: error: syntax error before ',' token makedevs.c:19: error: syntax error before ',' token makedevs.c:22: error: syntax error before ',' token makedevs.c:25: error: syntax error before ',' token makedevs.c:28: error: syntax error before ',' token makedevs.c:31: error: syntax error before ',' token *** Error code 1 Stop in /src/usr.sbin/sade. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-08-08 02:48:54 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-08-08 02:48:54 - ERROR: failed to build world TB --- 2006-08-08 02:48:54 - tinderbox aborted TB --- 1.02 user 5.85 system 4481.47 real From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 04:20:24 2006 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 2CC6516A4DE for ; Tue, 8 Aug 2006 04:20:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 709E443D49 for ; Tue, 8 Aug 2006 04:20:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k784KK3n021961 for ; Tue, 8 Aug 2006 04:20:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k784KKUa021960; Tue, 8 Aug 2006 04:20:20 GMT (envelope-from gnats) Date: Tue, 8 Aug 2006 04:20:20 GMT Message-Id: <200608080420.k784KKUa021960@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Ganbold Cc: Subject: Re: i386/76653 : Problem with Asahi Optical usb device (Pentax Optio S50) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ganbold List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 04:20:24 -0000 The following reply was made to PR i386/76653; it has been noted by GNATS. From: Ganbold To: bug-followup@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: guzman@zalem.net, csaba.henk@creo.hu, iedowse@FreeBSD.org Subject: Re: i386/76653 : Problem with Asahi Optical usb device (Pentax Optio S50) Date: Tue, 08 Aug 2006 13:14:01 +0900 Hi, I have Pentax Optio S60 and I got it working in Dell D620 under FreeBSD-6.1-STABLE by patching umass.c and scsi_da.c. # uname -an FreeBSD devil.micom.mng.net 6.1-STABLE FreeBSD 6.1-STABLE #7: Tue Aug 8 12:52:48 ULAST 2006 tsgan@devil.micom.mng.net:/usr/obj/usr/src/sys/DEVIL i386 Aug 8 12:59:39 devil kernel: umass0: PENTAX product 0x0047, rev 1.10/0.00, addr 2 Aug 8 12:59:40 devil kernel: da0 at umass-sim0 bus 0 target 0 lun 0 Aug 8 12:59:40 devil kernel: da0: Removable Direct Access SCSI-0 device Aug 8 12:59:40 devil kernel: da0: 1.000MB/s transfers Aug 8 12:59:40 devil kernel: da0: 243MB (498176 512 byte sectors: 64H 32S/T 243C) # usbdevs -v ... Controller /dev/usb2: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 addr 2: full speed, self powered, config 1, product 0x0047(0x0047), PENTAX(0x0a17), rev 0.00 ... Patches are here: ----------------------------------------------------------------------------------- --- /usr/src/sys/dev/usb/umass.c-orig Tue Aug 8 12:54:25 2006 +++ /usr/src/sys/dev/usb/umass.c Tue Aug 8 12:55:37 2006 @@ -321,7 +321,7 @@ Static struct umass_devdescr_t umass_devdescrs[] = { { USB_VENDOR_ASAHIOPTICAL, PID_WILDCARD, RID_WILDCARD, - UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, + UMASS_PROTO_ATAPI | UMASS_PROTO_BBB, RS_NO_CLEAR_UA }, { USB_VENDOR_ADDON, USB_PRODUCT_ADDON_ATTACHE, RID_WILDCARD, ----------------------------------------------------------------------------------- --- /usr/src/sys/cam/scsi/scsi_da.c-orig Tue Aug 8 12:53:37 2006 +++ /usr/src/sys/cam/scsi/scsi_da.c Tue Aug 8 12:47:15 2006 @@ -436,6 +436,11 @@ "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE }, { + /* PENTAX Optio S60. */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "PENTAX", "DIGITAL_CAMERA", "*"}, + /*quirks*/ DA_Q_NO_SYNC_CACHE + }, + { /* * Genesys 6-in-1 Card Reader * PR: usb/94647 hth, Ganbold From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 09:10:15 2006 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 D8CAC16A5B3 for ; Tue, 8 Aug 2006 09:10:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FB7A43D46 for ; Tue, 8 Aug 2006 09:10:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k789AF8t052106 for ; Tue, 8 Aug 2006 09:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k789AFNk052105; Tue, 8 Aug 2006 09:10:15 GMT (envelope-from gnats) Resent-Date: Tue, 8 Aug 2006 09:10:15 GMT Resent-Message-Id: <200608080910.k789AFNk052105@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, Soeren Hansen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3DBB16A4E6 for ; Tue, 8 Aug 2006 09:09:08 +0000 (UTC) (envelope-from shan@lober.soeren-hansen.dk) Received: from lober.soeren-hansen.dk (0x5552dc54.adsl.cybercity.dk [85.82.220.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 636DB43D64 for ; Tue, 8 Aug 2006 09:09:02 +0000 (GMT) (envelope-from shan@lober.soeren-hansen.dk) Received: from lober.soeren-hansen.dk (localhost [127.0.0.1]) by lober.soeren-hansen.dk (8.13.6/8.13.6) with ESMTP id k7898ws6024759 for ; Tue, 8 Aug 2006 11:08:59 +0200 (CEST) (envelope-from shan@lober.soeren-hansen.dk) Received: (from shan@localhost) by lober.soeren-hansen.dk (8.13.6/8.13.6/Submit) id k7898wii024758; Tue, 8 Aug 2006 11:08:58 +0200 (CEST) (envelope-from shan) Message-Id: <200608080908.k7898wii024758@lober.soeren-hansen.dk> Date: Tue, 8 Aug 2006 11:08:58 +0200 (CEST) From: Soeren Hansen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/101646: make buildworld fails on RELENG_6 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Soeren Hansen List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 09:10:16 -0000 >Number: 101646 >Category: i386 >Synopsis: make buildworld fails on RELENG_6 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 08 09:10:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Soeren Hansen >Release: FreeBSD 6.1-STABLE i386 >Organization: >Environment: System: FreeBSD lober.soeren-hansen.dk 6.1-STABLE FreeBSD 6.1-STABLE #1: Mon Aug 7 23:01:25 CEST 2006 root@lober.soeren-hansen.dk:/usr/obj/usr/src/sys/LOBER i386 I was using: uname -a FreeBSD lober.soeren-hansen.dk 6.1-RC FreeBSD 6.1-RC #1: Thu May 4 16:16:21 CEST 2006 root@lober.soeren-hansen.dk:/usr/obj/usr/src/sys/LOBER i386 >Description: make buildworld fails several places after I have updated using cvsup from RELENG_6. All the errors are only warnings, which however becomes showstopper since -Werror is set. >How-To-Repeat: # rm -rf /usr/src # to be completely sure that the src tree is # brand new # rm -rf /usr/obj/* # cat /root/stable-supfile *default host=cvsup.FreeBSD.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_6 *default delete use-rel-suffix *default compress src-all # cvsup -g -L 2 /root/stable-supfile # cd /usr/src # make clean # well .. /usr/obj is empty .. but anyways ;) # make buildworld Gets the following errors: Error (1): cc -O3 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386 -D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa -DINET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -DPOSIX_MISTAKE -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DHESIOD -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/lib/libc/rpc/getpublickey.c In file included from /usr/src/lib/libc/rpc/getpublickey.c:178: /usr/src/lib/libc/rpc/getpublickey.c: In function `getpublickey': /usr/src/lib/libc/rpc/getpublickey.c:70: warning: passing arg 1 of `__getpublickey_real' discards qualifiers from pointer target type *** Error code 1 Stop in /usr/src/lib/libc. *** Error code 1 Error (2): cc -O3 -pipe -I/usr/src/sbin/ggate/ggated/../shared -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -c /usr/src/sbin/ggate/ggated/ggated.c /usr/src/sbin/ggate/ggated/ggated.c: In function `disk_thread': /usr/src/sbin/ggate/ggated/ggated.c:759: warning: no return statement in function returning non-void /usr/src/sbin/ggate/ggated/ggated.c: In function `send_thread': /usr/src/sbin/ggate/ggated/ggated.c:813: warning: no return statement in function returning non-void *** Error code 1 Stop in /usr/src/sbin/ggate/ggated. *** Error code 1 Error (3): cc -O3 -pipe -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /usr/src/sbin/ip6fw/ip6fw.c In file included from /usr/src/sbin/ip6fw/ip6fw.c:1115: /usr/src/sbin/ip6fw/ip6fw.c: In function `ip6fw_main': /usr/src/sbin/ip6fw/ip6fw.c:770: warning: passing arg 1 of `fill_icmptypes' from incompatible pointer type *** Error code 1 Stop in /usr/src/sbin/ip6fw. *** Error code 1 Error (4): cc -O3 -pipe -I. -I/usr/src/usr.bin/csup/../../contrib/csup -DHAVE_FFLAGS -DNDEBUG -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -c /usr/src/usr.bin/csup/../../contrib/csup/proto.c /usr/src/usr.bin/csup/../../contrib/csup/proto.c: In function `killer_run': /usr/src/usr.bin/csup/../../contrib/csup/proto.c:1006: warning: no return statement in function returning non-void *** Error code 1 Stop in /usr/src/usr.bin/csup. *** Error code 1 >Fix: Fix (1): The function doesn't modify the content of netname, so it should be declared const. diff -u /usr/src/lib/libc/rpc/getpublickey.c.org /usr/src/lib/libc/rpc/getpublickey.c --- /usr/src/lib/libc/rpc/getpublickey.c.org Sun Aug 6 22:16:27 2006 +++ /usr/src/lib/libc/rpc/getpublickey.c Sun Aug 6 22:18:20 2006 @@ -65,7 +65,7 @@ */ int __getpublickey_real(netname, publickey) - char *netname; + const char *netname; char *publickey; { char lookup[3 * HEXKEYBYTES]; @@ -92,7 +92,7 @@ int getpublicandprivatekey(key, ret) - char *key; + const char *key; char *ret; { char buf[1024]; /* big enough */ diff -u /usr/src/include/rpc/auth.h.org /usr/src/include/rpc/auth.h --- /usr/src/include/rpc/auth.h.org Sun Aug 6 22:20:41 2006 +++ /usr/src/include/rpc/auth.h Sun Aug 6 22:21:20 2006 @@ -299,7 +299,7 @@ */ __BEGIN_DECLS extern int getpublickey (const char *, char *); -extern int getpublicandprivatekey (char *, char *); +extern int getpublicandprivatekey (const char *, char *); extern int getsecretkey (char *, char *, char *); __END_DECLS Fix (2): The functions go into infinite loops, so they will never return. However, since the functions are declared to return a pointer, they must also do so in the end. diff -u /usr/src/sbin/ggate/ggated/ggated.c.org /usr/src/sbin/ggate/ggated/ggated.c --- /usr/src/sbin/ggate/ggated/ggated.c.org Sun Aug 6 23:59:18 2006 +++ /usr/src/sbin/ggate/ggated/ggated.c Mon Aug 7 00:02:26 2006 @@ -756,6 +756,7 @@ error = pthread_mutex_unlock(&outqueue_mtx); assert(error == 0); } + return NULL; /* Never reached */ } static void * @@ -810,6 +811,7 @@ } free(req); } + return NULL; /* Never reached */ } static void Fix (3): I believe fw_icmp6types should be a u_long. diff -u /usr/src/sys/netinet6/ip6_fw.h.org /usr/src/sys/netinet6/ip6_fw.h --- /usr/src/sys/netinet6/ip6_fw.h.org Mon Aug 7 08:06:27 2006 +++ /usr/src/sys/netinet6/ip6_fw.h Mon Aug 7 08:07:00 2006 @@ -93,7 +93,7 @@ u_char fw_ip6opt,fw_ip6nopt; /* IPv6 options set/unset */ u_char fw_tcpf,fw_tcpnf; /* TCP flags set/unset */ #define IPV6_FW_ICMPTYPES_DIM (256 / (sizeof(unsigned) * 8)) - unsigned fw_icmp6types[IPV6_FW_ICMPTYPES_DIM]; /* ICMP types bitmap */ + u_long fw_icmp6types[IPV6_FW_ICMPTYPES_DIM]; /* ICMP types bitmap */ long timestamp; /* timestamp (tv_sec) of last match */ union ip6_fw_if fw_in_if, fw_out_if;/* Incoming and outgoing interfaces */ union { Fix (4): Again an infinite loop in a function returning a pointer. Returning NULL will satisfy the compiler. diff -u /usr/src/contrib/csup/proto.c.org /usr/src/contrib/csup/proto.c --- /usr/src/contrib/csup/proto.c.org Mon Aug 7 20:30:04 2006 +++ /usr/src/contrib/csup/proto.c Mon Aug 7 20:31:16 2006 @@ -1003,6 +1003,8 @@ } } goto again; + + return NULL; /* Never reached */ } /* Stop the killer thread. */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 13:52:23 2006 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 3AB6816A4F5; Tue, 8 Aug 2006 13:52:23 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 963ED43D83; Tue, 8 Aug 2006 13:52:11 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5FE8B.dip.t-dialin.net [84.165.254.139]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k78DbIhL074752; Tue, 8 Aug 2006 15:37:19 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k78DqBsr012810; Tue, 8 Aug 2006 15:52:11 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 8 Aug 2006 15:53:59 +0200 From: Alexander Leidinger To: Message-ID: <20060808155359.17ed706c@Magellan.Leidinger.net> In-Reply-To: <20060808013412.B314C7302F@freebsd-current.sentex.ca> References: <20060808013412.B314C7302F@freebsd-current.sentex.ca> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 13:52:23 -0000 Quoting FreeBSD Tinderbox (Mon, 7 Aug 2006 21:34:12 -0400 (EDT)): > >>> stage 4.4: building everything > [...] > makedevs.c:10: error: syntax error before ',' token > makedevs.c:13: error: syntax error before ',' token > makedevs.c:16: error: syntax error before ',' token > makedevs.c:19: error: syntax error before ',' token > makedevs.c:22: error: syntax error before ',' token > makedevs.c:25: error: syntax error before ',' token > makedevs.c:28: error: syntax error before ',' token > makedevs.c:31: error: syntax error before ',' token Any ideas why this does not show up when doing "make obj && make depend && make" in usr.sbin/sade? My version looks like: ---snip--- #include const char termcap_ansi[] = { 97,110,115,105,124,97,110,121,32,97,110,115,105,32,116,101,114,109,105, 110,97,108,32,119,105,116,104,32,112,101,115,115,105,109,105,115,116,105, 99,32,97,115,115,117,109,112,116,105,111,110,115,58,99,111,35,56,48,58, 108,105,35,50,52,58,99,108,61,53,48,92,69,91,59,72,92,69,91,50,74,58,98, 115,58,97,109,58,99,109,61,92,69,91,37,105,37,100,59,37,100,72,58,110,100, 61,92,69,91,67,58,117,112,61,92,69,91,65,58,99,101,61,92,69,91,75,58,104, 111,61,92,69,91,72,58,112,116,58 ,0}; const char termcap_cons25w[] = { 99,111,110,115,50,53,119,124,97,110,115,105,119,124,97,110,115,105,56,48, 120,50,53,45,114,97,119,58,97,109,58,98,115,58,78,80,58,109,115,58,112, ---snip--- Line 10 is ",0};". Any ideas what's wrong here? Bye, Alexander. -- Star Trek Lives! http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 15:04:15 2006 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 42A4916A4ED; Tue, 8 Aug 2006 15:04:15 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from fw.zoral.com.ua (fw.zoral.com.ua [213.186.206.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A3E443DBF; Tue, 8 Aug 2006 15:03:54 +0000 (GMT) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (root@deviant.kiev.zoral.com.ua [10.1.1.148]) by fw.zoral.com.ua (8.13.4/8.13.4) with ESMTP id k78F3dZE024974 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 8 Aug 2006 18:03:39 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.13.6/8.13.6) with ESMTP id k78F3des066848; Tue, 8 Aug 2006 18:03:39 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.13.6/8.13.6/Submit) id k78F3cJJ066847; Tue, 8 Aug 2006 18:03:38 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Tue, 8 Aug 2006 18:03:38 +0300 From: Kostik Belousov To: Alexander Leidinger Message-ID: <20060808150338.GQ59809@deviant.kiev.zoral.com.ua> References: <20060808013412.B314C7302F@freebsd-current.sentex.ca> <20060808155359.17ed706c@Magellan.Leidinger.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6zn93sY2JrH9m7VZ" Content-Disposition: inline In-Reply-To: <20060808155359.17ed706c@Magellan.Leidinger.net> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on fw.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=0.4 required=5.0 tests=ALL_TRUSTED, DNS_FROM_RFC_ABUSE,SPF_NEUTRAL autolearn=no version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on fw.zoral.com.ua Cc: current@freebsd.org, i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 15:04:15 -0000 --6zn93sY2JrH9m7VZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 08, 2006 at 03:53:59PM +0200, Alexander Leidinger wrote: > Quoting FreeBSD Tinderbox (Mon, 7 Aug 2006 21:34= :12 -0400 (EDT)): >=20 > > >>> stage 4.4: building everything > > [...] > > makedevs.c:10: error: syntax error before ',' token > > makedevs.c:13: error: syntax error before ',' token > > makedevs.c:16: error: syntax error before ',' token > > makedevs.c:19: error: syntax error before ',' token > > makedevs.c:22: error: syntax error before ',' token > > makedevs.c:25: error: syntax error before ',' token > > makedevs.c:28: error: syntax error before ',' token > > makedevs.c:31: error: syntax error before ',' token >=20 > Any ideas why this does not show up when doing "make obj && make depend > && make" in usr.sbin/sade? >=20 > My version looks like: > ---snip--- > #include > const char termcap_ansi[] =3D { > 97,110,115,105,124,97,110,121,32,97,110,115,105,32,116,101,114,109,105, > 110,97,108,32,119,105,116,104,32,112,101,115,115,105,109,105,115,116,105, > 99,32,97,115,115,117,109,112,116,105,111,110,115,58,99,111,35,56,48,58, > 108,105,35,50,52,58,99,108,61,53,48,92,69,91,59,72,92,69,91,50,74,58,98, > 115,58,97,109,58,99,109,61,92,69,91,37,105,37,100,59,37,100,72,58,110,100, > 61,92,69,91,67,58,117,112,61,92,69,91,65,58,99,101,61,92,69,91,75,58,104, > 111,61,92,69,91,72,58,112,116,58 > ,0}; > const char termcap_cons25w[] =3D { > 99,111,110,115,50,53,119,124,97,110,115,105,119,124,97,110,115,105,56,48, > 120,50,53,45,114,97,119,58,97,109,58,98,115,58,78,80,58,109,115,58,112, > ---snip--- >=20 > Line 10 is ",0};". Any ideas what's wrong here? >=20 > Bye, > Alexander. =3D=3D=3D> usr.sbin/sade (depend) cc -o rtermcap /usr/home/kostik/build/bsd/6/src-quotas/usr.sbin/sade/rtermc= ap.c -ltermcap echo '#include ' > makedevs.c TERMCAP=3D/usr/home/kostik/build/bsd/6/src-quotas/usr.sbin/sade/../../share= /termcap/termcap.src ./rtermcap ansi | file2c 'const char termcap_ansi[] = =3D {' ',0};' >> makedevs.c /libexec/ld-elf.so.1: Shared object "libc.so.7" not found, required by "rte= rmcap" This is on build hosted by STABLE. Seems that rtermcap shall be added to buildtools ... --6zn93sY2JrH9m7VZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE2KfKC3+MBN1Mb4gRAsPEAJ9uzUsduOmhZLqYDTp5A9yoqJKKTQCgpX+r V4F52UzMSlGRvj9RYgU4Yic= =gtae -----END PGP SIGNATURE----- --6zn93sY2JrH9m7VZ-- From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 18:20:14 2006 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 0FAB516A4DF for ; Tue, 8 Aug 2006 18:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83BD043D53 for ; Tue, 8 Aug 2006 18:20:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k78IKDq6006728 for ; Tue, 8 Aug 2006 18:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k78IKDNu006727; Tue, 8 Aug 2006 18:20:13 GMT (envelope-from gnats) Resent-Date: Tue, 8 Aug 2006 18:20:13 GMT Resent-Message-Id: <200608081820.k78IKDNu006727@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, Laurent LEVIER Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E17F16A4DA for ; Tue, 8 Aug 2006 18:10:28 +0000 (UTC) (envelope-from root@tirion.argosnet.com) Received: from tirion.argosnet.com (tirion.argosnet.com [82.224.1.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FEB143D53 for ; Tue, 8 Aug 2006 18:10:27 +0000 (GMT) (envelope-from root@tirion.argosnet.com) Received: from tirion.argosnet.com (tirion.argosnet.com [192.168.0.254]) by tirion.argosnet.com (8.13.6/8.13.6) with ESMTP id k78IAO9G074696 for ; Tue, 8 Aug 2006 20:10:24 +0200 (CEST) (envelope-from root@tirion.argosnet.com) Received: (from root@localhost) by tirion.argosnet.com (8.13.6/8.13.6/Submit) id k78IANS9074695; Tue, 8 Aug 2006 20:10:23 +0200 (CEST) (envelope-from root) Message-Id: <200608081810.k78IANS9074695@tirion.argosnet.com> Date: Tue, 8 Aug 2006 20:10:23 +0200 (CEST) From: Laurent LEVIER To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/101667: ATA problems when power management is on 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, 08 Aug 2006 18:20:14 -0000 >Number: 101667 >Category: i386 >Synopsis: ATA problems when power management is on >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 08 18:20:12 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Laurent LEVIER >Release: FreeBSD 6.1-RELEASE-p3 i386 >Organization: N/A >Environment: System: FreeBSD tirion 6.1-RELEASE-p3 FreeBSD 6.1-RELEASE-p3 #0: Fri Jul 14 01:06:28 CEST 2006 root@tirion:/usr/obj/usr/src/sys/TIRION i386 >Description: Hi, since I migrated to FreeBSD 6.0 (in fact I reinstalled the box), I am facing some weird behavior with my data hard drive. My server is using 2 HD: one for OS (permanently running) and the other for data storage (power management activated). Naturally, when 2nd is not used, it stops running until it is requested again. On FreeBSD 4.x, HD was restarting, then once ready data was accessible. On 6.x, I got ATA errors: ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=62098175 ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=12127 ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=46291583 ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=287 Of course, I thought it could be a HD, controler or cabling issue and so performed some tests. At the end, when the only difference is FreeBSD 4.11 vs 6.x, problem no longer exists. So I guess problem comes from 6.x. Differences between 4.11 & 6.x: APM was present on 4.x and not detected on 6.x. But ACPI runs and pmtimer is in kernel. The problem is no annoying that, after a while, the hard drive is purely disconnected by kernel (/u2 not available). >How-To-Repeat: I guess installing 6.x and using an A7M266 Mobo, with its normal ATA100 controler will suffice. >Fix: found the bug? ;-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Tue Aug 8 23:14:04 2006 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 B43DD16A4DD; Tue, 8 Aug 2006 23:14:04 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C7D43D4C; Tue, 8 Aug 2006 23:14:03 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5DE89.dip.t-dialin.net [84.165.222.137]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k78Mx1xg076588; Wed, 9 Aug 2006 00:59:01 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k78NDs9O092671; Wed, 9 Aug 2006 01:13:54 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Wed, 9 Aug 2006 01:15:41 +0200 From: Alexander Leidinger To: Kostik Belousov Message-ID: <20060809011541.37b9e806@Magellan.Leidinger.net> In-Reply-To: <20060808150338.GQ59809@deviant.kiev.zoral.com.ua> References: <20060808013412.B314C7302F@freebsd-current.sentex.ca> <20060808155359.17ed706c@Magellan.Leidinger.net> <20060808150338.GQ59809@deviant.kiev.zoral.com.ua> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: @Leidinger.net (LI Xin), "=?UTF-8?B?IuadjumRqw==?=.\\ .\"" , current@freebsd.org, i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Aug 2006 23:14:04 -0000 Quoting Kostik Belousov (Tue, 8 Aug 2006 18:03:38 +0300): > cc -o rtermcap /usr/home/kostik/build/bsd/6/src-quotas/usr.sbin/sade/rtermcap.c -ltermcap > > echo '#include ' > makedevs.c > > TERMCAP=/usr/home/kostik/build/bsd/6/src-quotas/usr.sbin/sade/../../share/termcap/termcap.src ./rtermcap ansi | file2c 'const char termcap_ansi[] = {' ',0};' >> makedevs.c > > /libexec/ld-elf.so.1: Shared object "libc.so.7" not found, required by "rtermcap" > > This is on build hosted by STABLE. > Seems that rtermcap shall be added to buildtools ... Another option would be to get rid of makedevs.c... we have a fully working system when running sade, no need to include a static termcap description in the binary. Bye, Alexander. -- Two stormtroopers are posted near the tractor beam power terminal. Stormtrooper: Do you know what's going on? Other stormtrooper: Maybe it's another drill. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-i386@FreeBSD.ORG Wed Aug 9 02:37:08 2006 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 0D32216A4DD; Wed, 9 Aug 2006 02:37:08 +0000 (UTC) (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 9637843D53; Wed, 9 Aug 2006 02:37:07 +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.6/8.13.4) with ESMTP id k792b6NL020221; Tue, 8 Aug 2006 22:37:06 -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.6/8.13.6) with ESMTP id k792b68A031229; Tue, 8 Aug 2006 22:37:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 6C0AC7302F; Tue, 8 Aug 2006 22:37:06 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060809023706.6C0AC7302F@freebsd-current.sentex.ca> Date: Tue, 8 Aug 2006 22:37:06 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner4 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 02:37:08 -0000 TB --- 2006-08-09 01:22:33 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-08-09 01:22:33 - starting HEAD tinderbox run for i386/i386 TB --- 2006-08-09 01:22:33 - cleaning the object tree TB --- 2006-08-09 01:22:53 - checking out the source tree TB --- 2006-08-09 01:22:53 - cd /tinderbox/HEAD/i386/i386 TB --- 2006-08-09 01:22:53 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-08-09 01:29:52 - building world (CFLAGS=-O2 -pipe) TB --- 2006-08-09 01:29:52 - cd /src TB --- 2006-08-09 01:29:52 - /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 [...] makedevs.c:10: error: syntax error before ',' token makedevs.c:13: error: syntax error before ',' token makedevs.c:16: error: syntax error before ',' token makedevs.c:19: error: syntax error before ',' token makedevs.c:22: error: syntax error before ',' token makedevs.c:25: error: syntax error before ',' token makedevs.c:28: error: syntax error before ',' token makedevs.c:31: error: syntax error before ',' token *** Error code 1 Stop in /src/usr.sbin/sade. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-08-09 02:37:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-08-09 02:37:06 - ERROR: failed to build world TB --- 2006-08-09 02:37:06 - tinderbox aborted TB --- 0.61 user 3.34 system 4472.54 real From owner-freebsd-i386@FreeBSD.ORG Wed Aug 9 03:51:43 2006 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 ACDE716A4DA; Wed, 9 Aug 2006 03:51:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42B3F43D45; Wed, 9 Aug 2006 03:51:42 +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.6/8.13.6) with ESMTP id k793pfVO068555; Tue, 8 Aug 2006 23:51:41 -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.4P/8.13.4) with ESMTP id k793pgtX041354; Tue, 8 Aug 2006 23:51:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 0119B7302F; Tue, 8 Aug 2006 23:51:41 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060809035142.0119B7302F@freebsd-current.sentex.ca> Date: Tue, 8 Aug 2006 23:51:41 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamscanner3 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 03:51:43 -0000 TB --- 2006-08-09 02:37:06 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-08-09 02:37:06 - starting HEAD tinderbox run for i386/pc98 TB --- 2006-08-09 02:37:06 - cleaning the object tree TB --- 2006-08-09 02:37:19 - checking out the source tree TB --- 2006-08-09 02:37:19 - cd /tinderbox/HEAD/i386/pc98 TB --- 2006-08-09 02:37:19 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-08-09 02:44:25 - building world (CFLAGS=-O2 -pipe) TB --- 2006-08-09 02:44:25 - cd /src TB --- 2006-08-09 02:44:25 - /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 [...] makedevs.c:10: error: syntax error before ',' token makedevs.c:13: error: syntax error before ',' token makedevs.c:16: error: syntax error before ',' token makedevs.c:19: error: syntax error before ',' token makedevs.c:22: error: syntax error before ',' token makedevs.c:25: error: syntax error before ',' token makedevs.c:28: error: syntax error before ',' token makedevs.c:31: error: syntax error before ',' token *** Error code 1 Stop in /src/usr.sbin/sade. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-08-09 03:51:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-08-09 03:51:41 - ERROR: failed to build world TB --- 2006-08-09 03:51:41 - tinderbox aborted TB --- 0.75 user 3.35 system 4475.23 real From owner-freebsd-i386@FreeBSD.ORG Wed Aug 9 14:00:30 2006 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 2746F16A4E0 for ; Wed, 9 Aug 2006 14:00:30 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3555F43D49 for ; Wed, 9 Aug 2006 14:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k79E0S4j016967 for ; Wed, 9 Aug 2006 14:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k79E0Smp016964; Wed, 9 Aug 2006 14:00:28 GMT (envelope-from gnats) Resent-Date: Wed, 9 Aug 2006 14:00:28 GMT Resent-Message-Id: <200608091400.k79E0Smp016964@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, Dave Avent Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 787C016A4DE for ; Wed, 9 Aug 2006 13:51:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F30A43D6B for ; Wed, 9 Aug 2006 13:51:00 +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 k79Doxco012626 for ; Wed, 9 Aug 2006 13:50:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k79DoxdY012625; Wed, 9 Aug 2006 13:50:59 GMT (envelope-from nobody) Message-Id: <200608091350.k79DoxdY012625@www.freebsd.org> Date: Wed, 9 Aug 2006 13:50:59 GMT From: Dave Avent To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101711: Network interfaces crashing X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 14:00:30 -0000 >Number: 101711 >Category: i386 >Synopsis: Network interfaces crashing >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 09 14:00:28 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Dave Avent >Release: FreeBSD 6.1-RELEASE >Organization: Future Publishing >Environment: >Description: Using FreeBSD 6.1-RELEASE on the new Dell 1950 Dual Core Xeon servers causes the network interface to crash when attempting heavy network usage: When compiling source from ports mounted on an amd mounted NFS mount the network interfaces will crashes within a few seconds, returning: bce0: /usr/src/sys/dev/bce/if_bce.c(5003): Watchdog timeout occurred, resetting! to /var/log/messages >How-To-Repeat: Configure amd to auto-mount a directory on a remote machine that contains a ports tree. Create a sybolic link from /usr/ports to the newly mouonted remoted ports tree. `cd` to (for example) /usr/ports/databases/postgresql81-server/ and run `make install` Within a few seconds all network connections will be lost and the following error will be reported to /var/log/messages: bce0: /usr/src/sys/dev/bce/if_bce.c(5003): Watchdog timeout occurred, resetting! >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri Aug 11 12:50:18 2006 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 67E0316A4E9 for ; Fri, 11 Aug 2006 12:50:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 398FA43D49 for ; Fri, 11 Aug 2006 12:50:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7BCoEPV080879 for ; Fri, 11 Aug 2006 12:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7BCoElY080877; Fri, 11 Aug 2006 12:50:14 GMT (envelope-from gnats) Resent-Date: Fri, 11 Aug 2006 12:50:14 GMT Resent-Message-Id: <200608111250.k7BCoElY080877@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, Urh Lednik Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A8A516A4DE for ; Fri, 11 Aug 2006 12:46:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF1DB43D49 for ; Fri, 11 Aug 2006 12:46:38 +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 k7BCkcd1059993 for ; Fri, 11 Aug 2006 12:46:38 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k7BCkcV2059992; Fri, 11 Aug 2006 12:46:38 GMT (envelope-from nobody) Message-Id: <200608111246.k7BCkcV2059992@www.freebsd.org> Date: Fri, 11 Aug 2006 12:46:38 GMT From: Urh Lednik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101817: crashing of system when is server under higher pressure of work X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 12:50:18 -0000 >Number: 101817 >Category: i386 >Synopsis: crashing of system when is server under higher pressure of work >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 11 12:50:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Urh Lednik >Release: FreeBSD 6.1 - last update >Organization: web servers for unix.si project >Environment: > uname -rsa FreeBSD atum.idejaplus.si 6.1-RELEASE-p1 FreeBSD 6.1-RELEASE-p1 #0: Tue Jun 6 21:03:14 CEST 2006 urh@atum.idejaplus.si:/usr/src/sys/i386/compile/atumleet i386 >Description: Hello, I am running FreeBSd 6.1 updated every week and well administrated on web server.. I got next error when server is under higher pressure of work: http://pastebin.ca/125354 In case of any suggestions how to fix the bug / hardware failure tell me please.. Thanks, Best Regards, Urh Lednik >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri Aug 11 21:20:15 2006 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 EAB2516A4DF for ; Fri, 11 Aug 2006 21:20:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A25543D49 for ; Fri, 11 Aug 2006 21:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7BLKFdI026548 for ; Fri, 11 Aug 2006 21:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7BLKFN9026546; Fri, 11 Aug 2006 21:20:15 GMT (envelope-from gnats) Resent-Date: Fri, 11 Aug 2006 21:20:15 GMT Resent-Message-Id: <200608112120.k7BLKFN9026546@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, John Brearley Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55BE816A4DE for ; Fri, 11 Aug 2006 21:16:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8170743D55 for ; Fri, 11 Aug 2006 21:16:00 +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 k7BLG0cr013388 for ; Fri, 11 Aug 2006 21:16:00 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k7BLG05g013366; Fri, 11 Aug 2006 21:16:00 GMT (envelope-from nobody) Message-Id: <200608112116.k7BLG05g013366@www.freebsd.org> Date: Fri, 11 Aug 2006 21:16:00 GMT From: John Brearley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101857: Mouse not moving after switching with StarView SV411 KVM switch X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2006 21:20:16 -0000 >Number: 101857 >Category: i386 >Synopsis: Mouse not moving after switching with StarView SV411 KVM switch >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 11 21:20:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: John Brearley >Release: 6.1 i386 >Organization: self >Environment: >Description: I have a multi-boot PC with Windows XP, Free BSD 6.1, Solaris 10 and Linux Fedora Core 5. This PC shares keyboard, mouse & video with other PCs via the StarView SV411 KVM switch. The issue I have occurs only when I run Free BSD. It seems Free BSD initially wont configure the mouse correctly when installing the software when the mouse is connected via the SV411 switch. It will install the mouse correctly when the mouse is directly connected to the PC, without the SV411 in the circuit. Later, when the Free BSD Gnome GUI software is installed, it does not mind if the keyboard and video are switched by the SV411. The mouse will work via the SV411 only if the system booted with the mouse active via the SV411. As soon as you switch KVM to another PC and then return the the Free BSD PC, the mouse quits working totally on the Free BSD PC. Right now I am using a dedicated mouse for the PC that runs Free BSD. >How-To-Repeat: See full description. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 06:02:53 2006 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 AA0BC16A4DD; Sat, 12 Aug 2006 06:02:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3195543D46; Sat, 12 Aug 2006 06:02:53 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.13.6/8.13.6) with ESMTP id k7C62pD2018491; Sat, 12 Aug 2006 02:02:51 -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.6/8.13.6) with ESMTP id k7C62qbv003654; Sat, 12 Aug 2006 02:02:52 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id D7D4D7302F; Sat, 12 Aug 2006 02:02:51 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> Date: Sat, 12 Aug 2006 02:02:51 -0400 (EDT) X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamscanner2 X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner4 X-Virus-Status: Clean Cc: Subject: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 06:02:53 -0000 TB --- 2006-08-12 04:31:12 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-08-12 04:31:12 - starting RELENG_6 tinderbox run for i386/i386 TB --- 2006-08-12 04:31:12 - cleaning the object tree TB --- 2006-08-12 04:31:41 - checking out the source tree TB --- 2006-08-12 04:31:41 - cd /tinderbox/RELENG_6/i386/i386 TB --- 2006-08-12 04:31:41 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src TB --- 2006-08-12 04:42:00 - building world (CFLAGS=-O2 -pipe) TB --- 2006-08-12 04:42:00 - cd /src TB --- 2006-08-12 04:42:00 - /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 --- 2006-08-12 05:48:49 - generating LINT kernel config TB --- 2006-08-12 05:48:49 - cd /src/sys/i386/conf TB --- 2006-08-12 05:48:49 - /usr/bin/make -B LINT TB --- 2006-08-12 05:48:49 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-08-12 05:48:49 - cd /src TB --- 2006-08-12 05:48:49 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Aug 12 05:48:49 UTC 2006 >>> 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 [...] awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/acpica/acpi_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline acpi_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/OsdEnvironment.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/acpi_machdep.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/acpi_wakeup.c /src/sys/i386/acpica/acpi_wakeup.c: In function `acpi_sleep_machdep': /src/sys/i386/acpica/acpi_wakeup.c:285: error: `acpi_resume_beep' undeclared (first use in this function) /src/sys/i386/acpica/acpi_wakeup.c:285: error: (Each undeclared identifier is reported only once /src/sys/i386/acpica/acpi_wakeup.c:285: error: for each function it appears in.) *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-08-12 06:02:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-08-12 06:02:51 - ERROR: failed to build lint kernel TB --- 2006-08-12 06:02:51 - tinderbox aborted TB --- 0.93 user 5.87 system 5499.58 real From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 15:40:19 2006 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 1D2C016A4E5 for ; Sat, 12 Aug 2006 15:40:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C42043D58 for ; Sat, 12 Aug 2006 15:40:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7CFeHLL028825 for ; Sat, 12 Aug 2006 15:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7CFeHlR028824; Sat, 12 Aug 2006 15:40:17 GMT (envelope-from gnats) Resent-Date: Sat, 12 Aug 2006 15:40:17 GMT Resent-Message-Id: <200608121540.k7CFeHlR028824@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, John Murphy Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AD4916A4EB for ; Sat, 12 Aug 2006 15:34:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA8F43D53 for ; Sat, 12 Aug 2006 15:34:09 +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 k7CFY9IQ057527 for ; Sat, 12 Aug 2006 15:34:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k7CFY9mf057526; Sat, 12 Aug 2006 15:34:09 GMT (envelope-from nobody) Message-Id: <200608121534.k7CFY9mf057526@www.freebsd.org> Date: Sat, 12 Aug 2006 15:34:09 GMT From: John Murphy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101924: MD5 checksums do not match with checksum file 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, 12 Aug 2006 15:40:19 -0000 >Number: 101924 >Category: i386 >Synopsis: MD5 checksums do not match with checksum file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 12 15:40:17 GMT 2006 >Closed-Date: >Last-Modified: >Originator: John Murphy >Release: 6.1-RELEASE-i386 >Organization: bitbuilder.net >Environment: N/A - see full description >Description: After running MD5 and SHA256 checksums on _two_ separate downloads of the following set of files at ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/: 6.1-RELEASE-i386-bootonly.iso 6.1-RELEASE-i386-disc1.iso 6.1-RELEASE-i386-disc2.iso, I found that the MD5 checksums were consistently different for the disc1 and disc2 iso files compared to the values in these files: CHECKSUM.MD5 CHECKSUM.SHA256 The boot iso file was ok. These were my md5 checksums: 6.1-RELEASE-i386-bootonly.iso; 11BB7FB4D2A781238008945F6BF65A4E 6.1-RELEASE-i386-disc1.iso; 1441F533DF52551E416B5B947A0FB8C4 6.1-RELEASE-i386-disc2.iso; 45F03549C859118B17E36DB2A4ED26FD I found these same results for two separate downloads which led me to suspect that this different is not coming from an error in the transfer. Thanks for your help >How-To-Repeat: see full description >Fix: see full description >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 16:13:53 2006 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 8397416A4E0 for ; Sat, 12 Aug 2006 16:13:53 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id E6C0943DA4 for ; Sat, 12 Aug 2006 16:13:37 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 12 Aug 2006 16:13:35 -0000 Received: from p54A7FC9D.dip.t-dialin.net (EHLO [192.168.0.12]) [84.167.252.157] by mail.gmx.net (mp019) with SMTP; 12 Aug 2006 18:13:35 +0200 X-Authenticated: #5465401 Message-ID: <44DDFE1B.7050707@gmx.de> Date: Sat, 12 Aug 2006 18:13:15 +0200 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5.0.5 (X11/20060729) MIME-Version: 1.0 To: FreeBSD Tinderbox References: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> In-Reply-To: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: stable@freebsd.org, i386@freebsd.org Subject: Re: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 16:13:53 -0000 FreeBSD Tinderbox wrote: > TB --- 2006-08-12 04:31:12 - tinderbox 2.3 running on freebsd-current.sentex.ca > TB --- 2006-08-12 04:31:12 - starting RELENG_6 tinderbox run for i386/i386 > TB --- 2006-08-12 04:31:12 - cleaning the object tree > TB --- 2006-08-12 04:31:41 - checking out the source tree > TB --- 2006-08-12 04:31:41 - cd /tinderbox/RELENG_6/i386/i386 > TB --- 2006-08-12 04:31:41 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_6 src > TB --- 2006-08-12 04:42:00 - building world (CFLAGS=-O2 -pipe) > TB --- 2006-08-12 04:42:00 - cd /src > TB --- 2006-08-12 04:42:00 - /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 --- 2006-08-12 05:48:49 - generating LINT kernel config > TB --- 2006-08-12 05:48:49 - cd /src/sys/i386/conf > TB --- 2006-08-12 05:48:49 - /usr/bin/make -B LINT > TB --- 2006-08-12 05:48:49 - building LINT kernel (COPTFLAGS=-O2 -pipe) > TB --- 2006-08-12 05:48:49 - cd /src > TB --- 2006-08-12 05:48:49 - /usr/bin/make buildkernel KERNCONF=LINT >>>> Kernel build for LINT started on Sat Aug 12 05:48:49 UTC 2006 >>>> 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 > [...] > awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/acpica/acpi_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline acpi_if.c > cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/OsdEnvironment.c > cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/acpi_machdep.c > cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno-inline /src/sys/i386/acpica/acpi_wakeup.c > /src/sys/i386/acpica/acpi_wakeup.c: In function `acpi_sleep_machdep': > /src/sys/i386/acpica/acpi_wakeup.c:285: error: `acpi_resume_beep' undeclared (first use in this function) > /src/sys/i386/acpica/acpi_wakeup.c:285: error: (Each undeclared identifier is reported only once > /src/sys/i386/acpica/acpi_wakeup.c:285: error: for each function it appears in.) > *** Error code 1 > > Stop in /obj/src/sys/LINT. > *** Error code 1 > > Stop in /src. > *** Error code 1 > > Stop in /src. > TB --- 2006-08-12 06:02:51 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2006-08-12 06:02:51 - ERROR: failed to build lint kernel > TB --- 2006-08-12 06:02:51 - tinderbox aborted > TB --- 0.93 user 5.87 system 5499.58 real > The same build failure occurs on all my machines (i386). Other people reported this as well on the German BSD forums. From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 16:17:45 2006 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 E6D8616A4DE; Sat, 12 Aug 2006 16:17:45 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D44C43D6E; Sat, 12 Aug 2006 16:17:45 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.6/8.13.6) with ESMTP id k7CGHiU3028081; Sat, 12 Aug 2006 20:17:44 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sat, 12 Aug 2006 20:17:44 +0400 (MSD) From: Dmitry Morozovsky To: "[LoN]Kamikaze" In-Reply-To: <44DDFE1B.7050707@gmx.de> Message-ID: <20060812201615.D25511@woozle.rinet.ru> References: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> <44DDFE1B.7050707@gmx.de> X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (woozle.rinet.ru [0.0.0.0]); Sat, 12 Aug 2006 20:17:44 +0400 (MSD) Cc: stable@freebsd.org, FreeBSD Tinderbox , i386@freebsd.org Subject: Re: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 16:17:46 -0000 On Sat, 12 Aug 2006, [LoN]Kamikaze wrote: L> > /src/sys/i386/acpica/acpi_wakeup.c: In function `acpi_sleep_machdep': L> > /src/sys/i386/acpica/acpi_wakeup.c:285: error: `acpi_resume_beep' undeclared (first use in this function) L> > /src/sys/i386/acpica/acpi_wakeup.c:285: error: (Each undeclared identifier is reported only once L> > /src/sys/i386/acpica/acpi_wakeup.c:285: error: for each function it appears in.) L> > *** Error code 1 L> > L> > Stop in /obj/src/sys/LINT. L> > *** Error code 1 L> > L> > Stop in /src. L> > *** Error code 1 L> > L> > Stop in /src. L> > TB --- 2006-08-12 06:02:51 - WARNING: /usr/bin/make returned exit code 1 L> > TB --- 2006-08-12 06:02:51 - ERROR: failed to build lint kernel L> > TB --- 2006-08-12 06:02:51 - tinderbox aborted L> > TB --- 0.93 user 5.87 system 5499.58 real L> > L> L> The same build failure occurs on all my machines (i386). Other L> people reported this as well on the German BSD forums. quick fix: Index: acpi_wakeup.c =================================================================== RCS file: /home/ncvs/src/sys/i386/acpica/acpi_wakeup.c,v retrieving revision 1.39.2.2 diff -u -r1.39.2.2 acpi_wakeup.c --- acpi_wakeup.c 12 Aug 2006 00:51:18 -0000 1.39.2.2 +++ acpi_wakeup.c 12 Aug 2006 08:31:38 -0000 @@ -282,7 +282,7 @@ write_eflags(ef); /* If we beeped, turn it off after a delay. */ - if (acpi_resume_beep) + /* if (acpi_resume_beep) */ timeout(acpi_stop_beep, NULL, 3 * hz); return (ret); Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 18:10:24 2006 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 C29A116A4E0 for ; Sat, 12 Aug 2006 18:10:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 266FB43D4C for ; Sat, 12 Aug 2006 18:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7CIAMcS041891 for ; Sat, 12 Aug 2006 18:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7CIAM5g041890; Sat, 12 Aug 2006 18:10:22 GMT (envelope-from gnats) Resent-Date: Sat, 12 Aug 2006 18:10:22 GMT Resent-Message-Id: <200608121810.k7CIAM5g041890@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, Urh Lednik Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D18E316A4DF for ; Sat, 12 Aug 2006 18:06:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7211643D46 for ; Sat, 12 Aug 2006 18:06:27 +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 k7CI6O1M015992 for ; Sat, 12 Aug 2006 18:06:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k7CI6O1V015961; Sat, 12 Aug 2006 18:06:24 GMT (envelope-from nobody) Message-Id: <200608121806.k7CI6O1V015961@www.freebsd.org> Date: Sat, 12 Aug 2006 18:06:24 GMT From: Urh Lednik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: i386/101933: server crashing 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, 12 Aug 2006 18:10:24 -0000 >Number: 101933 >Category: i386 >Synopsis: server crashing >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 12 18:10:22 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Urh Lednik >Release: FreeBSD 6.1 p3 >Organization: unix.si >Environment: > uname -rsa FreeBSD atum.idejaplus.si 6.1-RELEASE-p3 FreeBSD 6.1-RELEASE-p3 #0: Sat Aug 12 14:28:48 CEST 2006 urh@atum.idejaplus.si:/usr/src/sys/i386/compile/mykernel i386 >Description: the error: Aug 10 17:45:10 atum kernel: Aug 10 17:45:10 atum kernel: Aug 10 17:45:10 atum kernel: Fatal trap 12: page fault while in kernel mode Aug 10 17:45:10 atum kernel: fault virtual address = 0x8 Aug 10 17:45:10 atum kernel: fault code = supervisor read, page not present Aug 10 17:45:10 atum kernel: instruction pointer = 0x20:0xc06d005e Aug 10 17:45:10 atum kernel: stack pointer = 0x28:0xe5d85758 Aug 10 17:45:10 atum kernel: frame pointer = 0x28:0xe5d8576c Aug 10 17:45:10 atum kernel: code segment = base 0x0, limit 0xfffff, type 0x1b Aug 10 17:45:10 atum kernel: = DPL 0, pres 1, def32 1, gran 1 Aug 10 17:45:10 atum kernel: processor eflags = interrupt enabled, resume, IOPL = 0 Aug 10 17:45:10 atum kernel: current process = 37 (softdepflush) Aug 10 17:45:10 atum kernel: trap number = 12 Aug 10 17:45:10 atum kernel: panic: page fault Aug 10 17:45:10 atum kernel: Uptime: 11d16h21m21s Aug 10 17:45:10 atum kernel: Dumping 1535 MB (2 chunks) Aug 10 17:45:10 atum kernel: chunk 0: 1MB (160 pages) ... ok Aug 10 17:45:10 atum kernel: chunk 1: 1535MB (392956 pages) 1520 1504 1488 1472 1456 1440 1424 1408 1392 1376 1360 1344 1328 1312 1296 1280 1264 1248 1232 1216 1200 1184 1168 1152 1136 1120 1104 1088 1072 1056 1040 1024 1008 992 976 960 944 928 912 896 880 864 848 832 816 800 784 768 752 736 720 704 688 672 656 640 624 608 592 576 560 544 528 512 496 480 464 448 432 416 400 384 368 352 336 320 304 288 272 256 240 224 208 192 176 160 144 128 112 96 80 64 48 32 16Copyright (c) 1992-2006 The FreeBSD Project. and dmesg report for disc and controlers: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xd800-0xd80f at device 2.5 on pci0 ata0: on atapci0 ata1: on atapci0 ad0: 76319MB at ata0-master UDMA100 ad3: 156334MB at ata1-slave UDMA100 or full dmesg report online at: http://peskovnik.unix.si/dmesg.txt >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 18:14:03 2006 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 CD46A16A4E5; Sat, 12 Aug 2006 18:14:03 +0000 (UTC) (envelope-from stb@lassitu.de) Received: from koef.zs64.net (koef.zs64.net [213.238.47.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E4643D58; Sat, 12 Aug 2006 18:14:02 +0000 (GMT) (envelope-from stb@lassitu.de) Received: (from stb@koef.zs64.net) (authenticated) by koef.zs64.net (8.13.8/8.13.7) with ESMTP id k7CIDoqE025178 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Sat, 12 Aug 2006 20:14:00 +0200 (CEST) (envelope-from stb@lassitu.de) In-Reply-To: <44DDFE1B.7050707@gmx.de> References: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> <44DDFE1B.7050707@gmx.de> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <0C0AAE41-2972-4A5D-ABDE-8E01E3EF76A7@lassitu.de> Content-Transfer-Encoding: 7bit From: Stefan Bethke Date: Sat, 12 Aug 2006 20:13:48 +0200 To: stable@freebsd.org, i386@freebsd.org X-Mailer: Apple Mail (2.752.2) Cc: njl@freebsd.org Subject: Re: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 18:14:03 -0000 Am 12.08.2006 um 18:13 schrieb [LoN]Kamikaze: >> cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls - >> Wnested-externs -Wstrict-prototypes -Wmissing-prototypes - >> Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 >> -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/ >> contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/dev/ath - >> I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ngatm -I/src/ >> sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include >> opt_global.h -fno-common -finline-limit=8000 --param inline-unit- >> growth=100 --param large-function-growth=1000 -DGPROF -falign- >> functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long- >> strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse >> -mno-sse2 -ffreestanding -Werror -finstrument-functions -Wno- >> inline /src/sys/i386/acpica/acpi_wakeup.c >> /src/sys/i386/acpica/acpi_wakeup.c: In function `acpi_sleep_machdep': >> /src/sys/i386/acpica/acpi_wakeup.c:285: error: `acpi_resume_beep' >> undeclared (first use in this function) >> /src/sys/i386/acpica/acpi_wakeup.c:285: error: (Each undeclared >> identifier is reported only once >> /src/sys/i386/acpica/acpi_wakeup.c:285: error: for each function >> it appears in.) >> *** Error code 1 >> >> Stop in /obj/src/sys/LINT. >> *** Error code 1 >> >> Stop in /src. >> *** Error code 1 >> >> Stop in /src. >> TB --- 2006-08-12 06:02:51 - WARNING: /usr/bin/make returned exit >> code 1 >> TB --- 2006-08-12 06:02:51 - ERROR: failed to build lint kernel >> TB --- 2006-08-12 06:02:51 - tinderbox aborted >> TB --- 0.93 user 5.87 system 5499.58 real >> > > The same build failure occurs on all my machines (i386). Other > people reported this as well on the German BSD forums. Me too. It looks like 1.42 of src/sys/i386/acpica/acpi_wakeup.c needs to be MFCed as well. Stefan -- Stefan Bethke Fon +49 170 346 0140 From owner-freebsd-i386@FreeBSD.ORG Sat Aug 12 20:23:19 2006 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 AA8FA16A4DA; Sat, 12 Aug 2006 20:23:19 +0000 (UTC) (envelope-from stb@lassitu.de) Received: from koef.zs64.net (koef.zs64.net [213.238.47.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0010743D45; Sat, 12 Aug 2006 20:23:18 +0000 (GMT) (envelope-from stb@lassitu.de) Received: (from stb@koef.zs64.net) (authenticated) by koef.zs64.net (8.13.8/8.13.7) with ESMTP id k7CKN235026612 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Sat, 12 Aug 2006 22:23:13 +0200 (CEST) (envelope-from stb@lassitu.de) In-Reply-To: <0C0AAE41-2972-4A5D-ABDE-8E01E3EF76A7@lassitu.de> References: <20060812060251.D7D4D7302F@freebsd-current.sentex.ca> <44DDFE1B.7050707@gmx.de> <0C0AAE41-2972-4A5D-ABDE-8E01E3EF76A7@lassitu.de> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <40C0B221-93F1-4F75-99CB-AC0FB881C58A@lassitu.de> Content-Transfer-Encoding: 7bit From: Stefan Bethke Date: Sat, 12 Aug 2006 22:23:01 +0200 To: Stefan Bethke X-Mailer: Apple Mail (2.752.2) Cc: stable@freebsd.org, njl@freebsd.org, i386@freebsd.org Subject: Re: [releng_6 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2006 20:23:19 -0000 Am 12.08.2006 um 20:13 schrieb Stefan Bethke: > Am 12.08.2006 um 18:13 schrieb [LoN]Kamikaze: > >>> cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls - >>> Wnested-externs -Wstrict-prototypes -Wmissing-prototypes - >>> Wpointer-arith -Winline -Wcast-qual -fformat-extensions - >>> std=c99 -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/ >>> src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/contrib/ >>> dev/ath -I/src/sys/contrib/dev/ath/freebsd -I/src/sys/contrib/ >>> ngatm -I/src/sys/dev/twa -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS - >>> include opt_global.h -fno-common -finline-limit=8000 --param >>> inline-unit-growth=100 --param large-function-growth=1000 -DGPROF >>> -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align- >>> long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow - >>> mno-sse -mno-sse2 -ffreestanding -Werror -finstrument-functions - >>> Wno-inline /src/sys/i386/acpica/acpi_wakeup.c >>> /src/sys/i386/acpica/acpi_wakeup.c: In function >>> `acpi_sleep_machdep': >>> /src/sys/i386/acpica/acpi_wakeup.c:285: error: `acpi_resume_beep' >>> undeclared (first use in this function) >>> /src/sys/i386/acpica/acpi_wakeup.c:285: error: (Each undeclared >>> identifier is reported only once >>> /src/sys/i386/acpica/acpi_wakeup.c:285: error: for each function >>> it appears in.) >>> *** Error code 1 >>> >>> Stop in /obj/src/sys/LINT. >>> *** Error code 1 >>> >>> Stop in /src. >>> *** Error code 1 >>> >>> Stop in /src. >>> TB --- 2006-08-12 06:02:51 - WARNING: /usr/bin/make returned exit >>> code 1 >>> TB --- 2006-08-12 06:02:51 - ERROR: failed to build lint kernel >>> TB --- 2006-08-12 06:02:51 - tinderbox aborted >>> TB --- 0.93 user 5.87 system 5499.58 real >>> >> >> The same build failure occurs on all my machines (i386). Other >> people reported this as well on the German BSD forums. > > Me too. > > It looks like 1.42 of src/sys/i386/acpica/acpi_wakeup.c needs to be > MFCed as well. And a few more. Specifically, you'll want: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/acpica/ acpi_wakeup.c.diff?r1=1.41&r2=1.42 http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/acpica/ acpi_wakecode.S.diff?r1=1.10&r2=1.12 http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/acpica/ acpi_machdep.c.diff?r1=1.30&r2=1.32 http://www.freebsd.org/cgi/cvsweb.cgi/src/share/man/man4/acpi.4.diff? r1=1.55&r2=1.56 Stefan -- Stefan Bethke Fon +49 170 346 0140