From owner-freebsd-ia64@FreeBSD.ORG Sun Mar 21 18:22:19 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F309106566B; Sun, 21 Mar 2010 18:22:19 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id B43948FC08; Sun, 21 Mar 2010 18:22:17 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirj.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1NtPmy-00015f-Ig; Sun, 21 Mar 2010 18:22:16 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1NtPmx-0006ho-Il; Sun, 21 Mar 2010 18:22:15 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3) with ESMTP id o2LIMFCb093264; Sun, 21 Mar 2010 18:22:15 GMT (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3/Submit) id o2LIMEaM093263; Sun, 21 Mar 2010 18:22:14 GMT (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Sun, 21 Mar 2010 18:22:14 +0000 From: Anton Shterenlikht To: Anton Shterenlikht Message-ID: <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: jhell , FreeBSD Current , freebsd-ia64@freebsd.org Subject: csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 18:22:19 -0000 On Sat, Mar 20, 2010 at 08:53:37PM +0000, Anton Shterenlikht wrote: > On Sat, Mar 20, 2010 at 03:44:46PM +0000, Anton Shterenlikht wrote: > > On Sat, Mar 20, 2010 at 07:27:43AM -0400, jhell wrote: > > > > > > On Fri, 19 Mar 2010 17:15, Anton Shterenlikht wrote: > > > In Message-Id: <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> > > > > > > > On Thu, Mar 18, 2010 at 11:29:36AM -0400, jhell wrote: > > > >> -----BEGIN PGP SIGNED MESSAGE----- > > > >> Hash: SHA1 > > > >> > > > >> > > > >> > > > >> On Wed, 17 Mar 2010 12:32, Anton Shterenlikht wrote: > > > >> In Message-Id: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> > > > >> > > > >>> Just updated to ia64 r205248 > > > >>> > > > >>> If my problem is due to my mis-configuration, > > > >>> I apologise in advance. > > > >>> > > > >>> I run this shell script after each upgrade > > > >>> and 'make delete-old-libs' to check > > > >>> if any shared objects need to be rebuilt: > > > >>> > > > >>> > > > >>> > > > >>> #!/bin/sh > > > >>> > > > >>> for file in `find /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/libexec /usr/local -name "*"` > > > >>> do > > > >>> echo $file > > > >>> ldd $file >> /root/ldd_results 2> /dev/zero > > > >>> done > > > >>> > > > >>> > > > >>> > > > >> > > > >> This will probably do closer to what you actually would want to look for. > > > >> > > > >> Writing to /dev/zero ... I don't know never tried it since /dev/null is > > > >> usually the standard place to throw trash. > > > >> > > > >> #!/bin/sh > > > >> for file in `find /*bin /usr/*bin /usr/lib* /usr/local/*bin -type f` do > > > >> echo $file > > > >> ldd $file >>/root/ldd_results 2>/dev/null > > > >> done > > > >> > > > >> The problem with your script is that it finds most files that it can not > > > >> or is not useful to run ldd on and leaves you junk in return. > > > >> > > > >> It might be more useful if you searched for dynamically linked ELF > > > >> binaries to run ldd against like the following. > > > >> > > > >> === Script starts here === > > > >> #!/bin/sh > > > >> > > > >> SEARCHPATH="/*bin /usr/*bin /usr/lib* /usr/local/*bin" > > > >> > > > >> trap 'exit 1' 2 > > > >> > > > >> check_libs() { > > > >> for spath in $SEARCHPATH; do > > > >> for ifelf in `find $spath -type f`; do > > > >> ldd `file $ifelf | grep dynamically | cut -f1 -d:` > > > >> done > > > >> done > > > >> } > > > >> > > > >> check_libs 2>/dev/null > > > >> === Script ends here === > > > >> > > > >> The above will find all type ELF * that are dynamically linked within the > > > >> SEARCHPATH variable and run ldd on them and print the results to stdout. > > > >> > > > >> Obviously since you are going to have thousands of files being questioned, > > > >> stdout is not going to be useful. > > > >> > > > >> So with the about stated: > > > >> save the script to: checklibs.sh > > > >> run with: "sh checklibs.sh >/root/checklibs_output" > > > >> or: "script /root/checklibs_output checklibs.sh" > > > >> > > > >>> After the upgrade to r205248, the script > > > >>> freezes at seemingly random points. > > > >>> > > > >> > > > >> Unneeded disk usage & execution. > > > >> > > > >>> I can still ssh to the machine (using keys), i.e. > > > >>> I see the welcome message, but cannot get to the console prompt. > > > >> > > > >> Of course... to many open files or processes in wait. SSH already has the > > > >> information it needs loaded into memory, that's why you can get sort-of-in > > > >> > > > >> ZFS file-system perhaps ? > > > > > > > > I've no ZFS. > > > > > > > > I'm seeing very similar behaviour now with csup: > > > > > > > > ( I do csup -L2 /root/ports-supfile, where > > > > > > > > # cat /root/ports-supfile > > > > *default host=cvsup.uk.FreeBSD.org > > > > *default base=/var/db > > > > *default prefix=/usr > > > > *default release=cvs tag=. delete use-rel-suffix compress > > > > > > > > ports-all > > > > # ) > > > > > > > > top(1) shows: > > > > > > > > last pid: 1160; load averages: 0.00, 0.06, 0.07 up 0+00:10:53 15:05:52 > > > > 81 processes: 3 running, 61 sleeping, 17 waiting > > > > CPU 0: 0.0% user, 0.0% nice, 0.2% system, 0.0% interrupt, 99.8% idle > > > > CPU 1: 0.0% user, 0.0% nice, 0.0% system, 0.0% interrupt, 100% idle > > > > Mem: 23M Active, 19M Inact, 75M Wired, 136K Cache, 34M Buf, 5900M Free > > > > Swap: 2780M Total, 2780M Free > > > > > > > > PID UID THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > > > > 10 0 2 171 ki31 0K 64K RUN 0 20:18 198.00% idle > > > > 11 0 17 -48 - 0K 544K WAIT 0 0:01 0.00% intr > > > > 1118 1001 1 96 0 12800K 3920K CPU0 0 0:00 0.00% top > > > > 4 0 1 -8 - 0K 32K - 1 0:00 0.00% g_down > > > > 1158 0 4 -8 0 43672K 6296K biowr 0 0:00 0.00% csup > > > > > > > > > > > > which stays in biowr state indefinitely. > > > > > > > > I can issue kill -9 or kill -HUP from top(1), > > > > which makes csup change state to STOP, but > > > > nothing else happens. > > > > > > > > As before, I can't log in from other terminals > > > > and have to do a cold reset. I've reinstalled > > > > on another disk, so not sure what's going on. > > > > > > > > I think rm(1) is also extremely slow, but > > > > maybe I'm imagining things. > > > > > > > > many thanks > > > > anton > > > > > > > > > > > > > > > > > I would post up the contents of your make.conf & your kernel config & your > > > dmesg somewhere so it can be evaluated. > > > > When I reinstalled 8.0 from a CD, > > I updated source with csup, that worked. > > However, after upgrading to current, I can't get > > any luck with csup. The important bit is that > > I don't really know what revision this is. > > > > I've no /etc/make.conf > > > > kernel config: > > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/UZI > > > > dmesg: > > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/dmesg.boot > > > > Marcel, this might be of some interest. > > I managed to csup /usr/src, probably because > there was not too many updates from 3 days ago. > I proceeded with updating the system, but > had a freeze again in single user at the very > beginning of 'make installworld'. > > Now I've reinstalled 8.0-CURRENT-200906 > snapshot and have no issues with csup, > just completed downloading the ports tree. > It seems something is wrong with csup(1), > or pehaps disk i/o, in the recent ia64 updates. > > I'll try building svn from ports and update > via svn, will report the results. An update: 1. reinstalled from 8.0-CURRENT-200906 2. installed the ports tree via csup(1) 3. installed svn(1) from ports 4. updated src with svn. Both svn and csup worked fine here. 5. rebuilt and reinstalled kernel and world as usual to r205403. 6. rebooted. The kernel config file: http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/UZI dmesg: http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/dmesg.boot ifconfig -a: http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/ifconfig-a 7. tried to update the src again with svn and got stuck. All I can issue is CTRL/T, which shows for svn: mech-as221# svn co svn://svn.freebsd.org/base/head/ /usr/src/ load: 0.00 cmd: svn 888 [biord] 8008.53r 0.09u 0.30s 0% 13992k load: 0.00 cmd: svn 888 [biord] 8009.53r 0.09u 0.30s 0% 13992k load: 0.00 cmd: svn 888 [biord] 8015.07r 0.09u 0.30s 0% 13992k in another ssh session I was running gstat(8) which showed zero activity in the disk. and in yet another ssh session I tried to launch top: mech-as221# top load: 0.00 cmd: csh 915 [ufs] 6146.33r 0.00u 0.00s 0% 5008k load: 0.00 cmd: csh 915 [ufs] 6147.15r 0.00u 0.00s 0% 5008k and on the serial console: load: 0.00 cmd: getty 828 [ufs] 8129.90r 0.00u 0.00s 0% 2560k load: 0.00 cmd: getty 828 [ufs] 8130.70r 0.00u 0.00s 0% 2560k but the shell prompt never appears. I've waited maybe 2-3 hours. Can't do much else, but a cold reboot. many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423 From owner-freebsd-ia64@FreeBSD.ORG Sun Mar 21 20:27:53 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35B051065670; Sun, 21 Mar 2010 20:27:53 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id E17DF8FC16; Sun, 21 Mar 2010 20:27:52 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirj.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1NtRkV-00034a-RS; Sun, 21 Mar 2010 20:27:51 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1NtRkV-0007m8-Mk; Sun, 21 Mar 2010 20:27:51 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3) with ESMTP id o2LKRp11093523; Sun, 21 Mar 2010 20:27:51 GMT (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3/Submit) id o2LKRpk2093522; Sun, 21 Mar 2010 20:27:51 GMT (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Sun, 21 Mar 2010 20:27:51 +0000 From: Anton Shterenlikht To: xcllnt@mac.com Message-ID: <20100321202750.GL84236@mech-cluster241.men.bris.ac.uk> References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-current@freebsd.org, freebsd-ia64@freebsd.org Subject: Re: rm/csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 20:27:53 -0000 Marcel On Sun, Mar 21, 2010 at 06:22:14PM +0000, Anton Shterenlikht wrote: > > An update: > > 1. reinstalled from 8.0-CURRENT-200906 > > 2. installed the ports tree via csup(1) > > 3. installed svn(1) from ports > > 4. updated src with svn. > Both svn and csup worked fine here. > > 5. rebuilt and reinstalled kernel and world as > usual to r205403. > > 6. rebooted. > The kernel config file: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/UZI > > dmesg: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/dmesg.boot > > ifconfig -a: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/ifconfig-a > > > 7. tried to update the src again with svn and got stuck. > All I can issue is CTRL/T, which shows for svn: > > mech-as221# svn co svn://svn.freebsd.org/base/head/ /usr/src/ > > load: 0.00 cmd: svn 888 [biord] 8008.53r 0.09u 0.30s 0% 13992k > load: 0.00 cmd: svn 888 [biord] 8009.53r 0.09u 0.30s 0% 13992k > load: 0.00 cmd: svn 888 [biord] 8015.07r 0.09u 0.30s 0% 13992k > > in another ssh session I was running gstat(8) which showed > zero activity in the disk. > > and in yet another ssh session I tried to launch top: > > mech-as221# top > load: 0.00 cmd: csh 915 [ufs] 6146.33r 0.00u 0.00s 0% 5008k > load: 0.00 cmd: csh 915 [ufs] 6147.15r 0.00u 0.00s 0% 5008k > > and on the serial console: > > load: 0.00 cmd: getty 828 [ufs] 8129.90r 0.00u 0.00s 0% 2560k > load: 0.00 cmd: getty 828 [ufs] 8130.70r 0.00u 0.00s 0% 2560k > > but the shell prompt never appears. > I've waited maybe 2-3 hours. On reboot I did # cd /usr/obj # chflags -R noschg * # rm -rf * I monitor disk activity with iostat(8) and gstat(8), and system activity with top(1) from 3 separate ssh sessions. For about 5-10 sec iostat(8) and gstat(8) show significant disk activity. After that both iostat and gstat show zero disk activity. top(1) shows: [skip] PID UID THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 10 0 2 171 ki31 0K 64K RUN 0 28:40 198.00% idle 11 0 17 -48 - 0K 544K WAIT 0 0:02 0.00% intr 893 0 1 96 0 12800K 4008K CPU0 0 0:00 0.00% top 918 0 1 -4 0 11592K 2424K getblk 0 0:00 0.00% rm [skip] rm never exits (well.. within 20 minutes). kill -9 918 (issued from top(1)) makes no effect. No new ssh logins are possible, and the existing ssh sessions and the serial line don't show the shell prompt. It seems the problems I've had in the last several days with ldd/csup/svn/rm have the same root cause. I'm just not sure if it's someting simple that I've messed up, or something went wrong in current.. many thanks for your help anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423 From owner-freebsd-ia64@FreeBSD.ORG Sun Mar 21 20:38:56 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1168106566C; Sun, 21 Mar 2010 20:38:56 +0000 (UTC) (envelope-from xcllnt@mac.com) Received: from asmtpout023.mac.com (asmtpout023.mac.com [17.148.16.98]) by mx1.freebsd.org (Postfix) with ESMTP id 8EF608FC08; Sun, 21 Mar 2010 20:38:56 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from macbook-pro.lan.xcllnt.net (mail.xcllnt.net [75.101.29.67]) by asmtp023.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0KZN00CRTG0GI790@asmtp023.mac.com>; Sun, 21 Mar 2010 13:38:41 -0700 (PDT) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=5.0.0-0908210000 definitions=main-1003210204 From: Marcel Moolenaar In-reply-to: <20100321202750.GL84236@mech-cluster241.men.bris.ac.uk> Date: Sun, 21 Mar 2010 13:38:40 -0700 Message-id: References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> <20100321202750.GL84236@mech-cluster241.men.bris.ac.uk> To: Anton Shterenlikht X-Mailer: Apple Mail (2.1077) Cc: freebsd-current@freebsd.org, freebsd-ia64@freebsd.org Subject: Re: rm/csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 20:38:56 -0000 On Mar 21, 2010, at 1:27 PM, Anton Shterenlikht wrote: > It seems the problems I've had in the last > several days with ldd/csup/svn/rm have the > same root cause. I'm aware of the issue. Give me a few days to fix it. I have a fix under test, but it exposes other problems... -- Marcel Moolenaar xcllnt@mac.com From owner-freebsd-ia64@FreeBSD.ORG Mon Mar 22 11:07:05 2010 Return-Path: Delivered-To: freebsd-ia64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31B631065678 for ; Mon, 22 Mar 2010 11:07:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 068248FC0A for ; Mon, 22 Mar 2010 11:07:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2MB74CN015064 for ; Mon, 22 Mar 2010 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2MB74wH015062 for freebsd-ia64@FreeBSD.org; Mon, 22 Mar 2010 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Mar 2010 11:07:04 GMT Message-Id: <201003221107.o2MB74wH015062@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-ia64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-ia64@FreeBSD.org X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Mar 2010 11:07:05 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ia64/113102 ia64 [MCA] Multiple records can have the same sequence numb 1 problem total. From owner-freebsd-ia64@FreeBSD.ORG Mon Mar 22 12:04:11 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EB591065672; Mon, 22 Mar 2010 12:04:11 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yw0-f171.google.com (mail-yw0-f171.google.com [209.85.211.171]) by mx1.freebsd.org (Postfix) with ESMTP id 26F888FC1C; Mon, 22 Mar 2010 12:04:10 +0000 (UTC) Received: by ywh1 with SMTP id 1so2170814ywh.3 for ; Mon, 22 Mar 2010 05:04:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:from:to:cc :subject:in-reply-to:message-id:references:user-agent :x-openpgp-key-id:x-openpgp-key-fingerprint:mime-version :content-type; bh=Q0TLee2Xb/op3xmQ9a+cXBbAbLdMvc2aiEzid93P5q0=; b=Z4bUjcMKqcpWet+SLF3N5Ye3tj4Jyjs94hd1cZPGuqkvDkdpNpLHuaIxuc4BJsUOLG qyZxXDmgbmMN/uT+nSC+LOz5Yev+bdNmXDzQ+9h4oeGukew0jf+SCkkX0XGsDvoLZQbh qvUY5d3FvV7OiX1AQN0PDQf5bwBWD9BScrhsg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:in-reply-to:message-id:references :user-agent:x-openpgp-key-id:x-openpgp-key-fingerprint:mime-version :content-type; b=OzSNpoKlj9FwfCJpgW4QZ37jBLC6ZsoPF721wX88D0BfIxz6cwi+QmCnwCr8gdPMFl 6J4WspbZKfT2hHSgJXddIghx68+fnFF/f1uTUoh6YOwqLxKXX9aElkg8g8a/FbamIECX 40AkmUULIcwiLVvDGfkGe6yqFzRLCMrIDvgPw= Received: by 10.91.24.1 with SMTP id b1mr4137577agj.96.1269259433858; Mon, 22 Mar 2010 05:03:53 -0700 (PDT) Received: from centel.dataix.local (ppp-22.128.dialinfree.com [209.172.22.128]) by mx.google.com with ESMTPS id 21sm1764826ywh.32.2010.03.22.05.03.46 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 22 Mar 2010 05:03:52 -0700 (PDT) Sender: "J. Hellenthal" Date: Mon, 22 Mar 2010 08:04:00 -0400 From: jhell To: Anton Shterenlikht In-Reply-To: <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> Message-ID: References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) X-OpenPGP-Key-Id: 0x89D8547E X-OpenPGP-Key-Fingerprint: 85EF E26B 07BB 3777 76BE B12A 9057 8789 89D8 547E MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Current , freebsd-ia64@freebsd.org Subject: Re: csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Mar 2010 12:04:11 -0000 On Sun, 21 Mar 2010 14:22, Anton Shterenlikht wrote: In Message-Id: <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> > On Sat, Mar 20, 2010 at 08:53:37PM +0000, Anton Shterenlikht wrote: >> On Sat, Mar 20, 2010 at 03:44:46PM +0000, Anton Shterenlikht wrote: >>> On Sat, Mar 20, 2010 at 07:27:43AM -0400, jhell wrote: >>>> >>>> On Fri, 19 Mar 2010 17:15, Anton Shterenlikht wrote: >>>> In Message-Id: <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> >>>> >>>>> On Thu, Mar 18, 2010 at 11:29:36AM -0400, jhell wrote: >>>>>> -----BEGIN PGP SIGNED MESSAGE----- >>>>>> Hash: SHA1 >>>>>> >>>>>> >>>>>> >>>>>> On Wed, 17 Mar 2010 12:32, Anton Shterenlikht wrote: >>>>>> In Message-Id: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> >>>>>> >>>>>>> Just updated to ia64 r205248 >>>>>>> >>>>>>> If my problem is due to my mis-configuration, >>>>>>> I apologise in advance. >>>>>>> >>>>>>> I run this shell script after each upgrade >>>>>>> and 'make delete-old-libs' to check >>>>>>> if any shared objects need to be rebuilt: >>>>>>> >>>>>>> >>>>>>> >>>>>>> #!/bin/sh >>>>>>> >>>>>>> for file in `find /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/libexec /usr/local -name "*"` >>>>>>> do >>>>>>> echo $file >>>>>>> ldd $file >> /root/ldd_results 2> /dev/zero >>>>>>> done >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> This will probably do closer to what you actually would want to look for. >>>>>> >>>>>> Writing to /dev/zero ... I don't know never tried it since /dev/null is >>>>>> usually the standard place to throw trash. >>>>>> >>>>>> #!/bin/sh >>>>>> for file in `find /*bin /usr/*bin /usr/lib* /usr/local/*bin -type f` do >>>>>> echo $file >>>>>> ldd $file >>/root/ldd_results 2>/dev/null >>>>>> done >>>>>> >>>>>> The problem with your script is that it finds most files that it can not >>>>>> or is not useful to run ldd on and leaves you junk in return. >>>>>> >>>>>> It might be more useful if you searched for dynamically linked ELF >>>>>> binaries to run ldd against like the following. >>>>>> >>>>>> === Script starts here === >>>>>> #!/bin/sh >>>>>> >>>>>> SEARCHPATH="/*bin /usr/*bin /usr/lib* /usr/local/*bin" >>>>>> >>>>>> trap 'exit 1' 2 >>>>>> >>>>>> check_libs() { >>>>>> for spath in $SEARCHPATH; do >>>>>> for ifelf in `find $spath -type f`; do >>>>>> ldd `file $ifelf | grep dynamically | cut -f1 -d:` >>>>>> done >>>>>> done >>>>>> } >>>>>> >>>>>> check_libs 2>/dev/null >>>>>> === Script ends here === >>>>>> >>>>>> The above will find all type ELF * that are dynamically linked within the >>>>>> SEARCHPATH variable and run ldd on them and print the results to stdout. >>>>>> >>>>>> Obviously since you are going to have thousands of files being questioned, >>>>>> stdout is not going to be useful. >>>>>> >>>>>> So with the about stated: >>>>>> save the script to: checklibs.sh >>>>>> run with: "sh checklibs.sh >/root/checklibs_output" >>>>>> or: "script /root/checklibs_output checklibs.sh" >>>>>> >>>>>>> After the upgrade to r205248, the script >>>>>>> freezes at seemingly random points. >>>>>>> >>>>>> >>>>>> Unneeded disk usage & execution. >>>>>> >>>>>>> I can still ssh to the machine (using keys), i.e. >>>>>>> I see the welcome message, but cannot get to the console prompt. >>>>>> >>>>>> Of course... to many open files or processes in wait. SSH already has the >>>>>> information it needs loaded into memory, that's why you can get sort-of-in >>>>>> >>>>>> ZFS file-system perhaps ? >>>>> >>>>> I've no ZFS. >>>>> >>>>> I'm seeing very similar behaviour now with csup: >>>>> >>>>> ( I do csup -L2 /root/ports-supfile, where >>>>> >>>>> # cat /root/ports-supfile >>>>> *default host=cvsup.uk.FreeBSD.org >>>>> *default base=/var/db >>>>> *default prefix=/usr >>>>> *default release=cvs tag=. delete use-rel-suffix compress >>>>> >>>>> ports-all >>>>> # ) >>>>> >>>>> top(1) shows: >>>>> >>>>> last pid: 1160; load averages: 0.00, 0.06, 0.07 up 0+00:10:53 15:05:52 >>>>> 81 processes: 3 running, 61 sleeping, 17 waiting >>>>> CPU 0: 0.0% user, 0.0% nice, 0.2% system, 0.0% interrupt, 99.8% idle >>>>> CPU 1: 0.0% user, 0.0% nice, 0.0% system, 0.0% interrupt, 100% idle >>>>> Mem: 23M Active, 19M Inact, 75M Wired, 136K Cache, 34M Buf, 5900M Free >>>>> Swap: 2780M Total, 2780M Free >>>>> >>>>> PID UID THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND >>>>> 10 0 2 171 ki31 0K 64K RUN 0 20:18 198.00% idle >>>>> 11 0 17 -48 - 0K 544K WAIT 0 0:01 0.00% intr >>>>> 1118 1001 1 96 0 12800K 3920K CPU0 0 0:00 0.00% top >>>>> 4 0 1 -8 - 0K 32K - 1 0:00 0.00% g_down >>>>> 1158 0 4 -8 0 43672K 6296K biowr 0 0:00 0.00% csup >>>>> >>>>> >>>>> which stays in biowr state indefinitely. >>>>> >>>>> I can issue kill -9 or kill -HUP from top(1), >>>>> which makes csup change state to STOP, but >>>>> nothing else happens. >>>>> >>>>> As before, I can't log in from other terminals >>>>> and have to do a cold reset. I've reinstalled >>>>> on another disk, so not sure what's going on. >>>>> >>>>> I think rm(1) is also extremely slow, but >>>>> maybe I'm imagining things. >>>>> >>>>> many thanks >>>>> anton >>>>> >>>>> >>>> >>>> >>>> I would post up the contents of your make.conf & your kernel config & your >>>> dmesg somewhere so it can be evaluated. >>> >>> When I reinstalled 8.0 from a CD, >>> I updated source with csup, that worked. >>> However, after upgrading to current, I can't get >>> any luck with csup. The important bit is that >>> I don't really know what revision this is. >>> >>> I've no /etc/make.conf >>> >>> kernel config: >>> http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/UZI >>> >>> dmesg: >>> http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/dmesg.boot >>> >> >> Marcel, this might be of some interest. >> >> I managed to csup /usr/src, probably because >> there was not too many updates from 3 days ago. >> I proceeded with updating the system, but >> had a freeze again in single user at the very >> beginning of 'make installworld'. >> >> Now I've reinstalled 8.0-CURRENT-200906 >> snapshot and have no issues with csup, >> just completed downloading the ports tree. >> It seems something is wrong with csup(1), >> or pehaps disk i/o, in the recent ia64 updates. >> >> I'll try building svn from ports and update >> via svn, will report the results. > > An update: > > 1. reinstalled from 8.0-CURRENT-200906 > > 2. installed the ports tree via csup(1) > > 3. installed svn(1) from ports > > 4. updated src with svn. > Both svn and csup worked fine here. > > 5. rebuilt and reinstalled kernel and world as > usual to r205403. > > 6. rebooted. > The kernel config file: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/UZI > > dmesg: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/dmesg.boot > > ifconfig -a: > http://seis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/uzi/ifconfig-a > > > 7. tried to update the src again with svn and got stuck. > All I can issue is CTRL/T, which shows for svn: : : mech-as221# svn co svn://svn.freebsd.org/base/head/ /usr/src/ : Not that this has anything to do with your problem but might turn into a problem if it is not your intent. But the above command will update your src to 9.0-CURRENT If it is your intention to stay on 8.0-* you might want to use one of the following: For checkout: (8.0-STABLE) svn co svn://svn.freebsd.org/base/stable/8/ /usr/src/ For checkout: (8.0-RELEASE-pN) svn co svn://svn.freebsd.org/base/releng/8.0/ /usr/src/ For updating: (after initial checkout) cd /usr/src ;svn update [-r%REVISION%] Then again maybe this is the problem... If you updated to current and did not rebuild your ports tree then that might be a factor of the problem. Regards, -- jhell From owner-freebsd-ia64@FreeBSD.ORG Mon Mar 22 16:20:22 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B8BE1065673; Mon, 22 Mar 2010 16:20:22 +0000 (UTC) (envelope-from xcllnt@mac.com) Received: from asmtpout027.mac.com (asmtpout027.mac.com [17.148.16.102]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC608FC1C; Mon, 22 Mar 2010 16:20:22 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from macbook-pro.jnpr.net (natint3.juniper.net [66.129.224.36]) by asmtp027.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0KZO00EACYPK4F50@asmtp027.mac.com>; Mon, 22 Mar 2010 09:20:11 -0700 (PDT) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=5.0.0-0908210000 definitions=main-1003220173 From: Marcel Moolenaar In-reply-to: Date: Mon, 22 Mar 2010 09:20:07 -0700 Message-id: <2AEAB236-0168-42F1-B08B-9D23E8F6DE27@mac.com> References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> To: jhell X-Mailer: Apple Mail (2.1077) Cc: FreeBSD Current , freebsd-ia64@freebsd.org Subject: Re: csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Mar 2010 16:20:22 -0000 On Mar 22, 2010, at 5:04 AM, jhell wrote: > > Not that this has anything to do with your problem but might turn into a problem if it is not your intent. But the above command will update your src to 9.0-CURRENT That is his intend. Anton: I fixed a bunch of things yesterday. You should be able to upgrade to HEAD. I have one more fix pending that's needed for preemption, but you should not hold off an upgrade for that... FYI, -- Marcel Moolenaar xcllnt@mac.com From owner-freebsd-ia64@FreeBSD.ORG Mon Mar 22 18:25:58 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09A97106564A; Mon, 22 Mar 2010 18:25:58 +0000 (UTC) (envelope-from js@saltmine.radix.net) Received: from saltmine.radix.net (saltmine.radix.net [207.192.128.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2E3588FC22; Mon, 22 Mar 2010 18:25:52 +0000 (UTC) Received: from saltmine.radix.net (localhost [127.0.0.1]) by saltmine.radix.net (8.12.2/8.12.2) with ESMTP id o2MI9wV4020064; Mon, 22 Mar 2010 14:09:58 -0400 (EDT) Received: (from root@localhost) by saltmine.radix.net (8.12.2/8.12.2/Submit) id o2MI9wbo020060; Mon, 22 Mar 2010 14:09:58 -0400 (EDT) Received: from mail1.radix.net (mail1.radix.net [207.192.128.31]) by saltmine.radix.net (8.12.2/8.12.2) with ESMTP id o2MGKtV4004893 for ; Mon, 22 Mar 2010 12:20:55 -0400 (EDT) Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by mail1.radix.net (8.13.4/8.13.4) with ESMTP id o2MGKsHR024538 for ; Mon, 22 Mar 2010 12:20:55 -0400 (EDT) Received: from hub.freebsd.org (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id B1C111A4FE1; Mon, 22 Mar 2010 16:20:32 +0000 (UTC) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 212661065704; Mon, 22 Mar 2010 16:20:31 +0000 (UTC) (envelope-from owner-freebsd-current@freebsd.org) Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B8BE1065673; Mon, 22 Mar 2010 16:20:22 +0000 (UTC) (envelope-from xcllnt@mac.com) Received: from asmtpout027.mac.com (asmtpout027.mac.com [17.148.16.102]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC608FC1C; Mon, 22 Mar 2010 16:20:22 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from macbook-pro.jnpr.net (natint3.juniper.net [66.129.224.36]) by asmtp027.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0KZO00EACYPK4F50@asmtp027.mac.com>; Mon, 22 Mar 2010 09:20:11 -0700 (PDT) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=5.0.0-0908210000 definitions=main-1003220173 From: Marcel Moolenaar In-reply-to: Date: Mon, 22 Mar 2010 09:20:07 -0700 Message-id: <2AEAB236-0168-42F1-B08B-9D23E8F6DE27@mac.com> References: <20100317163230.GJ87732@mech-cluster241.men.bris.ac.uk> <20100319211535.GA76683@mech-cluster241.men.bris.ac.uk> <20100320154446.GE84236@mech-cluster241.men.bris.ac.uk> <20100320205337.GF84236@mech-cluster241.men.bris.ac.uk> <20100321182214.GK84236@mech-cluster241.men.bris.ac.uk> To: jhell X-Mailer: Apple Mail (2.1077) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-current@freebsd.org Errors-To: owner-freebsd-current@freebsd.org Status: O X-Status: X-Keywords: X-UID: 126 Cc: FreeBSD Current , freebsd-ia64@freebsd.org Subject: Re: csup/svn/ldd make host unresponsive [WAS: Re: ldd leaves the machine unresponsive] X-BeenThere: freebsd-ia64@freebsd.org List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Mar 2010 18:25:58 -0000 On Mar 22, 2010, at 5:04 AM, jhell wrote: > > Not that this has anything to do with your problem but might turn into a problem if it is not your intent. But the above command will update your src to 9.0-CURRENT That is his intend. Anton: I fixed a bunch of things yesterday. You should be able to upgrade to HEAD. I have one more fix pending that's needed for preemption, but you should not hold off an upgrade for that... FYI, -- Marcel Moolenaar xcllnt@mac.com _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-ia64@FreeBSD.ORG Thu Mar 25 10:11:52 2010 Return-Path: Delivered-To: freebsd-ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8768C1065670; Thu, 25 Mar 2010 10:11:52 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id 46BF68FC1F; Thu, 25 Mar 2010 10:11:51 +0000 (UTC) Received: from ncsd.bris.ac.uk ([137.222.10.59] helo=ncs.bris.ac.uk) by dirj.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1Nuk2Y-00030S-Sx; Thu, 25 Mar 2010 10:11:50 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1Nuk2Y-0007Og-Of; Thu, 25 Mar 2010 10:11:50 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3) with ESMTP id o2PABoTW022547; Thu, 25 Mar 2010 10:11:50 GMT (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.3/Submit) id o2PABoAe022546; Thu, 25 Mar 2010 10:11:50 GMT (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Thu, 25 Mar 2010 10:11:50 +0000 From: Anton Shterenlikht To: gecko@freebsd.org Message-ID: <20100325101150.GE22340@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-ia64@freebsd.org Subject: firefox-3.6.2,1 dumps core on ia64 X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Mar 2010 10:11:52 -0000 On FreeBSD ia64 9.0-CURRENT #0 r203484M port www/firefox-3.6.2,1 dumps core on launch always with: [skip] WARNING: Positioned frame that does not handle positioned kids; looking further up the parent chain: file nsCSSFrameConstructor.cpp, line 5727 WARNING: Positioned frame that does not handle positioned kids; looking further up the parent chain: file nsCSSFrameConstructor.cpp, line 5727 WARNING: Positioned frame that does not handle positioned kids; looking further up the parent chain: file nsCSSFrameConstructor.cpp, line 5727 *** e = [Exception... "Component returned failure code: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE) [nsIJSCID.getService]" nsresult: "0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE)" location: "JS frame :: chrome://browser/content/utilityOverlay.js :: getShellService :: line 326" data: no] ++DOMWINDOW == 13 (0x200000004b97a458) [serial = 13] [outer = 0x200000004a72b000] ++DOMWINDOW == 14 (0x200000004b97d858) [serial = 14] [outer = 0x200000004b864400] Bus error (core dumped) Please advise many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423 From owner-freebsd-ia64@FreeBSD.ORG Fri Mar 26 00:13:13 2010 Return-Path: Delivered-To: ia64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BEB11065670; Fri, 26 Mar 2010 00:13:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E6B0C8FC14; Fri, 26 Mar 2010 00:13:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id o2Q0DCSH018439; Thu, 25 Mar 2010 20:13:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id o2Q0DC6B018404; Fri, 26 Mar 2010 00:13:12 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 26 Mar 2010 00:13:12 GMT Message-Id: <201003260013.o2Q0DC6B018404@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-ia64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the IA-64 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Mar 2010 00:13:13 -0000 TB --- 2010-03-25 22:39:05 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-03-25 22:39:05 - starting HEAD tinderbox run for ia64/ia64 TB --- 2010-03-25 22:39:05 - cleaning the object tree TB --- 2010-03-25 22:39:22 - cvsupping the source tree TB --- 2010-03-25 22:39:22 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/ia64/ia64/supfile TB --- 2010-03-25 22:39:51 - building world TB --- 2010-03-25 22:39:51 - MAKEOBJDIRPREFIX=/obj TB --- 2010-03-25 22:39:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-03-25 22:39:51 - TARGET=ia64 TB --- 2010-03-25 22:39:51 - TARGET_ARCH=ia64 TB --- 2010-03-25 22:39:51 - TZ=UTC TB --- 2010-03-25 22:39:51 - __MAKE_CONF=/dev/null TB --- 2010-03-25 22:39:51 - cd /src TB --- 2010-03-25 22:39:51 - /usr/bin/make -B buildworld >>> World build started on Thu Mar 25 22:39:51 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Mar 25 23:56:37 UTC 2010 TB --- 2010-03-25 23:56:37 - generating LINT kernel config TB --- 2010-03-25 23:56:37 - cd /src/sys/ia64/conf TB --- 2010-03-25 23:56:37 - /usr/bin/make -B LINT TB --- 2010-03-25 23:56:37 - building LINT kernel TB --- 2010-03-25 23:56:37 - MAKEOBJDIRPREFIX=/obj TB --- 2010-03-25 23:56:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-03-25 23:56:37 - TARGET=ia64 TB --- 2010-03-25 23:56:37 - TARGET_ARCH=ia64 TB --- 2010-03-25 23:56:37 - TZ=UTC TB --- 2010-03-25 23:56:37 - __MAKE_CONF=/dev/null TB --- 2010-03-25 23:56:37 - cd /src TB --- 2010-03-25 23:56:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Mar 25 23:56:37 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ia64/ia64/in_cksum.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ia64/ia64/interrupt.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ia64/ia64/iodev_machdep.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/ia64/ia64/machdep.c /src/sys/ia64/ia64/machdep.c: In function 'exec_setregs': /src/sys/ia64/ia64/machdep.c:1384: error: 'ps_strings' undeclared (first use in this function) /src/sys/ia64/ia64/machdep.c:1384: error: (Each undeclared identifier is reported only once /src/sys/ia64/ia64/machdep.c:1384: error: for each function it appears in.) *** Error code 1 Stop in /obj/ia64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-03-26 00:13:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-03-26 00:13:11 - ERROR: failed to build lint kernel TB --- 2010-03-26 00:13:11 - 4533.33 user 629.84 system 5646.48 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full