From owner-freebsd-current Sun May 14 0: 7:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 6116637B9AC for ; Sun, 14 May 2000 00:07:43 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from kyoto-tc011-p156.alpha-net.ne.jp (kyoto-tc011-p156.alpha-net.ne.jp [210.237.118.158]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id QAA03732 for ; Sun, 14 May 2000 16:05:21 +0900 (JST) Received: from souffle.bogus-local.net (souffle.bogus-local.net [192.168.1.1]) by kyoto-tc011-p156.alpha-net.ne.jp (Postfix) with ESMTP id A80D63DB8; Sun, 14 May 2000 16:07:29 +0900 (JST) Date: Sun, 14 May 2000 16:07:29 +0900 Message-ID: <86em75k3ta.wl@cheerful.com> From: FUJISHIMA Satsuki To: emre@interniq.org Cc: freebsd-current@freebsd.org Subject: Re: Real Player not working In-Reply-To: In your message of "Sat, 13 May 2000 15:45:02 -0500" <391DBECE.2A54FD80@interniq.org> References: <391DBECE.2A54FD80@interniq.org> User-Agent: Wanderlust/1.1.0 (Overjoyed) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i386--freebsd) MULE/4.1 (AOI) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Sat, 13 May 2000 15:45:02 -0500, emre wrote: > bash-2.03# rvplayer > ELF interpreter /lib/ld-linux.so.1 not found > Abort trap This is the same problem as ports/18489, caused by binary branding confusion. $ file /usr/local/bin/rvplayer /usr/local/bin/rvplayer: ELF 32-bit LSB executable, Intel 80386, version 1 (FreeBSD), dynamically linked, stripped /usr/bin/strip(used during INSTALL_PROGRAM) forces Linux binary to be branded as FreeBSD with old method and then it will always be treated as FreeBSD binary. The effort to brand it as Linux with new method will be ignored. Stripping Linux binary with Linux strip would be a workaround. -- FUJISHIMA Satsuki Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/linux-realplayer/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- Makefile 2000/04/08 21:23:56 1.12 +++ Makefile 2000/05/14 06:37:17 @@ -20,6 +20,8 @@ NO_BUILD= yes WRKSRC= ${WRKDIR}/rvplayer5.0/ +STRIP= # linux binary should not be stripped by INSTALL_PROGRAM + LIBFILES= libdecdnet.so libra14_4.so libra28_8.so libradnet.so \ librarv10.so librasipr.so librv10dec.so librvcore.so \ librvplayer.so @@ -58,6 +60,7 @@ .endfor ${INSTALL_PROGRAM} ${WRKSRC}/rvplayer ${PREFIX}/bin/ + /compat/linux/usr/bin/strip ${PREFIX}/bin/rvplayer /usr/bin/brandelf -t Linux ${PREFIX}/bin/rvplayer ${INSTALL_DATA} ${WRKSRC}/welcome.rm ${PREFIX}/share/rvplayer5.0/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 5:49: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail11.svr.pol.co.uk (mail11.svr.pol.co.uk [195.92.193.23]) by hub.freebsd.org (Postfix) with ESMTP id E25DC37BBD3; Sun, 14 May 2000 05:48:49 -0700 (PDT) (envelope-from n_hibma@calcaphon.com) Received: from [195.92.67.23] (helo=mail18.svr.pol.co.uk) by mail11.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 12qxp4-0007dx-00; Sun, 14 May 2000 13:48:42 +0100 Received: from modem-123.porcupine-puffer.dialup.pol.co.uk ([62.137.50.251] helo=henny.webweaving.org) by mail18.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 12qxp1-000670-00; Sun, 14 May 2000 13:48:40 +0100 Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id NAA78642; Sun, 14 May 2000 13:33:14 +0100 (BST) (envelope-from n_hibma@calcaphon.com) Date: Sun, 14 May 2000 13:33:14 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: phk@freebsd.org Cc: Peter Edwards , FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic In-Reply-To: <39097C24.55671DBE@openet-telecom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Correct me if I am wrong, but I don't think you actually have to disassociate any dev_t's from the driver (by clearing the si_drv[12] fields) because we call destroy_dev and cdevsw_remove, so any later uses of dev_t's get an error because the device has gone away. Apart from that I don't think we the calls to cdevsw_add/_destroy in the first place, because we create the cdevsw on demand (with make_dev). Poul, is this correct? nick On Fri, 28 Apr 2000, Peter Edwards wrote: > I had a longer look at this, and a more complete patch is logged as PR > kern/18270 (try at your own risk: it works for me). > I'd appreciate someone more experienced having a look at it and > commenting. > Cheers, > Peter. > > > Wilko Bulte wrote: > > > > On Wed, Apr 26, 2000 at 04:25:46PM +0100, Peter Edwards (local) wrote: > > > > How about send-pr ing this stuff? > > > > Wilko > > > > > Hi, > > > After a (very) quick look at the source it looks like there's a missing > > > cdevsw_remove() missing from the MOD_UNLOAD/MOD_SHUTDOWN event handling > > > I haven't time to test it, but try this: > > > > > > *** vn.c.old Wed Apr 26 16:23:03 2000 > > > --- vn.c Wed Apr 26 16:24:06 2000 > > > *************** > > > *** 762,767 **** > > > --- 762,768 ---- > > > case MOD_UNLOAD: > > > /* fall through */ > > > case MOD_SHUTDOWN: > > > + cdevsw_remove(&vn_cdevsw); > > > for (;;) { > > > vn = SLIST_FIRST(&vn_list); > > > if (!vn) > > > > > > > > > Maxim Sobolev wrote: > > > > > > > > Hi, > > > > > > > > I've already submitted this crash report earlier but it seems that developers > > > > in -current list are too busy discussing whether Matt allowed to commit his SMP > > > > work into 4.0 to pay attention to "ordinary" panic reports :-(. Following is > > > > slightly simplified course of actions which is known to produce kernel panic on > > > > both 4.0 and 5.0: > > > > > > > > root@notebook# kldstat > > > > Id Refs Address Size Name > > > > 1 2 0xc0100000 1c2f48 kernel > > > > 2 1 0xc02c3000 30c8 splash_bmp.ko > > > > root@notebook# mount /dev/vn0c /mnt > > > > mount: Device not configured > > > > root@notebook# kldload /modules/vn.ko > > > > root@notebook# kldstat > > > > Id Refs Address Size Name > > > > 1 3 0xc0100000 1c2f48 kernel > > > > 2 1 0xc02c3000 30c8 splash_bmp.ko > > > > 3 1 0xc0823000 3000 vn.ko > > > > root@notebook# kldunload -i 3 > > > > root@notebook# mount /dev/vn0c /mnt > > > > [BINGO] > > > > Fatal trap 12: page fault while in kernel mode > > > > [...] > > > > > > > > -Maxim > > > > -- > > Wilko Bulte Powered by FreeBSD http://www.freebsd.org > > http://www.tcja.nl > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 6:59:42 2000 Delivered-To: freebsd-current@freebsd.org Received: from nottingham.ac.uk (pat.ccc.nottingham.ac.uk [128.243.40.194]) by hub.freebsd.org (Postfix) with ESMTP id 8D69037BDF6 for ; Sun, 14 May 2000 06:59:36 -0700 (PDT) (envelope-from psyrawt@nottingham.ac.uk) Received: from pcd3479.nottingham.ac.uk ([128.243.93.162] helo=dreadnaught) by nottingham.ac.uk with smtp (Exim 3.13 #2) id 12qyv8-0007Vb-00 for current@freebsd.org; Sun, 14 May 2000 14:59:02 +0100 From: "Andrew Tulloch" To: Subject: Warning on boot Date: Sun, 14 May 2000 14:57:53 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Importance: Normal Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I just up'd my sources to -current to try sblive support out. Did make world and new kernel but now I get a warning at boot. Device char-major=116 minor=196608 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01 I'm sure it just a simple command to fix, but I don't know what :) Thanks Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 7:27:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from bogon.freebsd.dk (bogon.freebsd.dk [212.242.40.178]) by hub.freebsd.org (Postfix) with ESMTP id C76D137B743 for ; Sun, 14 May 2000 07:27:04 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk ([212.242.127.222]) by bogon.freebsd.dk (8.9.3/8.9.3) with ESMTP id QAA20501; Sun, 14 May 2000 16:26:51 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id QAA02086; Sun, 14 May 2000 16:26:43 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nick Hibma Cc: Peter Edwards , FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic In-reply-to: Your message of "Sun, 14 May 2000 13:33:14 BST." Date: Sun, 14 May 2000 16:26:42 +0200 Message-ID: <2084.958314402@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Nick Hibma wri tes: > >Correct me if I am wrong, but I don't think you actually have to >disassociate any dev_t's from the driver (by clearing the si_drv[12] >fields) because we call destroy_dev and cdevsw_remove, so any later uses >of dev_t's get an error because the device has gone away. destroy_dev will clear the necessary fields in a dev_t, cdevsw_remove will not. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 8:59:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from lh2.rdc1.tx.home.com (ha2.rdc1.tx.home.com [24.4.0.67]) by hub.freebsd.org (Postfix) with ESMTP id 68C9637B6A2; Sun, 14 May 2000 08:59:43 -0700 (PDT) (envelope-from miklic@ibm.net) Received: from ibm.net ([24.10.140.87]) by lh2.rdc1.tx.home.com (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20000514155941.DTQP25186.lh2.rdc1.tx.home.com@ibm.net>; Sun, 14 May 2000 08:59:41 -0700 Message-ID: <391EDC38.67CFE978@ibm.net> Date: Sun, 14 May 2000 17:02:48 +0000 From: "Andrew M. Miklic" X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT alpha) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-current@freebsd.org, freebsd-alpha@freebsd.org Subject: Make World kdump failure Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm getting a "make world" failure with Alpha -current (cvsup'ed fresh as of a few minutes ago, although this problem has persisted for over a week, as far as I can tell)..it seems to be dying in kdump, strangely apparently on i386-specific stuff. Is anyone else seeing this? (Just in case people are thinking the path has anything to do with it, I saw the exact same errors when the src tree was rooted /usr--I just moved it to /usr/local to see if anything would change...) The stream of errors and warnings is below: *************************************************************************************** ===> usr.bin/kdump sh /usr/local/src/usr.bin/kdump/mkioctls /usr/obj/usr/local/src/alpha/usr/include > ioctl.c In file included from :62: /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:51: opt_pcvt.h: No such file or directory In file included from /usr/obj/usr/local/src/alpha/usr/include/sys/param.h:96, from /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:53, from :62: /usr/obj/usr/local/src/alpha/usr/include/machine/limits.h:64: warning: `INT_MAX' redefined /usr/obj/usr/local/src/alpha/usr/include/sys/i386/include/if_wl_wavelan.h:149: warning: this is the location of the previous definition In file included from /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:53, from :62: /usr/obj/usr/local/src/alpha/usr/include/sys/param.h:206: warning: `MAX' redefined /usr/obj/usr/local/src/alpha/usr/include/netinet/ip_compat.h:146: warning: this is the location of the previous definition In file included from :62: /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:71: machine/pcvt_ioctl.h: No such file or directory In file included from :62: /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:77: dev/kbd/kbdreg.h: No such file or directory /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:78: dev/kbd/atkbdcreg.h: No such file or directory /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:80: i386/isa/pcvt/pcvt_conf.h: No such file or directory /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:132: #error "Supported keyboard scancode sets are 1 and 2 only (for now)!!!" In file included from :82: /usr/obj/usr/local/src/alpha/usr/include/sys/sys/cdrio.h:59: warning: `CDRIOCBLANK' redefined /usr/obj/usr/local/src/alpha/usr/include/sys/pc98/pc98/wormio.h:102: warning: this is the location of the previous definition In file included from :93: /usr/obj/usr/local/src/alpha/usr/include/sys/sys/kbio.h:47: warning: `KB_OTHER' redefined /usr/obj/usr/local/src/alpha/usr/include/sys/i386/isa/pcvt/pcvt_hdr.h:100: warning: this is the location of the previous definition In file included from :94: /usr/obj/usr/local/src/alpha/usr/include/sys/sys/memrange.h:18: warning: `MDF_ACTIVE' redefined /usr/obj/usr/local/src/alpha/usr/include/pccard/cardinfo.h:80: warning: this is the location of the previous definition rm -f .depend mkdep -f .depend -a -I/usr/local/src/usr.bin/kdump/../ktrace -I/usr/local/src/usr.bin/kdump/../.. -I/usr/obj/usr/local/src/alpha/usr/include /usr/local/src/usr.bin/kdump/kdump.c ioctl.c /usr/local/src/usr.bin/kdump/../ktrace/subr.c In file included from ioctl.c:88: /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:51: opt_pcvt.h: No such file or directory In file included from ioctl.c:88: /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:71: machine/pcvt_ioctl.h: No such file or directory In file included from ioctl.c:88: /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:77: dev/kbd/kbdreg.h: No such file or directory /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:78: dev/kbd/atkbdcreg.h: No such file or directory /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:80: i386/isa/pcvt/pcvt_conf.h: No such file or directory /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:132: #error "Supported keyboard scancode sets are 1 and 2 only (for now)!!!" In file included from ioctl.c:108: /usr/local/src/usr.bin/kdump/../../sys/sys/cdrio.h:59: warning: `CDRIOCBLANK' redefined /usr/local/src/usr.bin/kdump/../../sys/pc98/pc98/wormio.h:102: warning: this is the location of the previous definition In file included from ioctl.c:119: /usr/local/src/usr.bin/kdump/../../sys/sys/kbio.h:47: warning: `KB_OTHER' redefined /usr/local/src/usr.bin/kdump/../../sys/i386/isa/pcvt/pcvt_hdr.h:100: warning: this is the location of the previous definition In file included from ioctl.c:120: /usr/local/src/usr.bin/kdump/../../sys/sys/memrange.h:18: warning: `MDF_ACTIVE' redefined /usr/obj/usr/local/src/alpha/usr/include/pccard/cardinfo.h:80: warning: this is the location of the previous definition mkdep: compile failed *** Error code 1 Stop in /usr/local/src/usr.bin/kdump. *** Error code 1 Stop in /usr/local/src/usr.bin. *** Error code 1 Stop in /usr/local/src. *** Error code 1 Stop in /usr/local/src. *** Error code 1 Stop in /usr/local/src. bash-2.03# *************************************************************************************** Andrew Miklic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 9:17:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id 34DBE37B73A for ; Sun, 14 May 2000 09:17:35 -0700 (PDT) (envelope-from jesper@skriver.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id A7D083E81; Sun, 14 May 2000 18:17:33 +0200 (CEST) Date: Sun, 14 May 2000 18:17:33 +0200 From: Jesper Skriver To: current@FreeBSD.org Subject: Linux emulation causes a halt Message-ID: <20000514181733.A7695@skriver.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Just upgraded my laptop from a late march -current to -current as of a couple of hours ago. When it loads the "Linux binary compatibility" it shutdown, if apm is enabled it looks like when one do a 'shutdown -p now'. When I set linux_enable="NO" in /etc/rc.conf the machine boots properly, but my Linux applications doesn't work. I did a full buildworld, installworld installed the new kernel, and updated /etc with mergemaster ... Anyone seen anything like this ? /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk - CCIE #5456 Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 9:31:24 2000 Delivered-To: freebsd-current@freebsd.org Received: from postfix3.free.fr (postfix3.free.fr [212.27.32.22]) by hub.freebsd.org (Postfix) with ESMTP id D3D6837B5BA for ; Sun, 14 May 2000 09:31:20 -0700 (PDT) (envelope-from jaco@titine.fr.eu.org) Received: from titine.fr.eu.org (massy-2-11-194.dial.proxad.net [213.228.11.194]) by postfix3.free.fr (Postfix) with ESMTP id 0D93386C58; Sun, 14 May 2000 18:31:19 +0200 (CEST) Received: by titine.fr.eu.org (Postfix, from userid 1000) id 9376A1498D; Sun, 14 May 2000 18:29:59 +0200 (CEST) X-Attribution: Jaco To: Jesper Skriver Cc: current@FreeBSD.ORG Subject: Re: Linux emulation causes a halt References: <20000514181733.A7695@skriver.dk> From: Eric Jacoboni Date: 14 May 2000 18:29:59 +0200 In-Reply-To: Jesper Skriver's message of "Sun, 14 May 2000 18:17:33 +0200" Message-ID: <87hfc15c3c.fsf@titine.fr.eu.org> Lines: 18 User-Agent: Gnus/5.0806 (Gnus v5.8.6) Emacs/20.6 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "Jesper" =3D=3D Jesper Skriver writes: Jesper> Just upgraded my laptop from a late march -current to Jesper> -current as of a couple of hours ago.=20 Jesper> When it loads the "Linux binary compatibility" it Jesper> shutdown, if apm is enabled it looks like when one do a Jesper> 'shutdown -p now'.=20 Jesper> Anyone seen anything like this ? Have you read /usr/src/UPDATING ? --=20 --------------------------------------------------------- =C9ric Jacoboni =AB No sport, cigars! =BB (W. Churchill) --------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 9:41:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id 8DBC337B9AE for ; Sun, 14 May 2000 09:41:46 -0700 (PDT) (envelope-from jesper@skriver.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id E202C3E86; Sun, 14 May 2000 18:41:45 +0200 (CEST) Date: Sun, 14 May 2000 18:41:45 +0200 From: Jesper Skriver To: Eric Jacoboni Cc: current@FreeBSD.ORG Subject: Re: Linux emulation causes a halt Message-ID: <20000514184145.A7795@skriver.dk> References: <20000514181733.A7695@skriver.dk> <87hfc15c3c.fsf@titine.fr.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <87hfc15c3c.fsf@titine.fr.eu.org>; from jaco@titine.fr.eu.org on Sun, May 14, 2000 at 06:29:59PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 06:29:59PM +0200, Eric Jacoboni wrote: > >>>>> "Jesper" == Jesper Skriver writes: > > Jesper> Just upgraded my laptop from a late march -current to > Jesper> -current as of a couple of hours ago. > > Jesper> When it loads the "Linux binary compatibility" it > Jesper> shutdown, if apm is enabled it looks like when one do a > Jesper> 'shutdown -p now'. > > > Jesper> Anyone seen anything like this ? > > Have you read /usr/src/UPDATING ? No, I thought I could remember, but it works now, I think if we could give a warning instead of a just shutting down, it would be nice. Next time, I will read UPDATING ... /Jesper To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 10: 7:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id DF39D37BDE9; Sun, 14 May 2000 10:07:27 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA72170; Sun, 14 May 2000 11:07:26 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA32339; Sun, 14 May 2000 11:06:50 -0600 (MDT) Message-Id: <200005141706.LAA32339@harmony.village.org> To: Greg Lehey Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Cc: "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers In-reply-to: Your message of "Sun, 14 May 2000 10:19:21 +0930." <20000514101921.F847@freebie.lemis.com> References: <20000514101921.F847@freebie.lemis.com> <200005121535.XAA47762@bloop.craftncomp.com> Date: Sun, 14 May 2000 11:06:50 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000514101921.F847@freebie.lemis.com> Greg Lehey writes: : > Maybe the comitters ought to take an idea from many software companies and : > contribute $5 to the beer fund every time they break the build. Have it : > all come due at the next BSDcon to fund a committer beer bash. :-) : : I'd go along with that. What do the other committers think? I think that we should make it $5.00 the first time. $10 the second time. $20 the third time, etc. BTW, if the committer fixes this before N amount of time has passwed (say an hour or two), then there should be no fine. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 11: 8:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 4DB1137B7F1 for ; Sun, 14 May 2000 11:08:11 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id LAA06752; Sun, 14 May 2000 11:08:05 -0700 (PDT) (envelope-from dillon) Date: Sun, 14 May 2000 11:08:05 -0700 (PDT) From: Matthew Dillon Message-Id: <200005141808.LAA06752@apollo.backplane.com> To: "Jordan K. Hubbard" Cc: freebsd-current@FreeBSD.ORG Subject: Proposed patch for PR misc/18466 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a general bounded-buffer patch for sysinstall plus it fixes PR misc/18466 (limited 'device name' size screws up FTP installs). It does not fix all the potential buffer overflows -- there are still a lot of strcpy's, but it gets half way there with the introduction and use of safe_asprintf(). My recommendation is that (eventually) the entire program use asprintf rather then statically-bounded buffers to hold things. I don't have time to test this extensively so if the maintainer of sysinstall wants it (I believe that's you, Jordan!), you'll need to review it and perhaps test it a little then give me the commit goahead. Note that simply increasing the DEV_NAME_MAX as a quick solution is not safe, there are a couple of places where an unbounded sprintf() was being used with the device name as an argument. -Matt Index: anonFTP.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/anonFTP.c,v retrieving revision 1.29 diff -u -r1.29 anonFTP.c --- anonFTP.c 2000/01/25 19:16:31 1.29 +++ anonFTP.c 2000/05/14 17:44:11 @@ -168,7 +168,7 @@ return DITEM_SUCCESS; /* succeeds if already exists */ } - sprintf(pwline, "%s:*:%s:%d::0:0:%s:%s:/nonexistent\n", FTP_NAME, tconf.uid, gid, tconf.comment, tconf.homedir); + snprintf(pwline, sizeof(pwline), "%s:*:%s:%d::0:0:%s:%s:/nonexistent\n", FTP_NAME, tconf.uid, gid, tconf.comment, tconf.homedir); fptr = fopen(_PATH_MASTERPASSWD,"a"); if (! fptr) { @@ -207,7 +207,7 @@ ANONFTP_DIALOG_HEIGHT - 11, ANONFTP_DIALOG_WIDTH - 17, dialog_attr, border_attr); wattrset(ds_win, dialog_attr); - sprintf(title, " Path Configuration "); + snprintf(title, sizeof(title), " Path Configuration "); mvwaddstr(ds_win, ANONFTP_DIALOG_Y + 7, ANONFTP_DIALOG_X + 22, title); /** Initialize the config Data Structure **/ @@ -217,7 +217,7 @@ SAFE_STRCPY(tconf.upload, FTP_UPLOAD); SAFE_STRCPY(tconf.comment, FTP_COMMENT); SAFE_STRCPY(tconf.homedir, FTP_HOMEDIR); - sprintf(tconf.uid, "%d", FTP_UID); + snprintf(tconf.uid, sizeof(tconf.uid), "%d", FTP_UID); /* Some more initialisation before we go into the main input loop */ obj = initLayoutDialog(ds_win, layout, ANONFTP_DIALOG_X, ANONFTP_DIALOG_Y, &max); @@ -250,7 +250,7 @@ /*** Use defaults for any invalid values ***/ if (atoi(tconf.uid) <= 0) - sprintf(tconf.uid, "%d", FTP_UID); + snprintf(tconf.uid, sizeof(tconf.uid), "%d", FTP_UID); if (!tconf.group[0]) SAFE_STRCPY(tconf.group, FTP_GROUP); @@ -296,7 +296,7 @@ if (!msgYesNo("Create a welcome message file for anonymous FTP users?")) { char cmd[256]; vsystem("echo Your welcome message here. > %s/etc/%s", tconf.homedir, MOTD_FILE); - sprintf(cmd, "%s %s/etc/%s", variable_get(VAR_EDITOR), tconf.homedir, MOTD_FILE); + snprintf(cmd, sizeof(cmd), "%s %s/etc/%s", variable_get(VAR_EDITOR), tconf.homedir, MOTD_FILE); if (!systemExecute(cmd)) i = DITEM_SUCCESS; else Index: config.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/config.c,v retrieving revision 1.156.2.1 diff -u -r1.156.2.1 config.c --- config.c 2000/03/30 08:12:02 1.156.2.1 +++ config.c 2000/05/14 17:46:38 @@ -238,11 +238,11 @@ for (i = 0; i < cnt; i++) { char cdname[10]; - sprintf(cdname, "/cdrom%s", i ? itoa(i) : ""); + snprintf(cdname, sizeof(cdname), "/cdrom%s", i ? itoa(i) : ""); if (Mkdir(cdname)) msgConfirm("Unable to make mount point for: %s", cdname); else - fprintf(fstab, "/dev/%s\t\t%s\tcd9660\tro,noauto\t0\t0\n", devs[i]->name, cdname); + fprintf(fstab, "/dev/%s\t\t%s\tcd9660\tro,noauto\t0\t0\n", devs[i]->pname, cdname); } /* And finally, a /proc. */ @@ -364,6 +364,8 @@ } } +#define URMSIZE 21 + /* Set up the make.conf file */ void configMake_conf(char *config) @@ -373,8 +375,8 @@ FILE *fp; if (!file_readable(config)) { - char *line = malloc(21); - sprintf(line, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); + char *line = malloc(URMSIZE); + snprintf(line, URMSIZE, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); lines[0] = line; nlines = 1; } @@ -386,7 +388,7 @@ if (!strncmp(lines[i], "USA_RESIDENT", 12)) { free(lines[i]); lines[i] = malloc(21); /* big enough */ - sprintf(lines[i], "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); + snprintf(lines[i], URMSIZE, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); } } } @@ -865,7 +867,7 @@ vsystem("echo '#' >> /etc/exports"); vsystem("echo '# You should replace these lines with your actual exported filesystems.' >> /etc/exports"); vsystem("echo >> /etc/exports"); - sprintf(cmd, "%s /etc/exports", variable_get(VAR_EDITOR)); + snprintf(cmd, sizeof(cmd), "%s /etc/exports", variable_get(VAR_EDITOR)); dialog_clear(); systemExecute(cmd); } Index: devices.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/devices.c,v retrieving revision 1.117 diff -u -r1.117 devices.c --- devices.c 2000/03/08 18:14:19 1.117 +++ devices.c 2000/05/14 17:49:02 @@ -132,8 +132,9 @@ dev = safe_malloc(sizeof(Device)); bzero(dev, sizeof(Device)); - if (name) - SAFE_STRCPY(dev->name, name); + if (name == NULL) + name = ""; + safe_asprintf(&dev->pname, "%s", name); return dev; } @@ -408,13 +409,11 @@ close(fd); cp = device_names[i].description; /* Serial devices get a slip and ppp device each, if supported */ - newdesc = safe_malloc(strlen(cp) + 40); - sprintf(newdesc, cp, "SLIP interface", try, j + 1); + safe_asprintf(&newdesc, cp, "SLIP interface", try, j + 1); deviceRegister("sl0", newdesc, strdup(try), DEVICE_TYPE_NETWORK, TRUE, mediaInitNetwork, NULL, mediaShutdownNetwork, NULL); msgDebug("Add mapping for %s to sl0\n", try); - newdesc = safe_malloc(strlen(cp) + 50); - sprintf(newdesc, cp, "PPP interface", try, j + 1); + safe_asprintf(&newdesc, cp, "PPP interface", try, j + 1); deviceRegister("ppp0", newdesc, strdup(try), DEVICE_TYPE_NETWORK, TRUE, mediaInitNetwork, NULL, mediaShutdownNetwork, NULL); if (isDebug()) @@ -440,8 +439,8 @@ if (!d) msgFatal("Unable to open disk %s", names[i]); - deviceRegister(names[i], names[i], d->name, DEVICE_TYPE_DISK, FALSE, - dummyInit, dummyGet, dummyShutdown, d); + deviceRegister(names[i], names[i], d->name, DEVICE_TYPE_DISK, + FALSE, dummyInit, dummyGet, dummyShutdown, d); if (isDebug()) msgDebug("Found a disk device named %s\n", names[i]); @@ -453,11 +452,14 @@ /* Got one! */ snprintf(devname, sizeof devname, "/dev/%s", c1->name); - dev = deviceRegister(c1->name, c1->name, strdup(devname), DEVICE_TYPE_DOS, TRUE, - mediaInitDOS, mediaGetDOS, mediaShutdownDOS, NULL); + dev = deviceRegister(c1->name, c1->name, strdup(devname), + DEVICE_TYPE_DOS, TRUE, mediaInitDOS, mediaGetDOS, + mediaShutdownDOS, NULL); dev->private = c1; - if (isDebug()) - msgDebug("Found a DOS partition %s on drive %s\n", c1->name, d->name); + if (isDebug()) { + msgDebug("Found a DOS partition %s on drive %s\n", + c1->name, d->name); + } } } } @@ -487,7 +489,7 @@ j = 0; for (i = 0; i < numDevs; i++) { - if ((!name || !strcmp(Devices[i]->name, name)) + if ((!name || !strcmp(Devices[i]->pname, name)) && (class == DEVICE_TYPE_ANY || class == Devices[i]->type)) found[j++] = Devices[i]; } @@ -503,7 +505,7 @@ j = 0; for (i = 0; i < numDevs; i++) { - if ((!name || !strcmp(Devices[i]->name, name)) && + if ((!name || !strcmp(Devices[i]->pname, name)) && (!desc || !strcmp(Devices[i]->description, desc)) && (class == DEVICE_TYPE_ANY || class == Devices[i]->type)) found[j++] = Devices[i]; @@ -543,7 +545,7 @@ tmp = (DMenu *)safe_malloc(sizeof(DMenu) + (sizeof(dialogMenuItem) * (numdevs + 1))); bcopy(menu, tmp, sizeof(DMenu)); for (i = 0; devs[i]; i++) { - tmp->items[i].prompt = devs[i]->name; + tmp->items[i].prompt = devs[i]->pname; for (j = 0; j < numDevs; j++) { if (devs[i] == Devices[j]) { tmp->items[i].title = Devices[j]->description; Index: disks.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/disks.c,v retrieving revision 1.118 diff -u -r1.118 disks.c --- disks.c 2000/02/29 10:40:57 1.118 +++ disks.c 2000/05/14 17:49:17 @@ -146,7 +146,7 @@ cp = variable_get(VAR_BOOTMGR); if (!cp) { /* Figure out what kind of MBR the user wants */ - sprintf(str, "Install Boot Manager for drive %s?", dname); + snprintf(str, sizeof(str), "Install Boot Manager for drive %s?", dname); MenuMBRType.title = str; i = dmenuOpenSimple(&MenuMBRType, FALSE); } Index: dist.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/dist.c,v retrieving revision 1.175.2.1 diff -u -r1.175.2.1 dist.c --- dist.c 2000/03/18 08:39:45 1.175.2.1 +++ dist.c 2000/05/14 17:57:59 @@ -831,7 +831,7 @@ else if (me[i].my_bit != DIST_LOCAL) { status = msgYesNo("Unable to transfer the %s distribution from\n%s.\n\n" "Do you want to try to retrieve it again?", - me[i].my_name, mediaDevice->name); + me[i].my_name, mediaDevice->pname); if (!status) --i; } @@ -849,7 +849,7 @@ } static void -printSelected(char *buf, int selected, Distribution *me, int *col) +printSelected(char *buf, int bufSize, int selected, Distribution *me, int *col) { int i; @@ -869,10 +869,10 @@ *col = 0; strcat(buf, "\n"); } - sprintf(&buf[strlen(buf)], " %s", me[i].my_name); + snprintf(&buf[strlen(buf)], bufSize - strlen(buf), " %s", me[i].my_name); /* Recurse if have a sub-distribution */ if (me[i].my_dist) - printSelected(buf, *(me[i].my_mask), me[i].my_dist, col); + printSelected(buf, bufSize, *(me[i].my_mask), me[i].my_dist, col); } } @@ -934,7 +934,7 @@ buf[0] = '\0'; dialog_clear_norefresh(); - printSelected(buf, Dists, DistTable, &col); + printSelected(buf, sizeof(buf), Dists, DistTable, &col); dialog_clear_norefresh(); if (col) { msgConfirm("Couldn't extract the following distributions. This may\n" Index: doc.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/doc.c,v retrieving revision 1.29 diff -u -r1.29 doc.c --- doc.c 2000/02/26 12:35:00 1.29 +++ doc.c 2000/05/14 17:56:30 @@ -113,7 +113,7 @@ where = strcpy(target, "http://www.freebsd.org/handbook"); } if (where) { - sprintf(tmp, "%s %s", browser, target); + snprintf(tmp, sizeof(tmp), "%s %s", browser, target); systemExecute(tmp); return DITEM_SUCCESS; } Index: floppy.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/floppy.c,v retrieving revision 1.34 diff -u -r1.34 floppy.c --- floppy.c 1999/08/28 01:34:12 1.34 +++ floppy.c 2000/05/14 17:28:52 @@ -95,7 +95,7 @@ if (mount("msdos", mp, MNT_RDONLY, (caddr_t)&dosargs) == -1) { if (mount("ufs", mp, MNT_RDONLY, (caddr_t)&u_args) == -1) { msgConfirm("Error mounting floppy %s (%s) on %s : %s", - dev->name, dev->devname, mp, strerror(errno)); + dev->pname, dev->devname, mp, strerror(errno)); return FALSE; } } Index: ftp.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/ftp.c,v retrieving revision 1.37 diff -u -r1.37 ftp.c --- ftp.c 1999/08/28 01:34:13 1.37 +++ ftp.c 2000/05/14 17:50:45 @@ -112,14 +112,14 @@ if (variable_get(VAR_FTP_PASS)) SAFE_STRCPY(password, variable_get(VAR_FTP_PASS)); else if (RunningAsInit) - sprintf(password, "installer@%s", variable_get(VAR_HOSTNAME)); + snprintf(password, sizeof(password), "installer@%s", variable_get(VAR_HOSTNAME)); else { struct passwd *pw; char *user; pw = getpwuid(getuid()); user = pw ? pw->pw_name : "ftp"; - sprintf(password, "%s@%s", user, variable_get(VAR_HOSTNAME)); + snprintf(password, sizeof(password), "%s@%s", user, variable_get(VAR_HOSTNAME)); } msgNotify("Logging in to %s@%s..", login_name, hostname); if ((OpenConn = ftpLogin(hostname, login_name, password, FtpPort, isDebug(), &code)) == NULL) { @@ -216,17 +216,17 @@ /* Try some alternatives */ switch (nretries++) { case 1: - sprintf(buf, "releases/%s", file); + snprintf(buf, sizeof(buf), "releases/%s", file); try = buf; break; case 2: - sprintf(buf, "%s/%s", variable_get(VAR_RELNAME), file); + snprintf(buf, sizeof(buf), "%s/%s", variable_get(VAR_RELNAME), file); try = buf; break; case 3: - sprintf(buf, "%s/releases/%s", variable_get(VAR_RELNAME), file); + snprintf(buf, sizeof(buf), "%s/releases/%s", variable_get(VAR_RELNAME), file); try = buf; break; Index: http.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/http.c,v retrieving revision 1.2 diff -u -r1.2 http.c --- http.c 2000/01/25 05:56:48 1.2 +++ http.c 2000/05/14 17:50:57 @@ -50,7 +50,7 @@ return FALSE; } - sprintf(req,"GET / HTTP/1.0\r\n\r\n"); + snprintf(req, sizeof(req), "GET / HTTP/1.0\r\n\r\n"); write(s,req,strlen(req)); /* * scan the headers of the response @@ -119,7 +119,7 @@ return NULL; } - sprintf(req,"GET %s/%s/%s%s HTTP/1.0\r\n\r\n", + snprintf(req, sizeof(req), "GET %s/%s/%s%s HTTP/1.0\r\n\r\n", variable_get(VAR_FTP_PATH), variable_get(VAR_RELNAME), file, variable_get(VAR_HTTP_FTP_MODE)); Index: install.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/install.c,v retrieving revision 1.268.2.3 diff -u -r1.268.2.3 install.c --- install.c 2000/03/18 20:13:47 1.268.2.3 +++ install.c 2000/05/14 17:51:28 @@ -535,9 +535,9 @@ if (!msgYesNo("Would you like to configure any Ethernet or SLIP/PPP network devices?")) { Device *tmp = tcpDeviceSelect(); - if (tmp && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name)) + if (tmp && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->pname)) if (!tmp->init(tmp)) - msgConfirm("Initialization of %s device failed.", tmp->name); + msgConfirm("Initialization of %s device failed.", tmp->pname); } dialog_clear_norefresh(); } @@ -907,7 +907,7 @@ command_clear(); if (swapdev && RunningAsInit) { /* As the very first thing, try to get ourselves some swap space */ - sprintf(dname, "/dev/%s", swapdev->name); + snprintf(dname, sizeof(dname), "/dev/%s", swapdev->name); if (!Fake && (!MakeDevChunk(swapdev, "/dev") || !file_readable(dname))) { msgConfirm("Unable to make device node for %s in /dev!\n" "The creation of filesystems will be aborted.", dname); @@ -929,7 +929,7 @@ if (rootdev && RunningAsInit) { /* Next, create and/or mount the root device */ - sprintf(dname, "/dev/r%s", rootdev->name); + snprintf(dname, sizeof(dname), "/dev/r%s", rootdev->name); if (!Fake && (!MakeDevChunk(rootdev, "/dev") || !file_readable(dname))) { msgConfirm("Unable to make device node for %s in /dev!\n" "The creation of filesystems will be aborted.", dname); @@ -964,7 +964,7 @@ } /* Switch to block device */ - sprintf(dname, "/dev/%s", rootdev->name); + snprintf(dname, sizeof(dname), "/dev/%s", rootdev->name); if (Mount("/mnt", dname)) { msgConfirm("Unable to mount the root file system on %s! Giving up.", dname); return DITEM_FAILURE | DITEM_RESTORE; @@ -1012,7 +1012,7 @@ if (c2 == swapdev) continue; - sprintf(fname, "%s/dev/%s", RunningAsInit ? "/mnt" : "", c2->name); + snprintf(fname, sizeof(fname), "%s/dev/%s", RunningAsInit ? "/mnt" : "", c2->name); i = (Fake || swapon(fname)); if (!i) { dialog_clear_norefresh(); @@ -1027,7 +1027,7 @@ else if (c1->type == fat && c1->private_data && (root->newfs || upgrade)) { char name[FILENAME_MAX]; - sprintf(name, "%s/%s", RunningAsInit ? "/mnt" : "", ((PartInfo *)c1->private_data)->mountpoint); + snprintf(name, sizeof(name), "%s/%s", RunningAsInit ? "/mnt" : "", ((PartInfo *)c1->private_data)->mountpoint); Mkdir(name); } } Index: label.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/label.c,v retrieving revision 1.98 diff -u -r1.98 label.c --- label.c 2000/02/29 10:40:59 1.98 +++ label.c 2000/05/14 17:51:49 @@ -899,7 +899,7 @@ char osize[80]; u_long flags = 0; - sprintf(osize, "%d", sz); + snprintf(osize, sizeof(osize), "%d", sz); val = msgGetInput(osize, "Please specify the partition size in blocks or append a trailing G for\n" "gigabytes, M for megabytes, or C for cylinders.\n" @@ -1095,7 +1095,7 @@ if (!devs[i]->enabled) continue; - else if ((d = Open_Disk(devs[i]->name)) != NULL) { + else if ((d = Open_Disk(devs[i]->pname)) != NULL) { Free_Disk(devs[i]->private); devs[i]->private = d; diskPartition(devs[i]); @@ -1160,7 +1160,7 @@ default: beep(); - sprintf(_msg, "Invalid key %d - Type F1 or ? for help", key); + snprintf(_msg, sizeof(_msg), "Invalid key %d - Type F1 or ? for help", key); msg = _msg; break; } Index: media.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/media.c,v retrieving revision 1.107 diff -u -r1.107 media.c --- media.c 2000/01/25 05:56:49 1.107 +++ media.c 2000/05/14 17:52:24 @@ -351,7 +351,12 @@ variable_unset(VAR_FTP_PATH); return DITEM_FAILURE; } - SAFE_STRCPY(ftpDevice.name, cp); + if (ftpDevice.pname) { + free(ftpDevice.pname); + ftpDevice.pname = NULL; + } + safe_asprintf(&ftpDevice.pname, "%s", cp); + SAFE_STRCPY(hostname, cp + 6); if (!networkDev || msgYesNo("You've already done the network configuration once,\n" @@ -489,10 +494,14 @@ return DITEM_FAILURE; /* If they gave us a CDROM or something, try and pick a better name */ + if (ufsDevice.pname) { + free(ufsDevice.pname); + ufsDevice.pname = NULL; + } if (statfs(cp, &st)) - strcpy(ufsDevice.name, "ufs"); + safe_asprintf(&ufsDevice.pname, "ufs"); else - strcpy(ufsDevice.name, st.f_fstypename); + safe_asprintf(&ufsDevice.pname, "%s", st.f_fstypename); ufsDevice.type = DEVICE_TYPE_UFS; ufsDevice.init = dummyInit; @@ -522,8 +531,12 @@ msgConfirm("Invalid NFS path specification. Must be of the form:\n" "host:/full/pathname/to/FreeBSD/distdir"); return DITEM_FAILURE; + } + if (nfsDevice.pname) { + free(nfsDevice.pname); + nfsDevice.pname = NULL; } - SAFE_STRCPY(nfsDevice.name, hostname); + safe_asprintf(&nfsDevice.pname, "%s", hostname); *idx = '\0'; if (!networkDev || msgYesNo("You've already done the network configuration once,\n" "would you like to skip over it now?") != 0) { Index: misc.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/misc.c,v retrieving revision 1.40 diff -u -r1.40 misc.c --- misc.c 1999/11/27 14:33:07 1.40 +++ misc.c 2000/05/14 17:55:41 @@ -34,6 +34,7 @@ #include "sysinstall.h" #include #include +#include #include #include #include @@ -209,6 +210,17 @@ if (!ptr) msgFatal("Out of memory!"); return ptr; +} + +void +safe_asprintf(char **pptr, const char *ctl, ...) +{ + va_list va; + + va_start(va, ctl); + if (vasprintf(pptr, ctl, va) < 0) + msgFatal("Out of memory!"); + va_end(va); } /* Create a path biased from the VAR_INSTALL_ROOT variable (if not /) */ Index: network.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/network.c,v retrieving revision 1.46 diff -u -r1.46 network.c --- network.c 1999/12/17 02:46:04 1.46 +++ network.c 2000/05/14 17:36:20 @@ -61,7 +61,7 @@ return TRUE; if (isDebug()) - msgDebug("Init routine called for network device %s.\n", dev->name); + msgDebug("Init routine called for network device %s.\n", dev->pname); if (!file_readable("/etc/resolv.conf")) { if (DITEM_STATUS(configResolv(NULL)) == DITEM_FAILURE) { @@ -79,7 +79,7 @@ kill(pppPID, SIGTERM); pppPID = 0; } - if (!strncmp("ppp", dev->name, 3)) { /* PPP? */ + if (!strncmp("ppp", dev->pname, 3)) { /* PPP? */ if (!(pppPID = startPPP(dev))) { msgConfirm("Unable to start PPP! This installation method cannot be used."); return FALSE; @@ -87,7 +87,7 @@ networkInitialized = TRUE; return TRUE; } - else if (!strncmp("sl", dev->name, 2)) { /* SLIP? */ + else if (!strncmp("sl", dev->pname, 2)) { /* SLIP? */ char *val; char attach[256]; @@ -123,20 +123,20 @@ restorescr(w); } - snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name); + snprintf(ifconfig, sizeof(ifconfig), "%s%s", VAR_IFCONFIG, dev->pname); cp = variable_get(ifconfig); if (!cp) { msgConfirm("The %s device is not configured. You will need to do so\n" - "in the Networking configuration menu before proceeding.", dev->name); + "in the Networking configuration menu before proceeding.", dev->pname); return FALSE; } else if (!strcmp(cp, "DHCP")) goto bail; - msgDebug("ifconfig %s %s", dev->name, cp); - i = vsystem("ifconfig %s %s", dev->name, cp); + msgDebug("ifconfig %s %s", dev->pname, cp); + i = vsystem("ifconfig %s %s", dev->pname, cp); if (i) { msgConfirm("Unable to configure the %s interface!\n" - "This installation method cannot be used.", dev->name); + "This installation method cannot be used.", dev->pname); return FALSE; } @@ -164,20 +164,20 @@ if (!RunningAsInit || !networkInitialized) return; - msgDebug("Shutdown called for network device %s\n", dev->name); + msgDebug("Shutdown called for network device %s\n", dev->pname); /* Not a serial device? */ - if (strncmp("sl", dev->name, 2) && strncmp("ppp", dev->name, 3)) { + if (strncmp("sl", dev->pname, 2) && strncmp("ppp", dev->pname, 3)) { int i; char ifconfig[255]; - snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name); + snprintf(ifconfig, sizeof(ifconfig), "%s%s", VAR_IFCONFIG, dev->pname); cp = variable_get(ifconfig); if (!cp) return; - msgDebug("ifconfig %s down", dev->name); - i = vsystem("ifconfig %s down", dev->name); + msgDebug("ifconfig %s down", dev->pname); + i = vsystem("ifconfig %s down", dev->pname); if (i) - msgConfirm("Warning: Unable to down the %s interface properly", dev->name); + msgConfirm("Warning: Unable to down the %s interface properly", dev->pname); cp = variable_get(VAR_GATEWAY); if (cp) { msgDebug("Deleting default route."); Index: nfs.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/nfs.c,v retrieving revision 1.21 diff -u -r1.21 nfs.c --- nfs.c 1999/12/17 02:46:04 1.21 +++ nfs.c 2000/05/14 17:36:36 @@ -59,11 +59,11 @@ if (Mkdir(mountpoint)) return FALSE; - msgNotify("Mounting %s over NFS on %s", dev->name, mountpoint); + msgNotify("Mounting %s over NFS on %s", dev->pname, mountpoint); if (vsystem("mount_nfs %s %s %s %s", variable_get(VAR_SLOW_ETHER) ? "-r 1024 -w 1024" : "", - variable_get(VAR_NFS_SECURE) ? "-P" : "", dev->name, mountpoint)) { - msgConfirm("Error mounting %s on %s: %s.", dev->name, mountpoint, strerror(errno)); + variable_get(VAR_NFS_SECURE) ? "-P" : "", dev->pname, mountpoint)) { + msgConfirm("Error mounting %s on %s: %s.", dev->pname, mountpoint, strerror(errno)); if (netDevice) netDevice->shutdown(netDevice); restorescr(w); @@ -71,7 +71,7 @@ } NFSMounted = TRUE; if (isDebug()) - msgDebug("Mounted NFS device %s onto %s\n", dev->name, mountpoint); + msgDebug("Mounted NFS device %s onto %s\n", dev->pname, mountpoint); restorescr(w); return TRUE; } Index: options.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/options.c,v retrieving revision 1.70 diff -u -r1.70 options.c --- options.c 1999/12/19 20:41:06 1.70 +++ options.c 2000/05/14 17:52:30 @@ -165,7 +165,7 @@ return (char *)opt.data; case OPT_IS_INT: - sprintf(ival, "%d", (int)opt.data); + snprintf(ival, sizeof(ival), "%d", (int)opt.data); return ival; case OPT_IS_FUNC: Index: package.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/package.c,v retrieving revision 1.90.2.1 diff -u -r1.90.2.1 package.c --- package.c 2000/03/18 08:45:35 1.90.2.1 +++ package.c 2000/05/14 17:52:48 @@ -144,12 +144,12 @@ if (!index(name, '/')) { if (!strpbrk(name, "-_")) - sprintf(path, "packages/Latest/%s.tgz", name); + snprintf(path, sizeof(path), "packages/Latest/%s.tgz", name); else - sprintf(path, "packages/All/%s%s", name, strstr(name, ".tgz") ? "" : ".tgz"); + snprintf(path, sizeof(path), "packages/All/%s%s", name, strstr(name, ".tgz") ? "" : ".tgz"); } else - sprintf(path, "%s%s", name, strstr(name, ".tgz") ? "" : ".tgz"); + snprintf(path, sizeof(path), "%s%s", name, strstr(name, ".tgz") ? "" : ".tgz"); /* We have a path, call the device strategy routine to get the file */ fp = dev->get(dev, path, TRUE); @@ -162,7 +162,7 @@ signal(SIGPIPE, catch_pipe); dialog_clear_norefresh(); - msgNotify("Adding %s%s\nfrom %s", path, depended ? " (as a dependency)" : "", dev->name); + msgNotify("Adding %s%s\nfrom %s", path, depended ? " (as a dependency)" : "", dev->pname); pipe(pfd); pid = fork(); if (!pid) { Index: pccard.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/pccard.c,v retrieving revision 1.10 diff -u -r1.10 pccard.c --- pccard.c 2000/01/14 19:05:55 1.10 +++ pccard.c 2000/05/14 17:52:56 @@ -79,7 +79,7 @@ return; } - sprintf(card_device, CARD_DEVICE, 0); + snprintf(card_device, sizeof(card_device), CARD_DEVICE, 0); if ((fd = open(card_device, O_RDWR)) < 0) { msgDebug("Can't open PC-card controller %s.\n", Index: sysinstall.h =================================================================== RCS file: /home/ncvs/src/release/sysinstall/sysinstall.h,v retrieving revision 1.186 diff -u -r1.186 sysinstall.h --- sysinstall.h 2000/03/12 03:57:26 1.186 +++ sysinstall.h 2000/05/14 17:56:04 @@ -55,7 +55,6 @@ /*** Defines ***/ /* device limits */ -#define DEV_NAME_MAX 64 /* The maximum length of a device name */ #define DEV_MAX 100 /* The maximum number of devices we'll deal with */ #define INTERFACE_MAX 50 /* Maximum number of network interfaces we'll deal with */ #define IO_ERROR -2 /* Status code for I/O error rather than normal EOF */ @@ -250,7 +249,7 @@ /* A "device" from sysinstall's point of view */ typedef struct _device { - char name[DEV_NAME_MAX]; + char *pname; char *description; char *devname; DeviceType type; @@ -640,6 +639,7 @@ extern void safe_free(void *ptr); extern void *safe_malloc(size_t size); extern void *safe_realloc(void *orig, size_t size); +extern void safe_asprintf(char **pptr, const char *ctl, ...); extern dialogMenuItem *item_add(dialogMenuItem *list, char *prompt, char *title, int (*checked)(dialogMenuItem *self), int (*fire)(dialogMenuItem *self), Index: tape.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/tape.c,v retrieving revision 1.22 diff -u -r1.22 tape.c --- tape.c 1999/12/17 02:46:04 1.22 +++ tape.c 2000/05/14 17:53:07 @@ -70,7 +70,7 @@ if (!tapeInitted) { WINDOW *w = savescr(); - msgDebug("Tape init routine called for %s (private dir is %s)\n", dev->name, dev->private); + msgDebug("Tape init routine called for %s (private dir is %s)\n", dev->pname, dev->private); Mkdir(dev->private); if (chdir(dev->private)) { msgConfirm("Unable to CD to %s before extracting tape!\n" @@ -79,7 +79,7 @@ } /* We know the tape is already in the drive, so go for it */ msgNotify("First extracting distributions from %s...", dev->description); - if (!strcmp(dev->name, "rft0")) + if (!strcmp(dev->pname, "rft0")) i = vsystem("ft | cpio -idum %s --block-size %s", cpioVerbosity(), mediaTapeBlocksize()); else i = vsystem("cpio -idum %s --block-size %s -I %s", cpioVerbosity(), mediaTapeBlocksize(), dev->devname); @@ -96,13 +96,13 @@ restorescr(w); } - sprintf(buf, "%s/%s", (char *)dev->private, file); + snprintf(buf, sizeof(buf), "%s/%s", (char *)dev->private, file); if (isDebug()) msgDebug("Request for %s from tape (looking in %s)\n", file, buf); if (file_readable(buf)) fp = fopen(buf, "r"); else { - sprintf(buf, "%s/releases/%s", (char *)dev->private, file); + snprintf(buf, sizeof(buf), "%s/releases/%s", (char *)dev->private, file); fp = fopen(buf, "r"); } /* Nuke the files behind us to save space */ Index: tcpip.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/tcpip.c,v retrieving revision 1.103 diff -u -r1.103 tcpip.c --- tcpip.c 2000/02/20 21:58:10 1.103 +++ tcpip.c 2000/05/14 17:53:32 @@ -157,7 +157,7 @@ int i, j; /* Bah, now we have to kludge getting the information from ifconfig */ - snprintf(cmd, sizeof cmd, "ifconfig %s", devp->name); + snprintf(cmd, sizeof cmd, "ifconfig %s", devp->pname); ifp = popen(cmd, "r"); if (ifp) { j = fread(data, 1, sizeof(data), ifp); @@ -224,7 +224,7 @@ Mkdir("/var/run"); Mkdir("/tmp"); msgNotify("Scanning for DHCP servers..."); - if (0 == vsystem("dhclient -1 %s", devp->name)) { + if (0 == vsystem("dhclient -1 %s", devp->pname)) { dhcpGetInfo(devp); use_dhcp = TRUE; } @@ -240,7 +240,7 @@ if (!ipaddr[0]) { if ((cp = variable_get(VAR_IPADDR)) != NULL) SAFE_STRCPY(ipaddr, cp); - else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_IPADDR))) != NULL) + else if ((cp = variable_get(string_concat3(devp->pname, "_", VAR_IPADDR))) != NULL) SAFE_STRCPY(ipaddr, cp); } @@ -248,7 +248,7 @@ if (!netmask[0]) { if ((cp = variable_get(VAR_NETMASK)) != NULL) SAFE_STRCPY(netmask, cp); - else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_NETMASK))) != NULL) + else if ((cp = variable_get(string_concat3(devp->pname, "_", VAR_NETMASK))) != NULL) SAFE_STRCPY(netmask, cp); } @@ -256,7 +256,7 @@ if (!extras[0]) { if ((cp = variable_get(VAR_EXTRAS)) != NULL) SAFE_STRCPY(extras, cp); - else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_EXTRAS))) != NULL) + else if ((cp = variable_get(string_concat3(devp->pname, "_", VAR_EXTRAS))) != NULL) SAFE_STRCPY(extras, cp); } } @@ -310,7 +310,7 @@ draw_box(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 8, TCP_DIALOG_HEIGHT - 13, TCP_DIALOG_WIDTH - 17, dialog_attr, border_attr); wattrset(ds_win, dialog_attr); - sprintf(title, " Configuration for Interface %s ", devp->name); + snprintf(title, sizeof(title), " Configuration for Interface %s ", devp->pname); mvwaddstr(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 14, title); /* Some more initialisation before we go into the main input loop */ @@ -383,11 +383,11 @@ SAFE_STRCPY(di->extras, extras); di->use_dhcp = use_dhcp; - sprintf(ifn, "%s%s", VAR_IFCONFIG, devp->name); + snprintf(ifn, sizeof(ifn), "%s%s", VAR_IFCONFIG, devp->pname); if (use_dhcp) - sprintf(temp, "DHCP"); + snprintf(temp, sizeof(temp), "DHCP"); else - sprintf(temp, "inet %s %s netmask %s", ipaddr, extras, netmask); + snprintf(temp, sizeof(temp), "inet %s %s netmask %s", ipaddr, extras, netmask); variable_set2(ifn, temp, 1); pccard = variable_get("_pccard_install"); if (pccard && strcmp(pccard, "YES") == 0) { @@ -397,8 +397,8 @@ if (!ifaces) variable_set2(VAR_INTERFACES, ifaces = "lo0", 1); /* Only add it if it's not there already */ - if (strcmp(ifaces, "auto") && !strstr(ifaces, devp->name)) { - sprintf(ifn, "%s %s", devp->name, ifaces); + if (strcmp(ifaces, "auto") && !strstr(ifaces, devp->pname)) { + snprintf(ifn, sizeof(ifn), "%s %s", devp->pname, ifaces); variable_set2(VAR_INTERFACES, ifn, 1); } if (!use_dhcp) @@ -481,8 +481,8 @@ Device *tmp; tmp = tcpDeviceSelect(); - if (tmp && tmp->private && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name)) + if (tmp && tmp->private && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->pname)) if (!tmp->init(tmp)) - msgConfirm("Initialization of %s device failed.", tmp->name); + msgConfirm("Initialization of %s device failed.", tmp->pname); return DITEM_SUCCESS; } Index: wizard.c =================================================================== RCS file: /home/ncvs/src/release/sysinstall/wizard.c,v retrieving revision 1.15 diff -u -r1.15 wizard.c --- wizard.c 1999/08/28 01:34:22 1.15 +++ wizard.c 2000/05/14 17:53:40 @@ -70,7 +70,7 @@ char **cp,*cmds[200]; int ncmd,i; - sprintf(myprompt,"%s> ", d->name); + snprintf(myprompt, sizeof(myprompt), "%s> ", d->name); while(1) { printf("--==##==--\n"); Debug_Disk(d); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 11:59:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 4991537B60D; Sun, 14 May 2000 11:59:44 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (07-042.dial.008.popsite.net [209.69.77.42]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id LAA35125; Sun, 14 May 2000 11:59:05 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 488E7192A; Sun, 14 May 2000 14:58:41 -0400 (EDT) Date: Sun, 14 May 2000 14:58:41 -0400 From: Will Andrews To: Greg Lehey Cc: "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.ORG, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000514145841.F82488@argon.blackdawn.com> References: <200005121535.XAA47762@bloop.craftncomp.com> <20000514101921.F847@freebie.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000514101921.F847@freebie.lemis.com>; from grog@lemis.com on Sun, May 14, 2000 at 10:19:21AM +0930 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 10:19:21AM +0930, Greg Lehey wrote: > I'd go along with that. What do the other committers think? Can I drink pop instead? I'm underage, and I don't like alcohol anyway. :) -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12: 8:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 5222F37B950 for ; Sun, 14 May 2000 12:08:22 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (07-042.dial.008.popsite.net [209.69.77.42]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id MAA35250 for ; Sun, 14 May 2000 12:08:13 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 53C6A1932; Sun, 14 May 2000 15:07:14 -0400 (EDT) Date: Sun, 14 May 2000 15:07:14 -0400 From: Will Andrews To: FreeBSD Current Subject: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles Message-ID: <20000514150714.J82488@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k+w/mQv8wyuph6w0" X-Mailer: Mutt 1.0.1i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Hi all, Some time ago I was complaining about how there is no way to force make(1) to display the commands executed by @-prefixed commands in Makefiles. So I went around and talked to a few people and one guy clued me in on how I would add something like this (sorry, I don't remember the name right now as this was a few weeks ago..). This option is useful for people with complex Makefile hierarchies who cannot simply insert a `@${ECHO} "SOMEVAR = ${SOMEVAR}"` as needed in their Makefiles or remove all the @'s in their Makefiles. In particular, I would use this feature to debug ports. Attached is the patch. If I can get permission, I'd like to commit this to code on -current, with a possible MFC in a few weeks (?). I'd like to hear any complaints about this code, including any style(9) mistakes, whether this option would be considered bloat, and whether the variable name ``beLoud'' is appropriate in this context. ;-) Thanks, -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="make.diff" Index: compat.c =================================================================== RCS file: /extra/cvsroot/src/usr.bin/make/compat.c,v retrieving revision 1.17 diff -u -r1.17 compat.c --- compat.c 2000/04/14 06:39:10 1.17 +++ compat.c 2000/05/13 17:38:22 @@ -241,6 +241,8 @@ while ((*cmd == '@') || (*cmd == '-')) { if (*cmd == '@') { silent = TRUE; + if (beLoud) + silent = FALSE; } else { errCheck = FALSE; } Index: job.c =================================================================== RCS file: /extra/cvsroot/src/usr.bin/make/job.c,v retrieving revision 1.17 diff -u -r1.17 job.c --- job.c 2000/01/17 06:43:40 1.17 +++ job.c 2000/05/13 17:38:12 @@ -556,6 +556,8 @@ while (*cmd == '@' || *cmd == '-') { if (*cmd == '@') { shutUp = TRUE; + if (beLoud) + shutUp = FALSE; } else { errOff = TRUE; } Index: main.c =================================================================== RCS file: /extra/cvsroot/src/usr.bin/make/main.c,v retrieving revision 1.35 diff -u -r1.35 main.c --- main.c 1999/11/23 10:35:24 1.35 +++ main.c 2000/05/13 17:47:35 @@ -138,6 +138,7 @@ Boolean beVerbose; /* -v flag */ Boolean oldVars; /* variable substitution style */ Boolean checkEnvFirst; /* -e flag */ +Boolean beLoud; /* -l flag */ Lst envFirstVars; /* (-E) vars to override from env */ static Boolean jobsRunning; /* TRUE if the jobs might be running */ @@ -175,9 +176,9 @@ optind = 1; /* since we're called more than once */ #ifdef REMOTE -# define OPTFLAGS "BD:E:I:L:PSV:d:ef:ij:km:nqrstv" +# define OPTFLAGS "BD:E:I:L:PSV:d:ef:ij:klm:nqrstv" #else -# define OPTFLAGS "BD:E:I:PSV:d:ef:ij:km:nqrstv" +# define OPTFLAGS "BD:E:I:PSV:d:ef:ij:klm:nqrstv" #endif rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) { switch(c) { @@ -322,6 +323,10 @@ case 'k': keepgoing = TRUE; Var_Append(MAKEFLAGS, "-k", VAR_GLOBAL); + break; + case 'l': + beLoud = TRUE; + Var_Append(MAKEFLAGS, "-l", VAR_GLOBAL); break; case 'm': Dir_AddDir(sysIncPath, optarg); Index: make.h =================================================================== RCS file: /extra/cvsroot/src/usr.bin/make/make.h,v retrieving revision 1.12 diff -u -r1.12 make.h --- make.h 1999/09/11 13:17:35 1.12 +++ make.h 2000/05/13 17:41:09 @@ -322,6 +322,8 @@ extern Boolean checkEnvFirst; /* TRUE if environment should be searched for * all variables before the global context */ +extern Boolean beLoud; /* Force all commands to be outputted; ignores + * @-prefixes, etc. */ extern Lst envFirstVars; /* List of specific variables for which the * environment should be searched before the * global context */ --k+w/mQv8wyuph6w0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:12:38 2000 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id A8E9E37B6CC for ; Sun, 14 May 2000 12:12:28 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id VAA01039; Sun, 14 May 2000 21:12:24 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Will Andrews Cc: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-reply-to: Your message of "Sun, 14 May 2000 15:07:14 EDT." <20000514150714.J82488@argon.blackdawn.com> Date: Sun, 14 May 2000 21:12:24 +0200 Message-ID: <1037.958331544@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It sounds like a useful feature to me. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:14:24 2000 Delivered-To: freebsd-current@freebsd.org Received: from orthanc.ab.ca (orthanc.ab.ca [207.167.3.130]) by hub.freebsd.org (Postfix) with ESMTP id E35D137C0D3 for ; Sun, 14 May 2000 12:14:19 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: from orthanc.ab.ca (localhost [127.0.0.1]) by orthanc.ab.ca (8.10.0.Beta11/8.10.0.Beta6) with ESMTP id e4EJEJN09226 for ; Sun, 14 May 2000 13:14:19 -0600 (MDT) Message-Id: <200005141914.e4EJEJN09226@orthanc.ab.ca> To: freebsd-current@freebsd.org Subject: Review and commit of bin/14911? Organization: The Frobozz Magic Homing Pigeon Company Date: Sun, 14 May 2000 13:14:19 -0600 From: Lyndon Nerenberg Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could someone with commit privs please take a look at bin/14911? I'd really appreciate it if that could get committed, and MFC'd into RELENG_4. Also, bin/6997 has been aging away for quite some time as well. Thanks, --lyndon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:17: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id B160837C03D for ; Sun, 14 May 2000 12:17:00 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost [127.0.0.1]) by picnic.mat.net (8.9.3/8.9.3) with ESMTP id PAA29824; Sun, 14 May 2000 15:16:40 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Sun, 14 May 2000 15:16:40 -0400 (EDT) From: Chuck Robey To: Will Andrews Cc: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-Reply-To: <20000514150714.J82488@argon.blackdawn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 14 May 2000, Will Andrews wrote: > Hi all, > > Some time ago I was complaining about how there is no way to force make(1) > to display the commands executed by @-prefixed commands in Makefiles. So I > went around and talked to a few people and one guy clued me in on how I > would add something like this (sorry, I don't remember the name right now > as this was a few weeks ago..). > > This option is useful for people with complex Makefile hierarchies who > cannot simply insert a `@${ECHO} "SOMEVAR = ${SOMEVAR}"` as needed in their > Makefiles or remove all the @'s in their Makefiles. In particular, I would > use this feature to debug ports. > > Attached is the patch. If I can get permission, I'd like to commit this to > code on -current, with a possible MFC in a few weeks (?). I'd like to hear > any complaints about this code, including any style(9) mistakes, whether > this option would be considered bloat, and whether the variable name > ``beLoud'' is appropriate in this context. ;-) Oh, what a nice present! Thanks! > > Thanks, > ---------------------------------------------------------------------------- Chuck Robey | Interests include C & Java programming, FreeBSD, chuckr@picnic.mat.net | electronics, communications, and signal processing. New Year's Resolution: I will not sphroxify gullible people into looking up fictitious words in the dictionary. ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:25:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from orthanc.ab.ca (orthanc.ab.ca [207.167.3.130]) by hub.freebsd.org (Postfix) with ESMTP id DCA6D37B5FA for ; Sun, 14 May 2000 12:25:19 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: from orthanc.ab.ca (localhost [127.0.0.1]) by orthanc.ab.ca (8.10.0.Beta11/8.10.0.Beta6) with ESMTP id e4EJPHN32617; Sun, 14 May 2000 13:25:17 -0600 (MDT) Message-Id: <200005141925.e4EJPHN32617@orthanc.ab.ca> To: Will Andrews Cc: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-reply-to: Your message of "Sun, 14 May 2000 15:07:14 EDT." <20000514150714.J82488@argon.blackdawn.com> Date: Sun, 14 May 2000 13:25:16 -0600 From: Lyndon Nerenberg Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I like the idea, but the -l flag conflicts with a different usage for SVR4 derived makes (on at least AIX, Irix, and Solaris): -l load Specifies that no new jobs (commands) should be started if there are others jobs running and the load average is at least load (a floating-point number). With no argument, removes a previous load limit. Maybe this should instead be a -d sub-option? And I like the idea of adding the -l functionality described above. --lyndon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:46:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id 7CBDD37B6FE for ; Sun, 14 May 2000 12:46:56 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (07-042.dial.008.popsite.net [209.69.77.42]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id MAA36368; Sun, 14 May 2000 12:46:52 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id 0FF15192A; Sun, 14 May 2000 15:46:41 -0400 (EDT) Date: Sun, 14 May 2000 15:46:40 -0400 From: Will Andrews To: Lyndon Nerenberg Cc: Will Andrews , FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles Message-ID: <20000514154640.Q82488@argon.blackdawn.com> References: <20000514150714.J82488@argon.blackdawn.com> <200005141925.e4EJPHN32617@orthanc.ab.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200005141925.e4EJPHN32617@orthanc.ab.ca>; from lyndon@orthanc.ab.ca on Sun, May 14, 2000 at 01:25:16PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 01:25:16PM -0600, Lyndon Nerenberg wrote: > I like the idea, but the -l flag conflicts with a different usage for > SVR4 derived makes (on at least AIX, Irix, and Solaris): > > -l load > Specifies that no new jobs (commands) should be started > if there are others jobs running and the load average > is at least load (a floating-point number). With no > argument, removes a previous load limit. > > Maybe this should instead be a -d sub-option? > > And I like the idea of adding the -l functionality described above. Ok, what do other people think? I mean, it'd be easy to change the flag to use this feature. -dl seems fine for this particular feature. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:50:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 43C3137B6F8 for ; Sun, 14 May 2000 12:50:05 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.hiwaay.net (8.10.1/8.10.1) with ESMTP id e4EJo2129655; Sun, 14 May 2000 14:50:02 -0500 (CDT) Date: Sun, 14 May 2000 14:50:02 -0500 (CDT) From: Steve Price To: Will Andrews Cc: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-Reply-To: <20000514150714.J82488@argon.blackdawn.com> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/Mixed; BOUNDARY="k+w/mQv8wyuph6w0" Content-ID: Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --k+w/mQv8wyuph6w0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: On Sun, 14 May 2000, Will Andrews wrote: # Some time ago I was complaining about how there is no way to force make(1) # to display the commands executed by @-prefixed commands in Makefiles. [snip] I too like this idea and along the lines of what Lyndon suggested how about the attached patch instead? Aside from being somewhat poorly named my hat's off to you for coming up with such a simple solution to a (mis)feature that has bugged me for a long time. :) -steve --k+w/mQv8wyuph6w0 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=diffs Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: make.diffs Content-Disposition: attachment; filename=diffs SW5kZXg6IGNvbXBhdC5jDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1Mg ZmlsZTogL2hvbWUvbmN2cy9zcmMvdXNyLmJpbi9tYWtlL2NvbXBhdC5jLHYN CnJldHJpZXZpbmcgcmV2aXNpb24gMS4xNw0KZGlmZiAtdSAtcjEuMTcgY29t cGF0LmMNCi0tLSBjb21wYXQuYwkyMDAwLzA0LzE0IDA2OjM5OjEwCTEuMTcN CisrKyBjb21wYXQuYwkyMDAwLzA1LzE0IDE5OjQwOjUyDQpAQCAtMjQwLDcg KzI0MCw3IEBADQogDQogICAgIHdoaWxlICgoKmNtZCA9PSAnQCcpIHx8ICgq Y21kID09ICctJykpIHsNCiAJaWYgKCpjbWQgPT0gJ0AnKSB7DQotCSAgICBz aWxlbnQgPSBUUlVFOw0KKwkgICAgc2lsZW50ID0gREVCVUcoTE9VRCkgPyBG QUxTRSA6IFRSVUU7DQogCX0gZWxzZSB7DQogCSAgICBlcnJDaGVjayA9IEZB TFNFOw0KIAl9DQpJbmRleDogam9iLmMNCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0NClJDUyBmaWxlOiAvaG9tZS9uY3ZzL3NyYy91c3IuYmluL21ha2Uvam9i LmMsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjE3DQpkaWZmIC11IC1yMS4x NyBqb2IuYw0KLS0tIGpvYi5jCTIwMDAvMDEvMTcgMDY6NDM6NDAJMS4xNw0K KysrIGpvYi5jCTIwMDAvMDUvMTQgMTk6NDA6MzQNCkBAIC01NTUsNyArNTU1 LDcgQEANCiAgICAgICovDQogICAgIHdoaWxlICgqY21kID09ICdAJyB8fCAq Y21kID09ICctJykgew0KIAlpZiAoKmNtZCA9PSAnQCcpIHsNCi0JICAgIHNo dXRVcCA9IFRSVUU7DQorCSAgICBzaHV0VXAgPSBERUJVRyhMT1VEKSA/IEZB TFNFIDogVFJVRTsNCiAJfSBlbHNlIHsNCiAJICAgIGVyck9mZiA9IFRSVUU7 DQogCX0NCkluZGV4OiBtYWluLmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvaG9tZS9uY3ZzL3NyYy91c3IuYmluL21ha2UvbWFpbi5j LHYNCnJldHJpZXZpbmcgcmV2aXNpb24gMS4zNQ0KZGlmZiAtdSAtcjEuMzUg bWFpbi5jDQotLS0gbWFpbi5jCTE5OTkvMTEvMjMgMTA6MzU6MjQJMS4zNQ0K KysrIG1haW4uYwkyMDAwLzA1LzE0IDE5OjM3OjQwDQpAQCAtMjYyLDYgKzI2 Miw5IEBADQogCQkJCWNhc2UgJ2onOg0KIAkJCQkJZGVidWcgfD0gREVCVUdf Sk9COw0KIAkJCQkJYnJlYWs7DQorCQkJCWNhc2UgJ2wnOg0KKwkJCQkJZGVi dWcgfD0gREVCVUdfTE9VRDsNCisJCQkJCWJyZWFrOw0KIAkJCQljYXNlICdt JzoNCiAJCQkJCWRlYnVnIHw9IERFQlVHX01BS0U7DQogCQkJCQlicmVhazsN CkluZGV4OiBtYWtlLmgNCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NClJDUyBm aWxlOiAvaG9tZS9uY3ZzL3NyYy91c3IuYmluL21ha2UvbWFrZS5oLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS4xMg0KZGlmZiAtdSAtcjEuMTIgbWFrZS5o DQotLS0gbWFrZS5oCTE5OTkvMDkvMTEgMTM6MTc6MzUJMS4xMg0KKysrIG1h a2UuaAkyMDAwLzA1LzE0IDE5OjQxOjA1DQpAQCAtMzU5LDcgKzM1OSw4IEBA DQogI2RlZmluZQlERUJVR19TVUZGCTB4MDA4MA0KICNkZWZpbmUJREVCVUdf VEFSRwkweDAxMDANCiAjZGVmaW5lCURFQlVHX1ZBUgkweDAyMDANCi0jZGVm aW5lIERFQlVHX0ZPUgkweDA0MDANCisjZGVmaW5lCURFQlVHX0ZPUgkweDA0 MDANCisjZGVmaW5lCURFQlVHX0xPVUQJMHgwODAwDQogDQogI2lmZGVmIF9f U1REQ19fDQogI2RlZmluZSBDT05DQVQoYSxiKQlhIyNiDQo= --k+w/mQv8wyuph6w0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:57:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 9A40737B6F8 for ; Sun, 14 May 2000 12:57:08 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost [127.0.0.1]) by picnic.mat.net (8.9.3/8.9.3) with ESMTP id PAA29976; Sun, 14 May 2000 15:55:10 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Sun, 14 May 2000 15:55:09 -0400 (EDT) From: Chuck Robey To: Will Andrews Cc: Lyndon Nerenberg , FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-Reply-To: <20000514154640.Q82488@argon.blackdawn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 14 May 2000, Will Andrews wrote: > On Sun, May 14, 2000 at 01:25:16PM -0600, Lyndon Nerenberg wrote: > > I like the idea, but the -l flag conflicts with a different usage for > > SVR4 derived makes (on at least AIX, Irix, and Solaris): > > > > -l load > > Specifies that no new jobs (commands) should be started > > if there are others jobs running and the load average > > is at least load (a floating-point number). With no > > argument, removes a previous load limit. Compatibility with those other makes is pretty low to begin with, but it doesn't hurt, I guess, to allow for this. -dl is ok with me. I just wouldn't consider the compatibility thing a real issue if it weren't this easy to satisfy. ---------------------------------------------------------------------------- Chuck Robey | Interests include C & Java programming, FreeBSD, chuckr@picnic.mat.net | electronics, communications, and signal processing. New Year's Resolution: I will not sphroxify gullible people into looking up fictitious words in the dictionary. ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 12:59:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id D888137B99D; Sun, 14 May 2000 12:59:18 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id VAA01387; Sun, 14 May 2000 21:59:16 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Mike Smith Cc: Nick Hibma , Peter Edwards , FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic In-reply-to: Your message of "Sun, 14 May 2000 12:53:32 PDT." <200005141953.MAA09495@mass.cdrom.com> Date: Sun, 14 May 2000 21:59:16 +0200 Message-ID: <1385.958334356@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200005141953.MAA09495@mass.cdrom.com>, Mike Smith writes: >> In message , Nick Hibma wri >> tes: >> > >> >Correct me if I am wrong, but I don't think you actually have to >> >disassociate any dev_t's from the driver (by clearing the si_drv[12] >> >fields) because we call destroy_dev and cdevsw_remove, so any later uses >> >of dev_t's get an error because the device has gone away. >> >> destroy_dev will clear the necessary fields in a dev_t, cdevsw_remove >> will not. > >Is it correct to assume that destroy_dev() still isn't working correctly? >(disk_destroy certainly isn't). disk_destroy is different from destroy_dev, and I'll get to it real soon. >Also, while you still can, that should be dev_destroy(). No, because the corresponding is called make_dev(). -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 13: 5:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from mass.cdrom.com (adsl-63-202-176-114.dsl.snfc21.pacbell.net [63.202.176.114]) by hub.freebsd.org (Postfix) with ESMTP id 4115937B506 for ; Sun, 14 May 2000 13:05:41 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id MAA09495; Sun, 14 May 2000 12:53:32 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200005141953.MAA09495@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Poul-Henning Kamp Cc: Nick Hibma , Peter Edwards , FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic In-reply-to: Your message of "Sun, 14 May 2000 16:26:42 +0200." <2084.958314402@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 14 May 2000 12:53:32 -0700 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > In message , Nick Hibma wri > tes: > > > >Correct me if I am wrong, but I don't think you actually have to > >disassociate any dev_t's from the driver (by clearing the si_drv[12] > >fields) because we call destroy_dev and cdevsw_remove, so any later uses > >of dev_t's get an error because the device has gone away. > > destroy_dev will clear the necessary fields in a dev_t, cdevsw_remove > will not. Is it correct to assume that destroy_dev() still isn't working correctly? (disk_destroy certainly isn't). Also, while you still can, that should be dev_destroy(). -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 13: 7: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from orthanc.ab.ca (orthanc.ab.ca [207.167.3.130]) by hub.freebsd.org (Postfix) with ESMTP id 4358737B506 for ; Sun, 14 May 2000 13:07:03 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: from orthanc.ab.ca (localhost [127.0.0.1]) by orthanc.ab.ca (8.10.0.Beta11/8.10.0.Beta6) with ESMTP id e4EK72N12185 for ; Sun, 14 May 2000 14:07:02 -0600 (MDT) Message-Id: <200005142007.e4EK72N12185@orthanc.ab.ca> To: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles In-reply-to: Your message of "Sun, 14 May 2000 15:55:09 EDT." Date: Sun, 14 May 2000 14:07:01 -0600 From: Lyndon Nerenberg Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chuck> Compatibility with those other makes is pretty low to begin Chuck> with, but it doesn't hurt, I guess, to allow for this. -dl Chuck> is ok with me. I just wouldn't consider the compatibility Chuck> thing a real issue if it weren't this easy to satisfy. It's not a big deal for me. I just get annoyed at all the seemingly gratuitous incompatibilities between the different versions of something as fundamental as make. --lyndon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 13:38:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from assaris.sics.se (assaris.sics.se [193.10.66.234]) by hub.freebsd.org (Postfix) with ESMTP id 33CD337B694 for ; Sun, 14 May 2000 13:38:50 -0700 (PDT) (envelope-from assar@assaris.sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.9.3) id WAA71551; Sun, 14 May 2000 22:38:37 +0200 (CEST) (envelope-from assar) To: Matthew Dillon Cc: "Jordan K. Hubbard" , freebsd-current@FreeBSD.ORG Subject: Re: Proposed patch for PR misc/18466 References: <200005141808.LAA06752@apollo.backplane.com> From: Assar Westerlund Date: 14 May 2000 22:38:36 +0200 In-Reply-To: Matthew Dillon's message of "Sun, 14 May 2000 11:08:05 -0700 (PDT)" Message-ID: <5l66sg50kz.fsf@assaris.sics.se> Lines: 74 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.6 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew Dillon writes: > Index: anonFTP.c > =================================================================== > RCS file: /home/ncvs/src/release/sysinstall/anonFTP.c,v > retrieving revision 1.29 > diff -u -r1.29 anonFTP.c > --- anonFTP.c 2000/01/25 19:16:31 1.29 > +++ anonFTP.c 2000/05/14 17:44:11 > @@ -217,7 +217,7 @@ > SAFE_STRCPY(tconf.upload, FTP_UPLOAD); > SAFE_STRCPY(tconf.comment, FTP_COMMENT); > SAFE_STRCPY(tconf.homedir, FTP_HOMEDIR); why not call strlcpy instead of the SAFE_STRCPY macro that calls the sstrncpy and the strncpy? > Index: config.c > =================================================================== > RCS file: /home/ncvs/src/release/sysinstall/config.c,v > retrieving revision 1.156.2.1 > diff -u -r1.156.2.1 config.c > --- config.c 2000/03/30 08:12:02 1.156.2.1 > +++ config.c 2000/05/14 17:46:38 > @@ -373,8 +375,8 @@ > FILE *fp; > > if (!file_readable(config)) { > - char *line = malloc(21); > - sprintf(line, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); > + char *line = malloc(URMSIZE); > + snprintf(line, URMSIZE, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); > lines[0] = line; > nlines = 1; > } Why not call asprintf/safe_asprintf here? > Index: misc.c > =================================================================== > RCS file: /home/ncvs/src/release/sysinstall/misc.c,v > retrieving revision 1.40 > diff -u -r1.40 misc.c > --- misc.c 1999/11/27 14:33:07 1.40 > +++ misc.c 2000/05/14 17:55:41 > @@ -34,6 +34,7 @@ > #include "sysinstall.h" > #include > #include > +#include > #include > #include > #include > @@ -209,6 +210,17 @@ > if (!ptr) > msgFatal("Out of memory!"); > return ptr; > +} > + > +void > +safe_asprintf(char **pptr, const char *ctl, ...) > +{ > + va_list va; > + > + va_start(va, ctl); > + if (vasprintf(pptr, ctl, va) < 0) > + msgFatal("Out of memory!"); > + va_end(va); > } > /* Create a path biased from the VAR_INSTALL_ROOT variable (if not /) */ It would seem to me a good idea to make a v-version of this function, even if there's no place right now that wants to call it. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14: 0:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 726F737B8FA for ; Sun, 14 May 2000 14:00:54 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c03-138.006.popsite.net [216.126.136.138]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA38183; Sun, 14 May 2000 14:00:52 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA66380; Sun, 14 May 2000 14:01:16 -0700 (PDT) (envelope-from obrien) Date: Sun, 14 May 2000 14:01:16 -0700 From: "David O'Brien" To: Lyndon Nerenberg Cc: freebsd-current@freebsd.org Subject: Re: Review and commit of bin/14911? Message-ID: <20000514140116.A63821@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200005141914.e4EJEJN09226@orthanc.ab.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200005141914.e4EJEJN09226@orthanc.ab.ca>; from lyndon@orthanc.ab.ca on Sun, May 14, 2000 at 01:14:19PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 01:14:19PM -0600, Lyndon Nerenberg wrote: > Could someone with commit privs please take a look at bin/14911? I'd You might get more interest if you mention what the PR fixes. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14: 8:42 2000 Delivered-To: freebsd-current@freebsd.org Received: from orthanc.ab.ca (orthanc.ab.ca [207.167.3.130]) by hub.freebsd.org (Postfix) with ESMTP id 1EF3237B635; Sun, 14 May 2000 14:08:37 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: from orthanc.ab.ca (localhost [127.0.0.1]) by orthanc.ab.ca (8.10.0.Beta11/8.10.0.Beta6) with ESMTP id e4EL8ZN83522; Sun, 14 May 2000 15:08:36 -0600 (MDT) Message-Id: <200005142108.e4EL8ZN83522@orthanc.ab.ca> To: obrien@freebsd.org Cc: freebsd-current@freebsd.org Subject: Re: Review and commit of bin/14911? In-reply-to: Your message of "Sun, 14 May 2000 14:01:16 PDT." <20000514140116.A63821@dragon.nuxi.com> Date: Sun, 14 May 2000 15:08:34 -0600 From: Lyndon Nerenberg Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "David" == David O'Brien writes: David> You might get more interest if you mention what the PR David> fixes. It adds missing binary/manpage links from opiekey to otp-md4 and otp-md5. Some of our remote users run software that semi-automates OTP logins, and that software expects the otp-* commands to be on the remote system. The opiekey(1) manpage also mentions the otp-* commands by name. --lyndon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14:22:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id EDA8537BA92 for ; Sun, 14 May 2000 14:22:23 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c03-138.006.popsite.net [216.126.136.138]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA38274; Sun, 14 May 2000 14:22:21 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA66735; Sun, 14 May 2000 14:22:45 -0700 (PDT) (envelope-from obrien) Date: Sun, 14 May 2000 14:22:45 -0700 From: "David O'Brien" To: Will Andrews Cc: FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles Message-ID: <20000514142245.B63821@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20000514150714.J82488@argon.blackdawn.com> <200005141925.e4EJPHN32617@orthanc.ab.ca> <20000514154640.Q82488@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000514154640.Q82488@argon.blackdawn.com>; from andrews@technologist.com on Sun, May 14, 2000 at 03:46:40PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 03:46:40PM -0400, Will Andrews wrote: > Ok, what do other people think? I mean, it'd be easy to change the flag to > use this feature. -dl seems fine for this particular feature. -d is a better place to put this than "-l", as this is a debugging feature. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14:23:39 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 58ABB37B9F1 for ; Sun, 14 May 2000 14:23:35 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c03-138.006.popsite.net [216.126.136.138]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA38279; Sun, 14 May 2000 14:23:33 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA66748; Sun, 14 May 2000 14:23:57 -0700 (PDT) (envelope-from obrien) Date: Sun, 14 May 2000 14:23:57 -0700 From: "David O'Brien" To: Steve Price Cc: Will Andrews , FreeBSD Current Subject: Re: make(1) patches to bypass quietness prescribed by @-prefixed commands in Makefiles Message-ID: <20000514142356.C63821@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20000514150714.J82488@argon.blackdawn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from sprice@hiwaay.net on Sun, May 14, 2000 at 02:50:02PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 02:50:02PM -0500, Steve Price wrote: > I too like this idea and along the lines of what Lyndon suggested > how about the attached patch instead? This is a better patch to the proposed functionality. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14:25:12 2000 Delivered-To: freebsd-current@freebsd.org Received: from assaris.sics.se (assaris.sics.se [193.10.66.234]) by hub.freebsd.org (Postfix) with ESMTP id 2665837B52D for ; Sun, 14 May 2000 14:25:05 -0700 (PDT) (envelope-from assar@assaris.sics.se) Received: (from assar@localhost) by assaris.sics.se (8.9.3/8.9.3) id XAA71840; Sun, 14 May 2000 23:25:01 +0200 (CEST) (envelope-from assar) To: "Andrew Tulloch" Cc: Subject: Re: Warning on boot References: From: Assar Westerlund Date: 14 May 2000 23:25:00 +0200 In-Reply-To: "Andrew Tulloch"'s message of "Sun, 14 May 2000 14:57:53 +0100" Message-ID: <5lwvkwkeoj.fsf@assaris.sics.se> Lines: 8 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) Emacs/20.6 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Andrew Tulloch" writes: > Device char-major=116 minor=196608 opened in block mode, convert to char > mode with /dev/MAKEDEV before 2000-07-01 It has been fixed in sys/kern/vfs_subr.c:1.255. cvsup or grab the patch and apply. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 14:25:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 1A5FF37B52D; Sun, 14 May 2000 14:25:18 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c03-138.006.popsite.net [216.126.136.138]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id OAA38307; Sun, 14 May 2000 14:25:16 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA66823; Sun, 14 May 2000 14:25:40 -0700 (PDT) (envelope-from obrien) Date: Sun, 14 May 2000 14:25:40 -0700 From: "David O'Brien" To: "Andrew M. Miklic" Cc: freebsd-current@freebsd.org, freebsd-alpha@freebsd.org Subject: Re: Make World kdump failure Message-ID: <20000514142540.D63821@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <391EDC38.67CFE978@ibm.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <391EDC38.67CFE978@ibm.net>; from miklic@ibm.net on Sun, May 14, 2000 at 05:02:48PM +0000 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 05:02:48PM +0000, Andrew M. Miklic wrote: > I'm getting a "make world" failure with Alpha -current (cvsup'ed fresh > as of a few minutes ago, although this problem has persisted for over a > week, as far as I can tell)..it seems to be dying in kdump, strangely > apparently on i386-specific stuff. I'll try to take a look at fixing this. > Is anyone else seeing this? Yes. I just removed kdump from usr.bin/Makefile as I was busy doing other development. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 15: 4:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 348C737B5AB; Sun, 14 May 2000 15:04:08 -0700 (PDT) (envelope-from adsharma@sharmas.dhs.org) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id PAA19383; Sun, 14 May 2000 15:03:47 -0700 Date: Sun, 14 May 2000 15:03:46 -0700 From: Arun Sharma To: FreeBSD Current Cc: smp@freebsd.org Subject: kern/18524 - SMP cpu stats Message-ID: <20000514150346.A19366@sharmas.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can someone responsible for SMP please look at this PR: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18524 This is necessary for tools like xosview, ktop etc to display per cpu stats. -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 16:41:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.interniq.org (mail.interniq.org [207.174.139.135]) by hub.freebsd.org (Postfix) with ESMTP id 9F1D837BA08 for ; Sun, 14 May 2000 16:41:29 -0700 (PDT) (envelope-from emre@interniq.org) Received: from interniq.org (adsl-78-214-169.bhm.bellsouth.net [216.78.214.169]) by mail.interniq.org (1.3.3.7/1.3.3.7) with ESMTP id HAA20043; Sun, 14 May 2000 07:41:49 -0600 Message-ID: <391F565C.91193D66@interniq.org> Date: Sun, 14 May 2000 20:43:56 -0500 From: emre X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: FUJISHIMA Satsuki , freebsd-current@freebsd.org Subject: Re: Real Player not working References: <391DBECE.2A54FD80@interniq.org> <86em75k3ta.wl@cheerful.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FUJISHIMA Satsuki wrote: > branded as FreeBSD with old method and then it will always be treated > as FreeBSD binary. The effort to brand it as Linux with new method > will be ignored. > > Stripping Linux binary with Linux strip would be a workaround. Following Sean O'Connell's advice, I downloaded Real Player 7.0 (beta) from real.com, put it into /usr/compat/linux/opt and installed it. It worked. I see alot of "lagging" when I use it though. The same media clips run smoother in the windows version of real player, but I'm not really surprised, as this player is still in "beta". At least it works now. Thanks for all the help Cheers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 18: 4:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 5DC8537B72F for ; Sun, 14 May 2000 18:04:42 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id SAA07836; Sun, 14 May 2000 18:04:30 -0700 (PDT) (envelope-from dillon) Date: Sun, 14 May 2000 18:04:30 -0700 (PDT) From: Matthew Dillon Message-Id: <200005150104.SAA07836@apollo.backplane.com> To: Assar Westerlund Cc: "Jordan K. Hubbard" , freebsd-current@FreeBSD.ORG Subject: Re: Proposed patch for PR misc/18466 References: <200005141808.LAA06752@apollo.backplane.com> <5l66sg50kz.fsf@assaris.sics.se> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :Matthew Dillon writes: :> Index: anonFTP.c :> =================================================================== :> RCS file: /home/ncvs/src/release/sysinstall/anonFTP.c,v :> retrieving revision 1.29 :> diff -u -r1.29 anonFTP.c :> --- anonFTP.c 2000/01/25 19:16:31 1.29 :> +++ anonFTP.c 2000/05/14 17:44:11 :> @@ -217,7 +217,7 @@ :> SAFE_STRCPY(tconf.upload, FTP_UPLOAD); :> SAFE_STRCPY(tconf.comment, FTP_COMMENT); :> SAFE_STRCPY(tconf.homedir, FTP_HOMEDIR); : :why not call strlcpy instead of the SAFE_STRCPY macro that calls the :sstrncpy and the strncpy? I didn't write SAFE_STRCPY. Replacement is a good idea, but would be future work. :> - char *line = malloc(21); :> - sprintf(line, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); :> + char *line = malloc(URMSIZE); :> + snprintf(line, URMSIZE, "USA_RESIDENT=%s\n", USAResident ? "YES" : "NO"); :> lines[0] = line; :> nlines = 1; :> } : :Why not call asprintf/safe_asprintf here? Look a little down in the code, you will notice that it rewrites the buffer. asprintf only allocates what it needs, which may not be enough. (If I had written it I would have simply reallocated the buffer, but since I didn't.... this would be a future improvement to make). :> +void :> +safe_asprintf(char **pptr, const char *ctl, ...) : :It would seem to me a good idea to make a v-version of this function, :even if there's no place right now that wants to call it. : :/assar Under normal conditions, yes, but there is not a single line of code in sysinstall which uses varargs, and it only takes 10 seconds to add a v-version so we'll leave that for another pass (perhaps a later pass to get rid of all the static buffers). -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 19:23:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from tomts1-srv.bellnexxia.net (tomts1.bellnexxia.net [209.226.175.139]) by hub.freebsd.org (Postfix) with ESMTP id 6F96237B950; Sun, 14 May 2000 19:23:32 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: from localhost.nowhere ([206.172.76.6]) by tomts1-srv.bellnexxia.net (InterMail vM.4.01.02.17 201-229-119) with ESMTP id <20000515022330.BKSW28912.tomts1-srv.bellnexxia.net@localhost.nowhere>; Sun, 14 May 2000 22:23:30 -0400 Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id WAA14286; Sun, 14 May 2000 22:23:07 -0400 (EDT) (envelope-from tim) Date: Sun, 14 May 2000 22:23:07 -0400 From: Tim Vanderhoek To: Warner Losh Cc: Greg Lehey , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000514222307.B14160@mad> References: <20000514101921.F847@freebie.lemis.com> <200005121535.XAA47762@bloop.craftncomp.com> <20000514101921.F847@freebie.lemis.com> <200005141706.LAA32339@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <200005141706.LAA32339@harmony.village.org>; from Warner Losh on Sun, May 14, 2000 at 11:06:50AM -0600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 11:06:50AM -0600, Warner Losh wrote: > In message <20000514101921.F847@freebie.lemis.com> Greg Lehey writes: > : > Maybe the comitters ought to take an idea from many software companies and > : > contribute $5 to the beer fund every time they break the build. Have it > : > all come due at the next BSDcon to fund a committer beer bash. :-) > > I think that we should make it $5.00 the first time. $10 the second > time. $20 the third time, etc. I think this'd be a great idea, provided we also implemented some sort of scheme that paid for committer time that was wasted as a result of reading needless crossposts that add little to one of the lists and nothing to the other. -- Signature withheld by request of author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 20:21:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id DCADA37BA17; Sun, 14 May 2000 20:21:29 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: from localhost.nowhere (ppp18411.on.bellglobal.com [206.172.130.91]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id XAA13943; Sun, 14 May 2000 23:27:34 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id XAA14920; Sun, 14 May 2000 23:21:22 -0400 (EDT) (envelope-from tim) Date: Sun, 14 May 2000 23:21:21 -0400 From: Tim Vanderhoek To: Warner Losh Cc: Greg Lehey , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000514232121.C14782@mad> References: <20000514101921.F847@freebie.lemis.com> <200005121535.XAA47762@bloop.craftncomp.com> <20000514101921.F847@freebie.lemis.com> <200005141706.LAA32339@harmony.village.org> <20000514222307.B14160@mad> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <20000514222307.B14160@mad>; from Tim Vanderhoek on Sun, May 14, 2000 at 10:23:07PM -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, May 14, 2000 at 10:23:07PM -0400, Tim Vanderhoek wrote: > >>>> Maybe the comitters ought to take an idea from many software companies and >>>> contribute $5 to the beer fund every time they break the build. Have it >>>> all come due at the next BSDcon to fund a committer beer bash. :-) >> >> I think that we should make it $5.00 the first time. $10 the second >> time. $20 the third time, etc. Or perhaps we should tie it to the time it takes the security officer to fix, either with his own patches or by inviting patches from others, security holes that have been reported in certain libraries. If it takes the committer longer to fix the world breakage than it takes the security officer to deal with the hole, then the committer may be fined. In all other cases, the security officer can be fined. At committer's discretion. We can then add bonuses. Say, for example, I fix someone else's world breakage fast enough that they are able to avoid the fine, then they have to pay me either $5.00, $10, or $20. In cases where more than one committer was responsible, either indirectly or directly, then all involved should be fined. -- Signature withheld by request of author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 20:24:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id BB82437B5CA; Sun, 14 May 2000 20:24:22 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id MAA01260; Mon, 15 May 2000 12:54:29 +0930 (CST) Date: Mon, 15 May 2000 12:54:29 +0930 From: Greg Lehey To: Tim Vanderhoek Cc: Warner Losh , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000515125429.C541@freebie.lemis.com> References: <20000514101921.F847@freebie.lemis.com> <200005121535.XAA47762@bloop.craftncomp.com> <20000514101921.F847@freebie.lemis.com> <200005141706.LAA32339@harmony.village.org> <20000514222307.B14160@mad> <20000514232121.C14782@mad> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20000514232121.C14782@mad> Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, 14 May 2000 at 23:21:21 -0400, Tim Vanderhoek wrote: > On Sun, May 14, 2000 at 10:23:07PM -0400, Tim Vanderhoek wrote: >> >>>>> Maybe the comitters ought to take an idea from many software companies and >>>>> contribute $5 to the beer fund every time they break the build. Have it >>>>> all come due at the next BSDcon to fund a committer beer bash. :-) >>> >>> I think that we should make it $5.00 the first time. $10 the second >>> time. $20 the third time, etc. > > Or perhaps we should tie it to the time it takes the security officer > to fix, either with his own patches or by inviting patches from > others, security holes that have been reported in certain libraries. > If it takes the committer longer to fix the world breakage than it > takes the security officer to deal with the hole, then the committer > may be fined. In all other cases, the security officer can be fined. > At committer's discretion. > > We can then add bonuses. Say, for example, I fix someone else's world > breakage fast enough that they are able to avoid the fine, then they > have to pay me either $5.00, $10, or $20. > > In cases where more than one committer was responsible, either > indirectly or directly, then all involved should be fined. I think you're missing the point. The intention was the equivalent of the pointy hat, just with the additional benefit that others might have something out of it as well, no more. Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 20:48:42 2000 Delivered-To: freebsd-current@freebsd.org Received: from darren2.lnk.telstra.net (darren2.lnk.telstra.net [139.130.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 7C4C037B64C; Sun, 14 May 2000 20:48:28 -0700 (PDT) (envelope-from darrenr@reed.wattle.id.au) Received: (from root@localhost) by darren2.lnk.telstra.net (8.9.1/8.8.7) id DAA12894; Mon, 15 May 2000 03:48:22 GMT From: Darren Reed Message-Id: <200005150348.NAA10190@avalon.reed.wattle.id.au> Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-Reply-To: <20000515125429.C541@freebie.lemis.com> from Greg Lehey at "May 15, 0 12:54:29 pm" To: grog@lemis.com (Greg Lehey) Date: Mon, 15 May 2000 13:48:19 +1000 (EST) Cc: vanderh@ecf.utoronto.ca, imp@village.org, brian@CSUA.Berkeley.EDU, shocking@prth.pgs.com, current@FreeBSD.org, cvs-committers@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL37 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In some email I received from Greg Lehey, sie wrote: > On Sunday, 14 May 2000 at 23:21:21 -0400, Tim Vanderhoek wrote: > > On Sun, May 14, 2000 at 10:23:07PM -0400, Tim Vanderhoek wrote: > >> > >>>>> Maybe the comitters ought to take an idea from many software companies and > >>>>> contribute $5 to the beer fund every time they break the build. Have it > >>>>> all come due at the next BSDcon to fund a committer beer bash. :-) > >>> > >>> I think that we should make it $5.00 the first time. $10 the second > >>> time. $20 the third time, etc. > > > > Or perhaps we should tie it to the time it takes the security officer > > to fix, either with his own patches or by inviting patches from > > others, security holes that have been reported in certain libraries. > > If it takes the committer longer to fix the world breakage than it > > takes the security officer to deal with the hole, then the committer > > may be fined. In all other cases, the security officer can be fined. > > At committer's discretion. > > > > We can then add bonuses. Say, for example, I fix someone else's world > > breakage fast enough that they are able to avoid the fine, then they > > have to pay me either $5.00, $10, or $20. > > > > In cases where more than one committer was responsible, either > > indirectly or directly, then all involved should be fined. > > I think you're missing the point. The intention was the equivalent of > the pointy hat, just with the additional benefit that others might > have something out of it as well, no more. Just one other thing to add here... How often is it that the actions of just one person make the build fail ? I imagine if one person commits code, it works and bulids cleanly for them, but it's when it's imported into a source tree that others have changed that the previous compile-testing can be rendered useless. If anything, such moves as this will make people less likely to commit code and hence further impede the development of FreeBSD. I know I personally do not have the resources (both physical and otherwise) to maintain a FreeBSD-current system to test any change I might want to commit. I see this money scheme as an extension of the "finger pointing" which does nothing to build team spirit. Darren p.s. since there was no currency specified, I imagine "$5 local", wherever that maybe, so the Italians would get off light at 5Lire :) p.p.s. for those of you that live inside the USA, sending such small amounts of money to the USA will cost more than the penalty, more than likely. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 20:54:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from rtp.tfd.com (rtp.tfd.com [198.79.53.206]) by hub.freebsd.org (Postfix) with ESMTP id BA51A37B7FE; Sun, 14 May 2000 20:54:24 -0700 (PDT) (envelope-from kent@lab1.tfd.com) Received: from lab1.tfd.com (lab1.tfd.com [10.9.200.31]) by rtp.tfd.com (8.9.3/8.9.3) with SMTP id XAA08949; Sun, 14 May 2000 23:50:19 -0400 (EDT) Received: by lab1.tfd.com id AA19725 (5.67b/IDA-1.5); Sun, 14 May 2000 23:50:08 -0400 Date: Sun, 14 May 2000 23:50:08 -0400 From: Kent Hauser Message-Id: <200005150350.AA19725@lab1.tfd.com> To: grog@lemis.com, vanderh@ecf.utoronto.ca Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Cc: brian@CSUA.Berkeley.EDU, current@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, imp@village.org, shocking@prth.pgs.com Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I think I might have an even better solution. Continue passing the pointy hat around & I'll buy the committer's keg at the next BSDcon. I for one appreciate the exceptional funcitionality of FreeBSD (especially the IPSec support). And also, if I buy the key, maybe I'll also be invited. Regards all, Kent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 21: 6:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 5A5CB37B637; Sun, 14 May 2000 21:05:53 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id NAA01578; Mon, 15 May 2000 13:35:35 +0930 (CST) Date: Mon, 15 May 2000 13:35:35 +0930 From: Greg Lehey To: Darren Reed , Kent Hauser Cc: vanderh@ecf.utoronto.ca, imp@village.org, brian@CSUA.Berkeley.EDU, shocking@prth.pgs.com, current@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000515133535.E541@freebie.lemis.com> References: <200005150350.AA19725@lab1.tfd.com> <20000515125429.C541@freebie.lemis.com> <200005150348.NAA10190@avalon.reed.wattle.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <200005150348.NAA10190@avalon.reed.wattle.id.au> Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Monday, 15 May 2000 at 13:48:19 +1000, Darren Reed wrote: > In some email I received from Greg Lehey, sie wrote: >> On Sunday, 14 May 2000 at 23:21:21 -0400, Tim Vanderhoek wrote: >>> On Sun, May 14, 2000 at 10:23:07PM -0400, Tim Vanderhoek wrote: >>>> >>>>>>> Maybe the comitters ought to take an idea from many software companies and >>>>>>> contribute $5 to the beer fund every time they break the build. Have it >>>>>>> all come due at the next BSDcon to fund a committer beer bash. :-) >>>>> >>>>> I think that we should make it $5.00 the first time. $10 the second >>>>> time. $20 the third time, etc. >>> >>> Or perhaps we should tie it to the time it takes the security officer >>> to fix, either with his own patches or by inviting patches from >>> others, security holes that have been reported in certain libraries. >>> If it takes the committer longer to fix the world breakage than it >>> takes the security officer to deal with the hole, then the committer >>> may be fined. In all other cases, the security officer can be fined. >>> At committer's discretion. >>> >>> We can then add bonuses. Say, for example, I fix someone else's world >>> breakage fast enough that they are able to avoid the fine, then they >>> have to pay me either $5.00, $10, or $20. >>> >>> In cases where more than one committer was responsible, either >>> indirectly or directly, then all involved should be fined. >> >> I think you're missing the point. The intention was the equivalent of >> the pointy hat, just with the additional benefit that others might >> have something out of it as well, no more. > > Just one other thing to add here... > > How often is it that the actions of just one person make the build > fail ? In nearly every case. > I imagine if one person commits code, it works and bulids cleanly > for them, but it's when it's imported into a source tree that others > have changed that the previous compile-testing can be rendered > useless. I'd suggest it's more normally superficial testing. > If anything, such moves as this will make people less likely to > commit code and hence further impede the development of FreeBSD. I > know I personally do not have the resources (both physical and > otherwise) to maintain a FreeBSD-current system to test any change I > might want to commit. > > I see this money scheme as an extension of the "finger pointing" > which does nothing to build team spirit. That depends very much on the way it's taken. At the moment, people take the pointy hat voluntarily, not because it's forced on them. It's my expectation that the $5 should be in the the same spirit. On Sunday, 14 May 2000 at 23:50:08 -0400, Kent Hauser wrote: > Hi all, > > I think I might have an even better solution. Continue passing the > pointy hat around & I'll buy the committer's keg at the next > BSDcon. I for one appreciate the exceptional funcitionality of > FreeBSD (especially the IPSec support). And also, if I buy the key, > maybe I'll also be invited. Everybody's invited. And yes, we'll gratefully accept the keg. But that has nothing to do with the original idea :-) Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 22:15:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from soda.csua.Berkeley.edu (soda.CSUA.Berkeley.EDU [128.32.43.52]) by hub.freebsd.org (Postfix) with ESMTP id 3403337B58F for ; Sun, 14 May 2000 22:15:41 -0700 (PDT) (envelope-from brian@CSUA.Berkeley.EDU) Received: from smarter.than.nu (as3-2-83.HIP.Berkeley.EDU [136.152.194.197]) by soda.csua.Berkeley.edu (8.8.8/) via ESMTP id WAA12009; Sun, 14 May 2000 22:15:30 -0700 (PDT) env-from (brian@CSUA.Berkeley.EDU) Date: Sun, 14 May 2000 22:15:12 -0700 (PDT) From: "Brian W. Buchanan" X-Sender: brian@smarter.than.nu To: Greg Lehey Cc: current@freebsd.org Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-Reply-To: <20000515133535.E541@freebie.lemis.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, Greg Lehey wrote: > > I see this money scheme as an extension of the "finger pointing" > > which does nothing to build team spirit. > > That depends very much on the way it's taken. At the moment, people > take the pointy hat voluntarily, not because it's forced on them. > It's my expectation that the $5 should be in the the same spirit. Exactly... it's not meant to be a complicated system of fines or to discourage people from developing (at Desktop, we certainly don't want that!), it's just a little bit of good-natured public humiliation to encourage people to think (and maybe test) before they commit. :-) - Brian Buchanan brian@desktop.com brian@CSUA.Berkeley.EDU To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 22:21: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.cvzoom.net (ns.cvzoom.net [208.226.154.2]) by hub.freebsd.org (Postfix) with SMTP id E446C37B8E5 for ; Sun, 14 May 2000 22:20:56 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 17673 invoked from network); 15 May 2000 05:20:54 -0000 Received: from lc210.cvzoom.net (HELO cvzoom.net) (208.226.154.210) by ns.cvzoom.net with SMTP; 15 May 2000 05:20:54 -0000 Message-ID: <391F8935.A4FCF453@cvzoom.net> Date: Mon, 15 May 2000 01:20:53 -0400 From: Donn Miller X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Subject: cvsup6.freebsd.org Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It seems to be responding very well to ping, but when I connect to this server with cvsup, it basically says "connecting to cvsup6.freebsd.org", and does nothing else. Is this server working? - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun May 14 22:52:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CF8737B506 for ; Sun, 14 May 2000 22:52:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id WAA42502 for ; Sun, 14 May 2000 22:52:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 14 May 2000 22:52:11 -0700 (PDT) From: Kris Kennaway To: current@freebsd.org Subject: OpenSSH 2.1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Okay, I've just committed OpenSSH 2.1 to -current. It was a difficult merge because the OpenSSH guys basically ripped apart the source code when they were rearranging it for SSH2 support, so I hope I put all of our local changes back in the right places. I've tested this as much as I could locally, but not all of the possibilities. New in this version: * SSH2 support. See www.openssh.com for interoperability details with other SSH2 clients (I tested it with the ssh2 port and it seemed to work well). See /usr/src/crypto/openssh/README.openssh2 for some brief installation/operation notes, as well as the manpages. Note that if you don't create a DSA key manually then one will be created for you on next boot if you have sshd_enable=yes in your rc.conf * OPIE support. This only works with the SSH1 protocol, unfortunately. I still need to improve the way the sshd generates fake challenges for nonexistent users, but it makes some attempt at present. * Kerberos support is also limited to SSH1. * No longer a dependency on RSA (and therefore rsaref for US folks): SSH2 can handle DSA keys which have no patent or usage restrictions. This means we could now enable SSH2 out of the box in a crypto installation, with no post-installation configuration requirements. We now have a truly free SSH client/server! Please let me know of any problems you find in the new code. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 0: 6:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 5EE3137B702; Mon, 15 May 2000 00:06:21 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p41-dn02kiryunisiki.gunma.ocn.ne.jp [211.0.245.106]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id QAA08714; Mon, 15 May 2000 16:04:57 +0900 (JST) Message-ID: <391FA1F1.73132F3E@newsguy.com> Date: Mon, 15 May 2000 16:06:25 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Darren Reed Cc: Greg Lehey , brian@CSUA.Berkeley.EDU, shocking@prth.pgs.com, current@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) References: <200005140057.KAA08965@avalon.reed.wattle.id.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Darren Reed wrote: > > > > Maybe the comitters ought to take an idea from many software companies and > > > contribute $5 to the beer fund every time they break the build. Have it > > > all come due at the next BSDcon to fund a committer beer bash. :-) > > > > I'd go along with that. What do the other committers think? > > Isn't this the "FreeBSD" project ? There is no such thing as a "free beer". -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@tutti.capi.bsdconspiracy.org "I agree whole heartily! Who am I to disagree with a wacko like you?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 3:35:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 7543437B6DF; Mon, 15 May 2000 03:35:26 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12rIDa-0003lX-00; Mon, 15 May 2000 12:35:22 +0200 From: Sheldon Hearn To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: OpenSSH 2.1 In-reply-to: Your message of "Sun, 14 May 2000 22:52:11 MST." Date: Mon, 15 May 2000 12:35:22 +0200 Message-ID: <14478.958386922@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 14 May 2000 22:52:11 MST, Kris Kennaway wrote: > * Kerberos support is also limited to SSH1. Presumably this is still Heimdal Kerberos support, without MIT interoperability? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 3:36: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id D118537B6E8 for ; Mon, 15 May 2000 03:35:59 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id DAA56295; Mon, 15 May 2000 03:35:18 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <200005151035.DAA56295@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Daniel C. Sobral" Cc: current@FreeBSD.ORG Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-reply-to: Your message of "Mon, 15 May 2000 16:06:25 +0900." <391FA1F1.73132F3E@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 May 2000 03:35:18 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Darren Reed wrote: > > > > > > Maybe the comitters ought to take an idea from many software companies and > > > > contribute $5 to the beer fund every time they break the build. Have it > > > > all come due at the next BSDcon to fund a committer beer bash. :-) > > > > > > I'd go along with that. What do the other committers think? > > > > Isn't this the "FreeBSD" project ? > > There is no such thing as a "free beer". If there are enough bad committs, we can start thinking in terms of parties with Free Beer and Pizza 8) -- Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 3:38: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from mailgate.originative.co.uk (mailgate.originative.co.uk [194.217.50.228]) by hub.freebsd.org (Postfix) with ESMTP id 4797337B589 for ; Mon, 15 May 2000 03:37:55 -0700 (PDT) (envelope-from paul@originative.co.uk) Received: from originative.co.uk (tiddler.originative.co.uk [194.217.50.243]) by mailgate.originative.co.uk (Postfix) with ESMTP id E9DDA1D136; Mon, 15 May 2000 11:37:52 +0100 (BST) Message-ID: <391FE2F5.9CB7411C@originative.co.uk> Date: Mon, 15 May 2000 11:43:49 +0000 From: Paul Richards Organization: Originative Solutions Ltd X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: "Brian W. Buchanan" Cc: Greg Lehey , current@freebsd.org Subject: Re: Breaking "build world" costs $5? (was: Can we please have acurrent that compiles?) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Brian W. Buchanan" wrote: > > On Mon, 15 May 2000, Greg Lehey wrote: > > > > I see this money scheme as an extension of the "finger pointing" > > > which does nothing to build team spirit. > > > > That depends very much on the way it's taken. At the moment, people > > take the pointy hat voluntarily, not because it's forced on them. > > It's my expectation that the $5 should be in the the same spirit. > > Exactly... it's not meant to be a complicated system of fines or to > discourage people from developing (at Desktop, we certainly don't want > that!), it's just a little bit of good-natured public humiliation to > encourage people to think (and maybe test) before they commit. :-) The only problem being that at Desktop you can drop the $5 into the fine box when you leave work but I'd have to walk down the bank and either do a wire transfer or send an international money order. Apart from the hassle involved there's the fact that all told it will cost me in the region of $30-40 to pay the fine! A nice idea but not very practical for the FreeBSD project. Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 3:47:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id DA9B737B73C for ; Mon, 15 May 2000 03:47:30 -0700 (PDT) (envelope-from nbm@sunesi.net) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 12rIOY-0007kx-00; Mon, 15 May 2000 12:46:42 +0200 Date: Mon, 15 May 2000 12:46:42 +0200 From: Neil Blakey-Milner To: Paul Richards Cc: "Brian W. Buchanan" , Greg Lehey , current@freebsd.org Subject: Re: Breaking "build world" costs $5? (was: Can we please have acurrent that compiles?) Message-ID: <20000515124642.A29765@mithrandr.moria.org> References: <391FE2F5.9CB7411C@originative.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <391FE2F5.9CB7411C@originative.co.uk>; from paul@originative.co.uk on Mon, May 15, 2000 at 11:43:49AM +0000 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon 2000-05-15 (11:43), Paul Richards wrote: > The only problem being that at Desktop you can drop the $5 into the fine > box when you leave work but I'd have to walk down the bank and either do > a wire transfer or send an international money order. Apart from the > hassle involved there's the fact that all told it will cost me in the > region of $30-40 to pay the fine! > > A nice idea but not very practical for the FreeBSD project. The way I read it: "If you happen to be around a bunch of developers, and have some extra change, use the fact you broke world as an excuse to (help) buy them a round of drinks. Mention that it's because you broke world, and have a laugh about it." If you happen to be at BSDCon, so much the better, and may there be many merry nights of drunken revelry. It's team-building (ick!) in the fact that it gives you an easy opportunity to thank the people who work with you on the project, and to continue the pointy-hat metaphor for further amusement. There is no obligation, nor should there be. That's not how the project works, after all. Neil -- Neil Blakey-Milner Hacker In Chief, Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 5:11: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from Mail.Openet-Telecom.COM (opentisdn.isdn.dublin.esat.net [193.120.50.79]) by hub.freebsd.org (Postfix) with ESMTP id 3E43D37B505; Mon, 15 May 2000 05:10:52 -0700 (PDT) (envelope-from peter.edwards@openet-telecom.com) Received: from openet-telecom.com (rocklobster.openet-telecom.lan [10.0.0.40]) by Mail.Openet-Telecom.COM (8.9.3/8.9.3) with ESMTP id NAA72198; Mon, 15 May 2000 13:06:14 +0100 (IST) (envelope-from peter.edwards@openet-telecom.com) Message-ID: <391FE836.7DB49846@openet-telecom.com> Date: Mon, 15 May 2000 13:06:14 +0100 From: Peter Edwards Organization: Openet Telecom X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Nick Hibma Cc: phk@freebsd.org, FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic References: Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nick Hibma wrote: > > Correct me if I am wrong, but I don't think you actually have to > disassociate any dev_t's from the driver (by clearing the si_drv[12] > fields) because we call destroy_dev and cdevsw_remove, so any later uses > of dev_t's get an error because the device has gone away. > > Apart from that I don't think we the calls to cdevsw_add/_destroy in the > first place, because we create the cdevsw on demand (with make_dev). > > Poul, is this correct? > > nick Hi, For the specific case of vn, there is a one-to-many correspondance between vn instances and dev_ts. The make_dev()/destroy_dev() pairs only bracket one of the dev_ts. Opens on the same instances of the vn through different dev_t's just assign the former's softc to the latter's si_drv1 field. There is no corresponding "make_dev()" or "destroy_dev()" call for such dev_t in the vn driver, so the si_drv1 fields dangle after the driver is unloaded The cdevsw_remove only stops access to the offending dev_t's until the driver is loaded again. After that, the old dev_ts' si_drv1 fields are still dangling, and the vn driver ends up with a pointer to a free()d vn softc, and bites the dust. After reading the rest of the discussion on this thread, and moving out of my depth a little, I assume vn should probably be using disk_create()/disk_destroy(), and attaching its softc to the disk object rather than the device object. (However, I suppose given the special nature of vn, there might be reasons for not using this interface). I'll gladly "disk"ify vn as a mini- junior-kernel-hacker task if someone indicates that it is needed, and if no one more qualified wants to do it. -- Peter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 7:30:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by hub.freebsd.org (Postfix) with ESMTP id F3EFA37BA63 for ; Mon, 15 May 2000 07:30:07 -0700 (PDT) (envelope-from narvi@haldjas.folklore.ee) Received: from localhost (narvi@localhost) by haldjas.folklore.ee (8.9.3/8.9.3) with SMTP id QAA47096; Mon, 15 May 2000 16:28:32 +0200 (EET) (envelope-from narvi@haldjas.folklore.ee) Date: Mon, 15 May 2000 16:28:32 +0200 (EET) From: Narvi To: Paul Richards Cc: "Brian W. Buchanan" , Greg Lehey , current@FreeBSD.ORG Subject: Re: Breaking "build world" costs $5? (was: Can we please have acurrent that compiles?) In-Reply-To: <391FE2F5.9CB7411C@originative.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, Paul Richards wrote: > "Brian W. Buchanan" wrote: > > > > On Mon, 15 May 2000, Greg Lehey wrote: > > > > > > I see this money scheme as an extension of the "finger pointing" > > > > which does nothing to build team spirit. > > > > > > That depends very much on the way it's taken. At the moment, people > > > take the pointy hat voluntarily, not because it's forced on them. > > > It's my expectation that the $5 should be in the the same spirit. > > > > Exactly... it's not meant to be a complicated system of fines or to > > discourage people from developing (at Desktop, we certainly don't want > > that!), it's just a little bit of good-natured public humiliation to > > encourage people to think (and maybe test) before they commit. :-) > > The only problem being that at Desktop you can drop the $5 into the fine > box when you leave work but I'd have to walk down the bank and either do > a wire transfer or send an international money order. Apart from the > hassle involved there's the fact that all told it will cost me in the > region of $30-40 to pay the fine! > > A nice idea but not very practical for the FreeBSD project. > Just theoretically, there are e-gold and other payment things that are all that tied to things like 'geographical location'... > Paul. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 7:35:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from news.uni-kl.de (news.uni-kl.de [131.246.137.51]) by hub.freebsd.org (Postfix) with SMTP id E645B37B5B2 for ; Mon, 15 May 2000 07:35:53 -0700 (PDT) (envelope-from naddy@unix-ag.uni-kl.de) Received: from sushi.unix-ag.uni-kl.de ( root@sushi.unix-ag.uni-kl.de [131.246.89.13] ) by news.uni-kl.de id aa22556 for ; 15 May 2000 16:35 MESZ Received: from fettuccini.unix-ag.uni-kl.de (fettuccini.unix-ag.uni-kl.de [131.246.89.27]) by sushi.unix-ag.uni-kl.de (8.9.3/8.9.1) with ESMTP id QAA22804 for ; Mon, 15 May 2000 16:35:47 +0200 Received: (from naddy@localhost) by fettuccini.unix-ag.uni-kl.de (8.9.3/8.9.3) id TAA72976 for freebsd-current@freebsd.org; Wed, 10 May 2000 19:15:46 +0200 (CEST) (envelope-from naddy) Date: Wed, 10 May 2000 19:15:45 +0200 From: Christian Weisgerber To: freebsd-current@freebsd.org Subject: cvsup on recent -CURRENT Message-ID: <20000510191545.A72939@fettuccini.unix-ag.uni-kl.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On this machine which runs -CURRENT from two days ago or so, I'm seeing frequent cvsup client failures of this type: TreeList failed: Network write failure: Connection closed I don't recall ever running into this before. -- Christian "naddy" Weisgerber naddy@unix-ag.uni-kl.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 8: 0: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.rdc1.ct.home.com (ha1.rdc1.ct.home.com [24.2.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 5A8B137B61B for ; Mon, 15 May 2000 08:00:03 -0700 (PDT) (envelope-from tsikora@home.com) Received: from home.com ([24.2.168.186]) by mail.rdc1.ct.home.com (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20000515145957.RAJG18096.mail.rdc1.ct.home.com@home.com> for ; Mon, 15 May 2000 07:59:57 -0700 Message-ID: <392010CA.4A420033@home.com> Date: Mon, 15 May 2000 10:59:22 -0400 From: Ted Sikora Reply-To: tsikora@powerusersbbs.com Organization: Jtl Development X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.15 i686) X-Accept-Language: en-US,en-GB MIME-Version: 1.0 To: "freebsd-current@FreeBSD.ORG" Subject: Re: cvsup on recent -CURRENT References: <20000510191545.A72939@fettuccini.unix-ag.uni-kl.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Christian Weisgerber wrote: > > On this machine which runs -CURRENT from two days ago or so, I'm > seeing frequent cvsup client failures of this type: > > TreeList failed: Network write failure: Connection closed > > I don't recall ever running into this before. > Same here. Last night was okay. It started about 5 days ago. If you just start over it usually finishes okay. -- Ted Sikora Jtl Development Group tsikora@powerusersbbs.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 9: 8: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 14B4737B5C7; Mon, 15 May 2000 09:07:57 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id MAA281230; Mon, 15 May 2000 12:07:52 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Mon, 15 May 2000 12:07:47 -0400 To: Kris Kennaway , current@FreeBSD.ORG From: Garance A Drosihn Subject: Re: OpenSSH 2.1 Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 10:52 PM -0700 5/14/00, Kris Kennaway wrote: >* No longer a dependency on RSA (and therefore rsaref for US folks): > SSH2 can handle DSA keys which have no patent or usage restrictions. > This means we could now enable SSH2 out of the box in a crypto > installation, with no post-installation configuration requirements. ...except for people who do still need to have ssh1 support. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 9:11:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from gemma.TechFak.Uni-Bielefeld.DE (gemma.TechFak.Uni-Bielefeld.DE [129.70.136.103]) by hub.freebsd.org (Postfix) with ESMTP id A965837B6EF for ; Mon, 15 May 2000 09:11:30 -0700 (PDT) (envelope-from oschonef@TechFak.Uni-Bielefeld.DE) Received: from frizzantino.TechFak.Uni-Bielefeld.DE (frizzantino.TechFak.Uni-Bielefeld.DE [129.70.133.65]) by gemma.TechFak.Uni-Bielefeld.DE (8.9.1/8.9.1/TechFak/pk+ro20000427) with SMTP id SAA15378; Mon, 15 May 2000 18:11:22 +0200 (MET DST) From: Oliver Schonefeld Received: by frizzantino.TechFak.Uni-Bielefeld.DE (SMI-8.6/pk970604A) id SAA14791; Mon, 15 May 2000 18:11:22 +0200 Date: Mon, 15 May 2000 18:11:22 +0200 To: tsikora@powerusersbbs.com, naddy@unix-ag.uni-kl.de Cc: "freebsd-current@FreeBSD.ORG" Subject: Re: cvsup on recent -CURRENT Message-ID: <20000515181122.A14760@frizzantino.TechFak.Uni-Bielefeld.DE> References: <20000510191545.A72939@fettuccini.unix-ag.uni-kl.de> <392010CA.4A420033@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <392010CA.4A420033@home.com>; from tsikora@home.com on Mon, May 15, 2000 at 10:59:22AM -0400 X-Zen: Oooommmmmmmmmmmmmmmmmmmmmmm Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Eines schoenen Tages schrieb Ted Sikora: > Christian Weisgerber wrote: > > > > On this machine which runs -CURRENT from two days ago or so, I'm > > seeing frequent cvsup client failures of this type: > > > > TreeList failed: Network write failure: Connection closed > > > > I don't recall ever running into this before. > > > Same here. Last night was okay. It started about 5 days ago. If you just > start over it usually finishes okay. Same thing here, but much earlier. It seemed that TCP/IP ist (was?) broken on my machine. Downgraded to -STABLE, machine worked fine, up to -STABLE of last monday. I have the feeling, something in the delayed checksum calculations broke TCP/IP. unfortunalty i crashed the machine last night and still have recovery work to do, so i have no idea, if the bugs have been gone since the last commit of the vx driver. Btw ... not just cvsup showed strange behavior. Everthing dealing with TCP/IP seemed broken. 60% packet loss on ethernet is more than strange. But it seemed nobody else ws having this problem ... regards, oliver -- -------------------------------------------------------- And remember: "To Infinity And Far Beyond ... Somehow?!" email: oschonef@techfak.uni-bielefeld.de olli@psychopathen.org -------------------------------------------------------- Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 9:29:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 111B937B578 for ; Mon, 15 May 2000 09:29:46 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id JAA14189; Mon, 15 May 2000 09:29:37 -0700 (PDT) (envelope-from jdp@polstra.com) From: John Polstra Received: (from jdp@localhost) by vashon.polstra.com (8.9.3/8.9.1) id JAA80000; Mon, 15 May 2000 09:29:36 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Mon, 15 May 2000 09:29:36 -0700 (PDT) Message-Id: <200005151629.JAA80000@vashon.polstra.com> To: dmmiller@cvzoom.net Subject: Re: cvsup6.freebsd.org In-Reply-To: <391F8935.A4FCF453@cvzoom.net> References: <391F8935.A4FCF453@cvzoom.net> Organization: Polstra & Co., Seattle, WA Cc: current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <391F8935.A4FCF453@cvzoom.net>, Donn Miller wrote: > It seems to be responding very well to ping, but when I connect to > this server with cvsup, it basically says "connecting to > cvsup6.freebsd.org", and does nothing else. Is this server working? It does seem to be having problems. I wasn't able to do anything about it remotely, unfortunately. I have asked the on-site maintainer to take a look at it. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 9:55:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id 7C66E37BFE7; Mon, 15 May 2000 09:55:08 -0700 (PDT) (envelope-from andyf@speednet.com.au) Received: from backup.af.speednet.com.au (andyf@backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.9.3/8.9.3) with ESMTP id CAA45673; Tue, 16 May 2000 02:54:01 +1000 (EST) (envelope-from andyf@speednet.com.au) Date: Tue, 16 May 2000 02:54:00 +1000 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: Greg Lehey Cc: current@FreeBSD.ORG, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-Reply-To: <20000515125429.C541@freebie.lemis.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, Greg Lehey wrote: > >>>>> Maybe the comitters ought to take an idea from many software companies and > >>>>> contribute $5 to the beer fund every time they break the build. Have it > >>>>> all come due at the next BSDcon to fund a committer beer bash. :-) > >>> > >>> I think that we should make it $5.00 the first time. $10 the second > >>> time. $20 the third time, etc. > > > > Or perhaps we should tie it to the time it takes the security officer > > to fix... > > I think you're missing the point. The intention was the equivalent of > the pointy hat, just with the additional benefit that others might > have something out of it as well, no more. If the intention is derogatory, then perhaps an offender should be made to fix 5 PR's. Works around the underage drinking problem, too! :) > > Greg > -- > Finger grog@lemis.com for PGP public key > See complete headers for address and phone numbers > -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 9:56:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from anchor-post-30.mail.demon.net (anchor-post-30.mail.demon.net [194.217.242.88]) by hub.freebsd.org (Postfix) with ESMTP id 6236337BFE7 for ; Mon, 15 May 2000 09:56:27 -0700 (PDT) (envelope-from n_hibma@calcaphon.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by anchor-post-30.mail.demon.net with esmtp (Exim 2.12 #1) id 12rO8n-000IEm-0U; Mon, 15 May 2000 17:54:50 +0100 Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by bluebottle.qubesoft.com (8.9.3/8.9.1) with ESMTP id RAA38617; Mon, 15 May 2000 17:54:48 +0100 (BST) (envelope-from n_hibma@calcaphon.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id PAA82885; Mon, 15 May 2000 15:41:07 +0100 (BST) (envelope-from n_hibma@calcaphon.com) Date: Mon, 15 May 2000 15:41:07 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Christian Weisgerber Cc: freebsd-current@freebsd.org Subject: Re: cvsup on recent -CURRENT In-Reply-To: <20000510191545.A72939@fettuccini.unix-ag.uni-kl.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On this machine which runs -CURRENT from two days ago or so, I'm > seeing frequent cvsup client failures of this type: > > TreeList failed: Network write failure: Connection closed > > I don't recall ever running into this before. Which host are you pilling from? I am slurping things out of cvsup.uk.freebsd.org and see the same messages. I thought it was crappy modem connection. Nick -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 10:24:12 2000 Delivered-To: freebsd-current@freebsd.org Received: from tinker.exit.com (exit-gw.power.net [207.151.46.196]) by hub.freebsd.org (Postfix) with ESMTP id 56A7E37B6C1 for ; Mon, 15 May 2000 10:23:57 -0700 (PDT) (envelope-from frank@exit.com) Received: from realtime.exit.com (realtime.exit.com [206.223.0.5]) by tinker.exit.com (8.9.3/8.9.3) with ESMTP id KAA72842 for ; Mon, 15 May 2000 10:11:31 -0700 (PDT) (envelope-from frank@exit.com) Received: (from frank@localhost) by realtime.exit.com (8.9.3/8.9.3) id KAA16284 for current@freebsd.org; Mon, 15 May 2000 10:11:31 -0700 (PDT) (envelope-from frank) From: Frank Mayhar Message-Id: <200005151711.KAA16284@realtime.exit.com> Subject: Re: Breaking "build world" costs $5? (was: Can we please have acurrent that compiles?) In-Reply-To: from Narvi at "May 15, 2000 04:28:32 pm" To: Narvi Date: Mon, 15 May 2000 09:14:44 -0700 (PDT) Cc: Paul Richards , "Brian W. Buchanan" , Greg Lehey , current@FreeBSD.ORGG Reply-To: frank@exit.com Organization: Exit Consulting X-Copyright0: Copyright 2000 Frank Mayhar. All Rights Reserved. X-Copyright1: Permission granted for electronic reproduction as Usenet News or email only. X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Narvi wrote: > On Mon, 15 May 2000, Paul Richards wrote: > > The only problem being that at Desktop you can drop the $5 into the fine > > box when you leave work but I'd have to walk down the bank and either do > > a wire transfer or send an international money order. Apart from the > > hassle involved there's the fact that all told it will cost me in the > > region of $30-40 to pay the fine! > > A nice idea but not very practical for the FreeBSD project. > Just theoretically, there are e-gold and other payment things that are all > that tied to things like 'geographical location'... I'll tell you what. If folks agree, I can add a SKU to my store for a "FreeBSD broken build" item. Cost $5.00, no tax or shipping. You can use a credit card (AmEx, Visa, MC) or send me a check. (I'll absorb the credit card overhead, hell, 2% of $5.00 is only ten cents.) I'll stick it back and when I have accumulated a reasonable amount (say, at least $50) I'll send a check to Jordan. Or if he'll give me a billing address, I could probably just do an EFT straight into the FreeBSD Project's account every time I received one of these. So, does this make sense? Or is it a dumb idea? For that matter, the FreeBSD Mall site could do the same thing. -- Frank Mayhar frank@exit.com http://www.exit.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 10:36:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id B40E537B9E0 for ; Mon, 15 May 2000 10:36:54 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id TAA06342; Mon, 15 May 2000 19:36:38 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nick Hibma Cc: Christian Weisgerber , freebsd-current@FreeBSD.ORG Subject: Re: cvsup on recent -CURRENT In-reply-to: Your message of "Mon, 15 May 2000 15:41:07 BST." Date: Mon, 15 May 2000 19:36:38 +0200 Message-ID: <6340.958412198@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Nick Hibma wri tes: >> On this machine which runs -CURRENT from two days ago or so, I'm >> seeing frequent cvsup client failures of this type: >> >> TreeList failed: Network write failure: Connection closed >> >> I don't recall ever running into this before. > >Which host are you pilling from? I am slurping things out of >cvsup.uk.freebsd.org and see the same messages. I thought it was crappy >modem connection. Try to disable the newreno stuff. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 10:41: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id C446137B515 for ; Mon, 15 May 2000 10:41:01 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id TAA06392 for ; Mon, 15 May 2000 19:40:57 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: current@freebsd.org Subject: src/bin/csh/csh.1 breaks R/O /usr/src builds From: Poul-Henning Kamp Date: Mon, 15 May 2000 19:40:57 +0200 Message-ID: <6390.958412457@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG in src/bin/csh a make clean tries to delete csh.1 this fails if src is mounted Read-Only. Why is this file checked in in the first place if make clean wants to remove it ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 13: 0:36 2000 Delivered-To: freebsd-current@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 0DE2F37B578 for ; Mon, 15 May 2000 13:00:30 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id MAA35689; Mon, 15 May 2000 12:59:51 -0700 (PDT) From: Archie Cobbs Message-Id: <200005151959.MAA35689@bubba.whistle.com> Subject: Re: buildworld error: now it's ngctl In-Reply-To: <200005131958.PAA07592@rtp.tfd.com> from Kent Hauser at "May 13, 2000 03:58:45 pm" To: kent@tfd.com (Kent Hauser) Date: Mon, 15 May 2000 12:59:51 -0700 (PDT) Cc: current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kent Hauser writes: > ===> usr.sbin/ngctl > cc -O -pipe -Wall -c /usr/src/usr.sbin/ngctl/types.c > /usr/src/usr.sbin/ngctl/types.c: In function `TypesCmd': > /usr/src/usr.sbin/ngctl/types.c:86: structure has no member named `type_name' > *** Error code 1 That commit was a couple of weeks ago.. you probably have an old version of /sys/netgraph/ng_message.h installed... can you check it? -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 14:45: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 8D18D37B8B9 for ; Mon, 15 May 2000 14:44:52 -0700 (PDT) (envelope-from daemon@mips.inka.de) Received: from bigeye.rhein-neckar.de (uucp@) by mail.inka.de with local-bsmtp id 12rSfP-0006eQ-01; Mon, 15 May 2000 23:44:47 +0200 Received: (from daemon@localhost) by bigeye.rhein-neckar.de (8.9.3/8.9.3) id WAA97895 for freebsd-current@freebsd.org; Mon, 15 May 2000 22:52:47 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: cvsup on recent -CURRENT Date: 15 May 2000 22:52:46 +0200 Message-ID: <8fpo2u$2viq$1@bigeye.rhein-neckar.de> References: <20000510191545.A72939@fettuccini.unix-ag.uni-kl.de> To: freebsd-current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG (My original question should have gone out last Thursday but had been stuck in a mail queue since.) Nick Hibma wrote: > > TreeList failed: Network write failure: Connection closed > > Which host are you pilling from? I am slurping things out of > cvsup.uk.freebsd.org and see the same messages. The problem was most apparent with cvsup.uk.openbsd.org, which is probably the same machine. It was less severe with cvsup.pasta.cs.uit.no, and didn't occur at all with cvsup3.de.freebsd.org and for localhost connections. Disabling newreno sysctl -w net.inet.tcp.newreno=0 immediately fixed the problem, so I guess we have the culprit there. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 14:58:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from overcee.netplex.com.au (peter1.yahoo.com [208.48.107.4]) by hub.freebsd.org (Postfix) with ESMTP id 73B2D37B8CF for ; Mon, 15 May 2000 14:58:45 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 7D8581CD7; Mon, 15 May 2000 14:58:44 -0700 (PDT) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: naddy@mips.inka.de (Christian Weisgerber) Cc: freebsd-current@FreeBSD.ORG Subject: Re: cvsup on recent -CURRENT In-Reply-To: Message from naddy@mips.inka.de (Christian Weisgerber) of "15 May 2000 22:52:46 +0200." <8fpo2u$2viq$1@bigeye.rhein-neckar.de> Date: Mon, 15 May 2000 14:58:44 -0700 From: Peter Wemm Message-Id: <20000515215844.7D8581CD7@overcee.netplex.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Christian Weisgerber wrote: > (My original question should have gone out last Thursday but had > been stuck in a mail queue since.) > > Nick Hibma wrote: > > > > TreeList failed: Network write failure: Connection closed > > > > Which host are you pilling from? I am slurping things out of > > cvsup.uk.freebsd.org and see the same messages. > > The problem was most apparent with cvsup.uk.openbsd.org, which is > probably the same machine. It was less severe with cvsup.pasta.cs.uit.no, > and didn't occur at all with cvsup3.de.freebsd.org and for localhost > connections. > > Disabling newreno > > sysctl -w net.inet.tcp.newreno=0 > > immediately fixed the problem, so I guess we have the culprit there. Yes, there is a known bug in the newreno code. It was committed prematurely (before Jayanth was ready). Jayanth has fixed the problem and is doing some serious testing before committing a fix and reactivating it. The newreno sysctl defaults to off for the time being and has for a few days. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 16: 5:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.interniq.org (mail.interniq.org [207.174.139.135]) by hub.freebsd.org (Postfix) with ESMTP id BD4AB37B911; Mon, 15 May 2000 16:04:57 -0700 (PDT) (envelope-from emre@interniq.org) Received: from interniq.org (adsl-78-214-169.bhm.bellsouth.net [216.78.214.169]) by mail.interniq.org (1.3.3.7/1.3.3.7) with ESMTP id HAA22785; Mon, 15 May 2000 07:05:30 -0600 Message-ID: <39209F4C.F10440A3@interniq.org> Date: Mon, 15 May 2000 20:07:24 -0500 From: emre X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-emulation@freebsd.org, freebsd-current@freebsd.org Subject: linux-flashplugin...no sound? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, This is really not that important and in case it doesn't work or if there is no solution for this, I'll live :) I'm running FreeBSD 5.0-20000419-CURRENT on i386, and I'm using the ports from whatever date I installed the system. Linux emulation and all that stuff works fine (I had a problem with real player which is fixed now). I installed the macromedia flash plugin for Linux and I am also using the Linux version of Communicator (with no problems by the way). The flash plugin also seems to do its job, with one exception: there is no sound. I've made sure that there is no other application using the sound device (/dev/dsp0?) and my sound works with other apps (like MP3), but not when I try to view sound-enables flash sites. The flash animations and such work, just not the sound :( Is there a way I can make it work (or is it even possible)? Thanks for your time... (PS please e-mail me in private, im not on the lists) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 16:18:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from field.videotron.net (field.videotron.net [205.151.222.108]) by hub.freebsd.org (Postfix) with ESMTP id 7144137B91C; Mon, 15 May 2000 16:18:07 -0700 (PDT) (envelope-from bmilekic@dsuper.net) Received: from modemcable009.62-201-24.mtl.mc.videotron.net ([24.201.62.9]) by field.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with ESMTP id <0FUM000NLJCVME@field.videotron.net>; Mon, 15 May 2000 19:17:20 -0400 (EDT) Date: Mon, 15 May 2000 19:18:43 -0400 (EDT) From: Bosko Milekic Subject: Re: linux-flashplugin...no sound? In-reply-to: <39209F4C.F10440A3@interniq.org> X-Sender: bmilekic@jehovah.technokratis.com To: emre Cc: freebsd-emulation@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, emre wrote: > Hi, > > This is really not that important and in case it doesn't work or if there > > is no solution for this, I'll live :) > > I'm running FreeBSD 5.0-20000419-CURRENT on i386, and I'm using the ports > > from whatever date I installed the system. Linux emulation and all that > > stuff works fine (I had a problem with real player which is fixed now). I > > installed the macromedia flash plugin for Linux and I am also using the > > Linux version of Communicator (with no problems by the way). > > The flash plugin also seems to do its job, with one exception: there is no > > sound. I've made sure that there is no other application using the sound > Yes, try cvsup-ing more recent sources. I re-call having problems with the linux flash plugin and sound around that date. After rebuilding a more recent world, all was well again. As I recall at least one more person having the exact same problem at the same time, I don't believe it to be an isolated case. --Bosko -- Bosko Milekic * pages.infinit.net/bmilekic/index.html * www.technokratis.com bmilekic@dsuper.net * bmilekic@technokratis.com * b.milekic@marianopolis.edu "Give a man a fish and he will eat for a day. Teach him how to fish, and he will sit in a boat and drink beer all day." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20: 0:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id 8DE2C37B6A0 for ; Mon, 15 May 2000 20:00:46 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id TAA62782; Mon, 15 May 2000 19:59:58 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <200005160259.TAA62782@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: current@freebsd.org Cc: Nate Williams Subject: Motif is now Open Source 8) Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Date: Mon, 15 May 2000 19:59:58 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Check it out at: http://www.opengroup.org/openmotif/ "We want to support the momentum of Open Source operating systems such as= Linux=AE and FreeBSD by developing an Open Motif=AE licence for use with = Open Source operating systems." Also the OpenGroup is looking for sites to mirror their Motif = distribution 8) Happy Downloading! -- = Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20: 8:29 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.cvzoom.net (ns.cvzoom.net [208.226.154.2]) by hub.freebsd.org (Postfix) with SMTP id E51C137B99B for ; Mon, 15 May 2000 20:08:25 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 20551 invoked from network); 16 May 2000 03:08:23 -0000 Received: from lc210.cvzoom.net (HELO cvzoom.net) (208.226.154.210) by ns.cvzoom.net with SMTP; 16 May 2000 03:08:23 -0000 Message-ID: <3920BBA7.E51BC7B6@cvzoom.net> Date: Mon, 15 May 2000 23:08:23 -0400 From: Donn Miller X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Subject: Re: Motif is now Open Source 8) References: <200005160259.TAA62782@rah.star-gate.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Amancio Hasty wrote: > > Check it out at: > http://www.opengroup.org/openmotif/ Yes, that is great news! I tried compiling it, but I had trouble with lib/Xm/Scale.c. It wanted to include , which FreeBSD doesn't have. So, I copied langinfo.h from /usr/compat/linux/usr/include, but even then, there was this constant that was undeclared. So, did you get it to compile, and would you mind posting a patch? I understand some FreeBSD people (epecially the JDK folks) really want to run Motif on FreeBSD. Way to go, Open Group. That ought to shut up the Linux Qt/Gtk "we want everything on the planet free w/source code" whiners. I mean, I like Qt and Gtk. But, having Motif source freely available for Linux and FreeBSD is a big step, IMO. - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20:25:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 0F52E37B9D8 for ; Mon, 15 May 2000 20:25:11 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id VAA22446; Mon, 15 May 2000 21:25:08 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id VAA13404; Mon, 15 May 2000 21:25:07 -0600 (MDT) (envelope-from nate) Date: Mon, 15 May 2000 21:25:07 -0600 (MDT) Message-Id: <200005160325.VAA13404@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable To: Amancio Hasty Cc: current@freebsd.org, Nate Williams Subject: Re: Motif is now Open Source 8) In-Reply-To: <200005160259.TAA62782@rah.star-gate.com> References: <200005160259.TAA62782@rah.star-gate.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Check it out at: > http://www.opengroup.org/openmotif/ >=20 > "We want to support the momentum of Open Source operating systems suc= h as > Linux=AE and FreeBSD by developing an Open Motif=AE licence for use w= ith=20 > Open Source operating systems." >=20 > Also the OpenGroup is looking for sites to mirror their Motif=20 > distribution 8) I have a copy. However, the license is 'interesting' enough to read that I'm not sure it can be used inside the JDK distribution, so if someone can give me an explanation that I can understand that I'm legal= to distribute the library as part of an application, please show me in terms a mere engineer can understand. Thanks! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20:50:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id EC4C237BA43 for ; Mon, 15 May 2000 20:50:17 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id UAA63159; Mon, 15 May 2000 20:49:32 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <200005160349.UAA63159@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: nate@yogotech.com (Nate Williams) Cc: current@freebsd.org Subject: Re: Motif is now Open Source 8) In-reply-to: Your message of "Mon, 15 May 2000 21:25:07 MDT." <200005160325.VAA13404@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Date: Mon, 15 May 2000 20:49:32 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > = > I have a copy. However, the license is 'interesting' enough to read > that I'm not sure it can be used inside the JDK distribution, so if > someone can give me an explanation that I can understand that I'm legal= > to distribute the library as part of an application, please show me in > terms a mere engineer can understand. I think that you no longer have to include Motif with the JDK. Just let the distribution of Motif come from freebsd.org , i.e., a port or a package. My take is that companies distributing FreeBSD or linux are free to distribute the source and binary for those "Open Source" operating systems. -- = Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20:52: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id D902737BA05 for ; Mon, 15 May 2000 20:52:05 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id VAA22716; Mon, 15 May 2000 21:52:04 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id VAA13667; Mon, 15 May 2000 21:52:03 -0600 (MDT) (envelope-from nate) Date: Mon, 15 May 2000 21:52:03 -0600 (MDT) Message-Id: <200005160352.VAA13667@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Amancio Hasty Cc: nate@yogotech.com (Nate Williams), current@freebsd.org Subject: Re: Motif is now Open Source 8) In-Reply-To: <200005160349.UAA63159@rah.star-gate.com> References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I have a copy. However, the license is 'interesting' enough to read > > that I'm not sure it can be used inside the JDK distribution, so if > > someone can give me an explanation that I can understand that I'm legal > > to distribute the library as part of an application, please show me in > > terms a mere engineer can understand. > > I think that you no longer have to include Motif with the JDK. > Just let the distribution of Motif come from freebsd.org , i.e., > a port or a package. Too much hassle IMO. I'd *much* rather distribute it as part of the package, and I'm looking into how feasible it would be to distribute inside of the JDK. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 20:55: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id 330E337BA0D for ; Mon, 15 May 2000 20:55:00 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id UAA63281; Mon, 15 May 2000 20:54:15 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <200005160354.UAA63281@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: nate@yogotech.com (Nate Williams) Cc: current@freebsd.org Subject: Re: Motif is now Open Source 8) In-reply-to: Your message of "Mon, 15 May 2000 21:52:03 MDT." <200005160352.VAA13667@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 15 May 2000 20:54:15 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > I have a copy. However, the license is 'interesting' enough to read > > > that I'm not sure it can be used inside the JDK distribution, so if > > > someone can give me an explanation that I can understand that I'm legal > > > to distribute the library as part of an application, please show me in > > > terms a mere engineer can understand. > > > > I think that you no longer have to include Motif with the JDK. > > Just let the distribution of Motif come from freebsd.org , i.e., > > a port or a package. > > Too much hassle IMO. I'd *much* rather distribute it as part of the > package, and I'm looking into how feasible it would be to distribute > inside of the JDK. > Well, just asked them because I don't see any problems in doing what you want because is for an Open Source Operating System. -- Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:20:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id EC37A37B8E0; Mon, 15 May 2000 21:20:15 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.cdrom.com (8.9.3/8.9.3) with ESMTP id VAA19018; Mon, 15 May 2000 21:21:55 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) To: Greg Lehey Cc: "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-reply-to: Your message of "Sun, 14 May 2000 10:19:21 +0930." <20000514101921.F847@freebie.lemis.com> Date: Mon, 15 May 2000 21:21:54 -0700 Message-ID: <19015.958450914@localhost> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Maybe the comitters ought to take an idea from many software companies and > > contribute $5 to the beer fund every time they break the build. Have it > > all come due at the next BSDcon to fund a committer beer bash. :-) > > I'd go along with that. What do the other committers think? I think it's a genuinely stupid idea. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:22:17 2000 Delivered-To: freebsd-current@freebsd.org Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id B43A437B9C4 for ; Mon, 15 May 2000 21:22:15 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.cdrom.com (8.9.3/8.9.3) with ESMTP id VAA19037; Mon, 15 May 2000 21:24:08 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) To: Kent Hauser Cc: current@FreeBSD.ORG Subject: Re: make release problem In-reply-to: Your message of "Sat, 13 May 2000 22:23:16 EDT." <200005140223.AA16113@lab1.tfd.com> Date: Mon, 15 May 2000 21:24:07 -0700 Message-ID: <19034.958451047@localhost> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > In trying to build "make release" today, I discovered that the > "vn" driver is required now to build the boot floppies. You make it sound like a new thing - the release process has required the vn device for years. > I would suggest that this driver be added to "GENERIC". For It's already dynamically loadable now. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:46:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from rtp.tfd.com (rtp.tfd.com [198.79.53.206]) by hub.freebsd.org (Postfix) with ESMTP id D714437B606 for ; Mon, 15 May 2000 21:46:16 -0700 (PDT) (envelope-from kent@lab1.tfd.com) Received: from lab1.tfd.com (lab1.tfd.com [10.9.200.31]) by rtp.tfd.com (8.9.3/8.9.3) with SMTP id AAA01192; Tue, 16 May 2000 00:43:35 -0400 (EDT) Received: by lab1.tfd.com id AA02886 (5.67b/IDA-1.5); Tue, 16 May 2000 00:43:23 -0400 Date: Tue, 16 May 2000 00:43:23 -0400 From: Kent Hauser Message-Id: <200005160443.AA02886@lab1.tfd.com> To: jkh@zippy.cdrom.com Subject: Re: make release problem Cc: current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> In trying to build "make release" today, I discovered that the >> "vn" driver is required now to build the boot floppies. > >You make it sound like a new thing - the release process has required >the vn device for years. Jordan, Thanks for your time. I guess I need to rephrase my comment I've done a dozen or so "make releases" this year. Until last week (or so), I didn't have nor need the "vn" driver in my kernel. Now release fails without it. Let me just suggest that something is (or was) somewhat broken. Best Regards, Kent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:47:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from tinker.exit.com (exit-gw.power.net [207.151.46.196]) by hub.freebsd.org (Postfix) with ESMTP id 4E03737B606; Mon, 15 May 2000 21:47:08 -0700 (PDT) (envelope-from frank@exit.com) Received: from realtime.exit.com (realtime.exit.com [206.223.0.5]) by tinker.exit.com (8.9.3/8.9.3) with ESMTP id VAA77517; Mon, 15 May 2000 21:47:07 -0700 (PDT) (envelope-from frank@exit.com) Received: (from frank@localhost) by realtime.exit.com (8.9.3/8.9.3) id VAA02283; Mon, 15 May 2000 21:47:06 -0700 (PDT) (envelope-from frank) From: Frank Mayhar Message-Id: <200005160447.VAA02283@realtime.exit.com> Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) In-Reply-To: <19015.958450914@localhost> from "Jordan K. Hubbard" at "May 15, 2000 09:21:54 pm" To: "Jordan K. Hubbard" Date: Mon, 15 May 2000 21:47:06 -0700 (PDT) Cc: Greg Lehey , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.ORG, FreeBSD Committers Reply-To: frank@exit.com Organization: Exit Consulting X-Copyright0: Copyright 2000 Frank Mayhar. All Rights Reserved. X-Copyright1: Permission granted for electronic reproduction as Usenet News or email only. X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jordan K. Hubbard wrote: > > > Maybe the comitters ought to take an idea from many software companies and > > > contribute $5 to the beer fund every time they break the build. Have it > > > all come due at the next BSDcon to fund a committer beer bash. :-) > > I'd go along with that. What do the other committers think? > I think it's a genuinely stupid idea. Hey, you'll get sodas out of it! And while they're all drunk, you should be able to get them to agree to anything you want. :-) -- Frank Mayhar frank@exit.com http://www.exit.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:50: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id B915737BA21; Mon, 15 May 2000 21:50:01 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.cdrom.com (8.9.3/8.9.3) with ESMTP id VAA19221; Mon, 15 May 2000 21:51:59 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: OpenSSH 2.1 In-reply-to: Your message of "Sun, 14 May 2000 22:52:11 PDT." Date: Mon, 15 May 2000 21:51:59 -0700 Message-ID: <19218.958452719@localhost> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > * No longer a dependency on RSA (and therefore rsaref for US folks): SSH2 > can handle DSA keys which have no patent or usage restrictions. This means > we could now enable SSH2 out of the box in a crypto installation, with no > post-installation configuration requirements. We now have a truly free SSH > client/server! I wonder if we even have to have it be part of the crypto distribution in such an event. I always thought it would have been nice if it could have come with the bindist, and if it doesn't have any "crypto" dependencies or bits which explicitly *require* its' continued segregation into the crypto dist, maybe we could move it over? - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 21:55: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 11F3637B606; Mon, 15 May 2000 21:54:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id VAA47759; Mon, 15 May 2000 21:54:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 15 May 2000 21:54:52 -0700 (PDT) From: Kris Kennaway To: "Jordan K. Hubbard" Cc: current@FreeBSD.ORG Subject: Re: OpenSSH 2.1 In-Reply-To: <19218.958452719@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, Jordan K. Hubbard wrote: > I wonder if we even have to have it be part of the crypto distribution > in such an event. I always thought it would have been nice if it > could have come with the bindist, and if it doesn't have any "crypto" > dependencies or bits which explicitly *require* its' continued > segregation into the crypto dist, maybe we could move it over? Err, well it still requires openssl, which I think is firmly rooted in the crypto distribution as long as we have one. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 23:12:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from tomts3-srv.bellnexxia.net (tomts3.bellnexxia.net [209.226.175.141]) by hub.freebsd.org (Postfix) with ESMTP id 3544437B5BE; Mon, 15 May 2000 23:12:31 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: from localhost.nowhere ([206.172.130.74]) by tomts3-srv.bellnexxia.net (InterMail vM.4.01.02.17 201-229-119) with ESMTP id <20000516061229.LRVI24624.tomts3-srv.bellnexxia.net@localhost.nowhere>; Tue, 16 May 2000 02:12:29 -0400 Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id CAA09306; Tue, 16 May 2000 02:12:24 -0400 (EDT) (envelope-from tim) Date: Tue, 16 May 2000 02:12:24 -0400 From: Tim Vanderhoek To: "Jordan K. Hubbard" Cc: Greg Lehey , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) Message-ID: <20000516021223.A9251@mad> References: <20000514101921.F847@freebie.lemis.com> <19015.958450914@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <19015.958450914@localhost>; from Jordan K. Hubbard on Mon, May 15, 2000 at 09:21:54PM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, May 15, 2000 at 09:21:54PM -0700, Jordan K. Hubbard wrote: > > > Maybe the comitters ought to take an idea from many software companies and > > > contribute $5 to the beer fund every time they break the build. Have it > > > all come due at the next BSDcon to fund a committer beer bash. :-) > > > > I'd go along with that. What do the other committers think? > > I think it's a genuinely stupid idea. It was sufficiently stupid that my previously stated opinion on the topic was in anger so hastily written and fired-off that only its immediate target understood quite how rude I was being, rather than the broad audience I had been hoping for. -- Signature withheld by request of author. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon May 15 23:12:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id 5D13037B5BE; Mon, 15 May 2000 23:12:49 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.cdrom.com (8.9.3/8.9.3) with ESMTP id XAA54372; Mon, 15 May 2000 23:14:46 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) To: Kris Kennaway Cc: "Jordan K. Hubbard" , current@FreeBSD.org Subject: Re: OpenSSH 2.1 In-reply-to: Your message of "Mon, 15 May 2000 21:54:52 PDT." Date: Mon, 15 May 2000 23:14:46 -0700 Message-ID: <54363.958457686@localhost> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Err, well it still requires openssl, which I think is firmly rooted in the > crypto distribution as long as we have one. Is it? I thought the RSAref code being pluggable gave it some protection, or is merely "pluggability" also classified as crypto? I do recall someone saying something to that effect once... - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 2:13: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 9FE1A37B59C for ; Tue, 16 May 2000 02:13:00 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12rdPE-0007KH-00; Tue, 16 May 2000 11:12:48 +0200 From: Sheldon Hearn To: Donn Miller Cc: current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-reply-to: Your message of "Mon, 15 May 2000 23:08:23 -0400." <3920BBA7.E51BC7B6@cvzoom.net> Date: Tue, 16 May 2000 11:12:47 +0200 Message-ID: <28164.958468367@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000 23:08:23 -0400, Donn Miller wrote: > > Check it out at: > > http://www.opengroup.org/openmotif/ > > Yes, that is great news! I tried compiling it, but I had trouble with > lib/Xm/Scale.c. It wanted to include , which FreeBSD > doesn't have. I've integrated NetBSD's langinfo and nl_types support into FreeBSD. I can send you patches if you haven't managed to work around this yet? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 2:58:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.cvzoom.net (ns.cvzoom.net [208.226.154.2]) by hub.freebsd.org (Postfix) with SMTP id AA71837B627 for ; Tue, 16 May 2000 02:58:23 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 1475 invoked from network); 16 May 2000 09:58:23 -0000 Received: from lc210.cvzoom.net (208.226.154.210) by ns.cvzoom.net with SMTP; 16 May 2000 09:58:23 -0000 Date: Tue, 16 May 2000 05:58:22 -0400 (EDT) From: Donn Miller To: Sheldon Hearn Cc: current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: <28164.958468367@axl.ops.uunet.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 16 May 2000, Sheldon Hearn wrote: > I've integrated NetBSD's langinfo and nl_types support into FreeBSD. I > can send you patches if you haven't managed to work around this yet? Great. Please send me the patches. BTW, by "integrated", do you mean that you've integrated them into the base FreeBSD distribution, or is it a port (or merely a set of patches)? Thanks. - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 7:51:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 0831237B660 for ; Tue, 16 May 2000 07:51:42 -0700 (PDT) (envelope-from dscheidt@enteract.com) Received: from shell-2.enteract.com (dscheidt@shell-2.enteract.com [207.229.143.41]) by mail.enteract.com (8.9.3/8.9.3) with SMTP id JAA68675; Tue, 16 May 2000 09:51:40 -0500 (CDT) (envelope-from dscheidt@enteract.com) Date: Tue, 16 May 2000 09:51:40 -0500 (CDT) From: David Scheidt To: Bush Doctor Cc: FreeBSD-current@FreeBSD.ORG Subject: Re: Archive pruning In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 28 Apr 2000, David Scheidt wrote: > On Fri, 28 Apr 2000, Bush Doctor wrote: > > > Out of da blue David Scheidt aka (dscheidt@enteract.com) said: > > > > > > Not incidently, SCO have waived the $100 license application fee, which > > > means that you can get your own official Ancient UNIX(TM) Source Code > > > License for free. This roughly cuts in half the cost of the disks for > > > someone not covered under a orginizaitonal souce code license. > > Is there a new license form to sign or do we just fill out the current > > form without sending the applicateion fee? > > > > I don't know. SCO just made the announcement a week or two ago -- the same > time they BSD licensed cscope -- and don't appear to have made changes to > their web site yet. > > The press release is at http://www.sco.com/press/releases/2000/6927.html > It might be worthwhile to attempt to contact the contact name on the > release. SCO have updated their webpages, to show that they are now giving these licenses away. See http://www.sco.com/offers/ancient.html. They also have have the 5th, 6th and 7th edition UNIXs available, as well as system III and 32V available. David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 8:33: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id CF25737B61A for ; Tue, 16 May 2000 08:33:01 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id LAA96950; Tue, 16 May 2000 11:32:51 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <200005160352.VAA13667@nomad.yogotech.com> References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> <200005160352.VAA13667@nomad.yogotech.com> Date: Tue, 16 May 2000 11:32:44 -0400 To: nate@yogotech.com (Nate Williams), Amancio Hasty From: Garance A Drosihn Subject: Re: Motif is now Open Source 8) Cc: nate@yogotech.com (Nate Williams), current@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I think that you no longer have to include Motif with the JDK. > > Just let the distribution of Motif come from freebsd.org , i.e., > > a port or a package. > >Too much hassle IMO. I'd *much* rather distribute it as part of the >package, and I'm looking into how feasible it would be to distribute >inside of the JDK. If this Open Motif can be distributed as a port or package for FreeBSD itself (and it seems to me that it can), then what hassle is that for JDK on FreeBSD? My guess is the Open Motif port/package will exist on FreeBSD anyway, for those who want motif but are not going to install JDK. At that point, it's just another package-dependency for the JDK like any other package-dependency. Certainly no one will want TWO copies of Open Motif... --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 8:35:27 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id CB70A37B791 for ; Tue, 16 May 2000 08:35:24 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id JAA27937; Tue, 16 May 2000 09:35:20 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id JAA15828; Tue, 16 May 2000 09:35:20 -0600 (MDT) (envelope-from nate) Date: Tue, 16 May 2000 09:35:20 -0600 (MDT) Message-Id: <200005161535.JAA15828@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Garance A Drosihn Cc: nate@yogotech.com (Nate Williams), Amancio Hasty , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> <200005160352.VAA13667@nomad.yogotech.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > I think that you no longer have to include Motif with the JDK. > > > Just let the distribution of Motif come from freebsd.org , i.e., > > > a port or a package. > > > >Too much hassle IMO. I'd *much* rather distribute it as part of the > >package, and I'm looking into how feasible it would be to distribute > >inside of the JDK. > > If this Open Motif can be distributed as a port or package for FreeBSD > itself (and it seems to me that it can), then what hassle is that for > JDK on FreeBSD? It requires two downloads to get a working JDK system. No other OS requires multiple packages to work. People shouldn't have to compile Motif up just to get a non-source version of the JDK to work. Versioning problems that can be caused by folks using different include files and/or X than what was used to build the JDK. Bugs that have slipped in due to changes in the Motif port that negatively effect the JDK. Shall I go on? Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 10: 5:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 72B0237BADF; Tue, 16 May 2000 10:05:39 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c02-161.006.popsite.net [216.126.135.161]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id KAA50998; Tue, 16 May 2000 10:05:31 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id KAA43925; Tue, 16 May 2000 10:06:10 -0700 (PDT) (envelope-from obrien) Date: Tue, 16 May 2000 10:06:09 -0700 From: "David O'Brien" To: Kris Kennaway Cc: current@FreeBSD.org Subject: Re: OpenSSH 2.1 Message-ID: <20000516100609.A42581@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <19218.958452719@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from kris@FreeBSD.org on Mon, May 15, 2000 at 09:54:52PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, May 15, 2000 at 09:54:52PM -0700, Kris Kennaway wrote: > Err, well it still requires openssl, which I think is firmly rooted in the > crypto distribution as long as we have one. Even so, moving SSH into the bindist would be one less thing that has to be merged into Internat all the time. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 10:27:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from manatee.mammalia.org (manatee.mammalia.org [216.231.50.6]) by hub.freebsd.org (Postfix) with ESMTP id 86A8937B7E4 for ; Tue, 16 May 2000 10:27:38 -0700 (PDT) (envelope-from rjoseph@mammalia.org) Received: from localhost (rjoseph@localhost) by manatee.mammalia.org (8.9.3/8.9.3) with ESMTP id KAA57882; Tue, 16 May 2000 10:27:26 -0700 (PDT) (envelope-from rjoseph@mammalia.org) Date: Tue, 16 May 2000 10:27:26 -0700 (PDT) From: R Joseph Wright To: Sheldon Hearn Cc: Donn Miller , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: <28164.958468367@axl.ops.uunet.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 16 May 2000, Sheldon Hearn wrote: > > > On Mon, 15 May 2000 23:08:23 -0400, Donn Miller wrote: > > > > Check it out at: > > > http://www.opengroup.org/openmotif/ > > > > Yes, that is great news! I tried compiling it, but I had trouble with > > lib/Xm/Scale.c. It wanted to include , which FreeBSD > > doesn't have. > > I've integrated NetBSD's langinfo and nl_types support into FreeBSD. I > can send you patches if you haven't managed to work around this yet? > That's interesting. I compiled it without problems. Why would it look for on one machine and not another? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 10:34: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from finch-post-11.mail.demon.net (finch-post-11.mail.demon.net [194.217.242.39]) by hub.freebsd.org (Postfix) with ESMTP id 34F1437B890 for ; Tue, 16 May 2000 10:34:03 -0700 (PDT) (envelope-from n_hibma@calcaphon.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by finch-post-11.mail.demon.net with esmtp (Exim 2.12 #1) id 12rlDz-0006fb-0B; Tue, 16 May 2000 17:33:49 +0000 Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by bluebottle.qubesoft.com (8.9.3/8.9.1) with ESMTP id SAA25788; Tue, 16 May 2000 18:33:09 +0100 (BST) (envelope-from n_hibma@calcaphon.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id QAA84757; Tue, 16 May 2000 16:58:12 +0100 (BST) (envelope-from n_hibma@calcaphon.com) Date: Tue, 16 May 2000 16:58:12 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Christian Weisgerber Cc: freebsd-current@freebsd.org Subject: Re: cvsup on recent -CURRENT In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Which host are you pilling from? I am slurping things out of ^^^^^^^ I've seen this post now three times and I still can't remember what word I wanted to use there. :-) It must be age I guess... Nick -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 10:42:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 3D91F37B784 for ; Tue, 16 May 2000 10:42:08 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id NAA249892; Tue, 16 May 2000 13:41:49 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <200005161535.JAA15828@nomad.yogotech.com> References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> <200005160352.VAA13667@nomad.yogotech.com> <200005161535.JAA15828@nomad.yogotech.com> Date: Tue, 16 May 2000 13:05:56 -0400 To: nate@yogotech.com (Nate Williams) From: Garance A Drosihn Subject: Re: Motif is now Open Source 8) Cc: nate@yogotech.com (Nate Williams), Amancio Hasty , current@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 9:35 AM -0600 5/16/00, Nate Williams wrote: > > If this Open Motif can be distributed as a port or package for FreeBSD > > itself (and it seems to me that it can), then what hassle is that for > > JDK on FreeBSD? > >It requires two downloads to get a working JDK system. No other OS >requires multiple packages to work. As long as package-dependencies are handled automatically, I do not see this as a problem. >People shouldn't have to compile Motif up just to get a non-source >version of the JDK to work. Versioning problems that can be caused by >folks using different include files and/or X than what was used to build >the JDK. Bugs that have slipped in due to changes in the Motif port >that negatively effect the JDK. Hmm. You're saying that if I already have X installed, and if I already have Open Motif installed, then if JDK uses these already-working packages it will have bugs, and thus it has to install it's own version of Motif? (and it's own version of X?). I don't have any reason to doubt you, if you say that's true, but if that's true then it does not leave me with a "warm and fuzzy" feeling about JDK/Motif. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 10:44:36 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 35B6037B738 for ; Tue, 16 May 2000 10:44:34 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA28997; Tue, 16 May 2000 11:44:31 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA15207; Tue, 16 May 2000 11:44:30 -0600 (MDT) (envelope-from nate) Date: Tue, 16 May 2000 11:44:30 -0600 (MDT) Message-Id: <200005161744.LAA15207@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Garance A Drosihn Cc: nate@yogotech.com (Nate Williams), Amancio Hasty , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> <200005160352.VAA13667@nomad.yogotech.com> <200005161535.JAA15828@nomad.yogotech.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > If this Open Motif can be distributed as a port or package for FreeBSD > > > itself (and it seems to me that it can), then what hassle is that for > > > JDK on FreeBSD? > > > >It requires two downloads to get a working JDK system. No other OS > >requires multiple packages to work. > > As long as package-dependencies are handled automatically, I do not > see this as a problem. > > >People shouldn't have to compile Motif up just to get a non-source > >version of the JDK to work. Versioning problems that can be caused by > >folks using different include files and/or X than what was used to build > >the JDK. Bugs that have slipped in due to changes in the Motif port > >that negatively effect the JDK. > > Hmm. You're saying that if I already have X installed, and if I already > have Open Motif installed, then if JDK uses these already-working packages > it will have bugs, and thus it has to install it's own version of > Motif? No, I'm saying that OpenSource Motif *will* be going through lots of gyrations in the future, and these gyrations may cause instabilities in the JDK. But, if the JDK uses the Motif version it was compiled against, it will work 'consistently. Unlike X (which rarely changes), I suspect the Motif stuff to change alot. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 11:49: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from ucsu.Colorado.EDU (ucsu.Colorado.EDU [128.138.129.83]) by hub.freebsd.org (Postfix) with ESMTP id B223B37B97A for ; Tue, 16 May 2000 11:48:42 -0700 (PDT) (envelope-from vinson@ucsu.Colorado.EDU) Received: from localhost (vinson@localhost) by ucsu.Colorado.EDU (8.9.3/8.9.3/ITS-5.0/standard) with SMTP id MAA18645 for ; Tue, 16 May 2000 12:48:41 -0600 (MDT) Date: Tue, 16 May 2000 12:48:41 -0600 (MDT) From: VINSON WAYNE HOWARD To: freebsd-current@freebsd.org Subject: Re: Motif is now Open Source 8) In-Reply-To: <200005161744.LAA15207@nomad.yogotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > No, I'm saying that OpenSource Motif *will* be going through lots of > gyrations in the future, and these gyrations may cause instabilities in > the JDK. > > But, if the JDK uses the Motif version it was compiled against, it will > work 'consistently. > > Unlike X (which rarely changes), I suspect the Motif stuff to change > alot. > > > Nate IT seems to me that this might not be much of a problem. Have a "last stable motif" port/package. The JDK guys can choose when to move it to a new version, and should do so when they see a version that doen't cause problems for the JDK. Don't give this port/package the normal motif library names, but sim-link it to those names. Compile the JDK against the special lib names, not the normal motif names. Now, have a "bleeding edge" motif that can be installed. it installs into the normal motif locations. look what this does for the user: 1. If they'd rather be stable anyways, they just install the last-good version. all is well - both the jdk and their other apps see an acceptable motif. 2. If they need bleeding-edge, they can install it. JDK will still work. Yes, they have two motif versions, but they need both versions, so this is OK. 3. If they start out last-good, and move to bleeding edge, everything works out just fine. 4. If a bleeding-edge user updates their last-good motif, it doesn't screw things up since last-good can't sim-link over the real libs. Just the JDK is affected. 5. If a user doesn't use the jdk, they can install bleeding-edge and it works for all non-JDK apps. One usefull addon would be to have bleeding-edge re-create the last-good sim-links when it is pkg_deleted if that's possible. Just my $0.02 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 12:17: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EFB0937BAEE; Tue, 16 May 2000 12:16:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id MAA37121; Tue, 16 May 2000 12:16:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 16 May 2000 12:16:57 -0700 (PDT) From: Kris Kennaway To: "Jordan K. Hubbard" Cc: current@FreeBSD.org Subject: Re: OpenSSH 2.1 In-Reply-To: <54363.958457686@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 15 May 2000, Jordan K. Hubbard wrote: > > Err, well it still requires openssl, which I think is firmly rooted in the > > crypto distribution as long as we have one. > > Is it? I thought the RSAref code being pluggable gave it some > protection, or is merely "pluggability" also classified as crypto? > I do recall someone saying something to that effect once... It used to be enough. But I'm suddenly confused what you're actually talking about here: OpenSSH, OpenSSL, or RSAREF. OpenSSH has never included crypto code, but it's useless without OpenSSL which quite certainly does. OpenSSH no longer requires RSAREF to operate (if you've got clients/servers willing to do DSA SSH2), which is the "non-free" component I was talking about. OTOH, if you're talking about being able to unify the freefall and internat CVS repositories wrt OpenSSH, we could also probably do this today as well (after you've checked and got that legal advice I've been bugging you about :) OTGH, what *were* you talking about? :-) Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 13:30:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by hub.freebsd.org (Postfix) with ESMTP id 41C4B37BB46 for ; Tue, 16 May 2000 13:30:21 -0700 (PDT) (envelope-from narvi@haldjas.folklore.ee) Received: from localhost (narvi@localhost) by haldjas.folklore.ee (8.9.3/8.9.3) with SMTP id WAA73847; Tue, 16 May 2000 22:29:54 +0200 (EET) (envelope-from narvi@haldjas.folklore.ee) Date: Tue, 16 May 2000 22:29:54 +0200 (EET) From: Narvi To: David Scheidt Cc: Bush Doctor , FreeBSD-current@FreeBSD.ORG Subject: Re: Archive pruning In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 16 May 2000, David Scheidt wrote: > On Fri, 28 Apr 2000, David Scheidt wrote: > > > On Fri, 28 Apr 2000, Bush Doctor wrote: > > > > > Out of da blue David Scheidt aka (dscheidt@enteract.com) said: > > > > > > > > Not incidently, SCO have waived the $100 license application fee, which > > > > means that you can get your own official Ancient UNIX(TM) Source Code > > > > License for free. This roughly cuts in half the cost of the disks for > > > > someone not covered under a orginizaitonal souce code license. > > > Is there a new license form to sign or do we just fill out the current > > > form without sending the applicateion fee? > > > > > > > I don't know. SCO just made the announcement a week or two ago -- the same > > time they BSD licensed cscope -- and don't appear to have made changes to > > their web site yet. > > > > The press release is at http://www.sco.com/press/releases/2000/6927.html > > It might be worthwhile to attempt to contact the contact name on the > > release. > > SCO have updated their webpages, to show that they are now giving these > licenses away. See http://www.sco.com/offers/ancient.html. They also have > have the 5th, 6th and 7th edition UNIXs available, as well as system III and > 32V available. > This makes checking the 'this command dates from xxx version' much easier 8-) > David > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 19:46:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id 0A2FF37BB95 for ; Tue, 16 May 2000 19:46:43 -0700 (PDT) (envelope-from bandix@looksharp.net) Received: from localhost (bandix@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id WAA65622; Tue, 16 May 2000 22:46:59 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Tue, 16 May 2000 22:46:58 -0400 (EDT) From: "Brandon D. Valentine" To: Nate Williams Cc: Garance A Drosihn , Amancio Hasty , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: <200005161744.LAA15207@nomad.yogotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 16 May 2000, Nate Williams wrote: >Unlike X (which rarely changes), I suspect the Motif stuff to change >alot. I'm unclear on what gyrations you are expecting from a mature API codified in an IEEE standard. As long as you're using the Motif standard interface in your code you should have nothing to worry about. Brandon D. Valentine -- "You should believe in death, taxes, Larry Ellison's loathing of Bill Gates and Intel's inability to ship a working chipset." - Dr Spinola, The Register, 05/13/2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 20:52:40 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.cvzoom.net (ns.cvzoom.net [208.226.154.2]) by hub.freebsd.org (Postfix) with SMTP id 54AD637BBAF for ; Tue, 16 May 2000 20:52:36 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 29744 invoked from network); 17 May 2000 03:52:33 -0000 Received: from lc210.cvzoom.net (HELO cvzoom.net) (208.226.154.210) by ns.cvzoom.net with SMTP; 17 May 2000 03:52:33 -0000 Message-ID: <39221780.C18E585@cvzoom.net> Date: Tue, 16 May 2000 23:52:32 -0400 From: Donn Miller X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Subject: Wide-char support and libc Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anyone like the idea of adding wide char support to our libc? Maybe we could port it over from {Net,Open}BSD or BSDi. This would add the header file , etc. - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 21:22:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 092E737B54A for ; Tue, 16 May 2000 21:22:17 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id WAA03997; Tue, 16 May 2000 22:22:08 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id WAA22266; Tue, 16 May 2000 22:22:07 -0600 (MDT) (envelope-from nate) Date: Tue, 16 May 2000 22:22:07 -0600 (MDT) Message-Id: <200005170422.WAA22266@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Brandon D. Valentine" Cc: Nate Williams , Garance A Drosihn , Amancio Hasty , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: References: <200005161744.LAA15207@nomad.yogotech.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > >Unlike X (which rarely changes), I suspect the Motif stuff to change > >alot. > > I'm unclear on what gyrations you are expecting from a mature API > codified in an IEEE standard. As long as you're using the Motif > standard interface in your code you should have nothing to worry about. Ahh, but I'm not expecting the API to change, but I'm expecting the internals to change. For example, Sun changed Motif in between JDK1.1 and JDK1.2 because of bugs in it. Also, Motif doesn't compile under FreeBSD cleanly right now, and I expect it to change as it supports internationalization and such. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 22: 0:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from obie.softweyr.com (obie.softweyr.com [204.68.178.33]) by hub.freebsd.org (Postfix) with ESMTP id EC7F337B948; Tue, 16 May 2000 22:00:11 -0700 (PDT) (envelope-from wes@softweyr.com) Received: from softweyr.com (homer.softweyr.com [204.68.178.39]) by obie.softweyr.com (8.8.8/8.8.8) with ESMTP id WAA11919; Tue, 16 May 2000 22:57:42 -0600 (MDT) (envelope-from wes@softweyr.com) Message-ID: <3922274D.BDC8BFF5@softweyr.com> Date: Tue, 16 May 2000 22:59:57 -0600 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: "Jordan K. Hubbard" Cc: Greg Lehey , "Brian W. Buchanan" , Stephen Hocking , current@FreeBSD.org, FreeBSD Committers Subject: Re: Breaking "build world" costs $5? (was: Can we please have a current that compiles?) References: <19015.958450914@localhost> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Jordan K. Hubbard" wrote: > > > > Maybe the comitters ought to take an idea from many software companies and > > > contribute $5 to the beer fund every time they break the build. Have it > > > all come due at the next BSDcon to fund a committer beer bash. :-) > > > > I'd go along with that. What do the other committers think? > > I think it's a genuinely stupid idea. > > - Jordan I nominate HIM to be the keeper of the funds. ;^) -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue May 16 23:42:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.hcisp.net (Stargate.hcisp.net [208.60.89.18]) by hub.freebsd.org (Postfix) with SMTP id 6337837B9C3 for ; Tue, 16 May 2000 23:42:09 -0700 (PDT) (envelope-from tim@mysql.com) Received: (qmail 14969 invoked from network); 17 May 2000 06:40:45 -0000 Received: from modem4.hcisp.net (HELO threads.polyesthetic.msg) (208.60.89.70) by stargate.hcisp.net with SMTP; 17 May 2000 06:40:45 -0000 Received: (qmail 88100 invoked by uid 1001); 17 May 2000 06:41:59 -0000 From: "Thimble Smith" Date: Wed, 17 May 2000 02:41:59 -0400 To: Donn Miller Cc: current@FreeBSD.ORG Subject: Re: Wide-char support and libc Message-ID: <20000517024159.B88068@threads.polyesthetic.msg> References: <39221780.C18E585@cvzoom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39221780.C18E585@cvzoom.net>; from dmmiller@cvzoom.net on Tue, May 16, 2000 at 11:52:32PM -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, May 16, 2000 at 11:52:32PM -0400, Donn Miller wrote: > Anyone like the idea of adding wide char support to our libc? Maybe > we could port it over from {Net,Open}BSD or BSDi. This would add the > header file , etc. There's a mailing list, freebsd-i18n, that seems to be very active regarding this topic (the archives show 0 posts). The latest I found on it (searching the archives) is this: http://www.whizkidtech.net/i18n/wc/ As far as I can tell, nothing's been done since last May. http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=3798228+3803182+/usr/local/www/db/text/1999/freebsd-hackers/19990509.freebsd-hackers Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 0: 2:38 2000 Delivered-To: freebsd-current@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id B7D8637B9E6 for ; Wed, 17 May 2000 00:02:30 -0700 (PDT) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id AF8F9190; Wed, 17 May 2000 00:02:27 -0700 (PDT) Date: Wed, 17 May 2000 00:02:27 -0700 From: Chris Piazza To: Thimble Smith Cc: Donn Miller , current@FreeBSD.ORG Subject: Re: Wide-char support and libc Message-ID: <20000517000227.A21726@norn.ca.eu.org> References: <39221780.C18E585@cvzoom.net> <20000517024159.B88068@threads.polyesthetic.msg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mutt 1.0.1i-jp0 In-Reply-To: <20000517024159.B88068@threads.polyesthetic.msg>; from tim@mysql.com on Wed, May 17, 2000 at 02:41:59AM -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, May 17, 2000 at 02:41:59AM -0400, Thimble Smith wrote: > On Tue, May 16, 2000 at 11:52:32PM -0400, Donn Miller wrote: > > Anyone like the idea of adding wide char support to our libc? Maybe > > we could port it over from {Net,Open}BSD or BSDi. This would add the > > header file , etc. > > There's a mailing list, freebsd-i18n, that seems to be very active > regarding this topic (the archives show 0 posts). It's probably not being archived properly. I subscribed to this list on the 24th of april and the first message was on the 5th of may. % grep '^From ' freebsd-i18n | wc -l 19 Nothing was said about wc* in those 19 messages anyway. > > The latest I found on it (searching the archives) is this: > > http://www.whizkidtech.net/i18n/wc/ > > As far as I can tell, nothing's been done since last May. -Chris -- cpiazza@jaxon.net | yawn..... cpiazza@FreeBSD.org | Abbotsford, BC, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 0:50: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (Postfix) with ESMTP id AB25D37BA66; Wed, 17 May 2000 00:50:03 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) Received: from localhost (jkh@localhost [127.0.0.1]) by zippy.cdrom.com (8.9.3/8.9.3) with ESMTP id AAA11793; Wed, 17 May 2000 00:52:40 -0700 (PDT) (envelope-from jkh@zippy.cdrom.com) To: Kris Kennaway Cc: "Jordan K. Hubbard" , current@freebsd.org Subject: Re: OpenSSH 2.1 In-reply-to: Your message of "Tue, 16 May 2000 12:16:57 PDT." Date: Wed, 17 May 2000 00:52:40 -0700 Message-ID: <11790.958549960@localhost> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > But I'm suddenly confused what you're actually talking about > here: OpenSSH, OpenSSL, or RSAREF. > > OpenSSH has never included crypto code, but it's useless without OpenSSL > which quite certainly does. OpenSSH no longer requires RSAREF to operate > (if you've got clients/servers willing to do DSA SSH2), which is the > "non-free" component I was talking about. OK, if OpenSSL still contains crypto then "never mind"; I thought OpenSSL used *only* RSA and it used it through the RSAstubs code, making it "OK." > today as well (after you've checked and got that legal advice I've been > bugging you about :) I'm working on the legal advice; a firm has been retained and consulted. Some paperwork needs to be done in order to get FreeBSD an export permit and I'm still working on figuring out if this will be an ongoing issue or we can just do it once. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 1: 1:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from viking.sophos.com (viking.sophos.com [193.82.145.128]) by hub.freebsd.org (Postfix) with ESMTP id E5C4A37BAFE; Wed, 17 May 2000 01:01:19 -0700 (PDT) (envelope-from tmb@tyne.sophos.com) Received: from tyne.sophos.com (tyne.sophos.com [193.82.145.132]) by viking.sophos.com (MAILER-DAEMON) with ESMTP id CCF3545C1F; Wed, 17 May 2000 08:01:18 +0000 (GMT) Received: (from tmb@localhost) by tyne.sophos.com (8.9.3/8.9.3) id JAA31959; Wed, 17 May 2000 09:01:38 +0100 (BST) (envelope-from tmb) Date: Wed, 17 May 2000 09:01:38 +0100 From: Mark Blackman To: "David O'Brien" Cc: Kris Kennaway , current@FreeBSD.org Subject: Re: OpenSSH 2.1 Message-ID: <20000517090138.A31820@sophos.com> References: <19218.958452719@localhost> <20000516100609.A42581@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000516100609.A42581@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, May 16, 2000 at 10:06:09AM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG speaking of which, I presume that OpenSSH 2.1 is being merged into Internat by kindly overworked developer types at the moment? On Tue, May 16, 2000 at 10:06:09AM -0700, David O'Brien wrote: > Even so, moving SSH into the bindist would be one less thing that has to > be merged into Internat all the time. > > -- > -- David (obrien@NUXI.com) > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > -- Mark Blackman,Internet Systems Administrator,Sophos Anti-Virus e-mail: tmb@sophos.com http://www.sophos.com US Support: +1 888 SOPHOS 9 UK Support: +44 1235 559933 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 1: 3:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8036437B789; Wed, 17 May 2000 01:03:42 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id BAA05619; Wed, 17 May 2000 01:03:42 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 17 May 2000 01:03:41 -0700 (PDT) From: Kris Kennaway To: "Jordan K. Hubbard" Cc: current@freebsd.org Subject: Re: OpenSSH 2.1 In-Reply-To: <11790.958549960@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 17 May 2000, Jordan K. Hubbard wrote: > OK, if OpenSSL still contains crypto then "never mind"; I thought > OpenSSL used *only* RSA and it used it through the RSAstubs code, > making it "OK." OpenSSL is a general-purpose cryptography toolkit which includes such goodies as Blowfish, CAST, DES, Diffie-Hellman, DSA, RC[245], and..oh yes, RSA :-) > > today as well (after you've checked and got that legal advice I've been > > bugging you about :) > > I'm working on the legal advice; a firm has been retained and > consulted. Some paperwork needs to be done in order to get FreeBSD an > export permit and I'm still working on figuring out if this will be an > ongoing issue or we can just do it once. Whee! Great news! Once you get the legal issues sorted out, we can finally merge the internat and freefall crypto repositories so there's just one source of crypto. I think the only (legitimate) difference between the two is a single file, rsa_eay.c, which contains the actual RSA crypto on internat. We can put that into its own cvsup collection (cvs-crypto-rsa) which won't be installed by default (and won't build anyway for USA_RESIDENT=="YES"), and which mirrors don't have to replicate. I think that should take care of all of the legal issues. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 1: 4:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3047237BAF0; Wed, 17 May 2000 01:04:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id BAA05690; Wed, 17 May 2000 01:04:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 17 May 2000 01:04:25 -0700 (PDT) From: Kris Kennaway To: Mark Blackman Cc: "David O'Brien" , current@FreeBSD.org Subject: Re: OpenSSH 2.1 In-Reply-To: <20000517090138.A31820@sophos.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 17 May 2000, Mark Blackman wrote: > speaking of which, I presume that OpenSSH 2.1 is being > merged into Internat by kindly overworked developer types > at the moment? I think Peter Wemm has already finished. Kris ---- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 7: 0: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 1126E37B638 for ; Wed, 17 May 2000 07:00:01 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id JAA172606; Wed, 17 May 2000 09:59:49 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20000517024159.B88068@threads.polyesthetic.msg> References: <39221780.C18E585@cvzoom.net> <20000517024159.B88068@threads.polyesthetic.msg> Date: Wed, 17 May 2000 10:00:11 -0400 To: "Thimble Smith" , Donn Miller From: Garance A Drosihn Subject: Re: Wide-char support and libc Cc: current@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 2:41 AM -0400 5/17/00, Thimble Smith wrote: >On Tue, May 16, 2000 at 11:52:32PM -0400, Donn Miller wrote: > > Anyone like the idea of adding wide char support to our libc? Maybe > > we could port it over from {Net,Open}BSD or BSDi. This would add the > > header file , etc. > >There's a mailing list, freebsd-i18n, that seems to be very active >regarding this topic (the archives show 0 posts). > >The latest I found on it (searching the archives) is this: > >http://www.whizkidtech.net/i18n/wc/ As was recently posted to freebsd-java: There's a "wchar" implementation available on http://www.cs.rpi.edu/~crossd/FreeBSD/wcs-19990606.tar.gz I have tried it myself and it works as expected, meaning that I was able to successfully link a Motif program. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 7:38:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id C54FB37BC36 for ; Wed, 17 May 2000 07:38:29 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id IAA08499; Wed, 17 May 2000 08:38:17 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id IAA24005; Wed, 17 May 2000 08:38:16 -0600 (MDT) (envelope-from nate) Date: Wed, 17 May 2000 08:38:16 -0600 (MDT) Message-Id: <200005171438.IAA24005@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Daniel C. Sobral" Cc: Nate Williams , Garance A Drosihn , Amancio Hasty , current@FreeBSD.ORG Subject: Re: Motif is now Open Source 8) In-Reply-To: <39222AD1.320F7E75@newsguy.com> References: <200005160325.VAA13404@nomad.yogotech.com> <200005160349.UAA63159@rah.star-gate.com> <200005160352.VAA13667@nomad.yogotech.com> <200005161535.JAA15828@nomad.yogotech.com> <39222AD1.320F7E75@newsguy.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > It requires two downloads to get a working JDK system. No other OS > > requires multiple packages to work. > > > > People shouldn't have to compile Motif up just to get a non-source > > version of the JDK to work. Versioning problems that can be caused by > > folks using different include files and/or X than what was used to build > > the JDK. Bugs that have slipped in due to changes in the Motif port > > that negatively effect the JDK. > > > > Shall I go on? > > I'm curious... what happens when someone who has already installed Motif > then tries to install JDK? Nothing. It should use the version inside the JDK, and it won't effect the version outside the JDK. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 8:52:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.167]) by hub.freebsd.org (Postfix) with ESMTP id 0D45437B61F for ; Wed, 17 May 2000 08:52:03 -0700 (PDT) (envelope-from shigeisp@pop02.odn.ne.jp) Received: from athena.shige.org ([210.188.10.44]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000517155156130.HFBJ.886.t-mta3.odn.ne.jp@mta3.odn.ne.jp> for ; Thu, 18 May 2000 00:51:56 +0900 To: freebsd-current@freebsd.org Subject: -current buildworld breakage From: Shigeyuki Fukushima X-Mailer: Mew version 1.95b3 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 18 May 2000 00:51:42 +0900 X-Dispatcher: imput version 990905(IM130) Lines: 50 Message-Id: <20000517155156130.HFBJ.886.t-mta3.odn.ne.jp@mta3.odn.ne.jp> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My system is 4.0-CURRENT at Jan 31. I try to upgrade it to -current (5-current), but I get the following breakage. Is my system environment broken? Thanks! -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- ... snip ... cc -O -pipe -I. -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" -I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config -c /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/print-rtl.c cc -O -pipe -I. -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr\" -I/usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_tools/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/config -c /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:626: unterminated string or character constant /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: possible real start of unterminated constant /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c: In function `bitmap_clear_bit': /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: `bitmap_g' undeclared (first use in this function) /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: (Each undeclared identifier is reported only once /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:338: for each function it appears in.) /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:562: syntax error before string constant /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:562: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:566: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:572: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:578: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:586: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:595: stray '\' in program /usr/src/gnu/usr.bin/cc/cc_tools/../../../../contrib/gcc/bitmap.c:643: Unterminated string constant *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc/cc_tools. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. --- shige (Shigeyuki Fukushima) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 10:41:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 1C79B37BC5F; Wed, 17 May 2000 10:41:34 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (hak.nat.Awfulhak.org [172.31.0.12]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id SAA06772; Wed, 17 May 2000 18:41:32 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id SAA02613; Wed, 17 May 2000 18:41:29 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200005171741.SAA02613@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: current@FreeBSD.org, arch@FreeBSD.org Cc: peter@FreeBSD.org Subject: modules Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 17 May 2000 18:41:29 +0100 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Sorry to whinge, but wWhat's the state of play with modules at the moment ? 1. To update things, I was under the impression that ``make buildworld buildkernel'' then ``make installworld installkernel'' was the idea. This doesn't build modules, but building from sys/compile/whatever builds another kernel... Is anybody going to finish what was started and make buildkernel/installkernel do the modules too ? 2. Installing rtc.ko (ports/emulators/rtc) gives exec format errors at boot time. 3. Building vmware2 now fails due to the move of bsd.kmod.mk and ultimately suffers from the same exec format error as rtc.ko Are there any plans to fix this stuff ? -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 15:33:39 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id DDF4037BB21; Wed, 17 May 2000 15:33:32 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.cdrom.com [204.216.28.153]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id PAA59567; Wed, 17 May 2000 15:33:28 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id MAA11535; Wed, 17 May 2000 12:11:00 -0700 (PDT) (envelope-from obrien) Date: Wed, 17 May 2000 12:10:05 -0700 From: "David O'Brien" To: Shigeyuki Fukushima Cc: freebsd-current@FreeBSD.org Subject: Re: -current buildworld breakage Message-ID: <20000517121005.A9694@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20000517155156130.HFBJ.886.t-mta3.odn.ne.jp@mta3.odn.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000517155156130.HFBJ.886.t-mta3.odn.ne.jp@mta3.odn.ne.jp>; from shige@FreeBSD.org on Thu, May 18, 2000 at 12:51:42AM +0900 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, May 18, 2000 at 12:51:42AM +0900, Shigeyuki Fukushima wrote: > My system is 4.0-CURRENT at Jan 31. > I try to upgrade it to -current (5-current), > but I get the following breakage. > > Is my system environment broken? I think so. -- -- David (obrien@FreeBSD.org) Disclaimer: Not speaking for FreeBSD, just expressing my own opinion. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed May 17 16: 4:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id B8A2437BAE7; Wed, 17 May 2000 16:04:45 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12sCrT-000Cf5-00; Thu, 18 May 2000 01:04:19 +0200 From: Sheldon Hearn To: Brian Somers Cc: current@FreeBSD.ORG, arch@FreeBSD.ORG, peter@FreeBSD.ORG Subject: Re: modules In-reply-to: Your message of "Wed, 17 May 2000 18:41:29 +0100." <200005171741.SAA02613@hak.lan.Awfulhak.org> Date: Thu, 18 May 2000 01:04:19 +0200 Message-ID: <48674.958604659@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 17 May 2000 18:41:29 +0100, Brian Somers wrote: > 1. To update things, I was under the impression that ``make buildworld > buildkernel'' then ``make installworld installkernel'' was the idea. > This doesn't build modules, but building from sys/compile/whatever > builds another kernel... Is anybody going to finish what was started > and make buildkernel/installkernel do the modules too ? The work on buildkernel/installkernel was done by different folks from the guy(s) who've moved the modules build. I was about to check in new stuff for the installkernel target when the modules stuff happened. Although the buildkernel/installkernel targets were Marcel's brainchild, I'm looking at it. Gimme some time (assuming nobody else gets stuck in there first); I've had unbelievable hassles trying to sell a car. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 0:49:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from rah.star-gate.com (216-200-29-190.snj0.flashcom.net [216.200.29.194]) by hub.freebsd.org (Postfix) with ESMTP id E068F37B625 for ; Thu, 18 May 2000 00:49:12 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost [127.0.0.1]) by rah.star-gate.com (8.9.3/8.9.3) with ESMTP id AAA01369 for ; Thu, 18 May 2000 00:49:10 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <200005180749.AAA01369@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: current@freebsd.org Subject: New 64 bit Compiler from SGI Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 May 2000 00:49:10 -0700 From: Amancio Hasty Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG For those interested , SGI has released their 64 bit compiler for Intel's Itanium. http://oss.sgi.com/projects/Pro64/ Enjoy -- Amancio Hasty hasty@rah.star-gate.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 2:42:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 9C4A637BD93 for ; Thu, 18 May 2000 02:40:46 -0700 (PDT) (envelope-from daemon@mips.inka.de) Received: from bigeye.rhein-neckar.de (uucp@) by mail.inka.de with local-bsmtp id 12sMnI-0001dI-00; Thu, 18 May 2000 11:40:40 +0200 Received: (from daemon@localhost) by bigeye.rhein-neckar.de (8.9.3/8.9.3) id LAA31093 for freebsd-current@freebsd.org; Thu, 18 May 2000 11:28:52 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Wide-char support and libc Date: 18 May 2000 11:28:50 +0200 Message-ID: <8g0d4i$ubd$1@bigeye.rhein-neckar.de> References: <39221780.C18E585@cvzoom.net> Reply-To: freebsd-i18n@freebsd.org To: freebsd-current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG (This should move to freebsd-i18n.) Donn Miller wrote: > Anyone like the idea of adding wide char support to our libc? I'd like the idea of somebody explaining where/how I can get an overview of what's missing in the first place. > Maybe we could port it over from {Net,Open}BSD or BSDi. Assuming any of those have it, in the first place. I'm fairly sure, NetBSD and OpenBSD don't. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 7:13:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id 6FB2437BED7 for ; Thu, 18 May 2000 07:13:51 -0700 (PDT) (envelope-from ncbp@bank-pedersen.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1002) id 7C2943E43; Thu, 18 May 2000 16:13:43 +0200 (CEST) Date: Thu, 18 May 2000 16:13:43 +0200 From: "Niels Chr. Bank-Pedersen" To: freebsd-current@freebsd.org Subject: panic: ffs_valloc: dup alloc Message-ID: <20000518161343.G26090@bank-pedersen.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On a -current box, sources approx. 2½ days old, I'm having problems using a vinum raid5 volume - usually the box freezes totally when trying to use the filesystem (mkdir xxx; cd xxx -> crash), but last time it dropped to the debugger: mode = 040755, inum = 25344, fs = /raid5 panic: ffs_valloc: dup alloc Debugger("panic") Stopped at Debugger+0x35: movb $0,in_Debugger.390 db> trace Debugger(c0245ca3) at Debugger+0x35 panic(c0252541,c0252520,41ed,6300,c109e0d4) at panic+0x70 ffs_valloc(c9e7e300,41ed,c1171400,c9e69d08,c9e69e70) at ffs_valloc+0xf8 ufs_mkdir(c9e69e70,c9e69f2c,c018d272,c9e69e70,c9e2c8e0) at ufs_mkdir+0x82 ufs_vnoperate(c9e69e70,c9e2c8e0,2,c9e69f80,c02651e0) at ufs_vnoperate+0x15 mkdir(c9e2c8e0,c9e69f80,bfbffc1c,1,1ff) at mkdir+0x162 syscall2(2f,2f,2f,1ff,1) at syscall2+0x1f1 Xint0x80_syscall() at Xint0x80_syscall+0x28 db> I had one crash on my first attempt initialising the volume, but was able to newfs without any problems after initializing succeeded on the second attempt. Anybody able to see what could be happening here? (dmesg below, and dump/kernel.debug available) /Niels Chr. Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #0: Wed May 17 03:59:29 CEST 2000 root@home.bank-pedersen.dk:/usr/src/sys/compile/MAIL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 166194046 Hz CPU: Pentium/P54C (166.19-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Features=0x1bf real memory = 134217728 (131072K bytes) avail memory = 127438848 (124452K bytes) Preloaded elf kernel "kernel" at 0xc02e9000. npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 7.0 on pci0 isa0: on isab0 pci0: at 7.1 pcib1: at device 9.0 on pci0 pci1: on pcib1 ahc0: port 0xd800-0xd8ff mem 0xf9000000-0xf9000fff irq 9 at device 4.0 on pci1 ahc0: aic7870 Wide Channel A, SCSI Id=7, 16/255 SCBs ahc1: port 0xd400-0xd4ff mem 0xfb000000-0xfb1fffff,0xf8800000-0xf8800fff irq 11 at device 5.0 on pci1 RAID functionality unsupported device_probe_and_attach: ahc1 attach returned 6 ahc2: port 0xd000-0xd0ff mem 0xf8000000-0xf8000fff irq 9 at device 8.0 on pci1 ahc2: aic7870 Wide Channel B, SCSI Id=7, 16/255 SCBs ahc3: port 0xc800-0xc8ff mem 0xf7800000-0xf7800fff irq 9 at device 12.0 on pci1 ahc3: aic7870 Wide Channel C, SCSI Id=7, 16/255 SCBs pci0: at 10.0 irq 12 ahc4: port 0xb800-0xb8ff mem 0xf6800000-0xf6800fff irq 10 at device 11.0 on pci0 ahc4: aic7880 Single Channel A, SCSI Id=7, 16/255 SCBs xl0: <3Com 3c905-TX Fast Etherlink XL> port 0xb400-0xb43f irq 11 at device 12.0 on pci0 xl0: Ethernet address: 00:10:4b:3d:d2:79 miibus0: on xl0 nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A, console sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: This ppc chipset does not support the extended I/O port range...no problem ppc0: at port 0x378-0x37b irq 7 drq 1 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/15 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown0: at iomem 0-0x9ffff,0x100000-0x7ffffff,0xe8000-0xfffff,0xfffe0000-0xffffffff on isa0 unknown: can't assign resources unknown1: at port 0x40-0x43 irq 0 on isa0 unknown2: at port 0x70-0x71 irq 8 on isa0 unknown: can't assign resources npxisa0: at port 0xf0 irq 13 on isa0 unknown3: at port 0-0xf,0x80-0x90,0x94-0x9f,0xc0-0xde drq 4 on isa0 unknown4: at port 0x61 on isa0 unknown5: at port 0xcf8-0xcff,0x4d0-0x4d1 on isa0 Waiting 5 seconds for SCSI devices to settle ahc4:A:6: refuses synchronous negotiation. Using asynchronous transfers ahc4:A:6: refuses synchronous negotiation. Using asynchronous transfers sa0 at ahc4 bus 0 target 6 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 3.300MB/s transfers da7 at ahc4 bus 0 target 4 lun 0 da7: Fixed Direct Access SCSI-2 device da7: 10.000MB/s transfers (10.000MHz, offset 15) da7: 4134MB (8467200 512 byte sectors: 255H 63S/T 527C) da6 at ahc4 bus 0 target 3 lun 0 da6: Fixed Direct Access SCSI-2 device da6: 10.000MB/s transfers (10.000MHz, offset 15) da6: 4134MB (8467200 512 byte sectors: 255H 63S/T 527C) da5 at ahc4 bus 0 target 2 lun 0 da5: Fixed Direct Access SCSI-2 device da5: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da5: 4303MB (8813870 512 byte sectors: 255H 63S/T 548C) da4 at ahc0 bus 0 target 5 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 20.000MB/s transfers (10.000MHz, offset 8, 16bit), Tagged Queueing Enabled da4: 17274MB (35378533 512 byte sectors: 255H 63S/T 2202C) da2 at ahc0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 20.000MB/s transfers (10.000MHz, offset 8, 16bit) da2: 2063MB (4226725 512 byte sectors: 255H 63S/T 263C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 20.000MB/s transfers (10.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 4357MB (8925000 512 byte sectors: 255H 63S/T 555C) da3 at ahc0 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da3: 4303MB (8813870 512 byte sectors: 255H 63S/T 548C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da1: 4303MB (8813870 512 byte sectors: 255H 63S/T 548C) -- Niels Christian Bank-Pedersen, NCB1-RIPE. Network Manager, Tele Danmark NET, IP-section. "Hey, are any of you guys out there actually *using* RFC 2549?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 7:46:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from mout1.freenet.de (mout1.freenet.de [194.97.50.132]) by hub.freebsd.org (Postfix) with ESMTP id 3F39237B67D for ; Thu, 18 May 2000 07:46:17 -0700 (PDT) (envelope-from netchild@leidinger.net) Received: from [194.97.50.136] (helo=mx3.freenet.de) by mout1.freenet.de with esmtp (Exim 3.14 #3) id 12sRZ1-0004tO-00 for current@freebsd.org; Thu, 18 May 2000 16:46:15 +0200 Received: from [213.6.42.25] (helo=Magelan.Leidinger.net) by mx3.freenet.de with esmtp (Exim 3.14 #3) id 12sRZ1-0001bk-00 for current@freebsd.org; Thu, 18 May 2000 16:46:15 +0200 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.9.3/8.9.3) with ESMTP id QAA05664 for ; Thu, 18 May 2000 16:19:26 +0200 (CEST) (envelope-from netchild@Leidinger.net) Message-Id: <200005181419.QAA05664@Magelan.Leidinger.net> Date: Thu, 18 May 2000 16:19:25 +0200 (CEST) From: Alexander Leidinger Subject: PAM & OpenSSH 2.1 & X11 -> signal 11 To: current@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, after a new build{world,kernel} after the import of OpenSSH 2.1 to internat (cvsupped 20000517, around 14:00 CEST), xdm gets a signal 11 if I use pam_ssh.so (after entering the password). After removing the lines with pam_ssh.so for xdm I'm able to login. Is someone else able to reproduce this? Bye, Alexander. -- Press every key to continue. http://www.Leidinger.net Alexander+Home @ Leidinger.net GPG fingerprint = 7423 F3E6 3A7E B334 A9CC B10A 1F5F 130A A638 6E7E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 14:22: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.du.gtn.com (mail.du.gtn.com [194.77.9.57]) by hub.freebsd.org (Postfix) with ESMTP id 7695F37B923 for ; Thu, 18 May 2000 14:21:52 -0700 (PDT) (envelope-from ticso@cicely5.cicely.de) Received: from mail.cicely.de (cicely.de [194.231.9.142]) by mail.du.gtn.com (8.9.3/8.9.3) with ESMTP id XAA24260; Thu, 18 May 2000 23:16:57 +0200 (MET DST) Received: from cicely5.cicely.de (cicely5.cicely.de [10.1.5.7]) by mail.cicely.de (8.9.3/8.9.0) with ESMTP id XAA21614; Thu, 18 May 2000 23:21:56 +0200 (CEST) Received: (from ticso@localhost) by cicely5.cicely.de (8.9.3/8.9.2) id XAA30544; Thu, 18 May 2000 23:21:52 +0200 (CEST) (envelope-from ticso) Date: Thu, 18 May 2000 23:21:51 +0200 From: Bernd Walter To: "Niels Chr. Bank-Pedersen" Cc: freebsd-current@FreeBSD.ORG Subject: Re: panic: ffs_valloc: dup alloc Message-ID: <20000518232151.A30272@cicely5.cicely.de> References: <20000518161343.G26090@bank-pedersen.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i In-Reply-To: <20000518161343.G26090@bank-pedersen.dk>; from ncbp@bank-pedersen.dk on Thu, May 18, 2000 at 04:13:43PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, May 18, 2000 at 04:13:43PM +0200, Niels Chr. Bank-Pedersen wrote: > Hi, > > On a -current box, sources approx. 2½ days old, I'm > having problems using a vinum raid5 volume - usually > the box freezes totally when trying to use the filesystem > (mkdir xxx; cd xxx -> crash), but last time it dropped > to the debugger: > > mode = 040755, inum = 25344, fs = /raid5 > panic: ffs_valloc: dup alloc > Debugger("panic") > Stopped at Debugger+0x35: movb $0,in_Debugger.390 > db> trace > Debugger(c0245ca3) at Debugger+0x35 > panic(c0252541,c0252520,41ed,6300,c109e0d4) at panic+0x70 > ffs_valloc(c9e7e300,41ed,c1171400,c9e69d08,c9e69e70) at ffs_valloc+0xf8 > ufs_mkdir(c9e69e70,c9e69f2c,c018d272,c9e69e70,c9e2c8e0) at ufs_mkdir+0x82 > ufs_vnoperate(c9e69e70,c9e2c8e0,2,c9e69f80,c02651e0) at ufs_vnoperate+0x15 > mkdir(c9e2c8e0,c9e69f80,bfbffc1c,1,1ff) at mkdir+0x162 > syscall2(2f,2f,2f,1ff,1) at syscall2+0x1f1 > Xint0x80_syscall() at Xint0x80_syscall+0x28 > db> > > I had one crash on my first attempt initialising the volume, > but was able to newfs without any problems after initializing > succeeded on the second attempt. > > Anybody able to see what could be happening here? > (dmesg below, and dump/kernel.debug available) I don't know what Greg thinks about but I beleave that the dup alloc is not the reason itself. Does vinum list saying that one subdisk of your R5 volume is down? If yes with which version did you last initialized the plex? Are you using softupdates? -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 14:44: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id 13B8837B923 for ; Thu, 18 May 2000 14:44:00 -0700 (PDT) (envelope-from ncbp@bank-pedersen.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1002) id C200A3E41; Thu, 18 May 2000 23:43:58 +0200 (CEST) Date: Thu, 18 May 2000 23:43:58 +0200 From: "Niels Chr. Bank-Pedersen" To: Bernd Walter Cc: freebsd-current@FreeBSD.ORG Subject: Re: panic: ffs_valloc: dup alloc Message-ID: <20000518234358.B28600@bank-pedersen.dk> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i In-Reply-To: <20000518232151.A30272@cicely5.cicely.de>; from ticso@cicely.de on Thu, May 18, 2000 at 11:21:51PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: > On Thu, May 18, 2000 at 04:13:43PM +0200, Niels Chr. Bank-Pedersen wrote: > > Hi, > > > > On a -current box, sources approx. 2½ days old, I'm > > having problems using a vinum raid5 volume - usually > > the box freezes totally when trying to use the filesystem > > (mkdir xxx; cd xxx -> crash), but last time it dropped > > to the debugger: > > > > mode = 040755, inum = 25344, fs = /raid5 > > panic: ffs_valloc: dup alloc > > Debugger("panic") > > Stopped at Debugger+0x35: movb $0,in_Debugger.390 > > db> trace > > Debugger(c0245ca3) at Debugger+0x35 > > panic(c0252541,c0252520,41ed,6300,c109e0d4) at panic+0x70 > > ffs_valloc(c9e7e300,41ed,c1171400,c9e69d08,c9e69e70) at ffs_valloc+0xf8 > > ufs_mkdir(c9e69e70,c9e69f2c,c018d272,c9e69e70,c9e2c8e0) at ufs_mkdir+0x82 > > ufs_vnoperate(c9e69e70,c9e2c8e0,2,c9e69f80,c02651e0) at ufs_vnoperate+0x15 > > mkdir(c9e2c8e0,c9e69f80,bfbffc1c,1,1ff) at mkdir+0x162 > > syscall2(2f,2f,2f,1ff,1) at syscall2+0x1f1 > > Xint0x80_syscall() at Xint0x80_syscall+0x28 > > db> > > > > I had one crash on my first attempt initialising the volume, > > but was able to newfs without any problems after initializing > > succeeded on the second attempt. > > > > Anybody able to see what could be happening here? > > (dmesg below, and dump/kernel.debug available) > > I don't know what Greg thinks about but I beleave that the dup alloc is not > the reason itself. > Does vinum list saying that one subdisk of your R5 volume is down? No: 5 drives: D raid5-00 State: up Device /dev/da1s1e Avail: 0/4133 MB (0%) D raid5-01 State: up Device /dev/da3s1e Avail: 0/4133 MB (0%) D raid5-02 State: up Device /dev/da5s1e Avail: 0/4133 MB (0%) D raid5-03 State: up Device /dev/da6s1e Avail: 0/4133 MB (0%) D raid5-04 State: up Device /dev/da7s1e Avail: 0/4133 MB (0%) 1 volumes: V raid5 State: up Plexes: 1 Size: 16 GB 1 plexes: P raid5.p0 R5 State: up Subdisks: 5 Size: 16 GB 5 subdisks: S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB - But since my first attempt to initialize the plex crashed the box while only da5se1 was missing, I did a "verify media" from the SCSI ctrl. BIOS, and did find errors. They were all successfully remapped, though. > If yes with which version did you last initialized the plex? Newly created plex, so that would be the currently installed version. > Are you using softupdates? Yup. I am unable to try without SU right now (well, I could, but if it doesnt work, my foot will be blown of), but I'll try that later when I get home. > B.Walter COSMO-Project http://www.cosmo-project.de Thnx. /Niels Chr. -- Niels Christian Bank-Pedersen, NCB1-RIPE. Network Manager, Tele Danmark NET, IP-section. "Hey, are any of you guys out there actually *using* RFC 2549?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 14:45:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 927EA37BAF2 for ; Thu, 18 May 2000 14:45:16 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id XAA02688; Thu, 18 May 2000 23:11:59 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Peter Edwards Cc: Nick Hibma , FreeBSD CURRENT Mailing List , wc.bulte@chello.nl, Maxim Sobolev Subject: Re: vn.ko load/unload/mount = panic In-reply-to: Your message of "Mon, 15 May 2000 13:06:14 BST." <391FE836.7DB49846@openet-telecom.com> Date: Thu, 18 May 2000 23:11:59 +0200 Message-ID: <2686.958684319@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <391FE836.7DB49846@openet-telecom.com>, Peter Edwards writes: >After reading the rest of the discussion on this thread, and moving out >of my depth a little, I assume vn should probably be using >disk_create()/disk_destroy(), and attaching its softc to the disk object >rather than the device object. (However, I suppose given the special >nature of vn, there might be reasons for not using this interface). > >I'll gladly "disk"ify vn as a mini- junior-kernel-hacker task if someone >indicates that it is needed, and if no one more qualified wants to do >it. Please go ahead, I'll review and test your patches. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 15: 8:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.du.gtn.com (mail.du.gtn.com [194.77.9.57]) by hub.freebsd.org (Postfix) with ESMTP id 3B97F37BB23 for ; Thu, 18 May 2000 15:08:25 -0700 (PDT) (envelope-from ticso@cicely5.cicely.de) Received: from mail.cicely.de (cicely.de [194.231.9.142]) by mail.du.gtn.com (8.9.3/8.9.3) with ESMTP id XAA27688; Thu, 18 May 2000 23:57:32 +0200 (MET DST) Received: from cicely5.cicely.de (cicely5.cicely.de [10.1.5.7]) by mail.cicely.de (8.9.3/8.9.0) with ESMTP id AAA21786; Fri, 19 May 2000 00:02:01 +0200 (CEST) Received: (from ticso@localhost) by cicely5.cicely.de (8.9.3/8.9.2) id AAA30659; Fri, 19 May 2000 00:02:00 +0200 (CEST) (envelope-from ticso) Date: Fri, 19 May 2000 00:01:59 +0200 From: Bernd Walter To: "Niels Chr. Bank-Pedersen" Cc: Bernd Walter , freebsd-current@FreeBSD.ORG Subject: Re: panic: ffs_valloc: dup alloc Message-ID: <20000519000159.B30272@cicely5.cicely.de> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> <20000518234358.B28600@bank-pedersen.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000518234358.B28600@bank-pedersen.dk>; from ncbp@bank-pedersen.dk on Thu, May 18, 2000 at 11:43:58PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, May 18, 2000 at 11:43:58PM +0200, Niels Chr. Bank-Pedersen wrote: > On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: > > Does vinum list saying that one subdisk of your R5 volume is down? > > 5 subdisks: > S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB > S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB > S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB > S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB > S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB > > - But since my first attempt to initialize the plex crashed the > box while only da5se1 was missing, I did a "verify media" from > the SCSI ctrl. BIOS, and did find errors. They were all successfully > remapped, though. I thought about a parity corrpution bug that there was in history. But as all drives are up and they are freshly initialized there are 2 arguments why your problems should be different. Maybe one drive crashed and the system paniced before vinum was able to update the state database on the drives. Did you saw anything unusual on the console before the panic message? > > Are you using softupdates? > > Yup. I am unable to try without SU right now (well, I could, but if it > doesnt work, my foot will be blown of), but I'll try that later when I > get home. It's only of interesst if it was/is enabled on the volume in question and not if it is compiled into the kernel. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 19:28:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from inet-tsb.toshiba.co.jp (inet-tsb.toshiba.co.jp [202.33.96.40]) by hub.freebsd.org (Postfix) with ESMTP id 8930037B63E; Thu, 18 May 2000 19:28:42 -0700 (PDT) (envelope-from shige@sitc.toshiba.co.jp) Received: from tis2.tis.toshiba.co.jp (tis2 [133.199.160.66]) by inet-tsb.toshiba.co.jp (3.7W:TOSHIBA-ISC-2000030918) with ESMTP id LAA00191; Fri, 19 May 2000 11:28:25 +0900 (JST) Received: from mx2.toshiba.co.jp by tis2.tis.toshiba.co.jp (8.8.4+2.7Wbeta4/3.3W9-95082317) id LAA15043; Fri, 19 May 2000 11:28:24 +0900 (JST) Received: from tas0470.sitc.toshiba.co.jp by toshiba.co.jp (8.7.1+2.6Wbeta4/3.3W9-TOSHIBA-GLOBAL SERVER) id LAA12312; Fri, 19 May 2000 11:28:19 +0900 (JST) Received: from ace.sitc.toshiba.co.jp.sitc.toshiba.co.jp by tas0470.sitc.toshiba.co.jp (8.9.3/sitc-1.4) with ESMTP id LAA19790; Fri, 19 May 2000 11:28:18 +0900 (JST) Date: Fri, 19 May 2000 11:28:17 +0900 Message-ID: <14628.42689.810275.12199T@ace.sitc.toshiba.co.jp> X-C-sig-version: Using c-sig version 3.8 From: Shigeyuki Fukushima To: obrien@FreeBSD.org Cc: shige@FreeBSD.org, freebsd-current@FreeBSD.org Subject: Re: -current buildworld breakage In-Reply-To: In your message of "Wed, 17 May 2000 12:10:05 -0700" <20000517121005.A9694@dragon.nuxi.com> References: <20000517155156130.HFBJ.886.t-mta3.odn.ne.jp@mta3.odn.ne.jp> <20000517121005.A9694@dragon.nuxi.com> User-Agent: Wanderlust/2.2.5 (Come Undone) WEMI/1.13.7 (=?ISO-2022-JP?B?GyRCRWdFRBsoQg==?=) PGPGPG FLIM/1.13.2 (=?ISO-2022-JP?B?GyRCM15LJRsoQg==?=) Emacs/20.5 (sparc-sun-solaris2.5.1) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) Organization: FreeBSD committers Dcc: shige@FreeBSD.org MIME-Version: 1.0 (generated by WEMI 1.13.7 - =?ISO-2022-JP?B?IhskQkVnGyhC?= =?ISO-2022-JP?B?GyRCRUQbKEIi?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Is my system environment broken? > I think so. Thank you. /usr/src tree on my system seemd to be broken. I removed entire src tree and re-cvsuped it, then I got no compile error at that point. Thanks. --- shige To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 20:25:27 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 1B32A37BBC2 for ; Thu, 18 May 2000 20:25:23 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id WAA60543 for ; Thu, 18 May 2000 22:25:21 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <00d801bfc141$dd4e6280$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: References: <200005180749.AAA01369@rah.star-gate.com> Subject: Re: New 64 bit Compiler from SGI Date: Thu, 18 May 2000 22:25:21 -0500 Organization: West Bend Internet MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4029.2901 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4029.2901 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: "Amancio Hasty" > For those interested , SGI has released their 64 bit > compiler for Intel's Itanium. > > http://oss.sgi.com/projects/Pro64/ > That great, now when does FreeBSD64 come out ;-) Is FreeBSD 64-bit clean as referred to in the below question from the SGI FAQ ( http://oss.sgi.com/projects/Pro64/faq.html )? Q. I have a C program that runs correctly on Linux/IA-32. When I compile it and run it in the NUE environment, I do not get correct answers. Any ideas? A. Is your program 64-bit clean? The Linux/IA-32 programming model uses an ILP32 model. That means that sizeof(int)==sizeof(long)==sizeof(void *) == 32 bits. The Linux/IA-64 programming model used a LP64 model. That means that sizeof(int)==32 bits and sizeof(long)==sizeof(void *)==64 bits. If your program violates the LP64 model you will have problems. This is why the version of gcc in SPEC95 will not work (nor will it ever without modification). Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 20:31:17 2000 Delivered-To: freebsd-current@freebsd.org Received: from mass.cdrom.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id 976F937B588 for ; Thu, 18 May 2000 20:31:15 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id UAA06257; Thu, 18 May 2000 20:32:19 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200005190332.UAA06257@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Scot W. Hetzel" Cc: current@FreeBSD.ORG Subject: Re: New 64 bit Compiler from SGI In-reply-to: Your message of "Thu, 18 May 2000 22:25:21 CDT." <00d801bfc141$dd4e6280$8dfee0d1@westbend.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 May 2000 20:32:19 -0700 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > From: "Amancio Hasty" > > For those interested , SGI has released their 64 bit > > compiler for Intel's Itanium. > > > > http://oss.sgi.com/projects/Pro64/ > > > That great, now when does FreeBSD64 come out ;-) Give us a bit longer. 8) > Is FreeBSD 64-bit clean as referred to in the below question from the SGI > FAQ ( http://oss.sgi.com/projects/Pro64/faq.html )? This is the same model that we use on the Alpha, so as a general rule, yes. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 21:24:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id 6A9DE37B565 for ; Thu, 18 May 2000 21:24:45 -0700 (PDT) (envelope-from ncbp@bank-pedersen.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1002) id DE07A3E41; Fri, 19 May 2000 06:24:39 +0200 (CEST) Date: Fri, 19 May 2000 06:24:39 +0200 From: "Niels Chr. Bank-Pedersen" To: Bernd Walter Cc: freebsd-current@FreeBSD.ORG Subject: Re: panic: ffs_valloc: dup alloc Message-ID: <20000519062438.A29755@bank-pedersen.dk> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> <20000518234358.B28600@bank-pedersen.dk> <20000519000159.B30272@cicely5.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000519000159.B30272@cicely5.cicely.de>; from ticso@cicely.de on Fri, May 19, 2000 at 12:01:59AM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, May 19, 2000 at 12:01:59AM +0200, Bernd Walter wrote: > On Thu, May 18, 2000 at 11:43:58PM +0200, Niels Chr. Bank-Pedersen wrote: > > On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: > > > Does vinum list saying that one subdisk of your R5 volume is down? > > > > 5 subdisks: > > S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB > > S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB > > S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB > > S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB > > S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB > > > > - But since my first attempt to initialize the plex crashed the > > box while only da5se1 was missing, I did a "verify media" from > > the SCSI ctrl. BIOS, and did find errors. They were all successfully > > remapped, though. > > I thought about a parity corrpution bug that there was in history. > But as all drives are up and they are freshly initialized there are 2 > arguments why your problems should be different. > Maybe one drive crashed and the system paniced before vinum was able to update > the state database on the drives. > Did you saw anything unusual on the console before the panic message? It seems to be a hardware problem with da5. After the latest crash, I had the following in dmesg: (da5:ahc4:0:2:0): SYNCHRONIZE CACHE. CDB: 35 0 0 0 0 0 0 0 0 0 (da5:ahc4:0:2:0): NO SENSE - after obliterating the vinum configuration I created the volume without da5, and I have now successfully copied 250+MB to the filesystem. I would have thought that hardware errors like this could be handled in a slightly more controlled manner, though. > B.Walter COSMO-Project http://www.cosmo-project.de Once again, thanks for your time. /Niels Chr. -- Niels Christian Bank-Pedersen, NCB1-RIPE. Network Manager, Tele Danmark NET, IP-section. "Hey, are any of you guys out there actually *using* RFC 2549?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 22:24:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from web4703.mail.yahoo.com (web4703.mail.yahoo.com [216.115.105.203]) by hub.freebsd.org (Postfix) with SMTP id A891A37B52E for ; Thu, 18 May 2000 22:24:17 -0700 (PDT) (envelope-from unixrock@yahoo.com) Message-ID: <20000517214242.27704.qmail@web4703.mail.yahoo.com> Received: from [24.24.155.13] by web4703.mail.yahoo.com; Wed, 17 May 2000 14:42:42 PDT Date: Wed, 17 May 2000 14:42:42 -0700 (PDT) From: Resin M Subject: subcribe To: current@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu May 18 22:55:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.du.gtn.com (mail.du.gtn.com [194.77.9.57]) by hub.freebsd.org (Postfix) with ESMTP id 6949D37B90F for ; Thu, 18 May 2000 22:55:21 -0700 (PDT) (envelope-from ticso@cicely5.cicely.de) Received: from mail.cicely.de (cicely.de [194.231.9.142]) by mail.du.gtn.com (8.9.3/8.9.3) with ESMTP id HAA27843; Fri, 19 May 2000 07:50:43 +0200 (MET DST) Received: from cicely5.cicely.de (cicely5.cicely.de [10.1.5.7]) by mail.cicely.de (8.9.3/8.9.0) with ESMTP id HAA22901; Fri, 19 May 2000 07:55:38 +0200 (CEST) Received: (from ticso@localhost) by cicely5.cicely.de (8.9.3/8.9.2) id HAA31245; Fri, 19 May 2000 07:55:37 +0200 (CEST) (envelope-from ticso) Date: Fri, 19 May 2000 07:55:37 +0200 From: Bernd Walter To: "Niels Chr. Bank-Pedersen" Cc: Bernd Walter , freebsd-current@FreeBSD.ORG Subject: Re: panic: ffs_valloc: dup alloc Message-ID: <20000519075536.A31215@cicely5.cicely.de> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> <20000518234358.B28600@bank-pedersen.dk> <20000519000159.B30272@cicely5.cicely.de> <20000519062438.A29755@bank-pedersen.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000519062438.A29755@bank-pedersen.dk>; from ncbp@bank-pedersen.dk on Fri, May 19, 2000 at 06:24:39AM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, May 19, 2000 at 06:24:39AM +0200, Niels Chr. Bank-Pedersen wrote: > On Fri, May 19, 2000 at 12:01:59AM +0200, Bernd Walter wrote: > > On Thu, May 18, 2000 at 11:43:58PM +0200, Niels Chr. Bank-Pedersen wrote: > > > On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: > > > > Does vinum list saying that one subdisk of your R5 volume is down? > > > > > > 5 subdisks: > > > S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB > > > S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB > > > S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB > > > S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB > > > S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB > > > > > > - But since my first attempt to initialize the plex crashed the > > > box while only da5se1 was missing, I did a "verify media" from > > > the SCSI ctrl. BIOS, and did find errors. They were all successfully > > > remapped, though. > > > > I thought about a parity corrpution bug that there was in history. > > But as all drives are up and they are freshly initialized there are 2 > > arguments why your problems should be different. > > Maybe one drive crashed and the system paniced before vinum was able to update > > the state database on the drives. > > Did you saw anything unusual on the console before the panic message? > > It seems to be a hardware problem with da5. After the latest > crash, I had the following in dmesg: > > (da5:ahc4:0:2:0): SYNCHRONIZE CACHE. CDB: 35 0 0 0 0 0 0 0 0 0 > (da5:ahc4:0:2:0): NO SENSE That's harmless - it only means that your drive doesn't understood the sync-cache command which is to flush the drives write-cache to the media. If there wasn't anything else then there's no reason to beleave that something went wrong with one of your drives. > - after obliterating the vinum configuration I created the volume > without da5, and I have now successfully copied 250+MB to the filesystem. > > I would have thought that hardware errors like this could be handled > in a slightly more controlled manner, though. At this moment there is no sign of a hardware error. The panic itself means that the filessytem allocated a block which already was allocated. Usually it means that the data on the drive got corrupted while mounted. You should be carefully testing the volume before copying important data to it. In my expirience I can say that using softupdates stresses the I/O system much more than the standard way so it makes sense to test with softupdates. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 1:51:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id E02BD37BA27 for ; Fri, 19 May 2000 01:51:03 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id SAA47619; Fri, 19 May 2000 18:20:45 +0930 (CST) Date: Fri, 19 May 2000 18:20:44 +0930 From: Greg Lehey To: Bernd Walter Cc: "Niels Chr. Bank-Pedersen" , freebsd-current@FreeBSD.ORG Subject: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) Message-ID: <20000519182044.A47558@freebie.lemis.com> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> <20000518234358.B28600@bank-pedersen.dk> <20000519000159.B30272@cicely5.cicely.de> <20000519062438.A29755@bank-pedersen.dk> <20000519075536.A31215@cicely5.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20000519075536.A31215@cicely5.cicely.de> Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I only stumbled on this thread by accident. If you have problems which involve Vinum, please copy me, and I may have input. On Friday, 19 May 2000 at 7:55:37 +0200, Bernd Walter wrote: > On Fri, May 19, 2000 at 06:24:39AM +0200, Niels Chr. Bank-Pedersen wrote: >> On Fri, May 19, 2000 at 12:01:59AM +0200, Bernd Walter wrote: >>> On Thu, May 18, 2000 at 11:43:58PM +0200, Niels Chr. Bank-Pedersen wrote: >>>> On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: >>>>> Does vinum list saying that one subdisk of your R5 volume is down? >>>> >>>> 5 subdisks: >>>> S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB >>>> S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB >>>> S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB >>>> S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB >>>> S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB >>>> >>>> - But since my first attempt to initialize the plex crashed the >>>> box while only da5se1 was missing, I did a "verify media" from >>>> the SCSI ctrl. BIOS, and did find errors. They were all successfully >>>> remapped, though. >>> >>> I thought about a parity corrpution bug that there was in history. >>> But as all drives are up and they are freshly initialized there are 2 >>> arguments why your problems should be different. >>> Maybe one drive crashed and the system paniced before vinum was able to update >>> the state database on the drives. >>> Did you saw anything unusual on the console before the panic message? >> >> >> - after obliterating the vinum configuration I created the volume >> without da5, and I have now successfully copied 250+MB to the filesystem. >> >> I would have thought that hardware errors like this could be handled >> in a slightly more controlled manner, though. > > At this moment there is no sign of a hardware error. > The panic itself means that the filessytem allocated a block which > already was allocated. Usually it means that the data on the drive > got corrupted while mounted. > > You should be carefully testing the volume before copying important > data to it. In my expirience I can say that using softupdates > stresses the I/O system much more than the standard way so it makes > sense to test with softupdates. I recently fixed a number of problems in RAID-5. Can you give me details of the problems you've been having, and the date of the sup? Since this is -CURRENT, I assume that's the version of the system too. As far as soft updates goes, basically it's incompatible with Vinum, since there's currently no way of ensuring the sequence of writes across a number of disks. I'm thinking of ways of doing it, but they will cause significant loss in performance. There should be no problems as long as there isn't a crash, of course :-) Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 6:20: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id AC58337BD03 for ; Fri, 19 May 2000 06:19:59 -0700 (PDT) (envelope-from ncbp@bank-pedersen.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1002) id 9BC0E3E42; Fri, 19 May 2000 15:19:58 +0200 (CEST) Date: Fri, 19 May 2000 15:19:58 +0200 From: "Niels Chr. Bank-Pedersen" To: Greg Lehey , Bernd Walter Cc: freebsd-current@FreeBSD.ORG Subject: Re: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) Message-ID: <20000519151958.C30889@bank-pedersen.dk> References: <20000518161343.G26090@bank-pedersen.dk> <20000518232151.A30272@cicely5.cicely.de> <20000518234358.B28600@bank-pedersen.dk> <20000519000159.B30272@cicely5.cicely.de> <20000519062438.A29755@bank-pedersen.dk> <20000519075536.A31215@cicely5.cicely.de> <20000519182044.A47558@freebie.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000519182044.A47558@freebie.lemis.com>; from grog@lemis.com on Fri, May 19, 2000 at 06:20:44PM +0930 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, May 19, 2000 at 06:20:44PM +0930, Greg Lehey wrote: > I only stumbled on this thread by accident. If you have problems > which involve Vinum, please copy me, and I may have input. Ok, thanks. Wasn't at all sure vinum had anything to do with this crash (and I still don't know if it has), so I didn't want to "Cry Wolf" :-) . > On Friday, 19 May 2000 at 7:55:37 +0200, Bernd Walter wrote: > > On Fri, May 19, 2000 at 06:24:39AM +0200, Niels Chr. Bank-Pedersen wrote: > >> On Fri, May 19, 2000 at 12:01:59AM +0200, Bernd Walter wrote: > >>> On Thu, May 18, 2000 at 11:43:58PM +0200, Niels Chr. Bank-Pedersen wrote: > >>>> On Thu, May 18, 2000 at 11:21:51PM +0200, Bernd Walter wrote: > >>>>> Does vinum list saying that one subdisk of your R5 volume is down? > >>>> > >>>> 5 subdisks: > >>>> S raid5.p0.s0 State: up PO: 0 B Size: 4133 MB > >>>> S raid5.p0.s1 State: up PO: 768 kB Size: 4133 MB > >>>> S raid5.p0.s2 State: up PO: 1536 kB Size: 4133 MB > >>>> S raid5.p0.s3 State: up PO: 2304 kB Size: 4133 MB > >>>> S raid5.p0.s4 State: up PO: 3072 kB Size: 4133 MB > >>>> > >>>> - But since my first attempt to initialize the plex crashed the > >>>> box while only da5se1 was missing, I did a "verify media" from > >>>> the SCSI ctrl. BIOS, and did find errors. They were all successfully > >>>> remapped, though. > >>> > >>> I thought about a parity corrpution bug that there was in history. > >>> But as all drives are up and they are freshly initialized there are 2 > >>> arguments why your problems should be different. > >>> Maybe one drive crashed and the system paniced before vinum was able to update > >>> the state database on the drives. > >>> Did you saw anything unusual on the console before the panic message? > >> > >> > >> - after obliterating the vinum configuration I created the volume > >> without da5, and I have now successfully copied 250+MB to the filesystem. > >> > >> I would have thought that hardware errors like this could be handled > >> in a slightly more controlled manner, though. > > > > At this moment there is no sign of a hardware error. > > The panic itself means that the filessytem allocated a block which > > already was allocated. Usually it means that the data on the drive > > got corrupted while mounted. > > > > You should be carefully testing the volume before copying important > > data to it. In my expirience I can say that using softupdates > > stresses the I/O system much more than the standard way so it makes > > sense to test with softupdates. This is a scratch box used primarily for testing -current, so I don't have anything important on it. Which is good, 'cause as you suspected, it *did* crash again after a while. This time it was, among other things, nfs-serving a buildworld from another filesystem at the time of the crash, so I'm not too sure what triggered it this time (I only got the trace, not any of the messages from the panic): db> trace Debugger(c0245ca3) at Debugger+0x35 panic(c0253e00,c3853a40,c1259500,c3853a40,0) at panic+0x70 handle_written_inodeblock(c1259500,c3853a40) at handle_written_inodeblock+0x2b8 softdep_disk_write_complete(c3853a40) at softdep_disk_write_complete+0x6a bufdone(c3853a40,c0264ab8,c0128558,c3853a40,c0f78400) at bufdone+0x7e bufdonebio(c3853a40) at bufdonebio+0xe dadone(c0f6c680,c0f78400,c073a9a0,40000200,ffffffff) at dadone+0x210 camisr(c0282290,c0264b0c,c021e4e0,40000200,c022e8f6) at camisr+0x1eb swi_cambio(40000200,c022e8f6,c022e41f,40000200,c0ec3800) at swi_cambio+0xd splz_swi(c073a9a0,0,10,10,10) at splz_swi+0x14 Xresume9() at Xresume9+0x2b --- interrupt, eip = 0xc0227a96, esp = 0xc0264b54, ebp = 0 --- default_halt() at default_halt+0x2 db> > I recently fixed a number of problems in RAID-5. Can you give me > details of the problems you've been having, and the date of the sup? > Since this is -CURRENT, I assume that's the version of the system too. It is - sources from ~3 days ago, so I believe I have all your latest fixes. > As far as soft updates goes, basically it's incompatible with Vinum, > since there's currently no way of ensuring the sequence of writes > across a number of disks. I'm thinking of ways of doing it, but they > will cause significant loss in performance. There should be no > problems as long as there isn't a crash, of course :-) I wasn't aware of the incompatibility issues, so all my vinum volumes were running with SU until a few minutes ago :-) I have turned SU off on this R5 volume now as well, but the above trace happened, with SU turned on. > Greg /Niels Chr. -- Niels Christian Bank-Pedersen, NCB1-RIPE. Network Manager, Tele Danmark NET, IP-section. "Hey, are any of you guys out there actually *using* RFC 2549?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 9: 0:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from boromir.vpop.net (dns1.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id 8166037BDBC for ; Fri, 19 May 2000 09:00:56 -0700 (PDT) (envelope-from mreimer@vpop.net) Received: from vpop.net ([209.102.16.48]) by boromir.vpop.net (8.9.3/8.9.3) with ESMTP id JAA39309; Fri, 19 May 2000 09:00:42 -0700 (PDT) (envelope-from mreimer@vpop.net) Message-ID: <39256530.1FD33AA5@vpop.net> Date: Fri, 19 May 2000 09:00:48 -0700 From: Matthew Reimer Organization: VPOP Technologies, Inc. X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Greg Lehey Cc: current@freebsd.org Subject: Re: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greg Lehey wrote: > > As far as soft updates goes, basically it's incompatible with Vinum, > since there's currently no way of ensuring the sequence of writes > across a number of disks. I'm thinking of ways of doing it, but they > will cause significant loss in performance. There should be no > problems as long as there isn't a crash, of course :-) Do you mean that softupdates is entirely incompatible with Vinum, or just incompatible with Vinum's RAID5? Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 9:13:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from procyon.meridian-enviro.com (thunder.meridian-enviro.com [207.109.234.227]) by hub.freebsd.org (Postfix) with ESMTP id 34F7037B7BB; Fri, 19 May 2000 09:13:52 -0700 (PDT) (envelope-from rand@meridian-enviro.com) Received: from deneb.meridian-enviro.com (deneb.meridian-enviro.com [10.10.10.32]) by procyon.meridian-enviro.com (8.9.2/8.9.2) with ESMTP id LAA27496; Fri, 19 May 2000 11:13:33 -0500 (CDT) Received: (from rand@localhost) by deneb.meridian-enviro.com (8.9.2/8.9.2) id LAA54794; Fri, 19 May 2000 11:13:32 -0500 (CDT) To: Mike Smith Cc: "Scot W. Hetzel" , current@FreeBSD.ORG Subject: Re: New 64 bit Compiler from SGI References: <200005190332.UAA06257@mass.cdrom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: rand@meridian-enviro.com (Douglas K. Rand) Date: 19 May 2000 11:13:32 -0500 In-Reply-To: Mike Smith's message of "Thu, 18 May 2000 20:32:19 -0700" Message-ID: <87aehmecwj.fsf@deneb.meridian-enviro.com> Lines: 5 User-Agent: Gnus/5.07008 (Pterodactyl Gnus v0.80) XEmacs/21.1 (20 Minutes to Nikko) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Amancio> That great, now when does FreeBSD64 come out ;-) Mike> Give us a bit longer. 8) How many 'bits' longer do you need? 32? :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 12:43:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 80F8B37BFBF for ; Fri, 19 May 2000 12:43:30 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id MAA40388; Fri, 19 May 2000 12:43:28 -0700 (PDT) (envelope-from dillon) Date: Fri, 19 May 2000 12:43:28 -0700 (PDT) From: Matthew Dillon Message-Id: <200005191943.MAA40388@apollo.backplane.com> To: Matthew Reimer Cc: Greg Lehey , current@FreeBSD.ORG Subject: Re: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) References: <39256530.1FD33AA5@vpop.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :Greg Lehey wrote: :> :> As far as soft updates goes, basically it's incompatible with Vinum, :> since there's currently no way of ensuring the sequence of writes :> across a number of disks. I'm thinking of ways of doing it, but they :> will cause significant loss in performance. There should be no :> problems as long as there isn't a crash, of course :-) : :Do you mean that softupdates is entirely incompatible with Vinum, or :just incompatible with Vinum's RAID5? : :Matt Wait a sec... softupdates does not depend on write ordering. Softupdates issues all non-conflicting writes in parallel and doesn't care what order they are written to the disk. When those complete, softupdates will then followup with all the writes that depend on the original set. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 13:12:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from web3103.mail.yahoo.com (web3103.mail.yahoo.com [204.71.202.188]) by hub.freebsd.org (Postfix) with SMTP id 7538637BCBC for ; Fri, 19 May 2000 13:12:25 -0700 (PDT) (envelope-from mike_bsdlists@yahoo.com) Message-ID: <20000519201223.12769.qmail@web3103.mail.yahoo.com> Received: from [38.28.103.143] by web3103.mail.yahoo.com; Fri, 19 May 2000 13:12:23 PDT Date: Fri, 19 May 2000 13:12:23 -0700 (PDT) From: MikeM Subject: error making world: stage 1 To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, This is the first time I've tried to install current, so if the following issue has already been discussed, please let me know where to find the logs. I am trying to upgrade from 3.2 Release to -current but the build fails in the bootstrap stage. my supfile has the following release=cvs tag=. I synced my source tree at about 10 a.m. Pacific this morning (05/19). I ran make world. As it tried to compile new.cc in gperf I got the following error: /pub/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc: In function `void operator delete(void *)': /pub/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:82: declaration of `operator delete(void *)' throws different exceptions... :82: ...from previous declaration here *** Error code 1 A look at /usr/src/contrib/gperf/src/new.cc yielded this: /* We need this deletion operator in order to make the linker happy. Because `operator new' and `operator delete' always come together. */ void operator delete (void *ptr) #ifdef HAVE_THROW_DECL throw() #endif { T (Trace t ("operator delete");) // We cannot call free here, as it doesn't match the mallocs. // free ((char *) ptr); (void) ptr; } So, apparently somewhere else delete is declared without throw() or with something inbetween the (). My understanding is that throw() is an optional compile time thing, and acts simply as an "interface contract" between the calling and the called function specifying what exceptions will be thrown by the function, so I took the liberty of adding: #undef HAVE_THROW_DECL just before the function declaration. That seems to have fixed my problem (it's in "stage 3: cross tools" right now). However, that only fixed the symptom, not the cause. Presumably, the problem will still be there next time I cvsup. I would rather not have to muck with the code every time I sync my source tree, and would appreciate it if someone could give me a heads up as to anything I might be doing wrong on my end, or if it is a problem with the code that the maintainer be made aware. I'd appreciate any help/response. Thanks, Mike_TM. --"The beatings will continue until morale improves!" __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 13:31: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from orion.ac.hmc.edu (Orion.AC.HMC.Edu [134.173.32.20]) by hub.freebsd.org (Postfix) with ESMTP id 1CD7937B6CD for ; Fri, 19 May 2000 13:31:00 -0700 (PDT) (envelope-from brdavis@orion.ac.hmc.edu) Received: (from brdavis@localhost) by orion.ac.hmc.edu (8.8.8/8.8.8) id NAA04276; Fri, 19 May 2000 13:28:21 -0700 (PDT) Date: Fri, 19 May 2000 13:28:21 -0700 From: Brooks Davis To: MikeM Cc: freebsd-current@FreeBSD.ORG Subject: Re: error making world: stage 1 Message-ID: <20000519132821.A3950@orion.ac.hmc.edu> References: <20000519201223.12769.qmail@web3103.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20000519201223.12769.qmail@web3103.mail.yahoo.com>; from mike_bsdlists@yahoo.com on Fri, May 19, 2000 at 01:12:23PM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, May 19, 2000 at 01:12:23PM -0700, MikeM wrote: > Hi, > > This is the first time I've tried to install current, > so if the following issue has already been discussed, > please let me know where to find the logs. > > I am trying to upgrade from 3.2 Release to -current > but the build fails in the bootstrap stage. You can't do that in one step. You need to upgrade to 3.4-STABLE first. Then follow the instructions in /usr/src/UPDATING to upgrade to 4.0. Finaly, you can then upgrade to -current. Multiple major version jumps are not supported and are unlikely to work. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 18:57:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from hamal.freemail.ne.jp (hamal.freemail.ne.jp [210.235.164.43]) by hub.freebsd.org (Postfix) with SMTP id 937F537BA6E for ; Fri, 19 May 2000 18:57:46 -0700 (PDT) (envelope-from 2dmaster@2d.artist.ne.jp) Received: (qmail 16794 invoked by alias); 20 May 2000 06:50:43 +0900 Received: (qmail 11643 invoked from network); 20 May 2000 04:17:44 +0900 Received: from p0a20cc.tokyjk16.ap.so-net.ne.jp (HELO 304) (211.10.32.204) by hamal.freemail.ne.jp with SMTP; 20 May 2000 04:17:44 +0900 Message-ID: <024d01bfc1c6$e98731a0$cc00a8c0@mangaokoku.co.jp> From: "=?iso-2022-jp?B?GyRCQHA2ZjNaSXQbKEI=?=" <2dmaster@2d.artist.ne.jp> To: Subject: =?iso-2022-jp?B?GyRCPXdNJTFnPXUlNSE8JS8layEmJTIlOSVIMnEbKEI=?= Date: Sat, 20 May 2000 04:07:11 +0900 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 6$B7n(B18$BF|!JF|!K(B12$B;~!A(B18$B;~!&G.3$(B $B!!%H%C%W%9%?!\:Y4uK>!W!"K\J8$KG/Np$r5-$7(B 2dmaster@info66.com $B$^$G!#(Bi$B%b!<%IEy$G;z?t@)8B$N$"$k?M$O$=$N;]$b!#Aj8_HkL)@dBP87; Fri, 19 May 2000 20:20:34 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id MAA61248; Sat, 20 May 2000 12:49:37 +0930 (CST) Date: Sat, 20 May 2000 12:49:37 +0930 From: Greg Lehey To: Matthew Dillon Cc: Matthew Reimer , current@FreeBSD.ORG Subject: Re: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) Message-ID: <20000520124936.E57670@freebie.lemis.com> References: <39256530.1FD33AA5@vpop.net> <200005191943.MAA40388@apollo.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <200005191943.MAA40388@apollo.backplane.com> Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 19 May 2000 at 12:43:28 -0700, Matthew Dillon wrote: > >> Greg Lehey wrote: >>> >>> As far as soft updates goes, basically it's incompatible with Vinum, >>> since there's currently no way of ensuring the sequence of writes >>> across a number of disks. I'm thinking of ways of doing it, but they >>> will cause significant loss in performance. There should be no >>> problems as long as there isn't a crash, of course :-) >> >> Do you mean that softupdates is entirely incompatible with Vinum, or >> just incompatible with Vinum's RAID5? > > Wait a sec... softupdates does not depend on write ordering. > Softupdates issues all non-conflicting writes in parallel and > doesn't care what order they are written to the disk. When > those complete, softupdates will then followup with all the > writes that depend on the original set. Hmm. Maybe I've misunderstood, then. It was my understanding that soft updates writes metadata with WRITE_ORDERED set, and thus avoids having to explicitly wait for completion. It's the WRITE_ORDERED that Vinum doesn't handle correctly. On a single disk, it's just a question of not sorting around a WRITE_ORDERED request. Vinum will keep the WRITE_ORDERED on a single disk, but it won't ensure that a request for the same volume, but which is destined for a different disk, will not be written until after all components of a prior WRITE_ORDERED request for that volume. Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 21:45: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.cdrom.com (pike.cdrom.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id A902E37B54D for ; Fri, 19 May 2000 21:45:04 -0700 (PDT) (envelope-from cshumway@cdrom.com) Received: from localhost (cshumway@localhost) by pike.cdrom.com (8.9.3/8.9.3) with ESMTP id VAA29722 for ; Fri, 19 May 2000 21:43:13 -0700 (PDT) (envelope-from cshumway@cdrom.com) Date: Fri, 19 May 2000 21:43:13 -0700 (PDT) From: Christopher Shumway To: current@freebsd.org Subject: Neomagic audio driver Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm having an interesting problem with the neomagic audio driver ever since building world and kernel from current sources checked out late this morning PDT. Sending any data to the audio device (e.g. cat /kernel > /dev/audio) results in the following pannic: Fatal trap 12: page fault while in kernel mode fault virtual address = 0xfe271c00 fault code = supervisor write, page not present instruction pointer = 0x8:0xc0145873 stack pointer = 0x10:0xc93c3d08 frame pointer = 0x10:0xc93c3d10 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 238 (tcsh) interrupt mask = none trap number = 12 panic: page fault The audio device is a Neomagic built onto a Sony VIAO laptop as such: pcm0: mem 0xfea00000-0xfeafffff,0xfe000000-0xfe3fffff irq 9 at device 8.1 on pci0 Anyone have any idea what could have gone afoul? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri May 19 22:40: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.cvzoom.net (ns.cvzoom.net [208.226.154.2]) by hub.freebsd.org (Postfix) with SMTP id 1D66037B6C8 for ; Fri, 19 May 2000 22:40:02 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 15068 invoked from network); 20 May 2000 05:40:00 -0000 Received: from lc210.cvzoom.net (208.226.154.210) by ns.cvzoom.net with SMTP; 20 May 2000 05:40:00 -0000 Date: Sat, 20 May 2000 01:39:59 -0400 (EDT) From: Donn Miller To: Christopher Shumway Cc: current@freebsd.org Subject: Re: Neomagic audio driver In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 19 May 2000, Christopher Shumway wrote: > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0xfe271c00 > fault code = supervisor write, page not present > instruction pointer = 0x8:0xc0145873 > stack pointer = 0x10:0xc93c3d08 > frame pointer = 0x10:0xc93c3d10 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 238 (tcsh) > interrupt mask = none > trap number = 12 > panic: page fault How do you capture a dump of this sort of thing (e.g. page fault) to a file? - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 1:11:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from nagual.pp.ru (hermes.dialup.ru [194.87.16.230]) by hub.freebsd.org (Postfix) with ESMTP id 3E17437B677; Sat, 20 May 2000 01:11:12 -0700 (PDT) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.9.3/8.9.3) id MAA00309; Sat, 20 May 2000 12:11:08 +0400 (MSD) (envelope-from ache) Date: Sat, 20 May 2000 12:11:06 +0400 From: "Andrey A. Chernov" To: current@freebsd.org, peter@freebsd.org, kris@freebsd.org Subject: Patch to change CheckMail default for OpenSSH Message-ID: <20000520121106.A298@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Organization: Biomechanoid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please apply this patch to be more compatible with standard FreeBSD login by _default_. --- sshd_config.bak Sat May 20 11:05:22 2000 +++ sshd_config Sat May 20 12:09:09 2000 @@ -51,5 +51,5 @@ # Kerberos TGT Passing does only work with the AFS kaserver #KerberosTgtPassing yes -#CheckMail yes +CheckMail yes #UseLogin no -- Andrey A. Chernov http://nagual.pp.ru/~ache/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 1:37: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from basil.ocn.ne.jp (basil.ocn.ne.jp [210.232.239.112]) by hub.freebsd.org (Postfix) with ESMTP id 93DBD37C048 for ; Sat, 20 May 2000 01:36:59 -0700 (PDT) (envelope-from y-free@basil.ocn.ne.jp) Received: from oemcomputer (p24-dna12kyoto.kyoto.ocn.ne.jp [203.140.124.24]) by basil.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id RAA21129 for ; Sat, 20 May 2000 17:36:50 +0900 (JST) Message-ID: <1311.958812001680@basil.ocn.ne.jp> Date: Sat, 20 May 2000 17:40:01 +0900 (JST) From: =?iso-2022-jp?B?GyRCI08jZiNmI2kjYyNlISEjUyNPI04bKEI=?= Reply-To: y-free@basil.ocn.ne.jp To: =?iso-2022-jp?B?GyRCMydNTSRYGyhC?= Subject: =?iso-2022-jp?B?GyRCJE8kOCRhJF4kNyRGISIjTyNmI2YjaSNjGyhC?==?iso-2022-jp?B?GyRCI2UhISNTI08jTiRHJDkhIxsoQg==?= Mime-Version: 1.0 Content-Type: text/plain; charset =iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG $BFMA3$N%a!<%k?=$7Lu8f:B$$$^$;$s!#(B $B!!$4ITMW$J>pJs$G$7$?$i$*/!9$N$*;~4V$rD:$-$?$/$*4j$$?=$7>e$2$^$9!#(B $B$3$N$40FFb$O!"6%GO%U%!%s$N3'MM$X$*Aw$j$7$F$*$j$^$9!#(B $BK|$,0l4V0c$C$FFO$$$F$7$^$$$^$7$?$i$*5v$72<$5$$!#(B $B$4L5Ni$r?<$/$*OM$S?=$7>e$2$^$9!#(B $BEv%5%$%H$G$O!"2s<}N(H472$N6%GOM=A[$r!"Ds6!$7$F$*$j$^$9!#(B $BF~2q6b!"EPO?NA!"0l@ZL5NA$G$9!#(B $B40A48eJ'$$!"2s<}N($,#1#5#0!sL$K~$N>l9g$O!"L5NA$G$9!#(B $B2s<}N($,#1#5#0!s0J>eC#@.;~$N$_!">pJsNA$r$*;YJ'$$2<$5$$!#(B $BEZ!"F|!"FsF|J,$N>pJs$r!"0lF|#3%l!<%9!A#4%l!<%9$*Aw$jCW$7$^$9!#(B $BFsF|J,!!>pJsNA!!#5#0#0#01_(B $BEZ!"F|!"$$$:$l$+0lF|J,!!>pJsNA!!#3#0#0#01_(B ================================ $B!!!!!!>!Ii;U%4%s$A$c$s$N6%GOM=A[!*(B $B!!!!(B ================================ $B!!6%GOF;#2#0G/!*<+?.$"$j!*2<5-$N#U#R#L$r%/%j%C%/(B $B!!(Bhttp://www1.ocn.ne.jp/~y-free/index3.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 6:16:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 3E33B37B648 for ; Sat, 20 May 2000 06:16:39 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12t95o-0003TW-00; Sat, 20 May 2000 15:15:00 +0200 From: Sheldon Hearn To: Brooks Davis Cc: MikeM , freebsd-current@FreeBSD.ORG Subject: Re: error making world: stage 1 In-reply-to: Your message of "Fri, 19 May 2000 13:28:21 MST." <20000519132821.A3950@orion.ac.hmc.edu> Date: Sat, 20 May 2000 15:15:00 +0200 Message-ID: <13361.958828500@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 19 May 2000 13:28:21 MST, Brooks Davis wrote: > > I am trying to upgrade from 3.2 Release to -current > > but the build fails in the bootstrap stage. > > You can't do that in one step. You need to upgrade to 3.4-STABLE first. > Then follow the instructions in /usr/src/UPDATING to upgrade to 4.0. > Finaly, you can then upgrade to -current. Multiple major version jumps > are not supported and are unlikely to work. While this is sensible advise, since it looks like the original poster is doing this more for the experience than for practical purposes, it's always worth mentioning to folks that the binary upgrade option is both available and simple. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 9: 2: 2 2000 Delivered-To: freebsd-current@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id F06F837B6EC for ; Sat, 20 May 2000 09:01:49 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id JAA12126; Sat, 20 May 2000 09:01:44 -0700 (PDT) (envelope-from jdp@polstra.com) From: John Polstra Received: (from jdp@localhost) by vashon.polstra.com (8.9.3/8.9.1) id JAA92867; Sat, 20 May 2000 09:01:44 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Sat, 20 May 2000 09:01:44 -0700 (PDT) Message-Id: <200005201601.JAA92867@vashon.polstra.com> To: dmmiller@cvzoom.net Reply-To: current@freebsd.org Subject: Re: Neomagic audio driver In-Reply-To: References: Organization: Polstra & Co., Seattle, WA Cc: current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article , Donn Miller wrote: > On Fri, 19 May 2000, Christopher Shumway wrote: > > > Fatal trap 12: page fault while in kernel mode > > fault virtual address = 0xfe271c00 > > fault code = supervisor write, page not present > > instruction pointer = 0x8:0xc0145873 > > stack pointer = 0x10:0xc93c3d08 > > frame pointer = 0x10:0xc93c3d10 > > code segment = base 0x0, limit 0xfffff, type 0x1b > > = DPL 0, pres 1, def32 1, gran 1 > > processor eflags = interrupt enabled, resume, IOPL = 0 > > current process = 238 (tcsh) > > interrupt mask = none > > trap number = 12 > > panic: page fault > > How do you capture a dump of this sort of thing (e.g. page fault) to a > file? The easiest way is to use a serial console. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 9:17:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 173E537B6EC for ; Sat, 20 May 2000 09:17:02 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from localhost (localhost [::1]) by peace.mahoroba.org (8.10.1/3.7W-peace) with ESMTP id e4KGBgc05663; Sun, 21 May 2000 01:11:42 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sun, 21 May 2000 01:11:42 +0900 (JST) Message-Id: <200005201611.e4KGBgc05663@peace.mahoroba.org> To: Alexander@Leidinger.net Cc: current@freebsd.org Subject: Re: PAM & OpenSSH 2.1 & X11 -> signal 11 In-Reply-To: <200005181419.QAA05664@Magelan.Leidinger.net> References: <200005181419.QAA05664@Magelan.Leidinger.net> X-Mailer: xcite1.20> Mew version 1.94.2 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Hajimu UMEMOTO (=?ISO-2022-JP?B?GyRCR19LXBsoQiA=?= =?ISO-2022-JP?B?GyRCSCUbKEI=?=) X-Dispatcher: imput version 20000228(IM140) Lines: 19 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Thu, 18 May 2000 16:19:25 +0200 (CEST) >>>>> Alexander Leidinger said: Alexander> after a new build{world,kernel} after the import of OpenSSH 2.1 to Alexander> internat (cvsupped 20000517, around 14:00 CEST), xdm gets a signal Alexander> 11 if I use pam_ssh.so (after entering the password). Alexander> After removing the lines with pam_ssh.so for xdm I'm able to login. Alexander> Is someone else able to reproduce this? I also met this with wdm here. To avoid this problem, I replaced pam_ssh.c with ports/security/opessh/pam_ssh.c with changing PATH_SSH_AGENT to /usr/bin/ssh-agent. It seems working. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 9:30:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from wyvern.cc.kogakuin.ac.jp (wyvern.cc.kogakuin.ac.jp [133.80.184.10]) by hub.freebsd.org (Postfix) with ESMTP id A9E7837B52C for ; Sat, 20 May 2000 09:29:59 -0700 (PDT) (envelope-from nyan@wyvern.cc.kogakuin.ac.jp) Received: from localhost (localhost [127.0.0.1]) by wyvern.cc.kogakuin.ac.jp (8.9.3+3.2W/3.7W/SAKURA) with ESMTP id BAA21812; Sun, 21 May 2000 01:29:42 +0900 (JST) To: cshumway@cdrom.com Cc: current@freebsd.org Subject: Re: Neomagic audio driver In-Reply-To: References: <200005201615.JAA51863@freefall.freebsd.org> From: Takahashi Yoshihiro X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000521012941D.nyan@wyvern.cc.kogakuin.ac.jp> Date: Sun, 21 May 2000 01:29:41 +0900 (JST) X-Dispatcher: imput version 990905(IM130) Lines: 26 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article Christopher Shumway writes: > I'm having an interesting problem with the neomagic audio driver ever since > building world and kernel from current sources checked out late this > morning PDT. Sending any data to the audio device (e.g. cat /kernel > > /dev/audio) results in the following pannic: The following change probably fixes this problem. I'm sorry. > nyan 2000/05/20 09:15:50 PDT > > Modified files: > sys/dev/sound/pci neomagic.c > Log: > Oops, rman_get_bushandle() should be converted to rman_get_virtual() > if resources are mapped to memory. > > Revision Changes Path > 1.11 +2 -2 src/sys/dev/sound/pci/neomagic.c --- Takahashi Yoshihiro The Center for Information Science, Kogakuin Univ. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 10:31:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id DB94E37B6C7 for ; Sat, 20 May 2000 10:31:12 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id KAA45787; Sat, 20 May 2000 10:31:06 -0700 (PDT) (envelope-from dillon) Date: Sat, 20 May 2000 10:31:06 -0700 (PDT) From: Matthew Dillon Message-Id: <200005201731.KAA45787@apollo.backplane.com> To: Greg Lehey Cc: Matthew Reimer , current@FreeBSD.ORG Subject: Re: Possible Vinum RAID-5 problems? (was: panic: ffs_valloc: dup alloc) References: <39256530.1FD33AA5@vpop.net> <200005191943.MAA40388@apollo.backplane.com> <20000520124936.E57670@freebie.lemis.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG :> Wait a sec... softupdates does not depend on write ordering. :> Softupdates issues all non-conflicting writes in parallel and :> doesn't care what order they are written to the disk. When :> those complete, softupdates will then followup with all the :> writes that depend on the original set. : :Hmm. Maybe I've misunderstood, then. It was my understanding that :soft updates writes metadata with WRITE_ORDERED set, and thus avoids :having to explicitly wait for completion. It's the WRITE_ORDERED that :Vinum doesn't handle correctly. On a single disk, it's just a :question of not sorting around a WRITE_ORDERED request. Vinum will :keep the WRITE_ORDERED on a single disk, but it won't ensure that a :request for the same volume, but which is destined for a different :disk, will not be written until after all components of a prior :WRITE_ORDERED request for that volume. : :Greg Softupdates does not use bowrite(). In fact, the only place anyone uses bowrite() is in the UFS directory code, and if softupdates is turned on even those few bowrite()s are turned *OFF*. Softupdates is very strict in how it issues I/O. There are two cases. In the normal case softupdates does not issue dependant I/O until the I/O associated with the dependancy itself completes. In the second case, where the kernel forces a buffer to be flushed, softupdates will issue I/O on a non-dependant version of the buffer and then redirty the buffer with the dependant data. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 12:13:27 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.cdrom.com (pike.cdrom.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 142C237B528 for ; Sat, 20 May 2000 12:13:25 -0700 (PDT) (envelope-from cshumway@cdrom.com) Received: from localhost (cshumway@localhost) by pike.cdrom.com (8.9.3/8.9.3) with ESMTP id MAA40999; Sat, 20 May 2000 12:11:29 -0700 (PDT) (envelope-from cshumway@cdrom.com) Date: Sat, 20 May 2000 12:11:29 -0700 (PDT) From: Christopher Shumway To: Donn Miller Cc: current@freebsd.org Subject: Re: Neomagic audio driver In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 20 May 2000, Donn Miller wrote: > On Fri, 19 May 2000, Christopher Shumway wrote: > > > Fatal trap 12: page fault while in kernel mode [Crash snipped] > > How do you capture a dump of this sort of thing (e.g. page fault) to a > file? It appears in the dmesg buffer as long as you warm-boot the machine after the crash. It appears that it stays in memory and FreeBSD picks it up again on the next reboot, because the BIOS doesn't flush the contents of memory on a warm boot. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 12:41:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.cdrom.com (pike.cdrom.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 6FFF937B7BE for ; Sat, 20 May 2000 12:41:16 -0700 (PDT) (envelope-from cshumway@cdrom.com) Received: from localhost (cshumway@localhost) by pike.cdrom.com (8.9.3/8.9.3) with ESMTP id MAA41365; Sat, 20 May 2000 12:38:50 -0700 (PDT) (envelope-from cshumway@cdrom.com) Date: Sat, 20 May 2000 12:38:50 -0700 (PDT) From: Christopher Shumway To: Takahashi Yoshihiro Cc: current@FreeBSD.ORG Subject: Re: Neomagic audio driver In-Reply-To: <20000521012941D.nyan@wyvern.cc.kogakuin.ac.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 21 May 2000, Takahashi Yoshihiro wrote: > > I'm having an interesting problem with the neomagic audio driver ever since > > building world and kernel from current sources checked out late this > > morning PDT. Sending any data to the audio device (e.g. cat /kernel > > > /dev/audio) results in the following pannic: > > The following change probably fixes this problem. Well, that did fix the crash, but now absolutly no sound comes out of the device. It appears to attach ok (/dev/sndstat reports the driver), but with the mixer volume set at 100:100 no sound is produced. Anything writing to the audio device is in a state of [pcmwr], so it appears to be getting data. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 12:51:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from lola.heim10.tu-clausthal.de (lola.heim10.tu-clausthal.de [139.174.241.25]) by hub.freebsd.org (Postfix) with ESMTP id 643D337B5EE; Sat, 20 May 2000 12:51:07 -0700 (PDT) (envelope-from norbert.irmer@heim9.tu-clausthal.de) Received: from heim9.tu-clausthal.de (localhost.heim10.tu-clausthal.de [127.0.0.1]) by lola.heim10.tu-clausthal.de (8.9.3/8.9.3) with ESMTP id VAA56583; Sat, 20 May 2000 21:51:03 +0200 (CEST) (envelope-from norbert.irmer@heim9.tu-clausthal.de) Message-ID: <3926ECA6.FF3B4993@heim9.tu-clausthal.de> Date: Sat, 20 May 2000 21:51:03 +0200 From: Norbert Irmer X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-i18n@FreeBSD.ORG Cc: freebsd-current@FreeBSD.ORG Subject: Re: Wide-char support and libc References: <39221780.C18E585@cvzoom.net> <8g0d4i$ubd$1@bigeye.rhein-neckar.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Christian Weisgerber wrote: > > (This should move to freebsd-i18n.) > > Donn Miller wrote: > > > Anyone like the idea of adding wide char support to our libc? > > I'd like the idea of somebody explaining where/how I can get an > overview of what's missing in the first place. > > > Maybe we could port it over from {Net,Open}BSD or BSDi. > > Assuming any of those have it, in the first place. I'm fairly sure, > NetBSD and OpenBSD don't. > > -- > Christian "naddy" Weisgerber naddy@mips.inka.de > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message You get the following when trying to link with OpenMotif gcc -o airport -O2 -pipe -L../../../exports/lib -L../../../imports/x11/lib main.o dragsource.o dropsite.o -lXm -lXt -lSM -lICE -lXp -lXext -lX11 -L/usr/X11R6/lib -L/usr/X11R6/lib -lm ../../../imports/x11/lib/libXm.so: undefined reference to `wcslen' ../../../imports/x11/lib/libXm.so: undefined reference to `wcscpy' ../../../imports/x11/lib/libXm.so: undefined reference to `wcschr' ../../../imports/x11/lib/libXm.so: undefined reference to `wcsncat' ../../../imports/x11/lib/libXm.so: undefined reference to `wcscat' *** Error code 1 -- email: norbert.irmer@heim9.tu-clausthal.de web: http://gul.sourceforge.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 14:16:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 5C27E37B7E6; Sat, 20 May 2000 14:16:24 -0700 (PDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id PAA00304; Sat, 20 May 2000 15:16:22 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id PAA54146; Sat, 20 May 2000 15:15:46 -0600 (MDT) Message-Id: <200005202115.PAA54146@billy-club.village.org> To: Norbert Irmer Subject: Re: Wide-char support and libc Cc: freebsd-i18n@FreeBSD.ORG, freebsd-current@FreeBSD.ORG In-reply-to: Your message of "Sat, 20 May 2000 21:51:03 +0200." <3926ECA6.FF3B4993@heim9.tu-clausthal.de> References: <3926ECA6.FF3B4993@heim9.tu-clausthal.de> <39221780.C18E585@cvzoom.net> <8g0d4i$ubd$1@bigeye.rhein-neckar.de> Date: Sat, 20 May 2000 15:15:46 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <3926ECA6.FF3B4993@heim9.tu-clausthal.de> Norbert Irmer writes: : gcc -o airport -O2 -pipe -L../../../exports/lib -L../../../imports/x11/lib main.o dragsource.o : dropsite.o -lXm -lXt -lSM -lICE -lXp -lXext -lX11 -L/usr/X11R6/lib -L/usr/X11R6/lib -lm Have you tried adding -lxpg4 to the command line? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 15:31: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from happy.checkpoint.com (happy.checkpoint.com [199.203.156.41]) by hub.freebsd.org (Postfix) with ESMTP id 60A0537B555 for ; Sat, 20 May 2000 15:30:57 -0700 (PDT) (envelope-from mellon@pobox.com) Received: (from mellon@localhost) by happy.checkpoint.com (8.9.3/8.9.3) id BAA48674 for current@freebsd.org; Sun, 21 May 2000 01:31:00 GMT (envelope-from mellon@pobox.com) Date: Sun, 21 May 2000 01:31:00 +0000 From: Anatoly Vorobey To: current@freebsd.org Subject: Re: error making world: stage 1 Message-ID: <20000521013100.A48649@happy.checkpoint.com> References: <20000519201223.12769.qmail@web3103.mail.yahoo.com> <20000519132821.A3950@orion.ac.hmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000519132821.A3950@orion.ac.hmc.edu>; from brooks@one-eyed-alien.net on Fri, May 19, 2000 at 01:28:21PM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, May 19, 2000 at 01:28:21PM -0700, Brooks Davis wrote: > On Fri, May 19, 2000 at 01:12:23PM -0700, MikeM wrote: > > Hi, > > > > This is the first time I've tried to install current, > > so if the following issue has already been discussed, > > please let me know where to find the logs. > > > > I am trying to upgrade from 3.2 Release to -current > > but the build fails in the bootstrap stage. > > You can't do that in one step. You need to upgrade to 3.4-STABLE first. > Then follow the instructions in /usr/src/UPDATING to upgrade to 4.0. > Finaly, you can then upgrade to -current. Multiple major version jumps > are not supported and are unlikely to work. Wouldn't it be better then to install a -current snapshot on one's filesystems without reformatting them, and update boot blocks if necessary? What else could go wrong? -- Anatoly Vorobey, mellon@pobox.com http://pobox.com/~mellon/ "Angels can fly because they take themselves lightly" - G.K.Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 17: 7:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from lola.heim10.tu-clausthal.de (lola.heim10.tu-clausthal.de [139.174.241.25]) by hub.freebsd.org (Postfix) with ESMTP id 7783537B7BC; Sat, 20 May 2000 17:07:30 -0700 (PDT) (envelope-from norbert.irmer@heim9.tu-clausthal.de) Received: from heim9.tu-clausthal.de (localhost.heim10.tu-clausthal.de [127.0.0.1]) by lola.heim10.tu-clausthal.de (8.9.3/8.9.3) with ESMTP id CAA61725; Sun, 21 May 2000 02:07:19 +0200 (CEST) (envelope-from norbert.irmer@heim9.tu-clausthal.de) Message-ID: <392728B7.D41E6FC7@heim9.tu-clausthal.de> Date: Sun, 21 May 2000 02:07:19 +0200 From: Norbert Irmer X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: freebsd-i18n@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: Wide-char support and libc References: <3926ECA6.FF3B4993@heim9.tu-clausthal.de> <39221780.C18E585@cvzoom.net> <8g0d4i$ubd$1@bigeye.rhein-neckar.de> <200005202115.PAA54146@billy-club.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh wrote: > > In message <3926ECA6.FF3B4993@heim9.tu-clausthal.de> Norbert Irmer writes: > : gcc -o airport -O2 -pipe -L../../../exports/lib -L../../../imports/x11/lib main.o dragsource.o > : dropsite.o -lXm -lXt -lSM -lICE -lXp -lXext -lX11 -L/usr/X11R6/lib -L/usr/X11R6/lib -lm > > Have you tried adding -lxpg4 to the command line? > > Warner > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message Yes, i tried this, but without success. If you do a "nm /usr/lib/libxgp4.a" you will see that this library doesn't contains functions with these names. (and the "config/FreeBSD.cf" file for Imake contains: #if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion >= 2) #define ExtraLibraries -lxpg4 , so this cannot be the reason) The only way i found to link motif programs is by using http://www.cs.rpi.edu/~crossd/FreeBSD/wcs-19990606.tar.gz (as Garance Alistair Drosehn recommended in his letter on this subject) -- email: norbert.irmer@heim9.tu-clausthal.de web: http://gul.sourceforge.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat May 20 18:56: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 0067A37B815; Sat, 20 May 2000 18:55:57 -0700 (PDT) (envelope-from clive@cartier.cirx.org) Received: (from clive@localhost) by cartier.cirx.org (8.9.3/8.9.3) id JAA21051; Sun, 21 May 2000 09:55:07 +0800 (CST) (envelope-from clive) Date: Sun, 21 May 2000 09:55:07 +0800 From: Clive Lin To: Norbert Irmer Cc: Warner Losh , freebsd-i18n@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: Wide-char support and libc Message-ID: <20000521095507.A21004@cartier.cirx.org> Reply-To: Clive Lin References: <3926ECA6.FF3B4993@heim9.tu-clausthal.de> <39221780.C18E585@cvzoom.net> <8g0d4i$ubd$1@bigeye.rhein-neckar.de> <200005202115.PAA54146@billy-club.village.org> <392728B7.D41E6FC7@heim9.tu-clausthal.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <392728B7.D41E6FC7@heim9.tu-clausthal.de>; from norbert.irmer@heim9.tu-clausthal.de on Sun, May 21, 2000 at 02:07:19AM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On Sun, May 21, 2000 at 02:07:19AM +0200, Norbert Irmer wrote: > The only way i found to link motif programs is by using > > http://www.cs.rpi.edu/~crossd/FreeBSD/wcs-19990606.tar.gz This seems the solution of wc* routines in FreeBSD. Could any one tell us, is this project dead ? Will this be in the src/ ? Or still in long-long beta (even pre-alpha ?) testing.. ? Or .. ? Thanks all. > (as Garance Alistair Drosehn recommended in his letter on this subject) -- CirX - This site doesnt' exist. 9c k9o h9 s1bg s1f, 7v .y xqx a sj m8r ffg1 vg5 a6 asox tmul h38 . ant sj m8r ob ? 1fj mwby a1 tao vg5. soq df v ' .a. CirX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message