From owner-freebsd-current Sun Jul 2 0:36:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id DB7E637B6D8; Sun, 2 Jul 2000 00:36:07 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id AAA22270; Sun, 2 Jul 2000 00:36:06 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id AAA33902; Sun, 2 Jul 2000 00:36:59 -0700 (PDT) (envelope-from john) Message-Id: <200007020736.AAA33902@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <40081.962483740@localhost> Date: Sun, 02 Jul 2000 00:36:59 -0700 (PDT) From: John Baldwin To: "Jordan K. Hubbard" Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG, Will Andrews , obrien@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 01-Jul-00 Jordan K. Hubbard wrote: >> Yes he did. Talk to various committers and you'll see that many have >> ideas where files should live. There have been long threads on this >> issue that got nowhere. The reason things are in such a messy state is >> when something new is brought in, or is changed suffiently much for a >> repo copy the person take the chance to put the files where *they* think >> they should live. Vs. where there would be consistency in the /sys tree. > > Talking to "various committers" will only yield various opinions and > end up leading nowhere, however. Perhaps if someone were to take > it upon themselves to post a detailed proposal of where things should > be moved to, others could at least comment more authoritatively > (and substantially) on the topic rather than just engaging in more > vague hand-waving. I feel masochistic at the moment, so here's a suggestion. Feel free to rip it all up to pieces, ya'll. And to start off: I like green bikesheds. (I.e. let's settle on something sensible and not get _too_ involved, please, or just shoot the whole idea down and enjoy our sphaghetti) Current directory structure: sys/ ${MACHINE_ARCH}/ - MD stuff conf/ - MD kernel config files ${MACHINE_ARCH}/ - MD code include/ - MD includes ... - various MD modules such as binary compat boot/ - bootstrap ${MACHINE_ARCH}/ - MI boot code cam/ - cam subsystem coda/ - coda fs compile/ - compile work directory conf/ - MI kernel config files contrib/ - 3rd party kernel code crypto/ - kernel crypto code ddb/ - DDB dev/ - several device drivers fs/ - one file system gnu/ - GNU kernel code i4b/ - ISDN support isa/ - MI ISA base code and a few drivers such as joy0 isofs/ - CD9660 fs kern/ - MI kernel code such as new-bus, vfs, init, etc. libkern/ - libc for the kernel miscfs/ - several fs's such as deadfs, devfs, etc. modules/ - skeleton for the modules msdosfs/ - MS-DOS FAT fs net/ - some network drivers such as ppp, slip, bpf, and generic network interface support netatalk/ - support for Appletalk network netatm/ - support for ATM network sockets netgraph/ - the spiffy netgraph system netinet/ - IPv4, TCP, UDP netinet6/ - IPv6, IPsec, TCP and UDP glue netipx/ - IPX/SPX netkey/ - undocumented key management protocol - RFC 2367 netnatm/ - native mode ATM netncp/ - Netware client protocol netns/ - Xerox NS, including IDP and SP nfs/ - NFS ntfs/ - NTFS nwfs/ - Netware FS pccard/ - PC card drivers pci/ - MI PCI code and some drivers, notably PCI network cards posix4/ - random POSIX code bucket svr4/ - SVR4 binary compatibility sys/ - kernel includes ufs/ - UFS, FFS, and MFS vm/ - VM system Ok (/me dons the asbestos suit, climbs into the concrete room and locks the door.) Here is my proposal. It attempts to follow these loose guidelines: - MD code under sys/${MACHINE_ARCH} - device drivers (including bus's such as cam and usb) under sys/dev - file systems under fs/ - networking under net/ sys/ ${MACHINE_ARCH} - stay the same, except add boot/ subdir boot/ - formerly sys/boot/${MACHINE_ARCH} boot - just MI boot code now. Depending on portability of ARC, possibly move boot/arc under sys/alpha/boot compile/ - no change conf/ - move NOTES to here from sys/i386/conf, but leave it the same for now contrib/ - stay the same. It mirrors the organization of sys/. For example, contrib'd device drivers under contrib/sys/dev, which is where they are now. crypto/ - no change ddb/ - no change dev/ - everything in there now plus some extras cam/ - formerly sys/cam i4b/ - formerly sys/i4b isa/ - formerly sys/isa, this just cintains the support code for the ISA bus, actual device drivers such as joy0 would move into sys/dev/ pccard/ - formerly sys/pccard pci/ - formerly sys/pci, split up just as sys/isa fs/ - everything in there now plus some extras codafs/ - formerly sys/coda isofs/ - formerly sys/isofs msdosfs/ - formerly sys/msdosfs nfs/ - formerly sys/nfs ntfs/ - formerly sys/ntfs nwfs/ - formerly sys/nwfs gnu/ - No big change, but make it mirror sys/ as contrib does. As a result, sys/gnu/ext2fs -> sys/gnu/fs/ext2fs. kern/ - no change libkern/ - no change miscfs/ - contents move to fs/. E.g., sys/miscfs/deadfs -> sys/fs/deadfs modules/ - no change net/ - move existing contents to net/base or something similar atalk/ - formerly sys/netatalk atm/ - formerly sys/netatm netgraph/ - formerly sys/netgraph ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} tcp/ - TCP " " " " udp/ - UDP " " " " ipx/ - formerly sys/netipx key/ - formerly sys/netkey natm/ - formerly sys/netatm ncp/ - formerly sys/netncp ns/ - formerly sus/netns posix4/ - move the code to where it belongs.. i.e. scheduler stuff in kern, etc. If it is desirable to keep this split out such as gnu/ and contrib/ then treat it like gnu/ and contrib/. I'm not as firm about this one and am willing to just let it be if it isn't folded into the rest of the tree, however. svr4/ - first, is this MI? If it isn't, then move it under sys/i386/ where it belongs. If it isn't, then I presume our binary compatibility code is going to have some more MI code in the future, so create sys/compat/{linux,svr4,etc.} and put the MI parts there and the MD parts under sys/${ARCH} sys/ - no change ufs/ - as with miscfs, move contents under fs/, thus we have sys/ufs/ffs -> sys/fs/ffs vm/ - no change > - Jordan -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 0:39:12 2000 Delivered-To: freebsd-current@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id 4A9F437B65D; Sun, 2 Jul 2000 00:39:03 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grimreaper.grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id JAA20526; Sun, 2 Jul 2000 09:39:40 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200007020739.JAA20526@grimreaper.grondar.za> To: "Andrey A. Chernov" Cc: current@FreeBSD.ORG Subject: Re: perl, cron or sh bug References: <20000701140301.A32165@freebsd.org> In-Reply-To: <20000701140301.A32165@freebsd.org> ; from "Andrey A. Chernov" "Sat, 01 Jul 2000 14:03:01 MST." Date: Sun, 02 Jul 2000 09:39:39 +0200 From: Mark Murray Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I am not shure, is this cron bug calling with ignoring SIGCHLD, sh bug, or > > perl bug. I think cron shouldn't call anything with SIGCHLD ignored. > > Yes, it was in cron/do_command.c > (void) signal(SIGCHLD, SIG_IGN); > > What about re-allowing SIGCHLD after second fork (i.e.vfork), just before > execle()? Any objections? Not from me, as long as the implications are understood... M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 1:16:51 2000 Delivered-To: freebsd-current@freebsd.org Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by hub.freebsd.org (Postfix) with ESMTP id C8BB337BB80; Sun, 2 Jul 2000 01:16:44 -0700 (PDT) (envelope-from chris@holly.calldei.com) Received: from holly.calldei.com ([208.191.149.190]) by mta4.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FX2004809NY8L@mta4.rcsntx.swbell.net>; Sun, 2 Jul 2000 03:16:47 -0500 (CDT) Received: (from chris@localhost) by holly.calldei.com (8.9.3/8.9.3) id DAA81207; Sun, 02 Jul 2000 03:14:16 -0500 (CDT envelope-from chris) Date: Sun, 02 Jul 2000 03:14:15 -0500 From: Chris Costello Subject: Re: /sys hierarchy In-reply-to: <200007020736.AAA33902@john.baldwin.cx> To: John Baldwin Cc: "Jordan K. Hubbard" , freebsd-current@FreeBSD.ORG, Will Andrews , obrien@FreeBSD.ORG Reply-To: chris@calldei.com Message-id: <20000702031414.A66762@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, July 02, 2000, John Baldwin wrote: > ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} > tcp/ - TCP " " " " > udp/ - UDP " " " " Can this really be separated to such a degree? Since TCP and UDP are inet protocols, do they _need_ to be separated this way? -- |Chris Costello |You can't make a program without broken egos. `--------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 2:44: 2 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay02.chello.nl (relay02.chello.nl [212.83.68.146]) by hub.freebsd.org (Postfix) with ESMTP id CB7CB37BBD3; Sun, 2 Jul 2000 02:43:58 -0700 (PDT) (envelope-from wkb@chello.nl) Received: from chello.nl ([213.46.78.184]) by relay02.chello.nl (InterMail vK.4.02.00.00 201-232-116 license 2ee4e7c625482f2f2a1950a80f6c8d58) with ESMTP id <20000702094337.CGUZ26299.relay02@chello.nl>; Sun, 2 Jul 2000 11:43:37 +0200 Received: (from wkb@localhost) by chello.nl (8.9.3/8.9.3) id LAA19909; Sun, 2 Jul 2000 11:43:53 +0200 (CEST) (envelope-from wkb) Date: Sun, 2 Jul 2000 11:43:53 +0200 From: Wilko Bulte To: John Baldwin Cc: "Jordan K. Hubbard" , freebsd-current@FreeBSD.ORG, Will Andrews , obrien@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000702114353.C19714@freebie.wbnet> Reply-To: wilko@FreeBSD.ORG References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007020736.AAA33902@john.baldwin.cx>; from jhb@FreeBSD.ORG on Sun, Jul 02, 2000 at 12:36:59AM -0700 X-OS: FreeBSD 4.0-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 12:36:59AM -0700, John Baldwin wrote: > Ok (/me dons the asbestos suit, climbs into the concrete room and locks > the door.) Here is my proposal. It attempts to follow these loose guidelines: > compile/ - no change I'd change this into compile/${MACHINE_ARCH} so that a single shared source tree can be used to build [alpha,i386] kernels. In the current setup one gets clashes with GENERIC etc. -- Wilko Bulte http://www.freebsd.org "Do, or do not. There is no try" wilko@freebsd.org http://www.nlfug.nl Yoda - The Empire Strikes Back To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 2:53: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from mout0.freenet.de (mout0.freenet.de [194.97.50.131]) by hub.freebsd.org (Postfix) with ESMTP id 7728A37C0E5; Sun, 2 Jul 2000 02:52:58 -0700 (PDT) (envelope-from se@freebsd.org) Received: from [62.104.201.2] (helo=mx1.freenet.de) by mout0.freenet.de with esmtp (Exim 3.14 #3) id 138gQq-0008IJ-00; Sun, 02 Jul 2000 11:52:56 +0200 Received: from [213.6.109.172] (helo=StefanEsser.FreeBSD.org) by mx1.freenet.de with esmtp (Exim 3.14 #3) id 138gQq-0001C1-00; Sun, 02 Jul 2000 11:52:56 +0200 Received: by StefanEsser.FreeBSD.org (Postfix, from userid 200) id 91BE5C58; Sun, 2 Jul 2000 00:33:37 +0200 (CEST) Date: Sun, 2 Jul 2000 00:33:37 +0200 From: Stefan Esser To: Stephen Hocking Cc: current@FreeBSD.ORG, Stefan Esser Subject: Re: cvs-cur.6450.gz Fatal error: Bytecount too large. Message-ID: <20000702003337.A5033@StefanEsser.FreeBSD.org> Reply-To: Stefan Esser Mail-Followup-To: Stefan Esser , Stephen Hocking , current@FreeBSD.ORG References: <200007012135.QAA53033@bloop.craftncomp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007012135.QAA53033@bloop.craftncomp.com>; from shocking@houston.rr.com on Sat, Jul 01, 2000 at 04:35:16PM -0500 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 2000-07-01 16:35 -0500, Stephen Hocking wrote: > After some absence from the net (my machines were in a box between Australia & > Houston) I've finaaly connected up and am updating my cvs repository via CTM > again. However, when I attempt to apply cvs-cur.6450.gz I get the above error. > Anybody got a good one? You have to increase the value of MAX_SIZE in /usr/src/usr.sbin/ctm/ctm/ctm.h to at least 12MB (i.e. 1024*1024*12). This has been fixed in -current (to 20MB) and is awaiting a MFC. Not sure whether the fix went in before cvs-cur.6450, but I think so. In that case just recompile and install ctm. Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 4:15:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from peedub.muc.de (p3E9B8F22.dip.t-dialin.net [62.155.143.34]) by hub.freebsd.org (Postfix) with ESMTP id 4D01E37BBFD for ; Sun, 2 Jul 2000 04:15:05 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id NAA00987 for ; Sun, 2 Jul 2000 13:08:36 +0200 (CEST) Message-Id: <200007021108.NAA00987@peedub.muc.de> X-Mailer: exmh version 2.1.1 10/15/1999 To: freebsd-current@freebsd.org Subject: PPPoE not working ? From: Gary Jennejohn Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 02 Jul 2000 13:08:36 +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG PPPoE has stopped working since I made a new kernel today. Luckily, I still have kernel.old, which works. I don't know whether the problem is related to the randomdev changes, or the stuff Archie has been doing with NETGRAPH. I did notice that, using the old kernel and modules, I don't need a ng_ether.ko for PPPoE to work, although I do see a complaint that it can't be found. With the new kernel and modules PPPoE fails if the ng_ether.ko isn't found (I moved it away to see if it was perhaps the source of the problem). Looking at tcpdump trace with the new kernel it almost looks like the initial connect packets are not being sent to tun0, but I haven't spent any time looking at it in detail. Here's tcpdump output from a working connect and one that fails. Maybe someone can see something obvious. working connect (partial): tcpdump: listening on ed0 22:05:08.252387 PPPoE PADI [Service-Name] [Host-Uniq UTF8] 0x0000 1109 0000 000c 0101 0000 0103 0004 0067 ...............g 0x0010 01c1 .. 22:05:08.297194 PPPoE PADO [Service-Name] [Host-Uniq UTF8] [AC-Name "MUNC31-nrp1 "] [AC-Cookie UTF8] 0x0000 1107 0000 002f 0101 0000 0103 0004 0067 ...../.........g 0x0010 01c1 0102 000b 4d55 4e43 3331 2d6e 7270 ......MUNC31-nrp 0x0020 3101 0400 1019 befa ff47 3ecf 52f3 7b7b 1........G>.R.{{ 0x0030 5b63 db31 75 [c.1u 22:05:08.297288 PPPoE PADR [Service-Name] [AC-Cookie UTF8] [AC-Name "MUNC31-nrp1 "] [Host-Uniq UTF8] 0x0000 1119 0000 002f 0101 0000 0104 0010 19be ...../.......... 0x0010 faff 473e cf52 f37b 7b5b 63db 3175 0102 ..G>.R.{{[c.1u.. 0x0020 000b 4d55 4e43 3331 2d6e 7270 3101 0300 ..MUNC31-nrp1... 0x0030 0400 6701 c1 ..g.. 22:05:08.342130 PPPoE PADS [ses 0x4cc] [Service-Name] [AC-Cookie UTF8] [AC-Name "MUNC31-nrp1"] [Host-Uniq UTF8] 0x0000 1165 04cc 002f 0101 0000 0104 0010 19be .e.../.......... 0x0010 faff 473e cf52 f37b 7b5b 63db 3175 0102 ..G>.R.{{[c.1u.. 0x0020 000b 4d55 4e43 3331 2d6e 7270 3101 0300 ..MUNC31-nrp1... 0x0030 0400 6701 c1 ..g.. 22:05:08.343051 PPPoE [ses 0x4cc] LCP ConfReq id=0x8f 0x0000 1100 04cc 0010 c021 018f 000e 0304 c023 .......!.......# 0x0010 0506 b467 6d72 19be faff 473e cf52 f37b ...gmr....G>.R.{ 0x0020 7b5b 63db 3175 0102 000b 4d55 4e43 {[c.1u....MUNC failed connect: tcpdump: listening on ed0 11:55:10.628019 PPPoE PADI [Service-Name] [Host-Uniq UTF8] 0x0000 1109 0000 000c 0101 0000 0103 0004 c090 ................ 0x0010 e1c0 .. 11:55:10.674248 PPPoE PADO [Service-Name] [Host-Uniq UTF8] [AC-Name "MUNC31-nrp1"] [AC-Cookie UTF8] 0x0000 1107 0000 002f 0101 0000 0103 0004 c090 ...../.......... 0x0010 e1c0 0102 000b 4d55 4e43 3331 2d6e 7270 ......MUNC31-nrp 0x0020 3101 0400 105b 0382 ce6b 426d 4ea3 884c 1....[...kBmN..L 0x0030 10da 4907 7c ..I.| 11:55:12.620895 PPPoE PADI [Service-Name] [Host-Uniq UTF8] 0x0000 1109 0000 000c 0101 0000 0103 0004 c090 ................ 0x0010 e1c0 .. 11:55:12.666009 PPPoE PADO [Service-Name] [Host-Uniq UTF8] [AC-Name "MUNC31-nrp1"] [AC-Cookie UTF8] 0x0000 1107 0000 002f 0101 0000 0103 0004 c090 ...../.......... 0x0010 e1c0 0102 000b 4d55 4e43 3331 2d6e 7270 ......MUNC31-nrp 0x0020 3101 0400 105b 0382 ce6b 426d 4ea3 884c 1....[...kBmN..L 0x0030 10da 4907 7c ..I.| -------- Gary Jennejohn / garyj@muc.de gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 6:52:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from propylaea.anduin.com (propylaea.anduin.com [205.179.178.82]) by hub.freebsd.org (Postfix) with ESMTP id D990537B604 for ; Sun, 2 Jul 2000 06:52:16 -0700 (PDT) (envelope-from dan@cgsoftware.com) Received: from localhost (dan@localhost) by propylaea.anduin.com (8.9.3/8.9.3) with ESMTP id GAA16534 for ; Sun, 2 Jul 2000 06:52:16 -0700 Date: Sun, 2 Jul 2000 06:52:16 -0700 (PDT) From: Daniel Berlin X-Sender: dan@propylaea.anduin.com To: freebsd-current@freebsd.org Subject: Re: PPPoE not working 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 see literally the exact same thing. I thought it was just my screwup, as i had installed 0609-CURRENT (the latest installs don't work, at least, on my desktop, so i picked the one from my birthday :P), which worked fine, then cvsup'd, installed the new kernel, did a make world, rebooted, and pppoe no longer worked. tcpdump shows the same thing you are seeing. --Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 7: 7:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from majordomo2.umd.edu (majordomo2.umd.edu [128.8.10.7]) by hub.freebsd.org (Postfix) with ESMTP id 5256637B8AB for ; Sun, 2 Jul 2000 07:07:45 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac4.wam.umd.edu (root@rac4.wam.umd.edu [128.8.10.144]) by majordomo2.umd.edu (8.9.3/8.9.3) with ESMTP id KAA06273 for ; Sun, 2 Jul 2000 10:07:41 -0400 (EDT) Received: from rac4.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id KAA06199 for ; Sun, 2 Jul 2000 10:07:43 -0400 (EDT) Received: from localhost (culverk@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA06195 for ; Sun, 2 Jul 2000 10:07:43 -0400 (EDT) X-Authentication-Warning: rac4.wam.umd.edu: culverk owned process doing -bs Date: Sun, 2 Jul 2000 10:07:43 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-current@freebsd.org Subject: could someone with committer access commit this? 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 This is the patch to make my soundcard, a Creative Ensoniq AudioPCI (an es1371 chip, device id 0x58801274 rev 0x02). Can someone commit it please? Thanks. --- es137x.c.old Sun May 28 11:15:14 2000 +++ es137x.c Sat Jul 1 23:22:00 2000 @@ -68,6 +68,7 @@ #define ES1370_PCI_ID 0x50001274 #define ES1371_PCI_ID 0x13711274 #define ES1371_PCI_ID2 0x13713274 +#define ES1371_PCI_ID3 0x58801274 #define ES_BUFFSIZE 4096 @@ -493,7 +494,7 @@ es->ctrl = 0; es->sctrl = 0; /* initialize the chips */ - if (rev == 7 || rev >= 9) { + if (rev == 7 || rev >= 9 || rev == 2) { #define ES1371_BINTSUMM_OFF 0x07 bus_space_write_4(es->st, es->sh, ES1371_BINTSUMM_OFF, 0x20); if (debug > 0) printf("es_init rev == 7 || rev >= 9\n"); @@ -724,7 +725,8 @@ device_set_desc(dev, "AudioPCI ES1370"); return 0; } else if (pci_get_devid(dev) == ES1371_PCI_ID || - pci_get_devid(dev) == ES1371_PCI_ID2) { + pci_get_devid(dev) == ES1371_PCI_ID2 || + pci_get_devid(dev) == ES1371_PCI_ID3) { device_set_desc(dev, "AudioPCI ES1371"); return 0; } @@ -789,7 +791,8 @@ } if (pci_get_devid(dev) == ES1371_PCI_ID || - pci_get_devid(dev) == ES1371_PCI_ID2) { + pci_get_devid(dev) == ES1371_PCI_ID2 || + pci_get_devid(dev) == ES1371_PCI_ID3) { if(-1 == es1371_init(es, pci_get_revid(dev))) { device_printf(dev, "unable to initialize the card\n"); goto bad; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 7:24:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 747F537BC63 for ; Sun, 2 Jul 2000 07:24:46 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.7/nospam) with UUCP id QAA08884 for freebsd-current@freebsd.org; Sun, 2 Jul 2000 16:24:43 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 39F34888E; Sun, 2 Jul 2000 16:17:21 +0200 (CEST) Date: Sun, 2 Jul 2000 16:17:21 +0200 From: Ollivier Robert To: freebsd-current@freebsd.org Subject: Re: could someone with committer access commit this? Message-ID: <20000702161721.A97851@keltia.freenix.fr> Mail-Followup-To: freebsd-current@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from culverk@wam.umd.edu on Sun, Jul 02, 2000 at 10:07:43AM -0400 X-Operating-System: FreeBSD 5.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Kenneth Wayne Culver: > This is the patch to make my soundcard, a Creative Ensoniq AudioPCI (an > es1371 chip, device id 0x58801274 rev 0x02). Can someone commit it please? Done. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 5.0-CURRENT #80: Sun Jun 4 22:44:19 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 7:28:54 2000 Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 4038337BCD7; Sun, 2 Jul 2000 07:28:52 -0700 (PDT) Date: Sun, 2 Jul 2000 07:28:52 -0700 From: "Andrey A. Chernov" To: Mark Murray Cc: current@FreeBSD.ORG Subject: Re: perl, cron or sh bug Message-ID: <20000702072852.B43640@freebsd.org> References: <20000701140301.A32165@freebsd.org> <200007020739.JAA20526@grimreaper.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <200007020739.JAA20526@grimreaper.grondar.za>; from mark@grondar.za on Sun, Jul 02, 2000 at 09:39:39AM +0200 Organization: Biomechanoid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 09:39:39AM +0200, Mark Murray wrote: > > > I am not shure, is this cron bug calling with ignoring SIGCHLD, sh bug, or > > > perl bug. I think cron shouldn't call anything with SIGCHLD ignored. > > > > Yes, it was in cron/do_command.c > > (void) signal(SIGCHLD, SIG_IGN); > > > > What about re-allowing SIGCHLD after second fork (i.e.vfork), just before > > execle()? Any objections? > > Not from me, as long as the implications are understood... I already solve this thing. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 8:15:34 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 61FFB37BDC7 for ; Sun, 2 Jul 2000 08:15:26 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn03kiryunisiki.gunma.ocn.ne.jp [210.232.224.139]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id AAA24020 for ; Mon, 3 Jul 2000 00:15:24 +0900 (JST) Message-ID: <395F5CB3.C1311F19@newsguy.com> Date: Mon, 03 Jul 2000 00:16:04 +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: current@freebsd.org Subject: regex(3) is leaking memory Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I forgot to free the additional memory allocated by regcomp() at regfree(). So, for now, regex(3) is leaking memory. I'll fix it in a short while (but not immediately, sorry). -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org _DES: The Book of Bruce has only one sentence in it, and it says "the actual directives of my cult are left as an exercise for the reader. Good luck." jkh: does it really include the 'good luck' part? EE: OK, I made that part up. EE: I figured it should sound a bit more cheery than how Bruce initially dictated it to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 8:20:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from mimer.webgiro.com (mimer.webgiro.com [212.209.29.5]) by hub.freebsd.org (Postfix) with ESMTP id BBB6B37BB1B for ; Sun, 2 Jul 2000 08:20:13 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by mimer.webgiro.com (Postfix, from userid 66) id 099752DC0A; Sun, 2 Jul 2000 17:25:58 +0200 (CEST) Received: by mx.webgiro.com (Postfix, from userid 1001) id 399E87817; Sun, 2 Jul 2000 17:16:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx.webgiro.com (Postfix) with ESMTP id 3552510E17 for ; Sun, 2 Jul 2000 17:16:32 +0200 (CEST) Date: Sun, 2 Jul 2000 17:16:32 +0200 (CEST) From: Andrzej Bialecki To: freebsd-current@freebsd.org Subject: Possible bug in netinet6/in6_rmx.c ? 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 Hi, While working on adding dynamic sysctls support, I discovered something that looks like a bug. For kernels that have both INET and INET6, three sysctl entries (rtexpire, rtminexpire, rtmaxcache) are registered twice - both in netinet/in_rmx.c and netinet6/in6_rmx.c. It seems they should be registered only once, within a section that is common to INET and INET6. Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 9:21: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id 728F137BDC6 for ; Sun, 2 Jul 2000 09:20:59 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grimreaper.grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id SAA22483 for ; Sun, 2 Jul 2000 18:21:34 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200007021621.SAA22483@grimreaper.grondar.za> To: freebsd-current@freebsd.org Subject: HEADS UP! Perl version number change! Date: Sun, 02 Jul 2000 18:21:34 +0200 From: Mark Murray Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! Perl5's version number has had to change; it is no longer 5.006, now it is 5.6.0 in accordance with Perl standards. I tried hard to keep with established tradition, but this did not work. ${DEITY}, I hate the Perl build. This means that you should get do a 'make world' and 'mergemaster' to get all the directories and /etc area right (unless you know what you are doing, of course :-) ). Side effect; suidperl is no longer unreliable. M To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 10:26:20 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 D3A9037BDCC; Sun, 2 Jul 2000 10:26:15 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from kyoto-tc012-p129.alpha-net.ne.jp (kyoto-tc012-p129.alpha-net.ne.jp [210.237.118.163]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id CAA15911; Mon, 3 Jul 2000 02:23:35 +0900 (JST) Received: from souffle.bogus-local.net (souffle.bogus-local.net [192.168.1.1]) by kyoto-tc012-p129.alpha-net.ne.jp (Postfix) with ESMTP id 912C63D04; Mon, 3 Jul 2000 02:25:28 +0900 (JST) Date: Mon, 03 Jul 2000 02:25:28 +0900 Message-ID: <86hfa81m2f.wl@cheerful.com> From: FUJISHIMA Satsuki To: imp@village.org Cc: current@freebsd.org, ports@freebsd.org Subject: Re: Help with Linux interpreter In-Reply-To: In your message of "Sat, 01 Jul 2000 21:25:42 -0600" <200007020325.VAA56324@harmony.village.org> References: <200007020325.VAA56324@harmony.village.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (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, 01 Jul 2000 21:25:42 -0600, Warner Losh wrote: > > > I was able to install the acroread4 port on my -current machine of a > week or two ago. I find when I try to run acroread4 I get the > following error: > > ELF interpreter /lib/ld-linux.so.2 not found > Abort Please take a look into ports/18489. Workaround for i386 has been committed at 14th May but not for Alpha. I think you are on the Alpha plathome, or your ports tree is weirdly out of date. -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 10:36:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.144.32]) by hub.freebsd.org (Postfix) with ESMTP id 2230437B5EE; Sun, 2 Jul 2000 10:36:38 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.10.1/8.10.1) with ESMTP id e62HaZM57171; Sun, 2 Jul 2000 10:36:35 -0700 (PDT) Date: Sun, 2 Jul 2000 10:36:35 -0700 (PDT) From: Doug White To: Warner Losh Cc: current@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Help with Linux interpreter In-Reply-To: <200007020325.VAA56324@harmony.village.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 Sat, 1 Jul 2000, Warner Losh wrote: > > I was able to install the acroread4 port on my -current machine of a > week or two ago. I find when I try to run acroread4 I get the > following error: > > ELF interpreter /lib/ld-linux.so.2 not found > Abort Did you brand acroread? Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 10:43:42 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 0695237BDDC; Sun, 2 Jul 2000 10:43:36 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id KAA24003; Sun, 2 Jul 2000 10:43:27 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id KAA34748; Sun, 2 Jul 2000 10:44:22 -0700 (PDT) (envelope-from john) Message-Id: <200007021744.KAA34748@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000702114353.C19714@freebie.wbnet> Date: Sun, 02 Jul 2000 10:44:22 -0700 (PDT) From: John Baldwin To: wilko@FreeBSD.ORG Subject: Re: /sys hierarchy Cc: obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 02-Jul-00 Wilko Bulte wrote: > On Sun, Jul 02, 2000 at 12:36:59AM -0700, John Baldwin wrote: > >> Ok (/me dons the asbestos suit, climbs into the concrete room and locks >> the door.) Here is my proposal. It attempts to follow these loose guidelines: > >> compile/ - no change > > I'd change this into compile/${MACHINE_ARCH} so that a single shared source > tree can be used to build [alpha,i386] kernels. In the current setup one > gets clashes with GENERIC etc. Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile instead in keeping with the mentioned goal of keeping all MD stuff under ${MACHINE_ARCH}? -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 10:43:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id A9E5637BDE4; Sun, 2 Jul 2000 10:43:38 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id KAA24007; Sun, 2 Jul 2000 10:43:27 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id KAA34752; Sun, 2 Jul 2000 10:44:23 -0700 (PDT) (envelope-from john) Message-Id: <200007021744.KAA34752@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000702031414.A66762@holly.calldei.com> Date: Sun, 02 Jul 2000 10:44:23 -0700 (PDT) From: John Baldwin To: Chris Costello Subject: Re: /sys hierarchy Cc: obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 02-Jul-00 Chris Costello wrote: > On Sunday, July 02, 2000, John Baldwin wrote: >> ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} >> tcp/ - TCP " " " " >> udp/ - UDP " " " " > > Can this really be separated to such a degree? Since TCP and > UDP are inet protocols, do they _need_ to be separated this way? A directory listing of sys/netinet shows many in_* files, ip_* files, tcp_* files, and udp_* files. Note that TCP and UDP aren't explicity tied to IP, they are simply wrapped inside of an IP packet. In theory you can run TCP over IPX for example by using the same method of encapsulation. Of course, someone more familiar with the actual code in the tree might provide some better insight on the feasibility of splitting these up. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11: 3:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from mta5.rcsntx.swbell.net (mta5.rcsntx.swbell.net [151.164.30.29]) by hub.freebsd.org (Postfix) with ESMTP id 2329437B54E; Sun, 2 Jul 2000 11:03:53 -0700 (PDT) (envelope-from chris@holly.calldei.com) Received: from holly.calldei.com ([208.191.149.190]) by mta5.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FX300JAO0RFMV@mta5.rcsntx.swbell.net>; Sun, 2 Jul 2000 13:02:05 -0500 (CDT) Received: (from chris@localhost) by holly.calldei.com (8.9.3/8.9.3) id MAA82506; Sun, 02 Jul 2000 12:59:57 -0500 (CDT envelope-from chris) Date: Sun, 02 Jul 2000 12:59:56 -0500 From: Chris Costello Subject: Re: /sys hierarchy In-reply-to: <200007021744.KAA34748@john.baldwin.cx> To: John Baldwin Cc: wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Reply-To: chris@calldei.com Message-id: <20000702125956.C66762@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <20000702114353.C19714@freebie.wbnet> <200007021744.KAA34748@john.baldwin.cx> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, July 02, 2000, John Baldwin wrote: > Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile > instead in keeping with the mentioned goal of keeping all MD stuff under > ${MACHINE_ARCH}? I think that compile/${MACHINE_ARCH} is the proper way to do this. Everything else is source only, all the object files end up inside compile/ so there's only one place to clean up. -- |Chris Costello |My reality check just bounced. `---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11: 5:29 2000 Delivered-To: freebsd-current@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 5AE8437B54E; Sun, 2 Jul 2000 11:05:25 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id OAA19556; Sun, 2 Jul 2000 14:05:24 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007021805.OAA19556@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Baldwin Cc: Chris Costello , obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: /sys hierarchy References: <200007021744.KAA34752@john.baldwin.cx> In-reply-to: Your message of "Sun, 02 Jul 2000 10:44:23 PDT." <200007021744.KAA34752@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 02 Jul 2000 14:05:24 -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > On 02-Jul-00 Chris Costello wrote: > > On Sunday, July 02, 2000, John Baldwin wrote: > >> ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} > >> tcp/ - TCP " " " " > >> udp/ - UDP " " " " > > > > Can this really be separated to such a degree? Since TCP and > > UDP are inet protocols, do they _need_ to be separated this way? > > A directory listing of sys/netinet shows many in_* files, ip_* files, > tcp_* files, and udp_* files. Note that TCP and UDP aren't explicity > tied to IP, they are simply wrapped inside of an IP packet. In theory > you can run TCP over IPX for example by using the same method of > encapsulation. Of course, someone more familiar with the actual code > in the tree might provide some better insight on the feasibility of > splitting these up. Well, in theory maybe, but note that the TCP checksum is computed over a the TCP header and a pseudo header composed of the IPv4 transport addresses. The layering of the protocols is a fine intellectual notion, but don't confuse the layering with an efficient implementation. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11: 7:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 7BEEA37BACD; Sun, 2 Jul 2000 11:07:06 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id LAA10515; Sun, 2 Jul 2000 11:06:59 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007021806.LAA10515@gndrsh.dnsmgr.net> Subject: Re: /sys hierarchy In-Reply-To: <20000702125956.C66762@holly.calldei.com> from Chris Costello at "Jul 2, 2000 12:59:56 pm" To: chris@calldei.com Date: Sun, 2 Jul 2000 11:06:58 -0700 (PDT) Cc: jhb@FreeBSD.ORG (John Baldwin), wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, andrews@technologist.com (Will Andrews), freebsd-current@FreeBSD.ORG, jkh@zippy.osd.bsdi.com (Jordan K. Hubbard) 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 > On Sunday, July 02, 2000, John Baldwin wrote: > > Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile > > instead in keeping with the mentioned goal of keeping all MD stuff under > > ${MACHINE_ARCH}? > > I think that compile/${MACHINE_ARCH} is the proper way to do > this. Everything else is source only, all the object files end > up inside compile/ so there's only one place to clean up. Actually the whole src/sys/compile thing should go away, it is one of the last things that has to be dealt with for a totally read-only mounted /usr/src. IMHO it should be moved to /usr/obj, and /usr/obj should, if it hasn't already, be enhanced to include a ${MACHINE_ARCH} component. -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:10:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by hub.freebsd.org (Postfix) with ESMTP id 3688837BE2F; Sun, 2 Jul 2000 11:10:13 -0700 (PDT) (envelope-from chris@holly.calldei.com) Received: from holly.calldei.com ([208.191.149.190]) by mta4.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FX300L2U14X8D@mta4.rcsntx.swbell.net>; Sun, 2 Jul 2000 13:10:10 -0500 (CDT) Received: (from chris@localhost) by holly.calldei.com (8.9.3/8.9.3) id NAA82588; Sun, 02 Jul 2000 13:07:37 -0500 (CDT envelope-from chris) Date: Sun, 02 Jul 2000 13:07:36 -0500 From: Chris Costello Subject: Re: /sys hierarchy In-reply-to: <200007021806.LAA10515@gndrsh.dnsmgr.net> To: "Rodney W. Grimes" Cc: John Baldwin , wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Reply-To: chris@calldei.com Message-id: <20000702130736.D66762@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i References: <20000702125956.C66762@holly.calldei.com> <200007021806.LAA10515@gndrsh.dnsmgr.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, July 02, 2000, Rodney W. Grimes wrote: > Actually the whole src/sys/compile thing should go away, it is > one of the last things that has to be dealt with for a totally > read-only mounted /usr/src. IMHO it should be moved to /usr/obj, > and /usr/obj should, if it hasn't already, be enhanced to include > a ${MACHINE_ARCH} component. It does already, but how do you propose the user build and install the kernel? ``cd /usr/obj ...'' is inconsistent with any current procedures. -- |Chris Costello |If a program is useless, it must be documented. `----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:12: 2 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay01.chello.nl (smtp.chello.nl [212.83.68.144]) by hub.freebsd.org (Postfix) with ESMTP id 67C0A37BE2F; Sun, 2 Jul 2000 11:11:50 -0700 (PDT) (envelope-from wkb@chello.nl) Received: from chello.nl ([213.46.78.184]) by relay01.chello.nl (InterMail vK.4.02.00.00 201-232-116 license 2ee4e7c625482f2f2a1950a80f6c8d58) with ESMTP id <20000702181241.OAGL159.relay01@chello.nl>; Sun, 2 Jul 2000 20:12:41 +0200 Received: (from wkb@localhost) by chello.nl (8.9.3/8.9.3) id UAA01696; Sun, 2 Jul 2000 20:11:40 +0200 (CEST) (envelope-from wkb) Date: Sun, 2 Jul 2000 20:11:40 +0200 From: Wilko Bulte To: "Rodney W. Grimes" Cc: chris@calldei.com, John Baldwin , wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Subject: Re: /sys hierarchy Message-ID: <20000702201140.A1626@freebie.wbnet> Reply-To: wilko@FreeBSD.ORG References: <20000702125956.C66762@holly.calldei.com> <200007021806.LAA10515@gndrsh.dnsmgr.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007021806.LAA10515@gndrsh.dnsmgr.net>; from freebsd@gndrsh.dnsmgr.net on Sun, Jul 02, 2000 at 11:06:58AM -0700 X-OS: FreeBSD 4.0-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 11:06:58AM -0700, Rodney W. Grimes wrote: > > On Sunday, July 02, 2000, John Baldwin wrote: > > > Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile > > > instead in keeping with the mentioned goal of keeping all MD stuff under > > > ${MACHINE_ARCH}? > > > > I think that compile/${MACHINE_ARCH} is the proper way to do > > this. Everything else is source only, all the object files end > > up inside compile/ so there's only one place to clean up. > > Actually the whole src/sys/compile thing should go away, it is > one of the last things that has to be dealt with for a totally > read-only mounted /usr/src. IMHO it should be moved to /usr/obj, > and /usr/obj should, if it hasn't already, be enhanced to include > a ${MACHINE_ARCH} component. Yes, this is definitely the cleanest solution IMO. -- Wilko Bulte http://www.freebsd.org "Do, or do not. There is no try" wilko@freebsd.org http://www.nlfug.nl Yoda - The Empire Strikes Back To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:16:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.altadena.net (ns.altadena.net [206.126.144.2]) by hub.freebsd.org (Postfix) with ESMTP id DC9A937BA49 for ; Sun, 2 Jul 2000 11:16:22 -0700 (PDT) (envelope-from pete@ns.altadena.net) Received: (from pete@localhost) by ns.altadena.net (8.9.3/8.8.8) id LAA95416 for current@freebsd.org; Sun, 2 Jul 2000 11:16:22 -0700 (PDT) (envelope-from pete) From: Pete Carah Message-Id: <200007021816.LAA95416@ns.altadena.net> Subject: Sound good/bad To: current@freebsd.org Date: Sun, 2 Jul 2000 11:16:21 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL68 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=iso8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Finally there is Yamaha DS-XG support; thanks much (my laptop sound was inoperative). However, at least the yamaha support (if not others) is broken in a curious way - .au playing (and the sound in kpoker) work fine but .wav playing (and the sound in ksmiletris, for example) are broken in a way that sounds endian (just get noise). I know the base driver works since there is at least one path through pcm that works... I seem to remember hearing at usenix that this applied to other drivers too... -- Pete To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:16:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 4213237BA49; Sun, 2 Jul 2000 11:16:45 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id LAA10576; Sun, 2 Jul 2000 11:16:46 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007021816.LAA10576@gndrsh.dnsmgr.net> Subject: Re: /sys hierarchy In-Reply-To: <200007020736.AAA33902@john.baldwin.cx> from John Baldwin at "Jul 2, 2000 00:36:59 am" To: jhb@FreeBSD.ORG (John Baldwin) Date: Sun, 2 Jul 2000 11:16:46 -0700 (PDT) Cc: jkh@zippy.osd.bsdi.com (Jordan K. Hubbard), freebsd-current@FreeBSD.ORG, andrews@technologist.com (Will Andrews), obrien@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 ... > I feel masochistic at the moment, so here's a suggestion. Feel free > to rip it all up to pieces, ya'll. And to start off: I like green > bikesheds. (I.e. let's settle on something sensible and not get I prefer blue ones :-) ... > > Ok (/me dons the asbestos suit, climbs into the concrete room and locks > the door.) Here is my proposal. It attempts to follow these loose guidelines: Let me go hunting for flame thrower and concrete saw :-) > - MD code under sys/${MACHINE_ARCH} > - device drivers (including bus's such as cam and usb) under sys/dev Perhaps, sys/bus and sys/dev, instead of lumping it all into one sys/dev. > - networking under net/ That one is going to be a really really hard one over the longrun, it is going to make the source code incompatible with every other BSD based source tree requireing path mangling anytime something is brought in from some place else. Especially look at what this would do to the /usr/include/net* hierarchy and how that effects userland code. Take a look at how many man pages this would impact (to get an idea do ``cd /usr/share/man/man3; zgrep netinet *''.) > sys/ ... > net/ - move existing contents to net/base or something similar ... > atm/ - formerly sys/netatm > natm/ - formerly sys/netatm Ooopsss... natm/ should go away, you already have a better place for that :-) > ncp/ - formerly sys/netncp > ns/ - formerly sus/netns ^ We have no sus directory :-) -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:37: 8 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 D98BC37B70A; Sun, 2 Jul 2000 11:37:02 -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 MAA01360; Sun, 2 Jul 2000 12:36:57 -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 MAA59568; Sun, 2 Jul 2000 12:36:47 -0600 (MDT) Message-Id: <200007021836.MAA59568@harmony.village.org> To: Doug White Subject: Re: Help with Linux interpreter Cc: current@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: Your message of "Sun, 02 Jul 2000 10:36:35 PDT." References: Date: Sun, 02 Jul 2000 12:36:47 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Doug White writes: : > ELF interpreter /lib/ld-linux.so.2 not found : > Abort : : Did you brand acroread? Yes. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:38:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id C2A8A37B70A; Sun, 2 Jul 2000 11:38:37 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id OAA11328; Sun, 2 Jul 2000 14:38:36 -0400 (EDT) (envelope-from wollman) Date: Sun, 2 Jul 2000 14:38:36 -0400 (EDT) From: Garrett Wollman Message-Id: <200007021838.OAA11328@khavrinen.lcs.mit.edu> To: Ade Lovett Cc: current@FreeBSD.org, ports@FreeBSD.org Group-Reply-To: current@FreeBSD.org Subject: cvs commit: ports/textproc/libxml2 Makefile ports/textproc/libxml2/files md5 ports/textproc/libxml2/pkg PLIST In-Reply-To: <200007020930.CAA22918@freefall.freebsd.org> References: <200007020930.CAA22918@freefall.freebsd.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > Bring libxml2 2.1.1 into the fold after a repo-copy. This will > eventually replace libxml for GNOME. About a month ago, I was looking for a reasonable XML library with an eye towards bringing one into the tree (to be used for config files which have grown too complicated in syntax, like {,new}syslog.conf). I didn't find one which met the desired criteria of: - Reasonably small - Provides a reasonable tree-based interface for C programs (i.e., not DOM or anything that looks remotely like it) - Comes under a BSD-compatible license Does anyone know of such a library? -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:42:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 7AF8737B70A; Sun, 2 Jul 2000 11:42:15 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id LAA10685; Sun, 2 Jul 2000 11:42:14 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007021842.LAA10685@gndrsh.dnsmgr.net> Subject: Re: /sys hierarchy In-Reply-To: <20000702130736.D66762@holly.calldei.com> from Chris Costello at "Jul 2, 2000 01:07:36 pm" To: chris@calldei.com Date: Sun, 2 Jul 2000 11:42:14 -0700 (PDT) Cc: jhb@FreeBSD.ORG (John Baldwin), wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, andrews@technologist.com (Will Andrews), freebsd-current@FreeBSD.ORG, jkh@zippy.osd.bsdi.com (Jordan K. Hubbard) 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 > On Sunday, July 02, 2000, Rodney W. Grimes wrote: > > Actually the whole src/sys/compile thing should go away, it is > > one of the last things that has to be dealt with for a totally > > read-only mounted /usr/src. IMHO it should be moved to /usr/obj, > > and /usr/obj should, if it hasn't already, be enhanced to include > > a ${MACHINE_ARCH} component. > > It does already, but how do you propose the user build and > install the kernel? ``cd /usr/obj ...'' is inconsistent with any > current procedures. Just the argument to the cd has changed, the command sequence is still: cd blah make depend && make && make install. cd blah is currently cd ../../compile/${KERNNAME} it becomes cd /usr/obj/`pwd`/${KERNNAME} config(8) will need to produce a better makefile using `pwd` to figure out the path to the kernel sources. BDE probably has lots of tips about how to do this. -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 11:52:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 7253E37B70A; Sun, 2 Jul 2000 11:52:08 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id OAA11390; Sun, 2 Jul 2000 14:52:07 -0400 (EDT) (envelope-from wollman) Date: Sun, 2 Jul 2000 14:52:07 -0400 (EDT) From: Garrett Wollman Message-Id: <200007021852.OAA11390@khavrinen.lcs.mit.edu> To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-Reply-To: <200007021744.KAA34752@john.baldwin.cx> References: <20000702031414.A66762@holly.calldei.com> <200007021744.KAA34752@john.baldwin.cx> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > encapsulation. Of course, someone more familiar with the actual code > in the tree might provide some better insight on the feasibility of > splitting these up. Don't, or else legions of network people will curse you to the end of your days. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 12:23:44 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 9F72B37B685 for ; Sun, 2 Jul 2000 12:23:40 -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 NAA01572; Sun, 2 Jul 2000 13:23:38 -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 NAA59878; Sun, 2 Jul 2000 13:23:28 -0600 (MDT) Message-Id: <200007021923.NAA59878@harmony.village.org> To: Julian Elischer Subject: Re: RSA support.. Cc: Mark Murray , Chris Csanady , freebsd-current@FreeBSD.ORG In-reply-to: Your message of "Fri, 30 Jun 2000 16:44:38 PDT." <395D30E6.41C67EA6@elischer.org> References: <395D30E6.41C67EA6@elischer.org> <200006290725.CAA30609@isua5.iastate.edu> <200006291841.UAA03695@grimreaper.grondar.za> Date: Sun, 02 Jul 2000 13:23:27 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <395D30E6.41C67EA6@elischer.org> Julian Elischer writes: : Unfortunatly /etc/updateing doesn't warn you of this.. : I hit this as well. : What is in /etc/updating is so vague and nondescript that : it doesn't help wit this problem. (at least as it was when I hit it) There is no /etc/updating. UPDATING does contain information that you need. If you aren't able to figure out what you need to do based on reading it, don't run -current. 20000625: From approximately this date forward, one must have the crypto system installed in order to build the system and kernel. While not technically strictly true, one should treat it as required and grab the crypto bits. If you are grabbing CVS trees, src-all and cvs-crypto should be treated as if they were required. You should check with the latest collections to make sure that these haven't changed. Seems pretty clear to me. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 12:25:43 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 72FD237BC07 for ; Sun, 2 Jul 2000 12:25:40 -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 NAA01589; Sun, 2 Jul 2000 13:25:39 -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 NAA59908; Sun, 2 Jul 2000 13:25:29 -0600 (MDT) Message-Id: <200007021925.NAA59908@harmony.village.org> To: Julian Elischer Subject: Re: Xbatt now fails on -current Cc: current@FreeBSD.ORG In-reply-to: Your message of "Sat, 01 Jul 2000 09:59:36 PDT." <395E2334.41C67EA6@elischer.org> References: <395E2334.41C67EA6@elischer.org> Date: Sun, 02 Jul 2000 13:25:28 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <395E2334.41C67EA6@elischer.org> Julian Elischer writes: : Is there something else I need to add? What do your hints look like? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 12:31:55 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 4361A37BE42; Sun, 2 Jul 2000 12:31:48 -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 NAA01627; Sun, 2 Jul 2000 13:31:38 -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 NAA68723; Sun, 2 Jul 2000 13:31:28 -0600 (MDT) Message-Id: <200007021931.NAA68723@harmony.village.org> To: "Rodney W. Grimes" Subject: Re: /sys hierarchy Cc: chris@calldei.com, jhb@FreeBSD.ORG (John Baldwin), wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, andrews@technologist.com (Will Andrews), freebsd-current@FreeBSD.ORG, jkh@zippy.osd.bsdi.com (Jordan K. Hubbard) In-reply-to: Your message of "Sun, 02 Jul 2000 11:42:14 PDT." <200007021842.LAA10685@gndrsh.dnsmgr.net> References: <200007021842.LAA10685@gndrsh.dnsmgr.net> Date: Sun, 02 Jul 2000 13:31:28 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200007021842.LAA10685@gndrsh.dnsmgr.net> "Rodney W. Grimes" writes: : Just the argument to the cd has changed, the command sequence is : still: : cd blah : make depend && make && make install. : : cd blah is currently : cd ../../compile/${KERNNAME} : it becomes : cd /usr/obj/`pwd`/${KERNNAME} : : config(8) will need to produce a better makefile using `pwd` to : figure out the path to the kernel sources. BDE probably has lots : of tips about how to do this. My take on this is that it would make it slightly harder to develop kernel stuff in the tree. I don't like that prospect, and I think this would impose some hardship on third parties that are using FreeBSD. If it could be turned off, that would be ideal. It ties the userland and kernel together too tightly, imho. For the average buildworld, it might not be bad, however. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 13: 5:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id 6DEC737B575; Sun, 2 Jul 2000 13:05:11 -0700 (PDT) (envelope-from DougB@yahoo-inc.com) Received: from yahoo-inc.com (doug@master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id NAA77825; Sun, 2 Jul 2000 13:04:59 -0700 (PDT) (envelope-from DougB@yahoo-inc.com) Message-ID: <395FA06A.6ED2CEF5@yahoo-inc.com> Date: Sun, 02 Jul 2000 13:04:58 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0629 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Rodney W. Grimes" Cc: chris@calldei.com, John Baldwin , wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Subject: Re: /sys hierarchy References: <200007021842.LAA10685@gndrsh.dnsmgr.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Rodney W. Grimes" wrote: > > > On Sunday, July 02, 2000, Rodney W. Grimes wrote: > > > Actually the whole src/sys/compile thing should go away, it is > > > one of the last things that has to be dealt with for a totally > > > read-only mounted /usr/src. IMHO it should be moved to /usr/obj, > > > and /usr/obj should, if it hasn't already, be enhanced to include > > > a ${MACHINE_ARCH} component. > > > > It does already, but how do you propose the user build and > > install the kernel? ``cd /usr/obj ...'' is inconsistent with any > > current procedures. > > Just the argument to the cd has changed, the command sequence is > still: > cd blah > make depend && make && make install. If we're going to do this (and I'm all for anything that improves the read-onliness of /usr/src) I suggest that we can hide all of the pain of changing the process behind popularizing the buildkernel and installkernel targets. Thus, when someone wants to paint the bikeshed yellow in a few years the users won't have to be re-re-educated. Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 13:49:51 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 9AB3737BE69; Sun, 2 Jul 2000 13:49:45 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA96491; Sun, 2 Jul 2000 13:49:45 -0700 (PDT) (envelope-from obrien) Date: Sun, 2 Jul 2000 13:49:44 -0700 From: "David O'Brien" To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000702134944.D96427@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007020736.AAA33902@john.baldwin.cx>; from jhb@FreeBSD.ORG on Sun, Jul 02, 2000 at 12:36:59AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 12:36:59AM -0700, John Baldwin wrote: > Current directory structure: > > sys/ > ${MACHINE_ARCH}/ - MD stuff > conf/ - MD kernel config files > ${MACHINE_ARCH}/ - MD code > include/ - MD includes > ... - various MD modules such as binary compat They should be stated because they need to be moved linux - Linux binary compat Also buses isa - there is some MI stuff in here To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 13:52: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 924EB37BE52; Sun, 2 Jul 2000 13:51:57 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA96506; Sun, 2 Jul 2000 13:51:57 -0700 (PDT) (envelope-from obrien) Date: Sun, 2 Jul 2000 13:51:56 -0700 From: "David O'Brien" To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000702135156.E96427@dragon.nuxi.com> Reply-To: freebsd-current@FreeBSD.ORG References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007020736.AAA33902@john.baldwin.cx>; from jhb@FreeBSD.ORG on Sun, Jul 02, 2000 at 12:36:59AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 12:36:59AM -0700, John Baldwin wrote: > svr4/ - first, is this MI? If it isn't, then move it under > sys/i386/ where it belongs. If it isn't, > then I presume There are both MI and MD bits of svr4 and linux. All our platforms will need Linux binary emulation. i386 & Sparc* will need svr4. Much of the Linux bits need to move now as they are causing problems for the Alpha Linux binary compat effort. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 13:53:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id BFEF937BE69 for ; Sun, 2 Jul 2000 13:53:50 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA96544 for freebsd-current@FreeBSD.ORG; Sun, 2 Jul 2000 13:53:49 -0700 (PDT) (envelope-from obrien) Date: Sun, 2 Jul 2000 13:53:49 -0700 From: "David O'Brien" To: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000702135349.F96427@dragon.nuxi.com> Reply-To: freebsd-current@FreeBSD.ORG References: <20000702114353.C19714@freebie.wbnet> <200007021744.KAA34748@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007021744.KAA34748@john.baldwin.cx>; from jhb@FreeBSD.ORG on Sun, Jul 02, 2000 at 10:44:22AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 10:44:22AM -0700, John Baldwin wrote: > >> compile/ - no change > > > > I'd change this into compile/${MACHINE_ARCH} so that a single shared source > > tree can be used to build [alpha,i386] kernels. In the current setup one > > gets clashes with GENERIC etc. AS much as I hate this idea, I have to support it strongly. > Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile > instead in keeping with the mentioned goal of keeping all MD stuff under > ${MACHINE_ARCH}? I would prefer /sys/compile/ as it makes it easier to make a symlink to another place. Unless of course we get /usr/obj working for kernel compiles.... -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 13:56:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 3EA3037B52E for ; Sun, 2 Jul 2000 13:56:25 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA96563; Sun, 2 Jul 2000 13:56:10 -0700 (PDT) (envelope-from obrien) Date: Sun, 2 Jul 2000 13:56:10 -0700 From: "David O'Brien" To: Warner Losh Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000702135610.G96427@dragon.nuxi.com> Reply-To: freebsd-current@FreeBSD.ORG References: <200007021842.LAA10685@gndrsh.dnsmgr.net> <200007021931.NAA68723@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007021931.NAA68723@harmony.village.org>; from imp@village.org on Sun, Jul 02, 2000 at 01:31:28PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 01:31:28PM -0600, Warner Losh wrote: > : cd blah is currently > : cd ../../compile/${KERNNAME} > : it becomes > : cd /usr/obj/`pwd`/${KERNNAME} > > My take on this is that it would make it slightly harder to develop > kernel stuff in the tree. I don't like that prospect, and I think I agree that it is nicer to make the created headers, Makefile, etc. into /sys/compile/ , BUT it would be better to put the .o's in /usr/obj/ to seperate the generated binary from the [generated] source. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 14: 5:28 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 8E14D37B52E for ; Sun, 2 Jul 2000 14:05:24 -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 PAA01965 for ; Sun, 2 Jul 2000 15:05:22 -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 PAA11711 for ; Sun, 2 Jul 2000 15:05:12 -0600 (MDT) Message-Id: <200007022105.PAA11711@harmony.village.org> To: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-reply-to: Your message of "Sun, 02 Jul 2000 13:56:10 PDT." <20000702135610.G96427@dragon.nuxi.com> References: <20000702135610.G96427@dragon.nuxi.com> <200007021842.LAA10685@gndrsh.dnsmgr.net> <200007021931.NAA68723@harmony.village.org> Date: Sun, 02 Jul 2000 15:05:12 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000702135610.G96427@dragon.nuxi.com> "David O'Brien" writes: : On Sun, Jul 02, 2000 at 01:31:28PM -0600, Warner Losh wrote: : > : cd blah is currently : > : cd ../../compile/${KERNNAME} : > : it becomes : > : cd /usr/obj/`pwd`/${KERNNAME} : > : > My take on this is that it would make it slightly harder to develop : > kernel stuff in the tree. I don't like that prospect, and I think : : I agree that it is nicer to make the created headers, Makefile, etc. into : /sys/compile/ , BUT it would be better to put the .o's in /usr/obj/ to : seperate the generated binary from the [generated] source. Having the ability to do this is great (like I said for the typical buildworld case). Having the ability to turn it off is also desirable to aid in normal development. Even /usr/obj can be turned off for the normal case by setting MAKEOBJDIRPREFIX to /bogus (assuming you have no /bogus). So too should any new feature like this be. config shouldn't be modified to put things in /usr/obj/`pwd`${KERNNAME}, but instead one should use the -d feature of config in the buildkernel target to put this into /usr/obj. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 14: 9:38 2000 Delivered-To: freebsd-current@freebsd.org Received: from ozz.freebsd.org.ru (ozz.etrust.ru [194.84.67.11]) by hub.freebsd.org (Postfix) with ESMTP id 8E1FF37B52E for ; Sun, 2 Jul 2000 14:09:30 -0700 (PDT) (envelope-from osa@ozz.freebsd.org.ru) Received: (from osa@localhost) by ozz.freebsd.org.ru (8.9.3/8.9.3) id BAA45668 for current@FreeBSD.org; Mon, 3 Jul 2000 01:09:26 +0400 (MSD) (envelope-from osa) Date: Mon, 3 Jul 2000 01:09:25 +0400 From: Sergey Osokin To: current@FreeBSD.org Subject: make buildworld failed... Message-ID: <20000703010925.A45655@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! After CVSuped my sources i try make buildworld & it failed: cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/thw.c cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/tr.c cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/usc cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/zac cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -o rogue curses.o hit.o it.o inventory.o level.o machdep.o main.o message.o monster.o move.o object.o pack.o play.o random.o ring.o room.o save score.o spec_hit.o throw.o trap.o use.o zap.o -lcurses -ltermcap -lcompat monster.o: In function `mv_1_monster': monster.o(.text+0x657): undefined reference to `flame_broil' *** Error code 1 Stop in /usr/src/games/rogue. *** Error code 1 Stop in /usr/src/games. *** Error code 1 Any idea? Rgdz, Sergey Osokin aka oZZ, osa@FreeBSD.org.ru http://www.FreeBSD.org.ru/~osa/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 14:35:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from mimer.webgiro.com (mimer.webgiro.com [212.209.29.5]) by hub.freebsd.org (Postfix) with ESMTP id B9DCC37B61F; Sun, 2 Jul 2000 14:35:27 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by mimer.webgiro.com (Postfix, from userid 66) id 4E8CF2DC0A; Sun, 2 Jul 2000 23:40:57 +0200 (CEST) Received: by mx.webgiro.com (Postfix, from userid 1001) id 22DB97817; Sun, 2 Jul 2000 23:34:21 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx.webgiro.com (Postfix) with ESMTP id 1E0E110E17; Sun, 2 Jul 2000 23:34:21 +0200 (CEST) Date: Sun, 2 Jul 2000 23:34:19 +0200 (CEST) From: Andrzej Bialecki To: Garrett Wollman Cc: Ade Lovett , current@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/textproc/libxml2 Makefile ports/textproc/libxml2/files md5 ports/textproc/libxml2/pkg PLIST In-Reply-To: <200007021838.OAA11328@khavrinen.lcs.mit.edu> 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, 2 Jul 2000, Garrett Wollman wrote: > < said: > > > Bring libxml2 2.1.1 into the fold after a repo-copy. This will > > eventually replace libxml for GNOME. > > About a month ago, I was looking for a reasonable XML library with an > eye towards bringing one into the tree (to be used for config files > which have grown too complicated in syntax, like {,new}syslog.conf). > I didn't find one which met the desired criteria of: > > - Reasonably small > > - Provides a reasonable tree-based interface for C programs (i.e., > not DOM or anything that looks remotely like it) > > - Comes under a BSD-compatible license > > Does anyone know of such a library? Hmm.. Expat (ports/textproc/expat)? There is also a 'lite' version available. It provides SAX interface (which I personally like the most). Mozilla license. Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 14:35:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from slarti.muc.de (slarti.muc.de [193.149.48.10]) by hub.freebsd.org (Postfix) with SMTP id 2406437BEB3 for ; Sun, 2 Jul 2000 14:35:35 -0700 (PDT) (envelope-from jhs@jhs.muc.de) Received: (qmail 13260 invoked from network); 2 Jul 2000 21:36:34 -0000 Received: from jhs.muc.de (193.149.49.84) by slarti.muc.de with SMTP; 2 Jul 2000 21:36:34 -0000 Received: from park.jhs.no_domain (localhost [127.0.0.1]) by jhs.muc.de (8.9.3/8.9.3) with ESMTP id NAA50468; Sun, 2 Jul 2000 13:59:15 GMT (envelope-from jhs@park.jhs.no_domain) Message-Id: <200007021359.NAA50468@jhs.muc.de> To: Stefan Esser Cc: Stephen Hocking , current@FreeBSD.ORG Subject: Re: cvs-cur.6450.gz Fatal error: Bytecount too large. From: "Julian Stacey" Organization: Vector Systems Ltd - Unix & Internet consultancy X-Web: http://www.jhs.muc.de http://bim.bsn.com/~jhs/ In-reply-to: Your message of "Sun, 02 Jul 2000 00:33:37 +0200." <20000702003337.A5033@StefanEsser.FreeBSD.org> Date: Sun, 02 Jul 2000 15:59:15 +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stefan Esser wrote: > On 2000-07-01 16:35 -0500, Stephen Hocking wrote: > > again. However, when I attempt to apply cvs-cur.6450.gz I get the above err > > You have to increase the value of MAX_SIZE in /usr/src/usr.sbin/ctm/ctm/ctm.h > to at least 12MB (i.e. 1024*1024*12). This has been fixed in -current (to 20M > B) > and is awaiting a MFC. Not sure whether the fix went in before cvs-cur.6450, > but I think so. In that case just recompile and install ctm. The patch below solves it on 3.4-RELEASE : Date: Wed, 21 Jun 2000 09:18:26 -0400 (EDT) From: Chuck Robey To: ctm-announce@FreeBSD.ORG Subject: cvs-cur Message-ID: ...... Index: /usr/src/usr.sbin/ctm/ctm/ctm.h =================================================================== RCS file: /usr/cvs/src/usr.sbin/ctm/ctm/ctm.h,v retrieving revision 1.14 diff -u -3 -r1.14 ctm.h - --- /usr/src/usr.sbin/ctm/ctm/ctm.h 1999/08/28 01:15:59 1.14 +++ /usr/src/usr.sbin/ctm/ctm/ctm.h 2000/06/15 20:25:55 @@ -26,7 +26,7 @@ #include #define VERSION "2.0" - -#define MAXSIZE (1024*1024*10) +#define MAXSIZE (1024*1024*20) #define SUBSUFF ".ctm" #define TMPSUFF ".ctmtmp" Julian - Julian Stacey http://bim.bsn.com/~jhs/ Kostenlos: FreeBSD 3200 packages, sources, Netscape, WordPerfect & StarWriter. RaucherKrebsNebel erregt meinen allergischen Kopfschmerz: Schnupftabak Nutzen! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 15: 1:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id A1E3437C089 for ; Sun, 2 Jul 2000 15:01:20 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.7/nospam) with UUCP id AAA28430 for current@FreeBSD.org; Mon, 3 Jul 2000 00:01:16 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id BA57F8862; Sun, 2 Jul 2000 23:50:09 +0200 (CEST) Date: Sun, 2 Jul 2000 23:50:09 +0200 From: Ollivier Robert To: current@FreeBSD.org Subject: Re: make buildworld failed... Message-ID: <20000702235009.A47247@keltia.freenix.fr> Mail-Followup-To: current@FreeBSD.org References: <20000703010925.A45655@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000703010925.A45655@freebsd.org.ru>; from osa@freebsd.org.ru on Mon, Jul 03, 2000 at 01:09:25AM +0400 X-Operating-System: FreeBSD 5.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Sergey Osokin: > cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/thw.c Don't use "-O2" please. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 5.0-CURRENT #80: Sun Jun 4 22:44:19 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 15: 8:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id E70FB37BEB4 for ; Sun, 2 Jul 2000 15:08:41 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id PAA97079; Sun, 2 Jul 2000 15:07:45 -0700 (PDT) (envelope-from obrien) Date: Sun, 2 Jul 2000 15:07:45 -0700 From: "David O'Brien" To: Sergey Osokin Cc: current@FreeBSD.org Subject: Re: make buildworld failed... Message-ID: <20000702150744.G59770@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20000703010925.A45655@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000703010925.A45655@freebsd.org.ru>; from osa@freebsd.org.ru on Mon, Jul 03, 2000 at 01:09:25AM +0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jul 03, 2000 at 01:09:25AM +0400, Sergey Osokin wrote: > cc -O2 -pipe -march=pentium -DUNIX -fwritable-strings > -I/usr/obj/usr/src/i386/usr/include -c /usr/src/games/rogue/thw.c You are adding to the long list of people that are about to make totally remove -02+ from GCC. FreeBSD only supports the use of -O in /usr/src/ -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 16: 8:27 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id AD7FD37B72E for ; Sun, 2 Jul 2000 16:08:24 -0700 (PDT) (envelope-from DougB@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id QAA79487; Sun, 2 Jul 2000 16:07:50 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <395FCB46.4C3212A0@gorean.org> Date: Sun, 02 Jul 2000 16:07:50 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0629 i386) X-Accept-Language: en MIME-Version: 1.0 To: Sergey Osokin Cc: current@FreeBSD.org Subject: Re: make buildworld failed... References: <20000703010925.A45655@freebsd.org.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sergey Osokin wrote: > > Hello! > After CVSuped my sources i try make buildworld & it failed: As you've already noticed, you will get better responses in general to help requests if you change your CFLAGS options in /etc/make.conf to "-O -pipe" (or just comment out CFLAGS, which has the same effect) and then try again. However... > cc -c /usr/src/games/rogue/thw.c > cc -c /usr/src/games/rogue/tr.c > cc -c /usr/src/games/rogue/usc > cc -c /usr/src/games/rogue/zac I don't see any of these files in my sources, are you sure this is FreeBSD's version of rogue? Also, using -current with the latest sources I can compile this cleanly in /usr/src/games/rogue, with optimization set to either "-Os -march=pentiumpro" or "-O2 -march=pentiumpro", so I'm not sure where your problem lies. Try it first without the optimization and see if that helps. BTW, -Os is generally preferred to -02, since the former enables almost everything that -O2 does, but is known to be less buggy. Good luck, Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 17: 9:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from gateway.posi.net (c1096725-a.smateo1.sfba.home.com [24.20.139.104]) by hub.freebsd.org (Postfix) with ESMTP id ADDA637B703 for ; Sun, 2 Jul 2000 17:09:13 -0700 (PDT) (envelope-from kbyanc@posi.net) Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id RAA08057; Sun, 2 Jul 2000 17:10:12 -0700 (PDT) (envelope-from kbyanc@posi.net) Date: Sun, 2 Jul 2000 17:10:11 -0700 (PDT) From: Kelly Yancey To: Andrzej Bialecki Cc: freebsd-current@FreeBSD.ORG Subject: Re: Possible bug in netinet6/in6_rmx.c ? 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 Sun, 2 Jul 2000, Andrzej Bialecki wrote: > Hi, > > While working on adding dynamic sysctls support, I discovered something > that looks like a bug. > > For kernels that have both INET and INET6, three sysctl entries (rtexpire, > rtminexpire, rtmaxcache) are registered twice - both in netinet/in_rmx.c > and netinet6/in6_rmx.c. > > It seems they should be registered only once, within a section that is > common to INET and INET6. > > Andrzej Bialecki > I think the real problem is that the rtexpire, rtminexpire, and rtmaxcache variables are each declared static in netinet/in_rmx.c and again in netinet6/in6_in6_rmx.c. Do we really need separate learned route expiration times for ip4 and ip6? If the answer is yes, then the solution should be to move the ip6 versions under the net.inet.ip6 sysctl tree. Otherwise, as you suggest, rtexpire and friends need to be common (maybe directly under net.inet?) By the way, while we are talking about sysctl, I don't suppose you would be willing to review/commit PR 15251? It is a fairly straightforward patch that fixes a number of signed-ness bugs with sysctl as well as fix certain sysctl variables to use the correct data type (mostly an issue when ints and longs are different sizes). Thanks, Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 21:10:35 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 858D837B64C; Sun, 2 Jul 2000 21:10:30 -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 WAA03423; Sun, 2 Jul 2000 22:10:27 -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 WAA18890; Sun, 2 Jul 2000 22:10:15 -0600 (MDT) Message-Id: <200007030410.WAA18890@harmony.village.org> To: FUJISHIMA Satsuki Subject: Re: Help with Linux interpreter Cc: current@freebsd.org, ports@freebsd.org In-reply-to: Your message of "Mon, 03 Jul 2000 02:25:28 +0900." <86hfa81m2f.wl@cheerful.com> References: <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> Date: Sun, 02 Jul 2000 22:10:15 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <86hfa81m2f.wl@cheerful.com> FUJISHIMA Satsuki writes: : Please take a look into ports/18489. : Workaround for i386 has been committed at 14th May but not for Alpha. : I think you are on the Alpha plathome, or your ports tree is weirdly : out of date. Everything is up to date. The kernel, my ports tree, userland. I still get this problem after updating to today's kernel/userland. Yes, ldconfig has been branded. ld.so has been branded. acroread (the binary that acroread4 runs, verified). I've enabled linux in the boot script (and verified that it runs). Any ideas about how I should go about debugging this? I need my acroread4 :-). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 21:34:59 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 05B1A37BF4C; Sun, 2 Jul 2000 21:34:53 -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 AAA18309; Mon, 3 Jul 2000 00:34:54 -0400 (EDT) (envelope-from chuckr@picnic.mat.net) Date: Mon, 3 Jul 2000 00:34:54 -0400 (EDT) From: Chuck Robey To: Julian Stacey Cc: Stefan Esser , Stephen Hocking , current@FreeBSD.ORG Subject: Re: cvs-cur.6450.gz Fatal error: Bytecount too large. In-Reply-To: <200007021359.NAA50468@jhs.muc.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 Sun, 2 Jul 2000, Julian Stacey wrote: > Stefan Esser wrote: > > On 2000-07-01 16:35 -0500, Stephen Hocking wrote: > > > again. However, when I attempt to apply cvs-cur.6450.gz I get the above err > > > > You have to increase the value of MAX_SIZE in /usr/src/usr.sbin/ctm/ctm/ctm.h > > to at least 12MB (i.e. 1024*1024*12). This has been fixed in -current (to 20M > > B) > > and is awaiting a MFC. Not sure whether the fix went in before cvs-cur.6450, > > but I think so. In that case just recompile and install ctm. > > The patch below solves it on 3.4-RELEASE : > > Date: Wed, 21 Jun 2000 09:18:26 -0400 (EDT) > From: Chuck Robey > To: ctm-announce@FreeBSD.ORG > Subject: cvs-cur > Message-ID: > > ...... > Index: /usr/src/usr.sbin/ctm/ctm/ctm.h > =================================================================== > RCS file: /usr/cvs/src/usr.sbin/ctm/ctm/ctm.h,v > retrieving revision 1.14 > diff -u -3 -r1.14 ctm.h > - --- /usr/src/usr.sbin/ctm/ctm/ctm.h 1999/08/28 01:15:59 1.14 > +++ /usr/src/usr.sbin/ctm/ctm/ctm.h 2000/06/15 20:25:55 > @@ -26,7 +26,7 @@ > #include > > #define VERSION "2.0" > - -#define MAXSIZE (1024*1024*10) > +#define MAXSIZE (1024*1024*20) Yeah. I committed it to currect myself, Julian. Tomorrow, I'll do the MFC. It was about 2 weeks ago, when a big patch blew up the ctm machine. I announced it pretty widely on the ctm list, I'm really sorry you missed it and had to do that work again. > > #define SUBSUFF ".ctm" > #define TMPSUFF ".ctmtmp" > > Julian > - > Julian Stacey http://bim.bsn.com/~jhs/ > Kostenlos: FreeBSD 3200 packages, sources, Netscape, WordPerfect & StarWriter. > RaucherKrebsNebel erregt meinen allergischen Kopfschmerz: Schnupftabak Nutzen! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > ---------------------------------------------------------------------------- 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 Jul 2 22:17:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from mailhost.netbenefit.co.uk (mailhost.netbenefit.co.uk [212.53.64.39]) by hub.freebsd.org (Postfix) with ESMTP id 32ECE37B57D; Sun, 2 Jul 2000 22:17:38 -0700 (PDT) (envelope-from pierre.dampure@alveley.org) Received: from userez78.uk.uudial.com ([62.188.19.149] helo=alveley.org) by mailhost.netbenefit.co.uk with esmtp (NetBenefit 1.5) id 138ybp-0003w7-00 ; Mon, 03 Jul 2000 06:17:30 +0100 Message-ID: <396021CC.9EB8A7F4@alveley.org> Date: Mon, 03 Jul 2000 06:17:00 +0100 From: "Dampure, Pierre Y." X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Alexander Langer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, current@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen Makefile.inc References: <200007022145.OAA52235@freefall.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 Alexander Langer wrote: > > alex 2000/07/02 14:45:16 PDT > > Modified files: > lib/libc/gen Makefile.inc > Log: > Add strunvisx.3 MLINK. > > Revision Changes Path > 1.65 +2 -2 src/lib/libc/gen/Makefile.inc > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message This breaks installworld, as the following diff: +MLINKS+=unvis.3 strunvis.3 strunvisx.3 should have been: +MLINKS+=unvis.3 strunvis.3 unvis.3 strunvisx.3 PYD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 22:23:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id C7ADB37B572 for ; Sun, 2 Jul 2000 22:23:27 -0700 (PDT) (envelope-from DougB@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id WAA81706 for ; Sun, 2 Jul 2000 22:23:26 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <3960234E.2569D775@gorean.org> Date: Sun, 02 Jul 2000 22:23:26 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0629 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Small breakage in -Current, libc man page strunvisx.3.gz Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I updated my sources this morning, and buildworld succeeded but installworld bombed out here while handling libc's man pages: /usr/share/man/man3/vis.3.gz -> /usr/share/man/man3/strunvisx.3.gz ln: /usr/share/man/man3/strunvisx.3.gz: No such file or directory *** Error code 1 Stop in /usr/amd/realmounts/slave/usr/current/src/lib/libc. *** Error code 1 I had just did a 'make cleandir' and started with a clean /usr/obj right before this buildworld. I just cvsup'ed and didn't see anything that looked like it would make a difference. Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 23:12:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from gateway.posi.net (c1096725-a.smateo1.sfba.home.com [24.20.139.104]) by hub.freebsd.org (Postfix) with ESMTP id 904E337B6D2 for ; Sun, 2 Jul 2000 23:12:10 -0700 (PDT) (envelope-from kbyanc@posi.net) Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id XAA08712 for ; Sun, 2 Jul 2000 23:13:25 -0700 (PDT) (envelope-from kbyanc@posi.net) Date: Sun, 2 Jul 2000 23:13:23 -0700 (PDT) From: Kelly Yancey To: freebsd-current@freebsd.org Subject: problem with patch(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 Can someone please review/commit the fix in PR 19638. It fixes a bug in patch(1) that prevents -S from skipping a patch when the file to be patched does not exist. Actually, it's skip it, but it requires human intervention first. This is a problem, because one reason you might want to skip the patch is because you know the file doesn't exist and that's OK. I ran into the problem while working on a port, so the requisite human intervention is unwanted, and in this case down-right confusing. And if you find yourself with some extra free time on your hands :), there is also PR 19642 which merges many security fixes to patch(1) from OpenBSD. Thanks, Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 23:31:51 2000 Delivered-To: freebsd-current@freebsd.org Received: from main.avias.com (avias-gw.corbina.net [195.14.40.4]) by hub.freebsd.org (Postfix) with ESMTP id 8B2DA37C02F for ; Sun, 2 Jul 2000 23:31:46 -0700 (PDT) (envelope-from j@avias.com) Received: from dialup1.avias.com (dialup1.avias.com [195.14.38.68]) by main.avias.com (8.9.3/8.9.3) with ESMTP id KAA05375 for ; Mon, 3 Jul 2000 10:31:42 +0400 (MSD) (envelope-from j@avias.com) Date: Mon, 3 Jul 2000 10:33:39 +0400 (MSD) From: Juriy Goloveshkin X-Sender: juriy@localhost To: current@FreeBSD.ORG Subject: suidperl 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 Sun, 2 Jul 2000, current-digest wrote: > Perl5's version number has had to change; it is no longer 5.006, now > it is 5.6.0 in accordance with Perl standards. I tried hard to keep > with established tradition, but this did not work. > > Side effect; suidperl is no longer unreliable. btw, is there a reason to have /usr/bin/keyinfo as suidperl executable? bin/15371, for example... Bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Jul 2 23:53:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id 6DBC737B73E for ; Sun, 2 Jul 2000 23:53:20 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grimreaper.grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id IAA26165; Mon, 3 Jul 2000 08:53:33 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200007030653.IAA26165@grimreaper.grondar.za> To: Juriy Goloveshkin Cc: current@FreeBSD.ORG Subject: Re: suidperl References: In-Reply-To: ; from Juriy Goloveshkin "Mon, 03 Jul 2000 10:33:39 +0400." Date: Mon, 03 Jul 2000 08:53:33 +0200 From: Mark Murray Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Side effect; suidperl is no longer unreliable. > btw, is there a reason to have /usr/bin/keyinfo as suidperl executable? > bin/15371, for example... Great! Can you please email me again that code, but with an appropriate copyright on top (preferably the 2-clause BSD one, but it's your code, so make the decision), and I'll commit it for you. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 0:56:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E4CB537B80A for ; Mon, 3 Jul 2000 00:56:30 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id JAA36139; Mon, 3 Jul 2000 09:56:27 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: Garrett Wollman Cc: current@FreeBSD.ORG Subject: Re: HEADS UP: new fetch(1) References: <200006291541.LAA94958@khavrinen.lcs.mit.edu> <200006301511.LAA99499@khavrinen.lcs.mit.edu> From: Dag-Erling Smorgrav Date: 03 Jul 2000 09:56:27 +0200 In-Reply-To: Garrett Wollman's message of "Fri, 30 Jun 2000 11:11:16 -0400 (EDT)" Message-ID: Lines: 13 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Garrett Wollman writes: > < said: > > You're not one for constructive criticism, are you? I don't know how > What part of YOU MAY NOT CLAIM COPYRIGHT ON MY TEXT don't you > understand? That's a technicality, and I'll fix it in a second. I'm still waiting for a list of actual problems with the code (apart from those already reported by other people). DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 1: 4:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 9391D37B63A for ; Mon, 3 Jul 2000 01:04:41 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id KAA36185; Mon, 3 Jul 2000 10:04:37 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: Garrett Wollman Cc: current@FreeBSD.ORG Subject: Re: HEADS UP: new fetch(1) References: <200006291541.LAA94958@khavrinen.lcs.mit.edu> <200006301511.LAA99499@khavrinen.lcs.mit.edu> From: Dag-Erling Smorgrav Date: 03 Jul 2000 10:04:37 +0200 In-Reply-To: Dag-Erling Smorgrav's message of "03 Jul 2000 09:56:27 +0200" Message-ID: Lines: 14 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Garrett Wollman writes: > > < said: > > > You're not one for constructive criticism, are you? I don't know how > > What part of YOU MAY NOT CLAIM COPYRIGHT ON MY TEXT don't you > > understand? > That's a technicality, and I'll fix it in a second. [...] There was no copyright on the original man page, by the way. Please send me the exact copyright line you want inserted. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 1:57:58 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 0D8F437B995 for ; Mon, 3 Jul 2000 01:57:55 -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 JAA64885; Mon, 3 Jul 2000 09:57:51 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id JAA01063; Mon, 3 Jul 2000 09:26:21 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200007030826.JAA01063@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Daniel Berlin Cc: freebsd-current@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working In-Reply-To: Message from Daniel Berlin of "Sun, 02 Jul 2000 06:52:16 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Jul 2000 09:26:21 +0100 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I see literally the exact same thing. > I thought it was just my screwup, as i had installed 0609-CURRENT (the > latest installs don't work, at least, on my desktop, so i picked the one > from my birthday :P), which worked fine, then cvsup'd, installed the new > kernel, did a make world, rebooted, and pppoe no longer worked. > tcpdump shows the same thing you are seeing. Please try the latest version of ppp. It *should* try to load the ng_ether node now. This is a requirement for new kernels. Alternatively, kldload ng_ether before starting ppp. > --Dan -- 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 Mon Jul 3 6:44:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 10F3D37B69E for ; Mon, 3 Jul 2000 06:44:51 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id JAA34324 for current@freebsd.org; Mon, 3 Jul 2000 09:44:49 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200007031344.JAA34324@blackhelicopters.org> Subject: hints syntax? To: current@freebsd.org Date: Mon, 3 Jul 2000 09:44:49 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (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 I'm having trouble with the hints file syntax for a more complicated device, namely a sound card. The device shows up with the unknown driver: unknown7: at port 0x220-0x233,0x530-0x537,0x388-0x38f,0x330-0x333,0x53 8-0x539 irq 5 drq 1,0 on isa0 I've tried hints files with a variety of syntaxes, including listing only the first variable (i,e., "hint.pcm.0.drq="1"), and listing them all (hint.pcm.0.drq="1,0"). Currently I have: hint.pcm.0.irq="5" hint.pcm.0.drq="1,0" hint.pcm.0.port="0x220" Anyone have any suggestions? ==ml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 7:26: 4 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 37F7237B88C; Mon, 3 Jul 2000 07:25:40 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from kyoto-tc012-p161.alpha-net.ne.jp (kyoto-tc012-p161.alpha-net.ne.jp [210.237.118.205]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id XAA28784; Mon, 3 Jul 2000 23:23:08 +0900 (JST) Received: from souffle.bogus-local.net (souffle.bogus-local.net [192.168.1.1]) by kyoto-tc012-p161.alpha-net.ne.jp (Postfix) with ESMTP id 781083D1E; Mon, 3 Jul 2000 23:25:16 +0900 (JST) Date: Mon, 03 Jul 2000 23:25:16 +0900 Message-ID: <86g0prqoj7.wl@cheerful.com> From: FUJISHIMA Satsuki To: imp@village.org Cc: current@freebsd.org, ports@freebsd.org Subject: Re: Help with Linux interpreter In-Reply-To: In your message of "Sun, 02 Jul 2000 22:10:15 -0600" <200007030410.WAA18890@harmony.village.org> References: <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <200007030410.WAA18890@harmony.village.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (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 Sun, 02 Jul 2000 22:10:15 -0600, Warner Losh wrote: > In message <86hfa81m2f.wl@cheerful.com> FUJISHIMA Satsuki writes: > : Please take a look into ports/18489. > : Workaround for i386 has been committed at 14th May but not for Alpha. > : I think you are on the Alpha plathome, or your ports tree is weirdly > : out of date. > > Everything is up to date. The kernel, my ports tree, userland. I > still get this problem after updating to today's kernel/userland. > Yes, ldconfig has been branded. ld.so has been branded. acroread > (the binary that acroread4 runs, verified). I've enabled linux in the > boot script (and verified that it runs). You don't answered my question: Is it Alpha plathome you are on? print/acroread4 port has workaround for i386 but not for Alpha. see ports/18489 for details. Brand new kernel/userland is not a solusion. I successfully installed and ran acroread4 perfectly on 1st July i386 kernel/userland built from scratch. >ELF interpreter /lib/ld-linux.so.2 not found >Abort This seems `Linux binary branded to FreeBSD.' -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 8:49:12 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 855B737B8B2; Mon, 3 Jul 2000 08:48:55 -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 JAA05772; Mon, 3 Jul 2000 09:48:50 -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 JAA23208; Mon, 3 Jul 2000 09:48:38 -0600 (MDT) Message-Id: <200007031548.JAA23208@harmony.village.org> To: FUJISHIMA Satsuki Subject: Re: Help with Linux interpreter Cc: current@freebsd.org, ports@freebsd.org In-reply-to: Your message of "Mon, 03 Jul 2000 23:25:16 +0900." <86g0prqoj7.wl@cheerful.com> References: <86g0prqoj7.wl@cheerful.com> <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <200007030410.WAA18890@harmony.village.org> Date: Mon, 03 Jul 2000 09:48:38 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <86g0prqoj7.wl@cheerful.com> FUJISHIMA Satsuki writes: : At Sun, 02 Jul 2000 22:10:15 -0600, : Warner Losh wrote: : > In message <86hfa81m2f.wl@cheerful.com> FUJISHIMA Satsuki writes: : > : Please take a look into ports/18489. : > : Workaround for i386 has been committed at 14th May but not for Alpha. : > : I think you are on the Alpha plathome, or your ports tree is weirdly : > : out of date. : > : > Everything is up to date. The kernel, my ports tree, userland. I : > still get this problem after updating to today's kernel/userland. : > Yes, ldconfig has been branded. ld.so has been branded. acroread : > (the binary that acroread4 runs, verified). I've enabled linux in the : > boot script (and verified that it runs). : : You don't answered my question: Is it Alpha plathome you are on? Sorry about that. I'm running on Intel. : print/acroread4 port has workaround for i386 but not for Alpha. see : ports/18489 for details. : : Brand new kernel/userland is not a solusion. I successfully installed : and ran acroread4 perfectly on 1st July i386 kernel/userland built : from scratch. OK. Nothing changed in this area between July and July 2 when I rebuilt.... : >ELF interpreter /lib/ld-linux.so.2 not found : >Abort : : This seems `Linux binary branded to FreeBSD.' If it is, I can't figure out which one it is :-( Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 9:18:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.ddg.com (eunuch.ddg.com [216.30.58.66]) by hub.freebsd.org (Postfix) with ESMTP id DEDFB37B90A for ; Mon, 3 Jul 2000 09:18:22 -0700 (PDT) (envelope-from rkw@dataplex.net) Received: from nomad.dataplex.net (24.27.31.118) by mail.ddg.com with SMTP (Eudora Internet Mail Server 2.1); Mon, 3 Jul 2000 11:18:19 -0500 From: Richard Wackerbarth To: Warner Losh , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Date: Mon, 3 Jul 2000 11:18:18 -0500 X-Mailer: KMail [version 1.1.50] Content-Type: text/plain References: <20000702135610.G96427@dragon.nuxi.com> <200007021931.NAA68723@harmony.village.org> <200007022105.PAA11711@harmony.village.org> In-Reply-To: <200007022105.PAA11711@harmony.village.org> MIME-Version: 1.0 Message-Id: <00070311181801.00926@nomad.dataplex.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 02 Jul 2000, Warner Losh wrote: > In message <20000702135610.G96427@dragon.nuxi.com> "David O'Brien" writes: > : On Sun, Jul 02, 2000 at 01:31:28PM -0600, Warner Losh wrote: > : > : cd blah is currently > : > : cd ../../compile/${KERNNAME} > : > : it becomes > : > : cd /usr/obj/`pwd`/${KERNNAME} > : > > : > My take on this is that it would make it slightly harder to develop > : > kernel stuff in the tree. I don't like that prospect, and I think > : > : I agree that it is nicer to make the created headers, Makefile, etc. into > : /sys/compile/ , BUT it would be better to put the .o's in /usr/obj/ to > : seperate the generated binary from the [generated] source. > > Having the ability to do this is great (like I said for the typical > buildworld case). Having the ability to turn it off is also desirable > to aid in normal development. Even /usr/obj can be turned off for the > normal case by setting MAKEOBJDIRPREFIX to /bogus (assuming you have > no /bogus). So too should any new feature like this be. > config > shouldn't be modified to put things in /usr/obj/`pwd`${KERNNAME}, but > instead one should use the -d feature of config in the buildkernel > target to put this into /usr/obj. Or "config" could be rewritten to act like NORMAL unix tools and leave its output in the directory where it is executed. IMHO, the "-d" is the backwards way to do things. I objected when it was written, but the author insisted that "compatability" was more important than correct design. Write a new version under a different name and create a shell "wrapped" for those who refuse progress. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 9:42: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from lips.borg.umn.edu (lips.borg.umn.edu [160.94.232.50]) by hub.freebsd.org (Postfix) with ESMTP id 87EFA37B992; Mon, 3 Jul 2000 09:41:51 -0700 (PDT) (envelope-from cattelan@thebarn.com) Received: from thebarn.com (nic-25-c125-118.mn.mediaone.net [24.25.125.118]) by lips.borg.umn.edu (8.10.1/8.10.1) with ESMTP id e63Gfeb00885; Mon, 3 Jul 2000 11:41:40 -0500 (CDT) Message-ID: <3960C243.A2DC43C8@thebarn.com> Date: Mon, 03 Jul 2000 11:41:39 -0500 From: Russell Cattelan Reply-To: cattelan@thebarn.com X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.ORG Cc: "Andrey A. Chernov" , current@FreeBSD.ORG Subject: Re: bug: kernel hangs at boot References: <20000628230322.B53060@freebsd.org> <20000630062911.A81946@freebsd.org> <20000630160428.B11113@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > On Fri, Jun 30, 2000 at 06:29:11AM -0700, Andrey A. Chernov wrote: > > The reason found. I have "-O2 pipe" instead of default "-O pipe", but I have > > it working all the time from very beginning. Why this becomes broken? > > Because the code change now triggers one of the bugs that has made us > always say "don't use anything above -O". I'm having the same problem on a tyan thunder dual 600 pIII. I haven't changed the optimizer from the default -O. I haven't had much time to track down as to when the kernel stopped booting. Any suggestions as to which pieces of code to go look at would be appreciated. > > > -- > -- David (obrien@FreeBSD.org) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- Russell Cattelan cattelan@thebarn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 10:25:58 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 C57A437BC8C for ; Mon, 3 Jul 2000 10:25:46 -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 SAA69323; Mon, 3 Jul 2000 18:25:38 +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 SAA87581; Mon, 3 Jul 2000 18:25:34 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200007031725.SAA87581@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Daniel Berlin , Archie Cobbs Cc: Brian Somers , Daniel Berlin , freebsd-current@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working In-Reply-To: Message from Daniel Berlin of "03 Jul 2000 11:50:39 EDT." <86bt0fqkkw.fsf@dan2.cygnus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Jul 2000 18:25:34 +0100 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It's worth cc'ing Archie on this.... Archie, it seems people are having problems using PPPoE since your ng_ether changes. Any suggestions ? > Brian Somers writes: > > > > I see literally the exact same thing. > > > I thought it was just my screwup, as i had installed 0609-CURRENT (the > > > latest installs don't work, at least, on my desktop, so i picked the one > > > from my birthday :P), which worked fine, then cvsup'd, installed the new > > > kernel, did a make world, rebooted, and pppoe no longer worked. > > > tcpdump shows the same thing you are seeing. > > > > Please try the latest version of ppp. It *should* try to load the > > ng_ether node now. This is a requirement for new kernels. > > > > Alternatively, kldload ng_ether before starting ppp. > > > > Doesn't help. > I've just about narrowed the problem down to a kernel change. > I can use an old kernel, with the new modules (including ng_ether, which is only compiled into my new kernel, not my old one), and it works fine. > I can use either version of ppp (06-09, or one from today), and it doesn't change anything (IE it either works or doesn't, depending on which kernel i use). > I can't use a new kernel, with netgraph compiled into it (all the ones i use), with or without older modules. > I'm about to test a new kernel, without netgraph compiled into it, with older netgraph modules. > I'll email back how it goes. > > --Dan > -- 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 Mon Jul 3 10:39: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 8E36337BA8A for ; Mon, 3 Jul 2000 10:38:54 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id NAA17341; Mon, 3 Jul 2000 13:37:21 -0400 (EDT) (envelope-from wollman) Date: Mon, 3 Jul 2000 13:37:21 -0400 (EDT) From: Garrett Wollman Message-Id: <200007031737.NAA17341@khavrinen.lcs.mit.edu> To: Poul-Henning Kamp Cc: current@freebsd.org Subject: Re: cvs commit: src/sys/sys bus.h bus_private.h src/sys/kern subr_bus.c In-Reply-To: <7096.962642423@critter.freebsd.dk> References: <200007031634.MAA17071@khavrinen.lcs.mit.edu> <7096.962642423@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > In fact the best idea may be to make this a per device variable: > "if your hardware disappears, stay around" > or > "if your hardware disappears, go away" Since there needs to be a method call into the driver either way (to tell it that its hardware has disappeared), it can make that choice for itself. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 11:29:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from peedub.muc.de (p3E9B8F3E.dip.t-dialin.net [62.155.143.62]) by hub.freebsd.org (Postfix) with ESMTP id 0A87537B8AF for ; Mon, 3 Jul 2000 11:29:40 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id UAA00506; Mon, 3 Jul 2000 20:22:48 +0200 (CEST) Message-Id: <200007031822.UAA00506@peedub.muc.de> X-Mailer: exmh version 2.1.1 10/15/1999 To: Brian Somers Cc: Daniel Berlin , freebsd-current@FreeBSD.ORG Subject: Re: PPPoE not working Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 03 Jul 2000 09:26:21 BST." <200007030826.JAA01063@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Jul 2000 20:22:48 +0200 From: Gary Jennejohn Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers writes: > > I see literally the exact same thing. > > I thought it was just my screwup, as i had installed 0609-CURRENT (the > > latest installs don't work, at least, on my desktop, so i picked the one > > from my birthday :P), which worked fine, then cvsup'd, installed the new > > kernel, did a make world, rebooted, and pppoe no longer worked. > > tcpdump shows the same thing you are seeing. > > Please try the latest version of ppp. It *should* try to load the > ng_ether node now. This is a requirement for new kernels. > > Alternatively, kldload ng_ether before starting ppp. > Doesn't help. ng_ether.ko was being automatically loaded before your change. Loading it before starting ppp also doesn't help. I'm beginning to think that the bug is in NETGRAPH. --- Gary Jennejohn / garyj@muc.de gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 11:47: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 435A137BDA3 for ; Mon, 3 Jul 2000 11:46:59 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id LAA29011; Mon, 3 Jul 2000 11:46:58 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id LAA36668; Mon, 3 Jul 2000 11:48:00 -0700 (PDT) (envelope-from john) Message-Id: <200007031848.LAA36668@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200007021852.OAA11390@khavrinen.lcs.mit.edu> Date: Mon, 03 Jul 2000 11:48:00 -0700 (PDT) From: John Baldwin To: Garrett Wollman Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 02-Jul-00 Garrett Wollman wrote: > < said: > >> encapsulation. Of course, someone more familiar with the actual code >> in the tree might provide some better insight on the feasibility of >> splitting these up. > > Don't, or else legions of network people will curse you to the end of > your days. So would you prefer sys/net/inet containing all of TCP, UDP, IP, etc.? > -GAWollman -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 11:47:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id E859F37C22F for ; Mon, 3 Jul 2000 11:47:02 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id LAA29015 for ; Mon, 3 Jul 2000 11:46:59 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id LAA36672 for freebsd-current@FreeBSD.ORG; Mon, 3 Jul 2000 11:48:01 -0700 (PDT) (envelope-from john) Message-Id: <200007031848.LAA36672@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000702135156.E96427@dragon.nuxi.com> Date: Mon, 03 Jul 2000 11:48:01 -0700 (PDT) From: John Baldwin To: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 02-Jul-00 David O'Brien wrote: > On Sun, Jul 02, 2000 at 12:36:59AM -0700, John Baldwin wrote: >> svr4/ - first, is this MI? If it isn't, then move it under >> sys/i386/ where it belongs. If it isn't, >> then I presume > > There are both MI and MD bits of svr4 and linux. All our platforms will > need Linux binary emulation. i386 & Sparc* will need svr4. Much of the > Linux bits need to move now as they are causing problems for the Alpha > Linux binary compat effort. So, in regards to the part you trimmed out, do you think sys/compat/ is a good place for the MI bits to move to? > -- > -- David (obrien@FreeBSD.org) -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 11:58:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id 1E67437B7B0 for ; Mon, 3 Jul 2000 11:58:49 -0700 (PDT) (envelope-from keichii@peorth.iteration.net) Received: by peorth.iteration.net (Postfix, from userid 1000) id 8E08F64C28; Mon, 3 Jul 2000 13:58:52 -0500 (CDT) Date: Mon, 3 Jul 2000 13:58:52 -0500 From: "Michael C. Wu" To: current@freebsd.org Subject: Re: Small breakage in -Current, libc man page strunvisx.3.gz Message-ID: <20000703135852.A64420@peorth.iteration.net> Mail-Followup-To: "Michael C. Wu" , current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG | /usr/share/man/man3/vis.3.gz -> /usr/share/man/man3/strunvisx.3.gz | ln: /usr/share/man/man3/strunvisx.3.gz: No such file or directory | *** Error code 1 | | Stop in /usr/amd/realmounts/slave/usr/current/src/lib/libc. | *** Error code 1 | | I had just did a 'make cleandir' and started with a clean /usr/obj right | before this buildworld. I just cvsup'ed and didn't see anything that | looked like it would make a difference. ---end quoted text--- cp /usr/share/man/man3/strunvis.3.gz /usr/share/man/man3/strunvisx.3.gz do that right after installworld fails, and start installworld again Sorry, temporary fix. -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 15:32:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.interware.hu (mail.interware.hu [195.70.32.130]) by hub.freebsd.org (Postfix) with ESMTP id D8E9737B8F4 for ; Mon, 3 Jul 2000 15:32:44 -0700 (PDT) (envelope-from julian@elischer.org) Received: from kairo-25.budapest.interware.hu ([195.70.50.89] helo=jules.elischer.org) by mail.interware.hu with smtp (Exim 3.12 #1 (Debian)) id 139ElA-0000H3-00; Tue, 04 Jul 2000 00:32:12 +0200 Message-ID: <39611462.15FB7483@elischer.org> Date: Mon, 03 Jul 2000 15:32:02 -0700 From: Julian Elischer X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 5.0-CURRENT i386) MIME-Version: 1.0 To: Gary Jennejohn Cc: Brian Somers , Daniel Berlin , freebsd-current@FreeBSD.ORG Subject: Re: PPPoE not working References: <200007031822.UAA00506@peedub.muc.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gary Jennejohn wrote: > > > > Doesn't help. ng_ether.ko was being automatically loaded before your > change. Loading it before starting ppp also doesn't help. > > I'm beginning to think that the bug is in NETGRAPH. I agree. to be more precise, between the new ng_ether code, and the ng_pppoe code. running the pppoe node with the AAA code enabled (check the file) might lead to some clues. also sticking a 'tee' node between the ether node and the pppoe node would also be instructive. Brian, what would it take to add a debug option that would insert it? I have no debug facilities here. -- __--_|\ Julian Elischer / \ julian@elischer.org ( OZ ) World tour 2000 )_.---._/ presently in: Budapest v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 18:24:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 7824437B554; Mon, 3 Jul 2000 18:24:17 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-001.dialup.bignet.net [64.79.82.113]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id VAA07585; Mon, 3 Jul 2000 21:23:53 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 5274F1992; Mon, 3 Jul 2000 21:21:52 -0400 (EDT) Date: Mon, 3 Jul 2000 21:21:52 -0400 From: Will Andrews To: clefevre@citeweb.net Cc: FreeBSD-gnats-submit@FreeBSD.org, current@FreeBSD.org Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000703212151.B94372@argon.gryphonsoft.com> References: <200007020558.HAA71231@gits.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200007020558.HAA71231@gits.dyndns.org>; from clefevre@citeweb.net on Sun, Jul 02, 2000 at 07:58:17AM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jul 02, 2000 at 07:58:17AM +0200, clefevre@citeweb.net wrote: > >Synopsis: add -c for grand total to df(1), like du(1) does > >Description: > > sample of output : > > # df -c > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/da0s1a 1904559 1249983 502212 71% / > /dev/da1s1c 2031922 1336326 533043 71% /disk2 > /dev/da2s1a 1904559 1484367 267828 85% /disk1 > /dev/da3s1a 1904559 1414623 337572 81% /disk4 > procfs 4 4 0 100% /proc > total 7745603 5485303 1640655 77% Does anyone else here think this is a good idea? If so, I'd like to merge this in -CURRENT and MFC before 4.1-RELEASE. It seems like a fairly nice addition to df(1), and can be useful for system accounting. -- 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 Mon Jul 3 18:37: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id AE7F137BC6C; Mon, 3 Jul 2000 18:36:57 -0700 (PDT) (envelope-from grog@wantadilla.lemis.com) Received: (from grog@localhost) by wantadilla.lemis.com (8.9.3/8.9.3) id LAA94508; Tue, 4 Jul 2000 11:06:40 +0930 (CST) (envelope-from grog) Date: Tue, 4 Jul 2000 11:06:40 +0930 From: Greg Lehey To: Warner Losh Cc: FUJISHIMA Satsuki , current@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Help with Linux interpreter Message-ID: <20000704110640.B94351@wantadilla.lemis.com> References: <86g0prqoj7.wl@cheerful.com> <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <200007030410.WAA18890@harmony.village.org> <86g0prqoj7.wl@cheerful.com> <200007031548.JAA23208@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <200007031548.JAA23208@harmony.village.org> 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, 3 July 2000 at 9:48:38 -0600, Warner Losh wrote: > In message <86g0prqoj7.wl@cheerful.com> FUJISHIMA Satsuki writes: >> At Sun, 02 Jul 2000 22:10:15 -0600, >> Warner Losh wrote: >>> In message <86hfa81m2f.wl@cheerful.com> FUJISHIMA Satsuki writes: >>>> Please take a look into ports/18489. >>>> Workaround for i386 has been committed at 14th May but not for Alpha. >>>> I think you are on the Alpha plathome, or your ports tree is weirdly >>>> out of date. >>> >>> Everything is up to date. The kernel, my ports tree, userland. I >>> still get this problem after updating to today's kernel/userland. >>> Yes, ldconfig has been branded. ld.so has been branded. acroread >>> (the binary that acroread4 runs, verified). I've enabled linux in the >>> boot script (and verified that it runs). >> >> You don't answered my question: Is it Alpha plathome you are on? > > Sorry about that. I'm running on Intel. > >> print/acroread4 port has workaround for i386 but not for Alpha. see >> ports/18489 for details. >> >> Brand new kernel/userland is not a solusion. I successfully installed >> and ran acroread4 perfectly on 1st July i386 kernel/userland built >> from scratch. > > OK. Nothing changed in this area between July and July 2 when I > rebuilt.... > >>> ELF interpreter /lib/ld-linux.so.2 not found >>> Abort >> >> This seems `Linux binary branded to FreeBSD.' > > If it is, I can't figure out which one it is :-( FWIW, I'm getting exactly the same problem on one machine, but not on the other. Good machine: FreeBSD sydney.worldwide.lemis.com 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sat Jun 10 17:46:50 CST 2000 grog@sydney.worldwide.lemis.com:/home/src/sys/compile/SYDNEY i386 Bad machine: FreeBSD wantadilla.lemis.com 5.0-CURRENT FreeBSD 5.0-CURRENT #3: Sat Jun 10 15:11:18 CST 2000 grog@wantadilla.lemis.com:/src/FreeBSD/WANTADILLA/src/sys/compile/WANTADILLA i386 In each case, the sources were freshly cvsupped. I don't have time to look more deeply (since I can get things to work :-), but I was pretty sure that it used to work on wantadilla as well, and that I haven't changed anything in the interim. 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 Mon Jul 3 18:53:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 1F53337C1EA for ; Mon, 3 Jul 2000 18:53:42 -0700 (PDT) (envelope-from leifn@neland.dk) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id DAA95425 for freebsd-current@freebsd.org; Tue, 4 Jul 2000 03:53:40 +0200 (CEST) (envelope-from leifn@neland.dk) Received: from localhost (localhost [127.0.0.1]) by arnold.neland.dk (8.9.3/8.9.3) with ESMTP id DAA38121 for ; Tue, 4 Jul 2000 03:49:49 +0200 (CEST) (envelope-from leifn@neland.dk) Date: Tue, 4 Jul 2000 03:49:49 +0200 (CEST) From: Leif Neland To: freebsd-current@freebsd.org Subject: new fetch: no progress shown 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 The new fetch does not show progress when dl'ing stuff for ports. I tried adding FETCH_BEFORE_ARGS = " -v " in /usr/ports/Mk/bsd.ports.mk but then fetch just dies: fetch: -v : parse error Segmentation fault - core dumped Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 20:52:29 2000 Delivered-To: freebsd-current@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id A97E837BFE8 for ; Mon, 3 Jul 2000 20:52:21 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Received: from ix.netcom.com (sil-wa17-31.ix.netcom.com [207.93.156.31]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id XAA02505 for ; Mon, 3 Jul 2000 23:52:17 -0400 (EDT) Received: (from tomdean@localhost) by ix.netcom.com (8.9.3/8.9.3) id UAA05511; Mon, 3 Jul 2000 20:52:15 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Date: Mon, 3 Jul 2000 20:52:15 -0700 (PDT) Message-Id: <200007040352.UAA05511@ix.netcom.com> X-Authentication-Warning: celebris.tddhome: tomdean set sender to tomdean@ix.netcom.com using -f From: "Thomas D. Dean" To: current@FreeBSD.ORG Subject: de0: Abnormal Interrupt: Transmit Underflow Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have been seeing unusual error messages in response to network transmissions. The latest was caused by lp ~0.5MB to a remote printer. I am running -current SMP. Dmesg is attached. The error messages are attached. # uname -a FreeBSD celebris 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Jul 1 \ 13:20:10 PDT 2000 tomdean@celebris:/usr/src/sys/compile/CELEBRIS-SMP \ i386 These messages started April 26, I believe. I did cvsup, make world, and kernel on Apr 4, May 28, June 21, and, Jul 1. The printer is an HP Laserjet, on a FreeBSD 3.4-stable of Apr 17, 2000, 486DX2/66 machine connected via 10base2/BNC net. The '486 machine is only for the printer, ppp, and serves a 3G disk for 0330 daily backup from a remote machine. The printer has very light use. I don't see any of the interrupts in response to the backup activity. tomdean === console messages ===== Jul 3 20:04:11 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:04:11 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:04:43 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:04:43 celebris /kernel: de0: abnormal interrupt: transmit underflow ==== dmesg ================ 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: Sat Jul 1 13:20:10 PDT 2000 tomdean@celebris:/usr/src/sys/compile/CELEBRIS-SMP Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P54C (128.01-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x525 Stepping = 5 Features=0x3bf real memory = 100663296 (98304K bytes) avail memory = 94871552 (92648K bytes) Programming 16 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00030010, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00030010, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x000f0011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc02f6000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02f609c. Intel Pentium detected, installing workaround for F00F bug npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 ncr0: port 0xec00-0xecff mem 0xfedfbf00-0xfedfbfff irq 11 at device 1.0 on pci0 isab0: at device 2.0 on pci0 isa0: on isab0 pci0: at 6.0 irq 9 de0: port 0xe880-0xe8ff mem 0xfedfbe80-0xfedfbeff irq 10 at device 8.0 on pci0 de0: DEC DE450-CA 21041 [10Mb/s] pass 1.1 de0: address 00:00:f8:02:76:db vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 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 ppc0: at port 0x378-0x37b irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port isa0: <@@@0000> found sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A isa0: <@@@0000> found isa0: found unknown: can't assign resources unknown: can't assign resources unknown: <16550 compatible COM device> can't assign resources unknown: <16550 compatible COM device> can't assign resources unknown: can't assign resources isa0: found unknown: can't assign resources APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 Waiting 10 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! cd0 at ncr0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 4.237MB/s transfers (4.237MHz, offset 8) cd0: cd present [295811 x 2048 byte records] da0 at ncr0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 8) da0: 1042MB (2134305 512 byte sectors: 255H 63S/T 132C) da2 at ncr0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da2: 1029MB (2109376 512 byte sectors: 255H 63S/T 131C) Mounting root from ufs:/dev/da1s1a da1 at ncr0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da1: 8748MB (17916240 512 byte sectors: 255H 63S/T 1115C) de0: enabling BNC port pid 2807 (communicator-4.7), uid 1001: exited on signal 10 (core dumped) pid 3078 (communicator-4.7), uid 1001: exited on signal 10 (core dumped) pid 3105 (communicator-4.7), uid 1001: exited on signal 10 (core dumped) pid 4968 (communicator-4.7), uid 1001: exited on signal 10 (core dumped) de0: abnormal interrupt: transmit underflow de0: abnormal interrupt: transmit underflow de0: abnormal interrupt: transmit underflow de0: abnormal interrupt: transmit underflow de0: abnormal interrupt: transmit underflow de0: abnormal interrupt: transmit underflow ==== extracted from /var/log/messages* ==== Apr 26 21:01:57 celebris /kernel: de0: abnormal interrupt: transmit underflow Apr 26 21:02:00 celebris /kernel: de0: abnormal interrupt: transmit underflow May 31 08:15:12 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 2 19:13:54 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 6 07:24:14 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 7 12:43:29 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 9 21:34:47 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 19 20:23:34 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 22 18:53:57 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 22 18:54:21 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 22 18:58:20 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 22 21:10:18 celebris /kernel: de0: abnormal interrupt: transmit underflow Jun 24 20:28:01 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 1 10:19:28 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:04:11 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:04:43 celebris /kernel: de0: abnormal interrupt: transmit underflow Jul 3 20:06:18 celebris /kernel: de0: abnormal interrupt: transmit underflow To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Jul 3 22:38:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 24EC737C0DF; Mon, 3 Jul 2000 22:38:08 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm002-002.dialup.bignet.net [64.79.80.50]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id BAA09647; Tue, 4 Jul 2000 01:37:43 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 03F8C1992; Tue, 4 Jul 2000 01:35:45 -0400 (EDT) Date: Tue, 4 Jul 2000 01:35:45 -0400 From: Will Andrews To: Andy Farkas Cc: FreeBSD-gnats-submit@FreeBSD.org, current@FreeBSD.org Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000704013545.F94372@argon.gryphonsoft.com> References: <20000703212151.B94372@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from andyf@speednet.com.au on Tue, Jul 04, 2000 at 03:32:11PM +1000 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 04, 2000 at 03:32:11PM +1000, Andy Farkas wrote: > My only suggestion is to put a dashed line above the totals in order to > clearly say they are totals (like I did below). That might be nice, but I object on the grounds that it isn't consistent with du -c. -- 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 Mon Jul 3 23:26:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id 924F237BB26 for ; Mon, 3 Jul 2000 23:26:48 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: (qmail 9110 invoked from network); 4 Jul 2000 06:26:44 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 4 Jul 2000 06:26:44 -0000 Date: Tue, 4 Jul 2000 16:26:40 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Chris Costello Cc: "Rodney W. Grimes" , John Baldwin , wilko@FreeBSD.ORG, obrien@FreeBSD.ORG, Will Andrews , freebsd-current@FreeBSD.ORG, "Jordan K. Hubbard" Subject: Re: /sys hierarchy In-Reply-To: <20000702130736.D66762@holly.calldei.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, 2 Jul 2000, Chris Costello wrote: > On Sunday, July 02, 2000, Rodney W. Grimes wrote: > > Actually the whole src/sys/compile thing should go away, it is > > one of the last things that has to be dealt with for a totally > > read-only mounted /usr/src. IMHO it should be moved to /usr/obj, > > and /usr/obj should, if it hasn't already, be enhanced to include > > a ${MACHINE_ARCH} component. > > It does already, but how do you propose the user build and > install the kernel? ``cd /usr/obj ...'' is inconsistent with any > current procedures. `cd /sys/${MACHINE}/conf; make FOO' should make configuration FOO. (For the current build scheme to work, there would have to be a subdirectory of /sys/${MACHINE}/conf for each configuration file. I don't like the tiny directories required for this.) ${MACHINE_ARCH} would be wrong here. pc98 != i386. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 0:12:31 2000 Delivered-To: freebsd-current@freebsd.org Received: from admiral.umsl.edu (admiral.umsl.edu [134.124.15.13]) by hub.freebsd.org (Postfix) with ESMTP id 0127F37B5FA for ; Tue, 4 Jul 2000 00:12:29 -0700 (PDT) (envelope-from s971908@admiral.umsl.edu) Received: from rasmakonnen (UMSLdial-094.umsl.edu [134.124.144.94]) by admiral.umsl.edu (8.9.1/8.9.1) with ESMTP id CAA06049 for ; Tue, 4 Jul 2000 02:12:25 -0500 (CDT) Message-ID: <000801bfe586$e7280040$5e907c86@rasmakonnen> From: "Kevin Taylor" To: Subject: i would like to join Date: Tue, 4 Jul 2000 02:10:08 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01BFE55C.FA320FC0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BFE55C.FA320FC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable subscribe freebsd-current subscribe cvs-all ------=_NextPart_000_0005_01BFE55C.FA320FC0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
subscribe freebsd-current
subscribe=20 cvs-all
------=_NextPart_000_0005_01BFE55C.FA320FC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 1:36:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from trinity.skynet.be (trinity.skynet.be [195.238.2.38]) by hub.freebsd.org (Postfix) with ESMTP id 4344137B807; Tue, 4 Jul 2000 01:36:42 -0700 (PDT) (envelope-from blk@skynet.be) Received: from [195.238.1.121] (brad.techos.skynet.be [195.238.1.121]) by trinity.skynet.be (Postfix) with ESMTP id AE5D718219; Tue, 4 Jul 2000 10:34:31 +0200 (MET DST) Mime-Version: 1.0 X-Sender: blk@pop.skynet.be Message-Id: In-Reply-To: <20000703212151.B94372@argon.gryphonsoft.com> References: <200007020558.HAA71231@gits.dyndns.org> <20000703212151.B94372@argon.gryphonsoft.com> Date: Tue, 4 Jul 2000 10:11:06 +0200 To: Will Andrews , clefevre@citeweb.net From: Brad Knowles Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Cc: FreeBSD-gnats-submit@FreeBSD.ORG, 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:21 PM -0400 2000/7/3, Will Andrews wrote: > Does anyone else here think this is a good idea? If you're looking for votes, you've got mine. BTW, will this play nicely with -h? Consider me stupid if you like, but I've recently been re-re-re-re-reading the man pages for df(1), and ran across this option I had never heard of before, and I quite like the way it adaptively summarizes the information. Of course, now that you've got me started, I have to go re-re-re-re-read the du(1) man page, too. ;-) Thanks! -- These are my opinions -- not to be taken as official Skynet policy ====================================================================== Brad Knowles, || Belgacom Skynet SA/NV Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels http://www.skynet.be || Belgium To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 4:18:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-51.dsl.snfc21.pacbell.net [63.202.177.51]) by hub.freebsd.org (Postfix) with ESMTP id 0688B37B78E for ; Tue, 4 Jul 2000 04:18:13 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id EAA02484; Tue, 4 Jul 2000 04:25:26 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200007041125.EAA02484@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Michael Lucas Cc: current@freebsd.org Subject: Re: hints syntax? In-reply-to: Your message of "Mon, 03 Jul 2000 09:44:49 EDT." <200007031344.JAA34324@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 04 Jul 2000 04:25:26 -0700 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I'm having trouble with the hints file syntax for a more complicated > device, namely a sound card. > > The device shows up with the unknown driver: > > unknown7: at port 0x220-0x233,0x530-0x537,0x388-0x38f,0x330-0x333,0x53 > 8-0x539 irq 5 drq 1,0 on isa0 > > I've tried hints files with a variety of syntaxes, including listing > only the first variable (i,e., "hint.pcm.0.drq="1"), and listing them > all (hint.pcm.0.drq="1,0"). Currently I have: > > hint.pcm.0.irq="5" > hint.pcm.0.drq="1,0" > hint.pcm.0.port="0x220" > > Anyone have any suggestions? Yeah. It's a PnP device, and as such it doesn't require hints at all. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the taks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 4:55:18 2000 Delivered-To: freebsd-current@freebsd.org Received: from mimer.webgiro.com (mimer.webgiro.com [212.209.29.5]) by hub.freebsd.org (Postfix) with ESMTP id D340237B7EE for ; Tue, 4 Jul 2000 04:55:14 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by mimer.webgiro.com (Postfix, from userid 66) id A207F2DC0A; Tue, 4 Jul 2000 14:00:55 +0200 (CEST) Received: by mx.webgiro.com (Postfix, from userid 1001) id 1CE0C7817; Tue, 4 Jul 2000 13:50:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx.webgiro.com (Postfix) with ESMTP id 1646C10E17; Tue, 4 Jul 2000 13:50:53 +0200 (CEST) Date: Tue, 4 Jul 2000 13:50:51 +0200 (CEST) From: Andrzej Bialecki To: Kelly Yancey Cc: freebsd-current@FreeBSD.ORG Subject: Re: Possible bug in netinet6/in6_rmx.c ? 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 Sun, 2 Jul 2000, Kelly Yancey wrote: > On Sun, 2 Jul 2000, Andrzej Bialecki wrote: > > > Hi, > > > > While working on adding dynamic sysctls support, I discovered something > > that looks like a bug. > > > > For kernels that have both INET and INET6, three sysctl entries (rtexpire, > > rtminexpire, rtmaxcache) are registered twice - both in netinet/in_rmx.c > > and netinet6/in6_rmx.c. > > > > It seems they should be registered only once, within a section that is > > common to INET and INET6. > > > > Andrzej Bialecki > > > > I think the real problem is that the rtexpire, rtminexpire, and rtmaxcache > variables are each declared static in netinet/in_rmx.c and again in > netinet6/in6_in6_rmx.c. Do we really need separate learned route expiration > times for ip4 and ip6? If the answer is yes, then the solution should be to > move the ip6 versions under the net.inet.ip6 sysctl tree. > Otherwise, as you suggest, rtexpire and friends need to be common (maybe > directly under net.inet?) Yeah, something like that. The question is who is going to fix it? INET6 issues should probably stay in sync with other BSDs and KAME, and therefore IMHO the maintainer of inet6 code should step out and fix it... (Hello?? :) > By the way, while we are talking about sysctl, I don't suppose you would be > willing to review/commit PR 15251? It is a fairly straightforward patch that I see Jonathan Bresler took it (today). Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 5:15: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from smtp-out1.bellatlantic.net (smtp-out1.bellatlantic.net [199.45.39.156]) by hub.freebsd.org (Postfix) with ESMTP id A0E3C37B869 for ; Tue, 4 Jul 2000 05:14:59 -0700 (PDT) (envelope-from dberlin@cygnus.com) Received: from dan2.cygnus.com (adsl-138-88-47-21.bellatlantic.net [138.88.47.21]) by smtp-out1.bellatlantic.net (8.9.1/8.9.1) with SMTP id IAA21423; Tue, 4 Jul 2000 08:13:31 -0400 (EDT) X-From-Line: nobody Mon Jul 3 15:13:35 2000 To: Brian Somers Cc: Archie Cobbs , Daniel Berlin , freebsd-current@freebsd.org, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working References: <200007031725.SAA87581@hak.lan.Awfulhak.org> From: Daniel Berlin Date: 03 Jul 2000 15:13:34 -0400 In-Reply-To: Brian Somers's message of "Mon, 03 Jul 2000 18:25:34 +0100" Message-ID: <86itunyqld.fsf@dan2.cygnus.com> User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Capitol Reef) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Lines: 58 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers writes: If it helps, the only change i haven't tested (IE i've gone through the ppp/netgraph/libnetgraph revisions since 06-09) to see if it's the cause is this one: archie 2000/06/21 16:01:07 PDT Modified files: lib/libnetgraph Makefile msg.c netgraph.3 Log: - Make sure the message token returned by NgSendMsg() is non-negative - Have NgSendAsciiMsg() return the same token as NgSendMsg() - Document that NgSendMsg() and NgSendAsciiMsg() return the token - Add MLINKS for the functions defined in netgraph(3) every other change to PPP/netgraph/libnetgraph since 06-09 i've tested, and it makes no difference. > It's worth cc'ing Archie on this.... > > Archie, it seems people are having problems using PPPoE since your > ng_ether changes. Any suggestions ? > > > Brian Somers writes: > > > > > > I see literally the exact same thing. > > > > I thought it was just my screwup, as i had installed 0609-CURRENT (the > > > > latest installs don't work, at least, on my desktop, so i picked the one > > > > from my birthday :P), which worked fine, then cvsup'd, installed the new > > > > kernel, did a make world, rebooted, and pppoe no longer worked. > > > > tcpdump shows the same thing you are seeing. > > > > > > Please try the latest version of ppp. It *should* try to load the > > > ng_ether node now. This is a requirement for new kernels. > > > > > > Alternatively, kldload ng_ether before starting ppp. > > > > > > > Doesn't help. > > I've just about narrowed the problem down to a kernel change. > > I can use an old kernel, with the new modules (including ng_ether, which is only compiled into my new kernel, not my old one), and it works fine. > > I can use either version of ppp (06-09, or one from today), and it doesn't change anything (IE it either works or doesn't, depending on which kernel i use). > > I can't use a new kernel, with netgraph compiled into it (all the ones i use), with or without older modules. > > I'm about to test a new kernel, without netgraph compiled into it, with older netgraph modules. > > I'll email back how it goes. > > > > --Dan > > > > -- > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 6:42:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 168E637B747 for ; Tue, 4 Jul 2000 06:42:17 -0700 (PDT) (envelope-from sam@antinea.enst.fr) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id 778AE191DB; Tue, 4 Jul 2000 15:42:12 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id BB3BF2D9; Tue, 4 Jul 2000 15:42:11 +0200 (CEST) To: current@freebsd.org Subject: DHCP does not honor default router? Mime-Version: 1.0 (generated by tm-edit 1.5) Content-Type: text/plain; charset=US-ASCII Date: 04 Jul 2000 15:42:10 +0200 Lines: 34 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Capitol Reef" From: Samuel Tardieu Organization: Ecole Nationale Superieure des Telecommunications Reply-To: Samuel Tardieu Content-Transfer-Encoding: 8bit X-WWW: http://www.inf.enst.fr/~tardieu/ X-Mail-Processing: Sam's procmail tools X-ICQ: 21547599 Message-Id: <2000-07-04-15-42-11+trackit+sam@antinea.enst.fr> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My laptop gets a fixed IP address (137.194.161.7) using DHCP (so that I do not have to set up multiple configurations depending on the network). However, even when it receives router information, it does not update the routing table: % grep dhclient /var/log/messages Jul 4 15:08:00 trillian dhclient: New IP Address(ep0): 137.194.161.7 Jul 4 15:08:00 trillian dhclient: New Subnet Mask (ep0): 255.255.254.0 Jul 4 15:08:00 trillian dhclient: New Broadcast Address(ep0): 137.194.161.255 Jul 4 15:08:00 trillian dhclient: New Routers: 137.194.160.121 Routing tables % netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire 127.0.0.1 127.0.0.1 UH 3 123 lo0 137.194.160/23 link#5 UC 0 0 ep0 => 137.194.160.3 8:0:20:a2:8e:ac UHLW 0 3 ep0 1200 137.194.161.2 8:0:20:b0:8a:5d UHLW 0 46 ep0 1182 137.194.161.6 0:a0:24:16:e1:1c UHLW 0 0 ep0 1175 AppleTalk [...] Any idea of what went wrong? Sam -- Samuel Tardieu -- sam@inf.enst.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 7: 7: 6 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 13F5737B89C; Tue, 4 Jul 2000 07:06:58 -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 139TLa-0004YI-00; Tue, 04 Jul 2000 16:06:46 +0200 From: Sheldon Hearn To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-reply-to: Your message of "Mon, 03 Jul 2000 21:21:52 -0400." <20000703212151.B94372@argon.gryphonsoft.com> Date: Tue, 04 Jul 2000 16:06:46 +0200 Message-ID: <17501.962719606@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 03 Jul 2000 21:21:52 -0400, Will Andrews wrote: > Does anyone else here think this is a good idea? If so, I'd like to > merge this in -CURRENT and MFC before 4.1-RELEASE. It seems like a > fairly nice addition to df(1), and can be useful for system accounting. My only objection is that it seems to produce useless values. Can you think of a use for these grand totals? 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 Jul 4 8:18:18 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 8530637B990; Tue, 4 Jul 2000 08:18:09 -0700 (PDT) (envelope-from k5@cheerful.com) Received: from kyoto-tc012-p162.alpha-net.ne.jp (kyoto-tc012-p162.alpha-net.ne.jp [210.237.118.206]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id AAA05817; Wed, 5 Jul 2000 00:15:32 +0900 (JST) Received: from souffle.bogus-local.net (souffle.bogus-local.net [192.168.1.1]) by kyoto-tc012-p162.alpha-net.ne.jp (Postfix) with ESMTP id D2DE33D23; Wed, 5 Jul 2000 00:17:46 +0900 (JST) Date: Wed, 05 Jul 2000 00:17:46 +0900 Message-ID: <86lmzhgc11.wl@cheerful.com> From: FUJISHIMA Satsuki To: grog@lemis.com Cc: imp@village.org, current@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Help with Linux interpreter In-Reply-To: In your message of "Tue, 4 Jul 2000 11:06:40 +0930" <20000704110640.B94351@wantadilla.lemis.com> References: <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <20000704110640.B94351@wantadilla.lemis.com> User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (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 Hmm, all that I can tell about the matter is described in the PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=18489 I'm not sure this is the case but it looks pretty similar for me. -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 8:55: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id D3DC037B518 for ; Tue, 4 Jul 2000 08:55:02 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id AAA19885 for ; Wed, 5 Jul 2000 00:54:59 +0900 (JST) To: current@freebsd.org X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: HEADS UP: more recent KAME code will hit the tree (as of early July 2000) From: itojun@iijlab.net Date: Wed, 05 Jul 2000 00:54:59 +0900 Message-ID: <19883.962726099@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello, more recent KAME code will hit the main trunc shortly. the code in the freebsd-current tree is dated November 1999, and there are many good changes made in KAME side. there will be tons of changes in: sys/netinet sys/netinet6 and also to sync with modified headers: lib/libipsec usr.sbin/setkey usr.bin/netstat other portions may be updated shortly. please torture-test it, so that the changes can go into 4.1. there are some API changes with the commit. specifically: - some ioctls are added for IPv6. - change in ipsec policy specification language change. you may need to change setkey(8) configuration files. - change in PF_KEY socket behavior to conform to standard better. - additional member in mbuf header structure to carry around ipsec policy better. you really need to swap setkey(8) if you update to the new kernel. sorry that it took this long period to upgrade, there are couple of reasons behind this: (1) shin, who took the primary role for freebsd-kame synchronization, is now real busy doing his company's job and cannot put time for us. (2) during previous merge, there were too many cosmetic changes made. this adds many unnecessary diffs between kame tree and freebsd tree (we can't just back import them into kame tree, as we share sys/netinet6 ACROSS 4 BSD PLATFORMS). this time, i decided to put kame tree as is, decreasing # of diffs as much as possible. this should ease future upgrades. PLEASE REFRAIN FROM DOING TABIFY/UNTABIFY/YOU-THINK-IT-SMALL-KNF in kame-origin tree like sys/netinet6, they will become real PITA for future upgrades. (you don't usually untabify/tabify third-party source code, do you?) as for point (2), i'll add sys/netinet6/README which has some notices on kame tree. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 9: 6: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 E4D7237B700 for ; Tue, 4 Jul 2000 09:06:19 -0700 (PDT) (envelope-from dmmiller@cvzoom.net) Received: (qmail 697 invoked from network); 4 Jul 2000 16:06:14 -0000 Received: from acs-63-90-93-128.zoominternet.net (63.90.93.128) by ns.cvzoom.net with SMTP; 4 Jul 2000 16:06:14 -0000 Date: Tue, 4 Jul 2000 12:06:14 -0400 (EDT) From: Donn Miller X-Sender: dmmiller@acs-63-90-93-128.zoominternet.net To: current@freebsd.org Subject: problems after latest builworld & kernel... 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 cvsup'd sources as of Tue Jul 4 12:04:02 EDT 2000. When doing a reboot, I see something like syncing disks 530 530 530 530 530 530 530 530 530 530 530 530 530 giving up... followed by a Fatal Trap 12. Sometimes, I see the page fault before the part where it does a "syncing disks". Maybe it's a softupdates problem again? - Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 9:39:56 2000 Delivered-To: freebsd-current@freebsd.org Received: from salmon.hei.net (catfish.hei.net [209.222.163.132]) by hub.freebsd.org (Postfix) with ESMTP id 36D2A37B585; Tue, 4 Jul 2000 09:39:48 -0700 (PDT) (envelope-from john@hei.net) Received: from trout (trout.hei.net [209.222.163.131]) by salmon.hei.net (8.8.8/8.8.5) with SMTP id JAA04937; Tue, 4 Jul 2000 09:39:47 -0700 (PDT) Message-ID: <001c01bfe5d2$1ad012c0$83a3ded1@hei.net> From: "John Hengstler" To: , , Subject: Lucent Winmodem Date: Tue, 4 Jul 2000 09:08:34 -0700 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.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 Greetings, I know that winmodems ARE NOT supported in the general stream. However is there someone somewhere working on code that they need a tester to go with it? I noticed on the Linux lists that there is some workarounds for Lucent Winmodems (which is what I have) If there isn't please let me know so I can be a little more patient. Thanks. John Hengstler To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 9:58:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 551A737B9DD for ; Tue, 4 Jul 2000 09:58:23 -0700 (PDT) (envelope-from sam@antinea.enst.fr) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id DCD20191C0; Tue, 4 Jul 2000 18:58:21 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id 213D22D9; Tue, 4 Jul 2000 18:58:20 +0200 (CEST) To: itojun@iijlab.net Cc: current@freebsd.org Subject: Re: HEADS UP: more recent KAME code will hit the tree (as of early July 2000) References: <19883.962726099@coconut.itojun.org> Mime-Version: 1.0 (generated by tm-edit 1.5) Content-Type: text/plain; charset=US-ASCII Date: 04 Jul 2000 18:58:19 +0200 In-Reply-To: itojun@iijlab.net's message of "Wed, 05 Jul 2000 00:54:59 +0900" Lines: 11 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Capitol Reef" From: Samuel Tardieu Organization: Ecole Nationale Superieure des Telecommunications Reply-To: Samuel Tardieu Content-Transfer-Encoding: 8bit X-WWW: http://www.inf.enst.fr/~tardieu/ X-Mail-Processing: Sam's procmail tools X-ICQ: 21547599 Message-Id: <2000-07-04-18-58-19+trackit+sam@antinea.enst.fr> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "itojun" == itojun writes: itojun> - change in ipsec policy specification language change. you itojun> may need to change setkey(8) configuration files. Do you plan to integrate racoon while updating IPsec? It would be really great! (or whatever gives the same functionality) Sam -- Samuel Tardieu -- sam@inf.enst.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 10:19:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id A57B537B873 for ; Tue, 4 Jul 2000 10:19:28 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id CAA20864; Wed, 5 Jul 2000 02:17:57 +0900 (JST) To: Samuel Tardieu Cc: current@freebsd.org In-reply-to: sam's message of 04 Jul 2000 18:58:19 +0200. <2000-07-04-18-58-19+trackit+sam@antinea.enst.fr> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: HEADS UP: more recent KAME code will hit the tree (as of early July 2000) From: itojun@iijlab.net Date: Wed, 05 Jul 2000 02:17:57 +0900 Message-ID: <20862.962731077@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >itojun> - change in ipsec policy specification language change. you >itojun> may need to change setkey(8) configuration files. >Do you plan to integrate racoon while updating IPsec? It would be >really great! (or whatever gives the same functionality) it will go into ports tree. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 10:23:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 4DB6037B51D for ; Tue, 4 Jul 2000 10:23:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id UAA22524 for ; Tue, 4 Jul 2000 20:21:41 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id UAA62377 for ; Tue, 4 Jul 2000 20:23:57 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39621DA6.101C9E2F@FreeBSD.org> Date: Tue, 04 Jul 2000 20:23:50 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: current@FreeBSD.org Subject: perl 5.006 upgrade issues Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I've just noticed that parts of perl (current, cvsup'ed several hours ago) built on system with old perl version still depend on libperl.so.3: [make world] [rm /usr/lib/libperl.so.3] max@notebook$ cd /usr/ports/audio/aumix/ max@notebook$ portlint Can't load '/usr/libdata/perl/5.6.0/mach/auto/File/Glob/Glob.so' for module File ::Glob: Shared object "libperl.so.3" not found at /usr/libdata/perl/5.6.0/XSLoader.pm line 73. at /usr/libdata/perl/5.6.0/mach/File/Glob.pm line 94 Compilation failed in require at /usr/local/bin/portlint line 265. BEGIN failed--compilation aborted at /usr/local/bin/portlint line 265. It probably could be solved by building world twice, but obviously it should not be the case. Moreover it broke cross worldbuilds (i.e. building -CURRENT world on RELENG_4 system). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 11:39: 5 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 41D0337BADF; Tue, 4 Jul 2000 11:38:44 -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 LAA27760; Tue, 4 Jul 2000 11:38:43 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Tue, 04 Jul 2000 11:38:42 -0700 (PDT) Organization: Polstra & Co., Inc. From: John Polstra To: hubs@freebsd.org Subject: HEADS UP: Crypto changes coming soon Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This announcement is primarily for FreeBSD committers, CVSup users, and mirror sites. Mark Murray will soon post a companion announcement for CTM users. As a consequence of recent relaxation in US export restrictions for cryptography software, the FreeBSD project has obtained the necessary permissions to export the crypto portions of its source tree. This is a welcome development, to say the least, and we are now ready to take advantage of it. In a nutshell, our plan is to fold the crypto files into the "src-all" and "cvs-all" collections and eliminate the "cvs-crypto" collection entirely. Just to make this is perfectly clear, we will eliminate the _collection_ only -- not the files it contains. Those files will simply become a part of "src-all" and "cvs-all". These existing crypto sub-collections: src-crypto src-eBones src-secure src-sys-crypto will remain valid and unchanged, except that they will become sub-collections of "src-all" instead of the soon-to-be-defunct "cvs-all" collection. As part of this process, the crypto files on internat.FreeBSD.org will be synchronized with the now-unrestricted files on freefall. After this step there will no longer be any differences between the files on the two machines, and internat will become just another mirror site like all the others. Neither mirror sites nor CVSup users need to do anything special to prepare for this. In fact, I strongly advise all of you to leave your supfiles unchanged until the dust has settled. When we eliminate the "cvs-crypto" collection, you will start seeing warnings from CVSup saying that collection doesn't exist. These warnings will be harmless and can safely be ignored. By that time the files which formerly belonged to "cvs-crypto" will be owned by "src-all" and "cvs-all". They won't be deleted or changed. Here is how we plan to proceed: 1. Impose an enforced freeze on all of the crypto files. 2. Synch up internat with freefall. 3. Absorb the crypto files into the "src-all" and "cvs-all" collections, and eliminate the "cvs-crypto" collection. At the same time, temporarily orphan "src-crypto", "src-eBones", "src-secure", and "src-sys-crypto" so that they are no longer treated as sub-collections of "cvs-all". This latter step will have no visible effect, except that it will temporarily suppress cvsupd's mirror mode optimization for the orphaned collections. Mirror sites may see a slight increase in load because of that, but it will last only a day or two. I don't expect the increased load to be significant, because the crypto collections are relatively small. 4. Wait 24-48 hours to make sure these changes have propagated to the mirrors. 5. Reparent "src-crypto", "src-eBones", "src-secure", and "src-sys-crypto" so that they are considered to be sub-collections of "src-all". This will cause the mirror mode optimizations to kick in again. 6. Lift the freeze. After the freeze has been lifted and the dust has settled, you may remove "cvs-crypto" from your supfiles if you wish. There is no urgency surrounding that; you'll merely get harmless warnings from your CVSup updates until you do. Finally, we will: 7. Update the cvsup-mirror port, sample supfiles, and other documentation. We planned this transition as carefully as we could, and we are confident that it will go smoothly. Should a few unforseen glitches arise, please remain calm and rest assured that we perpetrators are safe and sound in a well-concealed underground bunker where you will never find us. Your friendly source-meisters, John Polstra, Peter Wemm, and Mark Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 11:55:10 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 A78A937B59B; Tue, 4 Jul 2000 11:55:02 -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 LAA27911; Tue, 4 Jul 2000 11:55:02 -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 LAA36569; Tue, 4 Jul 2000 11:55:01 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Tue, 4 Jul 2000 11:55:01 -0700 (PDT) Message-Id: <200007041855.LAA36569@vashon.polstra.com> To: hubs@freebsd.org Subject: Re: HEADS UP: Crypto changes coming soon In-Reply-To: References: Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Oops, Alan Edmonds pointed out a typo in my announcement: > src-crypto > src-eBones > src-secure > src-sys-crypto > > will remain valid and unchanged, except that they will become > sub-collections of "src-all" instead of the soon-to-be-defunct > "cvs-all" collection. ^^^^^^^ should say "cvs-crypto" Thanks, Alan! 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 Tue Jul 4 12:15:13 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 B9C3C37BA82; Tue, 4 Jul 2000 12:15:06 -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 139Y9u-0005Ik-00; Tue, 04 Jul 2000 21:15:02 +0200 From: Sheldon Hearn To: Maxim Sobolev Cc: current@FreeBSD.ORG Subject: Re: perl 5.006 upgrade issues In-reply-to: Your message of "Tue, 04 Jul 2000 20:23:50 +0300." <39621DA6.101C9E2F@FreeBSD.org> Date: Tue, 04 Jul 2000 21:15:02 +0200 Message-ID: <20381.962738102@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 04 Jul 2000 20:23:50 +0300, Maxim Sobolev wrote: > I've just noticed that parts of perl (current, cvsup'ed several hours ago) > built on system with old perl version still depend on libperl.so.3: Hi Maxim, I'm posting this for the benefit of everyone, so please don't feel that I'm singling you out. I've seen 4 other messages to which I meant to send this response in the last week. :-) Please keep in mind that the -current list is a busy list. When someone sends a HEADS UP and then changes something, please report the problem to that person directly. By all means, copy the -current list as well. Just be sensitive to the fact that lots of folks filter mail, and they'd probably appreciate reports of problems relating to their own babies being sent to them personally, rather than stumbling across them a few minutes (often hours) later in their -current mail. 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 Jul 4 12:50: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 0F3E537B99E; Tue, 4 Jul 2000 12:49:54 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-046.dialup.bignet.net [64.79.82.158]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id PAA04069; Tue, 4 Jul 2000 15:49:25 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 9DCE51987; Tue, 4 Jul 2000 15:47:25 -0400 (EDT) Date: Tue, 4 Jul 2000 15:47:25 -0400 From: Will Andrews To: Sheldon Hearn Cc: Will Andrews , FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000704154725.A445@argon.gryphonsoft.com> References: <20000703212151.B94372@argon.gryphonsoft.com> <17501.962719606@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <17501.962719606@axl.ops.uunet.co.za>; from sheldonh@uunet.co.za on Tue, Jul 04, 2000 at 04:06:46PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 04, 2000 at 04:06:46PM +0200, Sheldon Hearn wrote: > My only objection is that it seems to produce useless values. Can you > think of a use for these grand totals? They are helpful for monitoring total space; I would use them in administrative scripts to watch my space. Granted, this job could be done by shell scripts.. but I think it would be useful in df(1). -- 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 Tue Jul 4 12:56:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from piranha.amis.net (piranha.amis.net [212.18.32.3]) by hub.freebsd.org (Postfix) with ESMTP id 7FF5D37B595; Tue, 4 Jul 2000 12:56:46 -0700 (PDT) (envelope-from blaz@amis.net) Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by piranha.amis.net (Postfix) with ESMTP id CCB805D0C; Tue, 4 Jul 2000 21:56:43 +0200 (CEST) Date: Tue, 4 Jul 2000 21:56:43 +0200 (CEST) From: Blaz Zupan X-Sender: blaz@titanic.medinet.si To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-Reply-To: <20000704154725.A445@argon.gryphonsoft.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 > They are helpful for monitoring total space; I would use them in > administrative scripts to watch my space. Ok, so let's say my / is 100% full, my /usr is 50% full and my /var is 20% full. What would the total number tell me? That my file systems are 56.6% full. That tells me nothing about my root file system running out of space, so this number is completely useless to me. I have to agree with Sheldon, where is the use to this number? Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 13:35: 2 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 0AC5B37B9EF; Tue, 4 Jul 2000 13:34:52 -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 139ZOz-0005Tg-00; Tue, 04 Jul 2000 22:34:41 +0200 From: Sheldon Hearn To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-reply-to: Your message of "Tue, 04 Jul 2000 15:47:25 -0400." <20000704154725.A445@argon.gryphonsoft.com> Date: Tue, 04 Jul 2000 22:34:41 +0200 Message-ID: <21059.962742881@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 04 Jul 2000 15:47:25 -0400, Will Andrews wrote: > On Tue, Jul 04, 2000 at 04:06:46PM +0200, Sheldon Hearn wrote: > > My only objection is that it seems to produce useless values. Can you > > think of a use for these grand totals? > > They are helpful for monitoring total space; I would use them in > administrative scripts to watch my space. Okay, then. Let me be more specific. How is the notion of "total space" useful? :-) 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 Jul 4 13:39:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id 5A57E37BB0A; Tue, 4 Jul 2000 13:39:23 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-046.dialup.bignet.net [64.79.82.158]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id QAA10728; Tue, 4 Jul 2000 16:38:59 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 3A7D81987; Tue, 4 Jul 2000 16:37:03 -0400 (EDT) Date: Tue, 4 Jul 2000 16:37:03 -0400 From: Will Andrews To: Sheldon Hearn Cc: Will Andrews , FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000704163703.E445@argon.gryphonsoft.com> References: <20000704154725.A445@argon.gryphonsoft.com> <21059.962742881@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <21059.962742881@axl.ops.uunet.co.za>; from sheldonh@uunet.co.za on Tue, Jul 04, 2000 at 10:34:41PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 04, 2000 at 10:34:41PM +0200, Sheldon Hearn wrote: > Okay, then. Let me be more specific. How is the notion of "total > space" useful? :-) Tells you when it's time to get new hard drives? I guess the originator of the PR should provide a reason. =\ -- 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 Tue Jul 4 13:44: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id E74DF37B7EF for ; Tue, 4 Jul 2000 13:44:00 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id NAA05245 for ; Tue, 4 Jul 2000 13:44:00 -0700 Date: Tue, 4 Jul 2000 13:44:01 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: current@freebsd.org Subject: fwiw, release for -stable (alpha) 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 Making docs... ===> Extracting for docproj-1.1 >> No MD5 checksum file. ===> Patching for docproj-1.1 ===> Configuring for docproj-1.1 ===> Installing for docproj-1.1 ===> docproj-1.1 depends on executable: instant - not found ===> Verifying install for instant in /usr/ports/textproc/sgmlformat Error: you don't have the right version of perl in /usr/bin. All of this looks sort of busted to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 14:18:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from peedub.muc.de (p3E9B8F1F.dip.t-dialin.net [62.155.143.31]) by hub.freebsd.org (Postfix) with ESMTP id 68B8A37B54B for ; Tue, 4 Jul 2000 14:18:42 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id XAA01316; Tue, 4 Jul 2000 23:12:01 +0200 (CEST) Message-Id: <200007042112.XAA01316@peedub.muc.de> X-Mailer: exmh version 2.1.1 10/15/1999 To: Julian Elischer Cc: freebsd-current@FreeBSD.ORG Subject: Re: PPPoE not working Reply-To: Gary Jennejohn In-reply-to: Your message of "Tue, 04 Jul 2000 00:32:30 +0200." <39611462.15FB7483@elischer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 04 Jul 2000 23:12:01 +0200 From: Gary Jennejohn Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Julian Elischer writes: > Gary Jennejohn wrote: > > > > > > > > Doesn't help. ng_ether.ko was being automatically loaded before your > > change. Loading it before starting ppp also doesn't help. > > > > I'm beginning to think that the bug is in NETGRAPH. > > I agree. to be more precise, between the new ng_ether code, > and the ng_pppoe code. > > running the pppoe node with the AAA code enabled (check the file) > might lead to some clues. OK, I took your advice. Here's waht comes out: Jul 4 22:36:42 peedub /kernel: pppoe: ng_pppoe_constructor Jul 4 22:36:42 peedub /kernel: pppoe: ng_pppoe_newhook Jul 4 22:36:42 peedub /kernel: pppoe: ng_pppoe_newhook Jul 4 22:36:42 peedub /kernel: pppoe: ng_pppoe_rcvmsg Jul 4 22:36:42 peedub /kernel: pppoe: pppoe_start Jul 4 22:36:42 peedub /kernel: pppoe: init_tags Jul 4 22:36:42 peedub /kernel: pppoe: insert_tag Jul 4 22:36:42 peedub /kernel: pppoe: insert_tag Jul 4 22:36:42 peedub /kernel: pppoe: make_packet Jul 4 22:36:42 peedub /kernel: pppoe: sendpacket Jul 4 22:36:44 peedub /kernel: pppoe: pppoe_ticker Jul 4 22:36:47 peedub /kernel: pppoe: ng_pppoe_disconnect The timer which is set in sendpacket triggers. It looks like the packets which come in on my ed0 aren't being sent to ng_pppoe. The funny thing is that the packets are going _out_ on ed0. I spent an hour or so looking at the code, but I can't wrap my mind around it in such a short time. --- Gary Jennejohn / garyj@muc.de gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 14:25:27 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 0E2F637B848; Tue, 4 Jul 2000 14:25: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 OAA11332; Tue, 4 Jul 2000 14:25:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 4 Jul 2000 14:25:24 -0700 (PDT) From: Kris Kennaway To: Matthew Jacob Cc: current@freebsd.org Subject: Re: fwiw, release for -stable (alpha) 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, 4 Jul 2000, Matthew Jacob wrote: > > Making docs... > ===> Extracting for docproj-1.1 > >> No MD5 checksum file. > ===> Patching for docproj-1.1 > ===> Configuring for docproj-1.1 > ===> Installing for docproj-1.1 > ===> docproj-1.1 depends on executable: instant - not found > ===> Verifying install for instant in /usr/ports/textproc/sgmlformat > Error: you don't have the right version of perl in /usr/bin. > > > All of this looks sort of busted to me. This is clearly a ports problem, not a -current one..actually I suspect it's already fixed - are you sure you have an up-to-date ports collection? 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 Jul 4 14:27: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 0BE0D37B68F; Tue, 4 Jul 2000 14:27:02 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id OAA05376; Tue, 4 Jul 2000 14:26:58 -0700 Date: Tue, 4 Jul 2000 14:26:58 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Kris Kennaway Cc: current@FreeBSD.org Subject: Re: fwiw, release for -stable (alpha) 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, 4 Jul 2000, Kris Kennaway wrote: > On Tue, 4 Jul 2000, Matthew Jacob wrote: > > > > > Making docs... > > ===> Extracting for docproj-1.1 > > >> No MD5 checksum file. > > ===> Patching for docproj-1.1 > > ===> Configuring for docproj-1.1 > > ===> Installing for docproj-1.1 > > ===> docproj-1.1 depends on executable: instant - not found > > ===> Verifying install for instant in /usr/ports/textproc/sgmlformat > > Error: you don't have the right version of perl in /usr/bin. > > > > > > All of this looks sort of busted to me. > > This is clearly a ports problem, not a -current one..actually I suspect > it's already fixed - are you sure you have an up-to-date ports collection? Well, I'd just done a complete cvsup to (finally) include docs...... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 14:42:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 39EF537B5EA for ; Tue, 4 Jul 2000 14:42:35 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.7/nospam) with UUCP id XAA09730 for freebsd-current@FreeBSD.ORG; Tue, 4 Jul 2000 23:42:28 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 659D68862; Tue, 4 Jul 2000 23:28:07 +0200 (CEST) Date: Tue, 4 Jul 2000 23:28:07 +0200 From: Ollivier Robert To: "FreeBSD Current Users' list" Subject: IPSEC problem when compiling kernel Message-ID: <20000704232807.A90656@keltia.freenix.fr> Mail-Followup-To: FreeBSD Current Users' list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Operating-System: FreeBSD 5.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG CURRENT from 3 hours ago with this options INET6 options IPSEC options IPSEC_ESP options IPSEC_IPV6FWD cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -g -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../netinet6/ip6_forward.c ../../netinet6/ip6_forward.c: In function `ip6_forward': ../../netinet6/ip6_forward.c:108: warning: implicit declaration of function `ipsec6_in_reject' ../../netinet6/ip6_forward.c:109: `ipsec6stat' undeclared (first use in this function) ../../netinet6/ip6_forward.c:109: (Each undeclared identifier is reported only once ../../netinet6/ip6_forward.c:109: for each function it appears in.) ../../netinet6/ip6_forward.c:154: warning: implicit declaration of function `ipsec6_getpolicybyaddr' ../../netinet6/ip6_forward.c:154: warning: assignment makes pointer from integer without a cast ../../netinet6/ip6_forward.c:239: warning: implicit declaration of function `ipsec6_output_tunnel' ../../netinet6/ip6_forward.c:380: warning: assignment makes pointer from integer without a cast ../../netinet6/ip6_forward.c:382: warning: implicit declaration of function `ipsec6_hdrsiz' *** Error code 1 ipsec6stat is a sysctl variable defined in netinet6/ipsec.c but I guess there is a definition missing somewhere. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 5.0-CURRENT #80: Sun Jun 4 22:44:19 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 14:48:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 872F937BB34 for ; Tue, 4 Jul 2000 14:48:14 -0700 (PDT) (envelope-from robd@gmx.net) Received: (qmail 5148 invoked by uid 0); 4 Jul 2000 21:48:04 -0000 Received: from pc19ea39b.dip0.t-ipconnect.de (HELO gmx.net) (193.158.163.155) by mail.gmx.net with SMTP; 4 Jul 2000 21:48:04 -0000 Message-ID: <39625BBD.9D371774@gmx.net> Date: Tue, 04 Jul 2000 23:48:45 +0200 From: Robert Drehmel X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.0-RELEASE i386) MIME-Version: 1.0 To: Sheldon Hearn Cc: Will Andrews , current@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does References: <21059.962742881@axl.ops.uunet.co.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 04 Jul 2000 22:34:41 +0200, Sheldon Hearn wrote: > > They are helpful for monitoring total space; I would use them in > > administrative scripts to watch my space. > > Okay, then. Let me be more specific. How is the notion of "total > space" useful? :-) exactly. It will be more of statistical value rather than really useful, I think. But I don't see a reason not to merge it, anyway. -- Robert Drehmel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 14:50:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id D548737B8C5 for ; Tue, 4 Jul 2000 14:50:03 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.7/nospam) with UUCP id XAA10067 for freebsd-current@FreeBSD.ORG; Tue, 4 Jul 2000 23:49:59 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 2C3E3885B; Tue, 4 Jul 2000 23:46:47 +0200 (CEST) Date: Tue, 4 Jul 2000 23:46:47 +0200 From: Ollivier Robert To: "FreeBSD Current Users' list" Subject: IPv6 IPSEC (patch included) Message-ID: <20000704234647.A90975@keltia.freenix.fr> Mail-Followup-To: FreeBSD Current Users' list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Operating-System: FreeBSD 5.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Following my mail about kernel breakage in ip6_forward.c, here is a fix: cvs server: Diffing . Index: ip6_forward.c =================================================================== RCS file: /spare/FreeBSD-current/src/sys/netinet6/ip6_forward.c,v retrieving revision 1.7 diff -u -r1.7 ip6_forward.c --- ip6_forward.c 2000/07/04 16:35:09 1.7 +++ ip6_forward.c 2000/07/04 21:45:37 @@ -58,6 +58,7 @@ #ifdef IPSEC_IPV6FWD #include +#include #include #endif /* IPSEC_IPV6FWD */ -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 5.0-CURRENT #80: Sun Jun 4 22:44:19 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 15:31: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 30A5F37B8C5 for ; Tue, 4 Jul 2000 15:31:04 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 8AF0B192D; Wed, 5 Jul 2000 00:31:59 +0200 (CEST) Date: Wed, 5 Jul 2000 00:31:59 +0200 From: Stijn Hoop To: current@freebsd.org Subject: world broken? Message-ID: <20000705003159.A73558@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Trying to build world, source just cvssup'ed, clean builddir and I get this error: Script started on Wed Jul 5 00:14:00 2000 firsa# make buildworld [...snip...] -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- [...snip...] cc -O -pipe -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr/obj/usr/src/i386/usr\" -I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295 -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/config -DTARGET_NAME=\"i386-unknown-freebsd\" -DIN_GCC -I/usr/obj/usr/src/i386/usr/include -c /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c -o fold-const.o /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c: In function `add_double': /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c:245: argument `hv' doesn't match prototype /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/rtl.h:1576: prototype declaration /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c:252: invalid type argument of `unary *' *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc/cc_int. *** Error code 1 Stop in /usr/src/gnu/usr.bin/cc. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. firsa# Script done on Wed Jul 5 00:23:08 2000 This is on FreeBSD 5.0-20000701-CURRENT #0: Sat Jul 1 11:53:52 GMT 2000 (a -current snapshot from current.FreeBSD.org, GENERIC kernel). Anyone know what's up? --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 15:53:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 27E4337B6D1; Tue, 4 Jul 2000 15:53:16 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 4917E123; Tue, 4 Jul 2000 15:53:14 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id PAA17728; Tue, 4 Jul 2000 15:53:13 -0700 (PDT) Message-ID: <39626AD8.4C7FAF20@cup.hp.com> Date: Tue, 04 Jul 2000 15:53:12 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.ORG Cc: John Baldwin , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> <20000702134944.D96427@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > > They should be stated because they need to be moved > linux - Linux binary compat > Also buses > isa - there is some MI stuff in here Good point. For the linuxulator this has been discussed before and something in the line off... sys/$MACHINE/compat/linux // MD part sys/$MACHINE/compat/others sys/compat/linux // MI part sys/compat/others ...came out of it. This also matches where the Linuxulator has its sysctl variables (= compat.linux.*) and where other emulators are expected to have their variables. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 16:19: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 8C46137B952; Tue, 4 Jul 2000 16:18:39 -0700 (PDT) (envelope-from grog@wantadilla.lemis.com) Received: (from grog@localhost) by wantadilla.lemis.com (8.9.3/8.9.3) id IAA97287; Wed, 5 Jul 2000 08:48:20 +0930 (CST) (envelope-from grog) Date: Wed, 5 Jul 2000 08:48:20 +0930 From: Greg Lehey To: FUJISHIMA Satsuki Cc: imp@village.org, current@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Help with Linux interpreter Message-ID: <20000705084820.J94351@wantadilla.lemis.com> References: <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <20000704110640.B94351@wantadilla.lemis.com> <86lmzhgc11.wl@cheerful.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <86lmzhgc11.wl@cheerful.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 Wednesday, 5 July 2000 at 0:17:46 +0900, FUJISHIMA Satsuki wrote: > Hmm, all that I can tell about the matter is described in the PR: > http://www.freebsd.org/cgi/query-pr.cgi?pr=18489 > > I'm not sure this is the case but it looks pretty similar for me. Hmm. $ brandelf -t Linux acroread $ hd acroread|head -1 00000000 7f 45 4c 46 01 01 01 03 46 72 65 65 42 53 44 00 |.ELF....FreeBSD.| On the other machine, I get: $ hd acroread|head -1 00000000 7f 45 4c 46 01 01 01 03 4c 69 6e 75 78 00 00 00 |.ELF....Linux...| $ brandelf -t FreeBSD acroread $ hd acroread|head -1 00000000 7f 45 4c 46 01 01 01 09 4c 69 6e 75 78 00 00 00 |.ELF....Linux...| Repeating this last brandelf invocation (-t FreeBSD) with ktrace, I see: 2586 brandelf NAMI "acroread" 2586 brandelf RET open 3 2586 brandelf CALL sigprocmask(0x1,0x28060040,0x28060050) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL sigprocmask(0x3,0x28060050,0) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL read(0x3,0xbfbfefe4,0x10) 2586 brandelf GIO fd 3 read 16 bytes "\^?ELF\^A\^A\^A Linux\0\0\0" 2586 brandelf RET read 16/0x10 2586 brandelf CALL sigprocmask(0x1,0x28060040,0x28060050) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL sigprocmask(0x3,0x28060050,0) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL sigprocmask(0x1,0x28060040,0x28060050) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL sigprocmask(0x3,0x28060050,0) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL lseek(0x3,0,0,0,0) 2586 brandelf RET lseek 0 2586 brandelf CALL sigprocmask(0x1,0x28060040,0x28060050) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL sigprocmask(0x3,0x28060050,0) 2586 brandelf RET sigprocmask 0 2586 brandelf CALL write(0x3,0xbfbfefe4,0x10) 2586 brandelf GIO fd 3 wrote 16 bytes "\^?ELF\^A\^A\^A Linux\0\0\0" 2586 brandelf RET write 16/0x10 It looks as if brandelf is broke. 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 Tue Jul 4 16:58:29 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 BFE8137BA82 for ; Tue, 4 Jul 2000 16:58:25 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id QAA06372; Tue, 4 Jul 2000 16:57:44 -0700 (PDT) From: Archie Cobbs Message-Id: <200007042357.QAA06372@bubba.whistle.com> Subject: Re: PPPoE not working In-Reply-To: <200007031725.SAA87581@hak.lan.Awfulhak.org> from Brian Somers at "Jul 3, 2000 06:25:34 pm" To: brian@Awfulhak.org (Brian Somers) Date: Tue, 4 Jul 2000 16:57:44 -0700 (PDT) Cc: dberlin@cygnus.com (Daniel Berlin), archie@whistle.com (Archie Cobbs), dan@cgsoftware.com (Daniel Berlin), freebsd-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 Brian Somers writes: > Archie, it seems people are having problems using PPPoE since your > ng_ether changes. Any suggestions ? Unfortunately I have limited email contact righ tnow.. but a couple of things come to mind.. - Is is possible to get a tcpdump of before and after? One thing I could imagine is that the new ng_ether may behave differently than the old code with respect to overwriting the source Ethernet address (the new code shouldn't unless the driver does). But I don't think there should be any difference. 'tcpdump not ip' should tell. - Regarding the libnetgraph change, this supposedly fixed a bug, so possibly the code in ppp(8) is relying on broken behavior? Where is this code anyway, I don't see a pppoe.c in usr.sbin/ppp.. I can take a look. -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 Tue Jul 4 17:14: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id CDFD937BB1E for ; Tue, 4 Jul 2000 17:13:52 -0700 (PDT) (envelope-from grog@wantadilla.lemis.com) Received: (from grog@localhost) by wantadilla.lemis.com (8.9.3/8.9.3) id JAA97527; Wed, 5 Jul 2000 09:42:17 +0930 (CST) (envelope-from grog) Date: Wed, 5 Jul 2000 09:42:17 +0930 From: Greg Lehey To: Samuel Tardieu Cc: current@FreeBSD.ORG Subject: Re: DHCP does not honor default router? Message-ID: <20000705094217.C97425@wantadilla.lemis.com> References: <2000-07-04-15-42-11+trackit+sam@antinea.enst.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <2000-07-04-15-42-11+trackit+sam@antinea.enst.fr> 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 Tuesday, 4 July 2000 at 15:42:10 +0200, Samuel Tardieu wrote: > My laptop gets a fixed IP address (137.194.161.7) using DHCP (so that > I do not have to set up multiple configurations depending on the > network). > > However, even when it receives router information, it does not update > the routing table: > >> grep dhclient /var/log/messages > Jul 4 15:08:00 trillian dhclient: New IP Address(ep0): 137.194.161.7 > Jul 4 15:08:00 trillian dhclient: New Subnet Mask (ep0): 255.255.254.0 > Jul 4 15:08:00 trillian dhclient: New Broadcast Address(ep0): 137.194.161.255 > Jul 4 15:08:00 trillian dhclient: New Routers: 137.194.160.121 > > Routing tables > >> netstat -rn > Routing tables > > Internet: > Destination Gateway Flags Refs Use Netif Expire > 127.0.0.1 127.0.0.1 UH 3 123 lo0 > 137.194.160/23 link#5 UC 0 0 ep0 => > 137.194.160.3 8:0:20:a2:8e:ac UHLW 0 3 ep0 1200 > 137.194.161.2 8:0:20:b0:8a:5d UHLW 0 46 ep0 1182 > 137.194.161.6 0:a0:24:16:e1:1c UHLW 0 0 ep0 1175 > > AppleTalk > [...] > > Any idea of what went wrong? Not really, but FWIW I've seen this too. 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 Tue Jul 4 17:43:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id 8B81737B569 for ; Tue, 4 Jul 2000 17:43:42 -0700 (PDT) (envelope-from DougB@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id RAA04271; Tue, 4 Jul 2000 17:42:05 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <3962845C.F195E50D@gorean.org> Date: Tue, 04 Jul 2000 17:42:04 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0702 i386) X-Accept-Language: en MIME-Version: 1.0 To: Greg Lehey Cc: Samuel Tardieu , current@FreeBSD.ORG Subject: Re: DHCP does not honor default router? References: <2000-07-04-15-42-11+trackit+sam@antinea.enst.fr> <20000705094217.C97425@wantadilla.lemis.com> 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: > > On Tuesday, 4 July 2000 at 15:42:10 +0200, Samuel Tardieu wrote: > > My laptop gets a fixed IP address (137.194.161.7) using DHCP (so that > > I do not have to set up multiple configurations depending on the > > network). > > > > However, even when it receives router information, it does not update > > the routing table: I updated my dhclient script to handle this case, since it happens on the roadrunner network as well. I can send you the patch if you want, but I have a lot of other hacks in my script so it might be confusing. Starting right around line 106 of the default script, I have: if [ x$old_ip_address = x ] || [ x$old_ip_address != x$new_ip_address ] || \ [ x$reason = xBOUND ] || [ x$reason = xREBOOT ]; then # Added: if [ -z "$old_routers"]; then # Assume worst case scenario till we know better $LOGGER "Doing worst case scenario route flush" if [ x$reason = xBOUND ]; then arp -a -d route flush fi fi # End of added stuff ifconfig $interface inet $new_ip_address $new_netmask_arg \ Prior to adding that bit I used to get hung up every time my new IP was on a different network segment, with that and a few other hacks I've had clear sailing for almost a year. FWIW, this is one area where solaris has it better than we do. I can, while telnet'ed into a solaris machine do: route add default 22.33.44.1 route delete default 22.33.55.1 and have it use the old default right up until I delete it, then the new default instantly takes effect. Assuming I have a path to the machine through the new default, I never lose connectivity. Unless I'm missing something, freebsd doesn't allow this. While I'm at it, I prefer their method of aliasing IP's to a nic as well, but I digress. :) Hope this helps, Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 19:58: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from bsdhome.dyndns.org (rdu162-228-096.nc.rr.com [24.162.228.96]) by hub.freebsd.org (Postfix) with ESMTP id 1AAC237BB69 for ; Tue, 4 Jul 2000 19:57:49 -0700 (PDT) (envelope-from bsd@bsdhome.com) Received: from vger.bsdhome.com (vger [192.168.220.2]) by bsdhome.dyndns.org (8.9.3/8.9.3) with ESMTP id WAA46699; Tue, 4 Jul 2000 22:57:41 -0400 (EDT) (envelope-from bsd@bsdhome.com) Received: from localhost (bsd@localhost) by vger.bsdhome.com (8.9.3/8.9.3) with ESMTP id WAA00321; Tue, 4 Jul 2000 22:57:40 -0400 (EDT) (envelope-from bsd@vger.bsdhome.com) Date: Tue, 4 Jul 2000 22:57:40 -0400 (EDT) From: Brian Dean To: Doug Barton Cc: Greg Lehey , Samuel Tardieu , current@FreeBSD.ORG Subject: Re: DHCP does not honor default router? In-Reply-To: <3962845C.F195E50D@gorean.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 Tue, 4 Jul 2000, Doug Barton wrote: > I updated my dhclient script to handle this case, since it > happens on the roadrunner network as well. I can send you the patch > if you want, but I have a lot of other hacks in my script so it > might be confusing. Starting right around line 106 of the default > script, I have: A hook is already provided for this kind of thing. You can create a separate program called /etc/dhclient-exit-hooks, which get run at various times by dhclient-script. Since /etc/dhclient-exit-hooks is sourced by /sbin/dhclient-script, you have access to all of its internal variables, such as '$reason', '$old_ip_address', '$new_ip_address', etc. Thus, you don't have to maintain a separate /sbin/dhclient-script like you do now. Also, if you run a firewall, you should re-instantiate your rules with the new IP address here as well. Mine (which is still evolving) looks something like this: ------------------------------------------------------------ #!/bin/sh # # File: /etc/dhclient-exit-hooks # # redirect to syslog logger="/usr/bin/logger -t dhclient-exit-hooks -i" checkit ( ) { /bin/echo "REASON=$reason OLDIP=$old_ip_address NEWIP=$new_ip_address" if [ -z "$old_ip_address" ] || [ -z "$new_ip_address" ]; then /bin/echo "old and/or new is empty" elif [ "$old_ip_address" != "$new_ip_address" ]; then /bin/echo "flushing ARP tables" /usr/sbin/arp -d -a /bin/echo "re-establishing firewall rules" . /etc/rc.firewall.local fi } checkit | $logger ------------------------------------------------------------ I notice you also flush the routing table. Is that necessary - it appears that dhclient-script does this when it's needed? I found this exit hook feature by looking at the source for dhclient-script, but, oddly enough, it is even documented in the man page. -Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 20:46:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id 104C337B730 for ; Tue, 4 Jul 2000 20:46:17 -0700 (PDT) (envelope-from nakaji@tutrp.tut.ac.jp) Received: from nakaji.tutrp.tut.ac.jp (localhost.tutrp.tut.ac.jp [127.0.0.1]) by nakaji.tutrp.tut.ac.jp (8.9.3/3.7W) with ESMTP id MAA19817 for ; Wed, 5 Jul 2000 12:46:12 +0900 (JST) To: freebsd-current@freebsd.org Subject: fetch is strange MIME-Version: 1.0 (generated by REMI 1.14.1 - =?ISO-8859-4?Q?=22Mushigawa=F2?= =?ISO-8859-4?Q?sugi=22?=) Content-Type: text/plain; charset=US-ASCII From: NAKAJI Hiroyuki Date: 05 Jul 2000 12:46:11 +0900 Message-ID: <87n1jxfddo.fsf@nakaji.tutrp.tut.ac.jp> Lines: 15 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) REMI/1.14.1 (=?ISO-8859-4?Q?Mushigawa=F2sugi?=) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I made world yesterday. $ uname -a FreeBSD nakaji.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Jul 4 12:15:52 JST 2000 root@nakaji.tutrp.tut.ac.jp:/home2/obj/usr/src/sys/NAKAJI i386 The problem is that the report of '/usr/bin/fetch' is strange. For example, $ fetch http://www.samba.gr.jp/project/samba-ja/index.html.en Receiving index.html.en -1 bytes transferred in 0.4 seconds (-2.28 Bps) -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 20:56:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from propylaea.anduin.com (propylaea.anduin.com [205.179.178.82]) by hub.freebsd.org (Postfix) with ESMTP id C6E6737B7E0 for ; Tue, 4 Jul 2000 20:56:12 -0700 (PDT) (envelope-from dan@cgsoftware.com) Received: from localhost (dan@localhost) by propylaea.anduin.com (8.9.3/8.9.3) with ESMTP id UAA28333; Tue, 4 Jul 2000 20:55:53 -0700 Date: Tue, 4 Jul 2000 20:55:53 -0700 (PDT) From: Daniel Berlin X-Sender: dan@propylaea.anduin.com To: archie@whistler.com Cc: freebsd-current@freebsd.org Subject: PPPoE stuff 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 We have a winner, you were right. The source address is getting overwritten with 00's. How do i fix this? --Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 22:25: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 8254E37BC15; Tue, 4 Jul 2000 22:25:03 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo.feral.com (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id WAA06231; Tue, 4 Jul 2000 22:25:00 -0700 Date: Tue, 4 Jul 2000 22:25:01 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Kris Kennaway Cc: current@FreeBSD.org Subject: Re: fwiw, release for -stable (alpha) 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 And for -stable (instead of -current); ===> Creating README.html for jpeg-6b ===> graphics/juno-2 "Makefile", line 60: Malformed conditional (empty(TARGET)) "Makefile", line 60: Missing dependency operator "Makefile", line 64: if-less endif "Makefile", line 64: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /space/release/usr/ports/graphics. *** Error code 1 Stop in /space/release/usr/ports. *** Error code 1 Stop in /usr/src/release. [ yeah, more ports breakage ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 23: 1:29 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id E24DD37B71B for ; Tue, 4 Jul 2000 23:01:15 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id PAA01757; Wed, 5 Jul 2000 15:01:10 +0900 (JST) Received: from unknown(133.253.122.1) by kbtfw.kubota.co.jp via smap (V4.2) id xma001420; Wed, 5 Jul 00 15:00:37 +0900 Received: from jkpc15.tk.kubota.co.jp ([192.168.7.250]) by kbtmx.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id PAA04851; Wed, 5 Jul 2000 15:00:34 +0900 (JST) Received: from localhost (localhost.ttr.kubota.co.jp [127.0.0.1]) by jkpc15.tk.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id OAA00588; Wed, 5 Jul 2000 14:59:16 +0900 (JST) To: mark@grondar.za Cc: current@FreeBSD.ORG Subject: Re: randomdev and APM. Not working together? In-Reply-To: <200007010649.IAA13685@grimreaper.grondar.za> References: <20000701104544S.haro@tk.kubota.co.jp> <200007010649.IAA13685@grimreaper.grondar.za> X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Wed_Jul__5_14:55:10_2000_809)--" Content-Transfer-Encoding: 7bit Message-Id: <20000705145916I.haro@tk.kubota.co.jp> Date: Wed, 05 Jul 2000 14:59:16 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 264 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----Next_Part(Wed_Jul__5_14:55:10_2000_809)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mark, I'm sorry for the delay. I was out of town for few days.. From: Mark Murray Date: Sat, 01 Jul 2000 08:49:50 +0200 ::> If I use randomdev for ssh, then APM seem to have stopped working. :: ::This is wierd; I am running this randomdev on my Libretto, (I wrote ::it there), and it and APM are both fine. :: ::> Am I doing something wrong? :: ::No - you are doing everything right. :: ::Can you do any debugging on this? Are you able perhaps to trace the ::kernel and see where it fails? Ok. I'll see what I can do. BTW, I've taken a diff of dmesg output between randomdev loaded and unloaded. As you can see, (1)outcome of "Calibrating clock" differs and (2)device attaching order is some what different. I'll let you know, if I can find anthing. Thank you, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kubota.co.jp ----Next_Part(Wed_Jul__5_14:55:10_2000_809)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="dmesg.diffs" --- dmesg.no_randomdev Wed Jul 5 14:27:12 2000 +++ dmesg.randomdev Wed Jul 5 14:19:13 2000 @@ -3,18 +3,17 @@ The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #2: Fri Jun 30 13:08:01 JST 2000 haro@jkpc15.ttr.kubota.co.jp:/usr/src/sys/compile/JKPC15 -Calibrating clock(s) ... TSC clock: 266597235 Hz, i8254 clock: 1193106 Hz -CLK_USE_I8254_CALIBRATION not specified - using default frequency +Calibrating clock(s) ... TSC clock: 266597855 Hz, i8254 clock: 1181176 Hz +1181176 Hz differs from default of 1193182 Hz by more than 1% Timecounter "i8254" frequency 1193182 Hz -CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium II/Pentium II Xeon/Celeron (266.62-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x650 Stepping = 0 Features=0x183f9ff real memory = 134152192 (131008K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) -0x0042f000 - 0x07fdbfff, 129683456 bytes (31661 pages) -avail memory = 126369792 (123408K bytes) +0x00436000 - 0x07fdbfff, 129654784 bytes (31654 pages) +avail memory = 126341120 (123380K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fdb70 bios32: Entry = 0xfdb80 (c00fdb80) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xdba1 @@ -23,21 +22,19 @@ pnpbios: Event flag at 4ed Other BIOS signatures found: ACPI: 000fa1a0 -Preloaded elf kernel "kernel" at 0xc0416000. +Preloaded elf kernel "kernel" at 0xc041d000. +Preloaded elf module "randomdev.ko" at 0xc041d0a8. +random: +nulldev: mem: Pentium Pro MTRR support enabled -nulldev: md0: Malloc disk Creating DISK md0 Math emulator present -npx0: on motherboard -npx0: INT 16 interface -apm0: on motherboard -apm: found APM BIOS v1.2, connected at v1.2 ACPI: Found ACPI BIOS data at 0xc00fa1a0 (, RSDT@7ff0000) acpi0: on motherboard -acpi0: ADDR RANGE 7ff0000 8000 (mapped 0xc7b94000) -acpi0: ADDR RANGE 7ff8000 8000 (mapped 0xc7b9c000) +acpi0: ADDR RANGE 7ff0000 8000 (mapped 0xc7b91000) +acpi0: ADDR RANGE 7ff8000 8000 (mapped 0xc7b99000) acpi0: RSDT have 1 entries acpi0: RSDT entry0 FACP acpi0: FACP found @@ -53,7 +50,9 @@ acpi0: acpi_io_gpe0_enable(0) = (0) acpi0: acpi_io_pm1_control(0) = (1403, 0) acpi0: acpi_io_pm2_control(0) = (0) -acpi0: acpi_io_pm_timer(0) = (fa42ff) +acpi0: acpi_io_pm_timer(0) = (796fc8) +npx0: on motherboard +npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x8086, dev=0x7192, revid=0x02 class=06-00-00, hdrtype=0x00, mfdev=0 @@ -175,6 +174,17 @@ uhub0: port 1 power on failed, IOERROR uhub0: port 2 power on failed, IOERROR pci0: (vendor=0x8086, dev=0x7113) at 7.3 +ex_isa_identify() +ata-: ata0 exists, using next available unit number +ata-: ata1 exists, using next available unit number +Trying Read_Port at 203 +Trying Read_Port at 243 +Trying Read_Port at 283 +Trying Read_Port at 2c3 +Trying Read_Port at 303 +Trying Read_Port at 343 +Trying Read_Port at 383 +Trying Read_Port at 3c3 pnpbios: 16 devices, largest 257 bytes PNP0c01: adding fixed memory32 range 0-0x9fbff, size=0x9fc00 PNP0c01: adding fixed memory32 range 0x9fc00-0x9ffff, size=0x400 @@ -278,49 +288,10 @@ PNP0a03: adding io range 0xcf8-0xcff, size=0x8, align=0x1 PNP0a03: end config pnpbios: handle 16 device ID PNP0a03 (030ad041) -Trying Read_Port at 203 -Trying Read_Port at 243 -Trying Read_Port at 283 -Trying Read_Port at 2c3 -Trying Read_Port at 303 -Trying Read_Port at 343 -Trying Read_Port at 383 -Trying Read_Port at 3c3 -ata-: ata0 exists, using next available unit number -ata-: ata1 exists, using next available unit number -vga-: vga0 exists, using next available unit number sc-: sc0 exists, using next available unit number -ex_isa_identify() +vga-: vga0 exists, using next available unit number isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices -vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 -fb0: vga0, vga, type:VGA (5), flags:0x7007f -fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 -fb0: init mode:24, bios mode:3, current mode:24 -fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k -vga0: vga: WARNING: video mode switching is not fully supported on this adapter -VGA parameters upon power-up -50 18 10 00 00 00 03 00 02 e7 a3 4f 67 8f 6b 1c -24 b3 00 6f 0d 0e 00 00 07 80 49 8f 8f 28 1f 47 -6d a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c -3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff -VGA parameters in BIOS for mode 24 -50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 -bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 -b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c -3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff -EGA/VGA parameters to be used for mode 24 -50 18 10 00 00 00 03 00 02 e7 a3 4f 67 8f 6b 1c -24 b3 00 6f 0d 0e 00 00 07 80 49 8f 8f 28 1f 47 -6d a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c -3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff -atkbd: the current kbd controller command byte 0047 -atkbd: keyboard ID 0x41ab (2) -kbdc: RESET_KBD return code:00fa -kbdc: RESET_KBD status:00aa -sc0: on isa0 -sc0: VGA <16 virtual consoles, flags=0x200> -sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) 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 @@ -328,6 +299,10 @@ isa0: <@@@0000> found at port 0x170 irq 15 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 +atkbd: the current kbd controller command byte 0047 +atkbd: keyboard ID 0x41ab (2) +kbdc: RESET_KBD return code:00fa +kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: current command byte:0047 @@ -347,9 +322,30 @@ psm0: model GlidePoint, device ID 0-00, 2 buttons psm0: config:00000000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 -isa0: <@@@0000> found -sc1: no video adapter is found. -isa0: <@@@0000> found at flags 0x100 +vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 +fb0: vga0, vga, type:VGA (5), flags:0x7007f +fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 +fb0: init mode:24, bios mode:3, current mode:24 +fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k +vga0: vga: WARNING: video mode switching is not fully supported on this adapter +VGA parameters upon power-up +50 18 10 00 00 00 03 00 02 e7 a3 4f 67 8f 6b 1c +24 b3 00 6f 0d 0e 00 00 07 80 49 8f 8f 28 1f 47 +6d a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c +3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff +VGA parameters in BIOS for mode 24 +50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 +bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 +b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c +3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff +EGA/VGA parameters to be used for mode 24 +50 18 10 00 00 00 03 00 02 e7 a3 4f 67 8f 6b 1c +24 b3 00 6f 0d 0e 00 00 07 80 49 8f 8f 28 1f 47 +6d a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c +3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff +sc0: at flags 0x100 on isa0 +sc0: VGA <16 virtual consoles, flags=0x300> +sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) isa0: <@@@0000> found pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 @@ -369,12 +365,15 @@ ppc0: at port 0x378-0x37b irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold -ppi0: on ppbus0 -lpt0: on ppbus0 -lpt0: Interrupt-driven port plip0: on ppbus0 bpf: lp0 attached +lpt0: on ppbus0 +lpt0: Interrupt-driven port +ppi0: on ppbus0 pca0 at port 0x40 on isa0 +sc1: no video adapter is found. +isa0: <@@@0000> found +isa0: <@@@0000> found isa_probe_children: probing PnP devices unknown: can't assign resources pca1: at port 0x61 on isa0 @@ -389,15 +388,15 @@ 1:0260fe3f 0..608=609 cylinders, 0..254=255 heads, 1..63=63 sectors 0 accounted for Device configuration finished. -bpf: ppp0 attached -new masks: bio 68c240, tty 631092, net 6710b2 -bpf: lo0 attached +bpf: faith0 attached bpf: gif0 attached bpf: gif1 attached bpf: gif2 attached bpf: gif3 attached bpf: stf0 attached -bpf: faith0 attached +bpf: lo0 attached +bpf: ppp0 attached +new masks: bio 68c240, tty 631092, net 6710b2 Linux-ELF exec handler installed IP Filter: v3.4.4 initialized. Default = pass all, Logging = enabled ata0-master: success setting up UDMA2 mode on PIIX4 chip ----Next_Part(Wed_Jul__5_14:55:10_2000_809)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 23: 5: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id 060CB37BB86; Tue, 4 Jul 2000 23:04:57 -0700 (PDT) (envelope-from keichii@peorth.iteration.net) Received: by peorth.iteration.net (Postfix, from userid 1000) id E493064C28; Wed, 5 Jul 2000 01:04:54 -0500 (CDT) Date: Wed, 5 Jul 2000 01:04:54 -0500 From: "Michael C. Wu" To: yokota@freebsd.org, current@freebsd.org Cc: oliver.fromme@heim3.tu-clausthal.de Subject: about Kern/15436 Message-ID: <20000705010454.A26452@peorth.iteration.net> Mail-Followup-To: "Michael C. Wu" , yokota@freebsd.org, current@freebsd.org, oliver.fromme@heim3.tu-clausthal.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Will you consider looking at : http://dorifer.heim3.tu-clausthal.de/~olli/propellers/ http://www.freebsd.org/cgi/query-pr.cgi?pr=15436 It is an additional functionality and should not pose a stability/tradition/POLA issue. Perhaps we can get this done in time for for 4.1-R? Regards, -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 23:25:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id D1A8F37B625 for ; Tue, 4 Jul 2000 23:25:14 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 23EF5192E; Wed, 5 Jul 2000 08:26:08 +0200 (CEST) Date: Wed, 5 Jul 2000 08:26:08 +0200 From: Stijn Hoop To: current@freebsd.org Subject: Re: world broken? Message-ID: <20000705082607.A74534@pcwin002.win.tue.nl> References: <20000705003159.A73558@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000705003159.A73558@pcwin002.win.tue.nl>; from stijn@win.tue.nl on Wed, Jul 05, 2000 at 12:31:59AM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, ignore this for now please - I am getting past this on the same sources with a second buildworld. I suspect a hardware problem :( --Stijn On Wed, Jul 05, 2000 at 12:31:59AM +0200, Stijn Hoop wrote: > Hi, > > Trying to build world, source just cvssup'ed, clean builddir and I get > this error: > > Script started on Wed Jul 5 00:14:00 2000 > firsa# make buildworld > > [...snip...] > > -------------------------------------------------------------- > >>> stage 3: cross tools > -------------------------------------------------------------- > > [...snip...] > > cc -O -pipe -DFREEBSD_NATIVE -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr/obj/usr/src/i386/usr\" -I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295 -I/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/config -DTARGET_NAME=\"i386-unknown-freebsd\" -DIN_GCC -I/usr/obj/usr/src/i386/usr/include -c /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c -o fold-const.o > /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c: In function `add_double': > /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c:245: argument `hv' doesn't match prototype > /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/rtl.h:1576: prototype declaration > /usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc.295/fold-const.c:252: invalid type argument of `unary *' > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/cc/cc_int. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/cc. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > firsa# > > Script done on Wed Jul 5 00:23:08 2000 > > This is on FreeBSD 5.0-20000701-CURRENT #0: Sat Jul 1 11:53:52 GMT 2000 > (a -current snapshot from current.FreeBSD.org, GENERIC kernel). Anyone know > what's up? > > --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Jul 4 23:45:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from bizhead.bizwind.com (ip28.236.54.216.in-addr.arpa [216.54.236.28]) by hub.freebsd.org (Postfix) with ESMTP id DCD8537BC86; Tue, 4 Jul 2000 23:45:32 -0700 (PDT) (envelope-from tomokomail@anet.ne.jp) Received: from localhost [216.54.237.110] by bizhead.bizwind.com with ESMTP (SMTPD32-5.08) id A99018AF0184; Tue, 04 Jul 2000 15:47:44 -1000 X-Sender: tomokomail@anet.ne.jp From: Tomoko To: "hello" Date: Tue, 04 Jul 2000 15:43:25 -1000 Subject: ‚²‚Ô‚³‚œ‚Ÿ` Message-Id: <200007041549983.SM00271@localhost> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=euc-jp Content-Transfer-Encoding: 7bit ‚Ђ³‚µ‚Ô‚è` Œ³‹C‚Ÿ‚Á‚œ‚ŸHH ƒGƒbƒ`‚ȃTƒCƒgA‚݂‚¯‚Á‚¿‚á‚Á‚œ‚ŸB ‰É‚ÈŽžAŒ©‚Ă݂ĂˁB http://216.101.214.74/pwdti/ ‚»‚ꂶ‚áA‚Ü‚œ‚ˁB ‚΂¢‚΂¢ ‚Æ‚à‚± To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 0: 3: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 8DAF637B7B3 for ; Wed, 5 Jul 2000 00:03:03 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id AAA36770 for ; Wed, 5 Jul 2000 00:03:01 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id AAA42641 for freebsd-current@FreeBSD.ORG; Wed, 5 Jul 2000 00:04:12 -0700 (PDT) (envelope-from john) Message-Id: <200007050704.AAA42641@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200007020736.AAA33902@john.baldwin.cx> Date: Wed, 05 Jul 2000 00:04:12 -0700 (PDT) From: John Baldwin To: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've tried to update the document to reflect the comments I've received so far: Current directory structure: sys/ ${MACHINE}/ - MD stuff conf/ - MD kernel config files ${MACHINE/ - MD code include/ - MD includes ... - various MD modules such as binary compat boot/ - bootstrap ${MACHINE/ - MI boot code cam/ - cam subsystem coda/ - coda fs compile/ - compile work directory conf/ - MI kernel config files contrib/ - 3rd party kernel code crypto/ - kernel crypto code ddb/ - DDB dev/ - several device drivers fs/ - one file system gnu/ - GNU kernel code i4b/ - ISDN support isa/ - MI ISA base code and a few drivers such as joy0 isofs/ - CD9660 fs kern/ - MI kernel code such as new-bus, vfs, init, etc. libkern/ - libc for the kernel miscfs/ - several fs's such as deadfs, devfs, etc. modules/ - skeleton for the modules msdosfs/ - MS-DOS FAT fs net/ - some network drivers such as ppp, slip, bpf, and generic network interface support netatalk/ - support for Appletalk network netatm/ - support for ATM network sockets netgraph/ - the spiffy netgraph system netinet/ - IPv4, TCP, UDP netinet6/ - IPv6, IPsec, TCP and UDP glue netipx/ - IPX/SPX netkey/ - undocumented key management protocol - RFC 2367 netnatm/ - native mode ATM netncp/ - Netware client protocol netns/ - Xerox NS, including IDP and SP nfs/ - NFS ntfs/ - NTFS nwfs/ - Netware FS pccard/ - PC card drivers pci/ - MI PCI code and some drivers, notably PCI network cards posix4/ - random POSIX code bucket svr4/ - SVR4 binary compatibility sys/ - kernel includes ufs/ - UFS, FFS, and MFS vm/ - VM system Here is my proposal, adjusted a little as per suggestions. It attempts to follow these loose guidelines: - MD code under sys/${MACHINE_ARCH} - device drivers (including bus's such as cam and usb) under sys/dev - file systems under fs/ - networking under net/ sys/ ${MACHINE}/ - stay mostly the same, the directories under here mirror the sys/ directories. E.g. MD bootstrap code would go in the boot/ subdir boot/ - formerly sys/boot/${MACHINE} compat/ - MD code for the binary compatibility layers, would contain linux, svr4, etc. directories boot/ - just MI boot code now. Depending on portability of ARC, possibly move boot/arc under sys/alpha/boot compat/ - MI binary compatibility code linux/ - parts of former sys/i386/linux svr4/ - parts of former sys/svr4 compile/ - move compiling under arch-specific dirs ${MACHINE}/ - formerly sys/compile conf/ - move NOTES to here from sys/i386/conf, but leave the rest of the dir the same for now contrib/ - stay the same. It mirrors the organization of sys/. For example, contrib'd device drivers under contrib/sys/dev, which is where they are now. crypto/ - no change ddb/ - no change dev/ - everything in there now plus some extras cam/ - formerly sys/cam isdn/ - formerly sys/i4b isa/ - formerly sys/isa, this just cintains the support code for the ISA bus, actual device drivers such as joy0 would move into sys/dev/ pccard/ - formerly sys/pccard pci/ - formerly sys/pci, split up just as sys/isa fs/ - everything in there now plus some extras codafs/ - formerly sys/coda isofs/ - formerly sys/isofs msdosfs/ - formerly sys/msdosfs nfs/ - formerly sys/nfs ntfs/ - formerly sys/ntfs nwfs/ - formerly sys/nwfs ufs/ - formerly sys/ufs/ufs ffs/ - formerly sys/ufs/ffs mfs/ - formerly sys/ufs/mfs deadfs/ - formerly sys/miscfs/deadfs devfs/ - formerly sys/miscfs/devfs fdescfs/ - formerly sys/miscfs/fdesc fifofs/ - formerly sys/miscfs/fifofs kernfs/ - formerly sys/miscfs/kernfs nullfs/ - formerly sys/miscfs/nullfs portalfs/ - formerly sys/miscfs/portal procfs/ - formerly sys/miscfs/procfs specfs/ - formerly sys/miscfs/specfs umapfs/ - formerly sys/miscfs/umapfs unionfs/ - formerly sys/miscfs/union gnu/ - No big change, but make it mirror sys/ as contrib does. As a result, sys/gnu/ext2fs -> sys/gnu/fs/ext2fs. kern/ - no change libkern/ - no change modules/ - no change net/ - move existing contents to net/base or something similar atalk/ - formerly sys/netatalk atm/ - formerly sys/netatm netgraph/ - formerly sys/netgraph ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} tcp/ - TCP " " " " udp/ - UDP " " " " ipx/ - formerly sys/netipx key/ - formerly sys/netkey natm/ - formerly sys/netnatm ncp/ - formerly sys/netncp ns/ - formerly sus/netns posix4/ - move the code to where it belongs.. i.e. scheduler stuff in kern, etc. If it is desirable to keep this split out such as gnu/ and contrib/ then treat it like gnu/ and contrib/. I'm not as firm about this one and am willing to just let it be if it isn't folded into the rest of the tree, however. sys/ - no change vm/ - no change Notes: - There has been one vote so far to ditch the whole net/ reorg, although other people have expressed support for it. - There have been a few votes for sys/bus instead of sys/dev for isa, eisa, pci, cam, usb, and friends. - The question has been raised as to whether or not splitting up netinet is feasible. I'd like to hear back some more from people working with the code if splitting it up is difficult, and if it is, if having sys/net/inet containing all IP, TCP, UDP, etc. is a more workable option? This file is available at http://people.FreeBSD.org/~jhb/sysorg.txt -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 0:14: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id A1E6E37BD5E; Wed, 5 Jul 2000 00:14:00 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e657E0V21346; Wed, 5 Jul 2000 00:14:00 -0700 (PDT) Date: Wed, 5 Jul 2000 00:14:00 -0700 From: Alfred Perlstein To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000705001359.N25571@fw.wintelcom.net> References: <200007020736.AAA33902@john.baldwin.cx> <200007050704.AAA42641@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007050704.AAA42641@john.baldwin.cx>; from jhb@FreeBSD.ORG on Wed, Jul 05, 2000 at 12:04:12AM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * John Baldwin [000705 00:04] wrote: > I've tried to update the document to reflect the comments I've > received so far: > > Current directory structure: > > sys/ > ${MACHINE}/ - MD stuff > conf/ - MD kernel config files [gag, snip] > Here is my proposal, adjusted a little as per suggestions. It attempts to > follow these loose guidelines: > > - MD code under sys/${MACHINE_ARCH} > - device drivers (including bus's such as cam and usb) under sys/dev > - file systems under fs/ > - networking under net/ [snip] Awesome, so when is this going to be done? :) -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 0:23:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from gateway.posi.net (c1096725-a.smateo1.sfba.home.com [24.20.139.104]) by hub.freebsd.org (Postfix) with ESMTP id CDE4237B785 for ; Wed, 5 Jul 2000 00:23:11 -0700 (PDT) (envelope-from kbyanc@posi.net) Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id AAA15191; Wed, 5 Jul 2000 00:25:16 -0700 (PDT) (envelope-from kbyanc@posi.net) Date: Wed, 5 Jul 2000 00:25:16 -0700 (PDT) From: Kelly Yancey To: Andrzej Bialecki Cc: freebsd-current@FreeBSD.ORG Subject: Re: Possible bug in netinet6/in6_rmx.c ? 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, 4 Jul 2000, Andrzej Bialecki wrote: > Yeah, something like that. The question is who is going to fix it? INET6 > issues should probably stay in sync with other BSDs and KAME, and > therefore IMHO the maintainer of inet6 code should step out and fix > it... (Hello?? :) > Hmm. Good point. > > By the way, while we are talking about sysctl, I don't suppose you would be > > willing to review/commit PR 15251? It is a fairly straightforward patch that > > I see Jonathan Bresler took it (today). > Actually, I think it was John Baldwin...too many JB's around here :) Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 2:10:29 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id DE21137B771 for ; Wed, 5 Jul 2000 02:10:24 -0700 (PDT) (envelope-from DougB@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id CAA08151; Wed, 5 Jul 2000 02:08:26 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <3962FB0A.2A8FADF4@gorean.org> Date: Wed, 05 Jul 2000 02:08:26 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0702 i386) X-Accept-Language: en MIME-Version: 1.0 To: Brian Dean Cc: Greg Lehey , Samuel Tardieu , current@FreeBSD.ORG Subject: Re: DHCP does not honor default router? 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 Dean wrote: > > On Tue, 4 Jul 2000, Doug Barton wrote: > > > I updated my dhclient script to handle this case, since it > > happens on the roadrunner network as well. I can send you the patch > > if you want, but I have a lot of other hacks in my script so it > > might be confusing. Starting right around line 106 of the default > > script, I have: > > A hook is already provided for this kind of thing. You can create a > separate program called /etc/dhclient-exit-hooks, which get run at > various times by dhclient-script. I'm aware of this, I actually helped develop it. :) > Since /etc/dhclient-exit-hooks is > sourced by /sbin/dhclient-script, you have access to all of its > internal variables, such as '$reason', '$old_ip_address', > '$new_ip_address', etc. > > Thus, you don't have to maintain a separate /sbin/dhclient-script like > you do now. My motivation for maintaining a seperate script is that at one time I was working on rewriting it to be more... sane. Unfortunately I couldn't get obrien behind me at the time, and I've since lost interest in flogging that horse. That said, there are some things that are easier to handle _in_ the script than outside of it, mostly due to timing issues. In this particular case, when the script actually reaches the point where a total flush is needed, everything after it depends on the new routes being in place, so I'd effectively have to duplicate most of the script in the exit-hooks script if I went that route. That's one of the reasons the dhclient-script exists, instead of having that all be hidden in the client binary. > Also, if you run a firewall, you should re-instantiate your rules with > the new IP address here as well. That really depends on how your firewall rules are written, although I suppose it couldn't hurt. > I notice you also flush the routing table. Is that necessary - it > appears that dhclient-script does this when it's needed? Yes, it _appears_ to, but given the right (or wrong) combination of input from the server the code that does that could get missed. In my particular case, the !#@*&$ dhcp server doesn't return the information necessary to set the $old_routers variable, so the 'route delete default $router' never happens. I suspect that the original poster is seeing the same kind of problem. > I found this exit hook feature by looking at the source for > dhclient-script, but, oddly enough, it is even documented in the man > page. I'm going to assume that you meant that in a helpful way, and just say, "thanks." :) Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 2:16:42 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 D9A9F37B60C for ; Wed, 5 Jul 2000 02:16:37 -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 139lG7-000PPZ-00; Wed, 05 Jul 2000 11:14:19 +0200 From: Sheldon Hearn To: NAKAJI Hiroyuki Cc: freebsd-current@FreeBSD.ORG Subject: Re: fetch is strange In-reply-to: Your message of "05 Jul 2000 12:46:11 +0900." <87n1jxfddo.fsf@nakaji.tutrp.tut.ac.jp> Date: Wed, 05 Jul 2000 11:14:19 +0200 Message-ID: <97684.962788459@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 05 Jul 2000 12:46:11 +0900, NAKAJI Hiroyuki wrote: > The problem is that the report of '/usr/bin/fetch' is strange. For > example, > > $ fetch http://www.samba.gr.jp/project/samba-ja/index.html.en > Receiving index.html.en > -1 bytes transferred in 0.4 seconds (-2.28 Bps) Please be sure to report this directly to the new fetch(1)'s author, . Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 2:40:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from inetfw.sonycsl.co.jp (inetfw.SonyCSL.Co.Jp [203.137.129.4]) by hub.freebsd.org (Postfix) with ESMTP id 98AC237BD39; Wed, 5 Jul 2000 02:40:43 -0700 (PDT) (envelope-from kjc@csl.sony.co.jp) Received: from hotaka.csl.sony.co.jp (hotaka.csl.sony.co.jp [43.27.98.57]) by inetfw.sonycsl.co.jp (8.9.3+3.2W/3.7Ws3/inetfw/2000050701/smtpfeed 1.07) with ESMTP id SAA51130; Wed, 5 Jul 2000 18:40:41 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by hotaka.csl.sony.co.jp (8.9.3+3.2W/3.7Ws3/hotaka/2000061722) with ESMTP id SAA15904; Wed, 5 Jul 2000 18:40:41 +0900 (JST) To: jhb@FreeBSD.ORG Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-Reply-To: <200007050704.AAA42641@john.baldwin.cx> References: <200007020736.AAA33902@john.baldwin.cx> <200007050704.AAA42641@john.baldwin.cx> X-Mailer: Mew version 1.94.2 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000705184041K.kjc@csl.sony.co.jp> Date: Wed, 05 Jul 2000 18:40:41 +0900 From: Kenjiro Cho X-Dispatcher: imput version 20000228(IM140) Lines: 11 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Baldwin wrote: > Notes: > - There has been one vote so far to ditch the whole net/ reorg, although > other people have expressed support for it. What do you intend to do with the networking headers? The socket API standards specify the socket related headers and their paths. At least, "net" and "netinet" should not be moved. -Kenjiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 2:53:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from mailhost.netbenefit.co.uk (mailhost.netbenefit.co.uk [212.53.64.39]) by hub.freebsd.org (Postfix) with ESMTP id EB13637B555; Wed, 5 Jul 2000 02:53:42 -0700 (PDT) (envelope-from pierre.dampure@alveley.org) Received: from userfm95.uk.uudial.com ([62.188.24.183] helo=alveley.org) by mailhost.netbenefit.co.uk with esmtp (NetBenefit 1.5) id 139lsD-0002Lm-00 ; Wed, 05 Jul 2000 10:53:41 +0100 Message-ID: <396305A4.A106E6A0@alveley.org> Date: Wed, 05 Jul 2000 10:53:40 +0100 From: "Dampure, Pierre Y." X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Jun-ichiro itojun Hagino Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, current@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc/net getaddrinfo.c References: <200007050507.WAA69145@freefall.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 Jun-ichiro itojun Hagino wrote: > > itojun 2000/07/04 22:07:23 PDT > > Modified files: > lib/libc/net getaddrinfo.c > Log: > sync with kame. > - better return code. from enami@netbsd > - do not use "class" as variable name. C++ guy had trouble with it. > > Revision Changes Path > 1.12 +50 -29 src/lib/libc/net/getaddrinfo.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message Hmmm. Something definitely looks strange, 'cause since this morning if I do: telnet localhost (or telnet to ANY host, either in my host file or in DNS) I get: localhost: no address associated with name whereas a 'ping localhost' works perfectly fine (and so does a telnet 127.0.0.1) Any clues? PYD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 3: 2:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id C726B37B653; Wed, 5 Jul 2000 03:02:47 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id TAA02831; Wed, 5 Jul 2000 19:02:12 +0900 (JST) To: "Dampure, Pierre Y." Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, current@FreeBSD.ORG In-reply-to: pierre.dampure's message of Wed, 05 Jul 2000 10:53:40 +0100. <396305A4.A106E6A0@alveley.org> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: src/lib/libc/net getaddrinfo.c From: itojun@iijlab.net Date: Wed, 05 Jul 2000 19:02:12 +0900 Message-ID: <2829.962791332@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Hmmm. Something definitely looks strange, 'cause since this morning if I >do: > telnet localhost (or telnet to ANY host, either in my host file or in >DNS) >I get: > localhost: no address associated with name >whereas a 'ping localhost' works perfectly fine (and so does a telnet >127.0.0.1) usr.bin/telnet/commands.c:tn() does something very strange. i'll take a look at it. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 3:16:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id 9A49837B7EA; Wed, 5 Jul 2000 03:16:19 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id TAA03047; Wed, 5 Jul 2000 19:16:12 +0900 (JST) To: "Dampure, Pierre Y." , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, current@FreeBSD.ORG In-reply-to: itojun's message of Wed, 05 Jul 2000 19:02:12 JST. <2829.962791332@coconut.itojun.org> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: src/lib/libc/net getaddrinfo.c From: itojun@iijlab.net Date: Wed, 05 Jul 2000 19:16:12 +0900 Message-ID: <3045.962792172@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>Hmmm. Something definitely looks strange, 'cause since this morning if I >>do: >> telnet localhost (or telnet to ANY host, either in my host file or in >>DNS) >>I get: >> localhost: no address associated with name >>whereas a 'ping localhost' works perfectly fine (and so does a telnet >>127.0.0.1) > usr.bin/telnet/commands.c:tn() does something very strange. > i'll take a look at it. usr.bin/telnet/commands.c revision 1.22 should correct it. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 3:37:42 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 B05BE37BC5A for ; Wed, 5 Jul 2000 03:37:39 -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 DAA28944 for ; Wed, 5 Jul 2000 03:37:39 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 03:37:39 -0700 (PDT) From: Kris Kennaway To: current@freebsd.org Subject: KAME integration and plans 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 As itojun has already posted, we are in the process of updating the KAME IPv6/IPSEC code in FreeBSD to the latest KAME sources. In importing the latest KAME code, we are not being too concerned about whitespace or cosmetic diffs, unifdef'ing __NetBSD__ sections (at least in userland) and so forth. The reason for this is that KAME is externally maintained code, and so cosmetic differences in FreeBSD needlessly complicate the diffs and really make life harder for merging. The KAME team already have a difficult enough job in maintaining and developing the code on 11 different BSD releases without us making life more difficult for them by committing unneccessary code changes to FreeBSD. In this vein, I'd like to suggest a new "hands-off" policy of not committing gratuitous changes to KAME-derived code, including manpage changes, unless: a) The commit is required for operation on FreeBSD (in which case it's not really gratuitous) b) The commit is suitable for the other platforms KAME supports as well, and is submitted back to KAME to be merged into their master repo. If there are legitimate concerns with KAME code the place to get them fixed is upstream, not in FreeBSD. For example, the "hard sentence break" manpage sweeps should have been submitted back to KAME, and the "remove unneeded #includes" should not have touched the KAME code at all since it creates gratuitous diffs for no functional change. X years down the line if the KAME project disbands, we can do the FreeBSD style cleanups then. At the moment I am not bothering to merge in gratuitous FreeBSD changes to things like manpages, because we want to get this code into -current and tested as quickly as possible. Sheldon Hearn will be taking care of passing the manpage diffs back to KAME. I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any problems, so this means we need everyone who is capable of doing so to stress the new code as much as possible. IMO we *really* need to get this into 4.1 despite the relatively short testing cycle, for the simple reason that the newer code is much more functional, and in particular supports the racoon IKE daemon for automatic management of IPSEFC security associations (i.e. manually-keyed SAs are no longer required) - this is already in ports. This is important for interoperability with other IPSEC implementations. I also would quite like to see ALTQ brought in - I have had lots of support for this and so far no objections - although I forgot to ask itojun not to unifdef that code before it was committed :-(. Perhaps if he has time he'll commit that as well. Userland binaries are not yet fully committed: the older binaries may not work corectly with the new kernel code. Anyone wanting to play with this stuff to help test it should check out www.freenet6.net, who provide a very simple way to establish a tunnel to the 6bone. Documentation is available on www.kame.net and related links. 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 Jul 5 3:41: 1 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 7920937B91A; Wed, 5 Jul 2000 03:40:57 -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 MAA19383; Wed, 5 Jul 2000 12:40:51 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: KAME integration and plans In-reply-to: Your message of "Wed, 05 Jul 2000 03:37:39 PDT." Date: Wed, 05 Jul 2000 12:40:51 +0200 Message-ID: <19381.962793651@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Kri s Kennaway writes: >I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any >problems, I'm sorry, but isn't that a tad fast, considering the scope of these changes ? -- 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 Wed Jul 5 3:47: 1 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 B5A0D37B91A; Wed, 5 Jul 2000 03:46:59 -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 DAA29745; Wed, 5 Jul 2000 03:46:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 03:46:58 -0700 (PDT) From: Kris Kennaway To: Poul-Henning Kamp Cc: current@FreeBSD.ORG Subject: Re: KAME integration and plans In-Reply-To: <19381.962793651@critter.freebsd.dk> 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, 5 Jul 2000, Poul-Henning Kamp wrote: > In message , Kri > s Kennaway writes: > > >I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any > >problems, > > I'm sorry, but isn't that a tad fast, considering the scope of these > changes ? I forgot to mention that I discussed this with Jordan at Usenix and (unless I'm mistaken) he okayed the general plan. These changes should only impact ipv6 and ipsec, with the exception of the DNS resolver code which I'm still unsure about merging (even though it's been well tested by KAME users, there remains the possibility of breakage for ipv4 resolution if there are undiscovered bugs) The bottom line is that we *need* the updated IPSEC code if FreeBSD is to be a viable IPSEC platform. At the moment it's really only usable for interoperating with other FreeBSD machines because in the real world people use an IKE daemon, which the older (currently in 4.0) code does not support. Delaying this another 3 months for 4.2 is, IMO, far too long to wait if we're going to be competitive in the IPSEC arena. 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 Jul 5 3:47:40 2000 Delivered-To: freebsd-current@freebsd.org Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 1FCCC37B91A; Wed, 5 Jul 2000 03:47:32 -0700 (PDT) (envelope-from sam@inf.enst.fr) Received: from antinea.enst.fr (antinea.enst.fr [137.194.160.145]) by ada.eu.org (Postfix) with ESMTP id 7A006191F4; Wed, 5 Jul 2000 12:47:30 +0200 (CEST) Received: by antinea.enst.fr (Postfix, from userid 1000) id 38FDE30A; Wed, 5 Jul 2000 12:47:26 +0200 (CEST) Date: Wed, 5 Jul 2000 12:47:25 +0200 To: Kris Kennaway Cc: current@freebsd.org Subject: Re: KAME integration and plans References: 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 Wed, Jul 05, 2000 at 03:37:39AM -0700 From: Samuel Tardieu Organization: Ecole Nationale Superieure des Telecommunications Reply-To: Samuel Tardieu Content-Transfer-Encoding: 8bit X-WWW: http://www.inf.enst.fr/~tardieu/ X-Mail-Processing: Sam's procmail tools X-ICQ: 21547599 Message-Id: <2000-07-05-12-47-26+trackit+sam@inf.enst.fr> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 5/07, Kris Kennaway wrote: | I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any | problems, so this means we need everyone who is capable of doing so to | stress the new code as much as possible. IMO we *really* need to get this | into 4.1 despite the relatively short testing cycle, for the simple reason | that the newer code is much more functional, and in particular supports | the racoon IKE daemon for automatic management of IPSEFC security | associations (i.e. manually-keyed SAs are no longer required) - this is | already in ports. This is important for interoperability with other IPSEC | implementations. How hard would it be to use IPSEC with *.freebsd.org machines (at least www.freebsd.org)? This would be a good test. Of course, IPSEC should not be required ;) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 3:51:27 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 418E437B91A; Wed, 5 Jul 2000 03:51: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 DAA30489; Wed, 5 Jul 2000 03:51:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 03:51:24 -0700 (PDT) From: Kris Kennaway To: Samuel Tardieu Cc: current@freebsd.org Subject: Re: KAME integration and plans In-Reply-To: <2000-07-05-12-47-26+trackit+sam@inf.enst.fr> 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, 5 Jul 2000, Samuel Tardieu wrote: > On 5/07, Kris Kennaway wrote: > > | I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any > | problems, so this means we need everyone who is capable of doing so to > | stress the new code as much as possible. IMO we *really* need to get this > | into 4.1 despite the relatively short testing cycle, for the simple reason > | that the newer code is much more functional, and in particular supports > | the racoon IKE daemon for automatic management of IPSEFC security > | associations (i.e. manually-keyed SAs are no longer required) - this is > | already in ports. This is important for interoperability with other IPSEC > | implementations. > > How hard would it be to use IPSEC with *.freebsd.org machines (at least > www.freebsd.org)? This would be a good test. Of course, IPSEC should not be > required ;) Well, IPSEC isn't configured at all on those machines right now, and it's probably not the best place to test from. But by all means if you have the capability to test the new racoon port, especially interoperating it with other IPSEC implementations (subject to what KAME is known to support) please do so. 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 Jul 5 4: 0:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by hub.freebsd.org (Postfix) with ESMTP id 57D1A37B91A for ; Wed, 5 Jul 2000 04:00:25 -0700 (PDT) (envelope-from roberto@eurocontrol.fr) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.5.62]) by matrix.eurocontrol.fr (Postfix) with ESMTP id AFA885A21 for ; Wed, 5 Jul 2000 13:00:23 +0200 (CEST) Received: by caerdonn.eurocontrol.fr (Postfix, from userid 1193) id 0D0524E5A; Wed, 5 Jul 2000 13:00:23 +0200 (CEST) Date: Wed, 5 Jul 2000 13:00:22 +0200 From: Ollivier Robert To: FreeBSD Current Users' list Subject: [PATCH] buildworld broken in libusb Message-ID: <20000705130022.I70328@caerdonn.eurocontrol.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Operating-System: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG buildworld is broken in libusb. Here is a tentative patch (I'm re-building the world right now). The alternative is to #define UPACKED in usbhid.h. cvs diff: Diffing . Index: parse.c =================================================================== RCS file: /home/ncvs/src/lib/libusb/parse.c,v retrieving revision 1.1 diff -u -2 -u -r1.1 parse.c --- parse.c 2000/06/11 18:19:14 1.1 +++ parse.c 2000/07/05 10:54:41 @@ -36,4 +36,5 @@ #include +#include #include -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr The Postman hits! The Postman hits! You have new mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 4: 4:30 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 1D30F37B847 for ; Wed, 5 Jul 2000 04:04:22 -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 MAA13469; Wed, 5 Jul 2000 12:04:05 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id JAA01803; Wed, 5 Jul 2000 09:27:45 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200007050827.JAA01803@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Archie Cobbs Cc: brian@Awfulhak.org (Brian Somers), dberlin@cygnus.com (Daniel Berlin), dan@cgsoftware.com (Daniel Berlin), freebsd-current@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working In-Reply-To: Message from Archie Cobbs of "Tue, 04 Jul 2000 16:57:44 PDT." <200007042357.QAA06372@bubba.whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 09:27:45 +0100 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Brian Somers writes: > > Archie, it seems people are having problems using PPPoE since your > > ng_ether changes. Any suggestions ? > > Unfortunately I have limited email contact righ tnow.. but a couple > of things come to mind.. > > - Is is possible to get a tcpdump of before and after? One thing I > could imagine is that the new ng_ether may behave differently than > the old code with respect to overwriting the source Ethernet address > (the new code shouldn't unless the driver does). But I don't think > there should be any difference. 'tcpdump not ip' should tell. > > - Regarding the libnetgraph change, this supposedly fixed a bug, > so possibly the code in ppp(8) is relying on broken behavior? > Where is this code anyway, I don't see a pppoe.c in usr.sbin/ppp.. > I can take a look. The code's in ppp/ether.c. I'll see if I can get time to figure out what's wrong, but I can't promise anything this week. I'm too busy (we're having a FreeBSD mini-conference here in the UK at which I'm speaking...). > -Archie > > ___________________________________________________________________________ > Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com -- 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 Jul 5 4:13:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id BC16337B8C7 for ; Wed, 5 Jul 2000 04:13:44 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id UAA08736; Wed, 5 Jul 2000 20:13:42 +0900 (JST) Received: from unknown(133.253.122.1) by kbtfw.kubota.co.jp via smap (V4.2) id xma008654; Wed, 5 Jul 00 20:13:29 +0900 Received: from jkpc15.tk.kubota.co.jp ([192.168.7.250]) by kbtmx.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id UAA23083; Wed, 5 Jul 2000 20:13:28 +0900 (JST) Received: from localhost (localhost.ttr.kubota.co.jp [127.0.0.1]) by jkpc15.tk.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id UAA00598; Wed, 5 Jul 2000 20:12:16 +0900 (JST) To: mark@grondar.za Cc: current@FreeBSD.ORG Subject: Re: randomdev and APM. Not working together? In-Reply-To: <20000705145916I.haro@tk.kubota.co.jp> References: <20000701104544S.haro@tk.kubota.co.jp> <200007010649.IAA13685@grimreaper.grondar.za> <20000705145916I.haro@tk.kubota.co.jp> X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000705201216R.haro@tk.kubota.co.jp> Date: Wed, 05 Jul 2000 20:12:16 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 60 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: haro@tk.kubota.co.jp (Munehiro Matsuda) Date: Wed, 05 Jul 2000 14:59:16 +0900 ::::> If I use randomdev for ssh, then APM seem to have stopped working. :::: ::::This is wierd; I am running this randomdev on my Libretto, (I wrote ::::it there), and it and APM are both fine. :::: ::::> Am I doing something wrong? :::: ::::No - you are doing everything right. :::: ::::Can you do any debugging on this? Are you able perhaps to trace the ::::kernel and see where it fails? :: ::Ok. I'll see what I can do. :: ::BTW, I've taken a diff of dmesg output between randomdev loaded and ::unloaded. As you can see, (1)outcome of "Calibrating clock" differs ::and (2)device attaching order is some what different. :: ::I'll let you know, if I can find anthing. [This mail is Bcc'ed to acpi-jp@jp.FreeBSD.org] I think I found the problem, and being able to work around it. But, I don't know how to realy fix it. Here's summery of what was happening... 1. APM fails if randomdev_load="YES" in loader.conf and ACPI configured. Some drivers' probe & attach order will change, if randomdev module was loaded using loader.conf. I have ACPI test driver (as of early May) and APM driver in my kernel, that was affected by this change. 1)Randomdev NOT Loaded: Probe & attach will happen in the order - (1)nxp0, (2)apm0, (3)acpi0 .....That's OK 2)Randomdev Loaded: Probe & attach will happen in the order - (1)acpi0, (2)apm0, (3)nxp0 .....NG Because acpi0 access the BIOS first, APM support in BIOS seems to get turned off. :-( If there's any way to statically set the probe & attach order, I would like to know. 2. Work around was to include RANDMDEV in config file. I disabled it, because it was panicing on shutdown. That being fixed in rev1.5 of randmdev.c, I have a working system, again. Thanks you, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kubota.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 4:19: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by hub.freebsd.org (Postfix) with ESMTP id 3A98537B93E for ; Wed, 5 Jul 2000 04:18:57 -0700 (PDT) (envelope-from roberto@eurocontrol.fr) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.5.62]) by matrix.eurocontrol.fr (Postfix) with ESMTP id 4CB63597C; Wed, 5 Jul 2000 13:18:55 +0200 (CEST) Received: by caerdonn.eurocontrol.fr (Postfix, from userid 1193) id C991F4E5A; Wed, 5 Jul 2000 13:18:54 +0200 (CEST) Date: Wed, 5 Jul 2000 13:18:54 +0200 From: Ollivier Robert To: FreeBSD Current Users' list Subject: Re: [PATCH] buildworld broken in libusb Message-ID: <20000705131854.A78573@caerdonn.eurocontrol.fr> Mail-Followup-To: Ollivier Robert , FreeBSD Current Users' list References: <20000705130022.I70328@caerdonn.eurocontrol.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000705130022.I70328@caerdonn.eurocontrol.fr>; from roberto@caerdonn.eurocontrol.fr on Wed, Jul 05, 2000 at 01:00:22PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Ollivier Robert: > buildworld is broken in libusb. Here is a tentative patch (I'm re-building > the world right now). The alternative is to #define UPACKED in usbhid.h. Forget that fix, it doesn't work. This one will although I don't like it. cvs diff: Diffing . Index: usbhid.h =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbhid.h,v retrieving revision 1.9 diff -u -2 -r1.9 usbhid.h --- usbhid.h 2000/07/05 08:11:43 1.9 +++ usbhid.h 2000/07/05 11:14:13 @@ -55,4 +55,6 @@ #define UR_SET_PROTOCOL 0x0b +#define UPACKED __attribute__ ((packed)) + typedef struct usb_hid_descriptor { uByte bLength; -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr The Postman hits! The Postman hits! You have new mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 4:44:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from smtp-out2.bellatlantic.net (smtp-out2.bellatlantic.net [199.45.39.157]) by hub.freebsd.org (Postfix) with ESMTP id 9CAE637B6D7 for ; Wed, 5 Jul 2000 04:44:43 -0700 (PDT) (envelope-from dberlin@cygnus.com) Received: from dan2.cygnus.com (adsl-138-88-47-184.bellatlantic.net [138.88.47.184]) by smtp-out2.bellatlantic.net (8.9.1/8.9.1) with SMTP id HAA27723; Wed, 5 Jul 2000 07:43:21 -0400 (EDT) To: Brian Somers Cc: Archie Cobbs , dan@cgsoftware.com (Daniel Berlin), freebsd-current@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working References: <200007050827.JAA01803@hak.lan.Awfulhak.org> From: Daniel Berlin Date: 05 Jul 2000 07:43:25 -0400 In-Reply-To: Brian Somers's message of "Wed, 05 Jul 2000 09:27:45 +0100" Message-ID: <86n1jwiyzm.fsf@dan2.cygnus.com> Lines: 13 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Capitol Reef) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers writes: > > The code's in ppp/ether.c. > > I'll see if I can get time to figure out what's wrong, but I can't > promise anything this week. I'm too busy (we're having a FreeBSD > mini-conference here in the UK at which I'm speaking...). > I already solved this one, the problem is that the source address is being overwritten with 0's. As a temporary hack, if you go into ng_pppoe.c, and replace the 0's with your ethernet address, you'll be golden. --Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 4:45: 7 2000 Delivered-To: freebsd-current@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id A8BC537B6D7 for ; Wed, 5 Jul 2000 04:45:01 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (iwasaki.imasy.or.jp [202.227.24.92]) by tasogare.imasy.or.jp (8.10.1+3.3W/3.7W-tasogare/smtpfeed 1.07) with ESMTP id e65Bivp46785; Wed, 5 Jul 2000 20:44:57 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: haro@tk.kubota.co.jp Cc: mark@grondar.za, current@FreeBSD.ORG Subject: Re: randomdev and APM. Not working together? In-Reply-To: <20000705201216R.haro@tk.kubota.co.jp> References: <200007010649.IAA13685@grimreaper.grondar.za> <20000705145916I.haro@tk.kubota.co.jp> <20000705201216R.haro@tk.kubota.co.jp> 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: <20000705204455R.iwasaki@jp.FreeBSD.org> Date: Wed, 05 Jul 2000 20:44:55 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 19 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I think I found the problem, and being able to work around it. > But, I don't know how to realy fix it. I noticed this when I saw your last message :-) > 2)Randomdev Loaded: Probe & attach will happen in the order - > (1)acpi0, (2)apm0, (3)nxp0 .....NG > > Because acpi0 access the BIOS first, APM support in BIOS seems to > get turned off. :-( Yes, current acpi driver is doing this for testing purpose in attach(). We need to handle this matter soon so that we could have both of apm and acpi in our kernel. Could you disable this line in sys/i386/acpi/acpi.c:acpi_attach() and enable acpi later with acpiconf -e ? acpi_enable_disable(sc, 1); Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 5:16:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id 323DF37B993; Wed, 5 Jul 2000 05:16:27 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id VAA04775; Wed, 5 Jul 2000 21:16:24 +0900 (JST) To: Kris Kennaway Cc: current@FreeBSD.ORG In-reply-to: kris's message of Wed, 05 Jul 2000 03:46:58 MST. X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: KAME integration and plans From: itojun@iijlab.net Date: Wed, 05 Jul 2000 21:16:24 +0900 Message-ID: <4773.962799384@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >These changes should only impact ipv6 and ipsec, with the exception of the >DNS resolver code which I'm still unsure about merging (even though it's >been well tested by KAME users, there remains the possibility of breakage >for ipv4 resolution if there are undiscovered bugs) actually, I've touched sys/sys/mbuf.h. there should be no behavior change if you do not use any of the following items: - ipsec - ipv6, inclding stf interface - gif interface gif can be used for v4 over v4. due to the change mentioned above, and recent checksum offloading stuff, some of network driver code may need fixes like below. http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/lnc/if_lnc.c.diff?r1=1.78&r2=1.79 http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/vx/if_vx.c.diff?r1=1.27&r2=1.28 (if a driver sets M_PKTHDR flag manually, it needs checking) itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 5:27:39 2000 Delivered-To: freebsd-current@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 3102537BE12; Wed, 5 Jul 2000 05:27:36 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id IAA81038; Wed, 5 Jul 2000 08:27:35 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007051227.IAA81038@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Baldwin Cc: freebsd-current@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: /sys hierarchy References: <200007050704.AAA42641@john.baldwin.cx> In-reply-to: Your message of "Wed, 05 Jul 2000 00:04:12 PDT." <200007050704.AAA42641@john.baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 08:27:35 -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Here is my proposal, adjusted a little as per suggestions. It attempts to > follow these loose guidelines: ... > net/ - move existing contents to net/base or something > similar > atalk/ - formerly sys/netatalk > atm/ - formerly sys/netatm > netgraph/ - formerly sys/netgraph > ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} > tcp/ - TCP " " " " > udp/ - UDP " " " " > ipx/ - formerly sys/netipx > key/ - formerly sys/netkey > natm/ - formerly sys/netnatm > ncp/ - formerly sys/netncp > ns/ - formerly sus/netns > Notes: > - There has been one vote so far to ditch the whole net/ reorg, although > other people have expressed support for it. Please take this as another vote to ditch the whole net/ reorg. It's interesting that as this discussion is going on,the KAME folks are merging the new IPv6 and IPSEC code into -current and comment that our network code is much more different that the other BSD's. I'd hate to see it diverge further unless there's a real compelling reason. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 5:29: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.houston.rr.com (sm1.texas.rr.com [24.93.35.54]) by hub.freebsd.org (Postfix) with ESMTP id C64DE37BDEB for ; Wed, 5 Jul 2000 05:29:04 -0700 (PDT) (envelope-from shocking@houston.rr.com) Received: from bleep.craftncomp.com ([24.27.77.164]) by mail.houston.rr.com with Microsoft SMTPSVC(5.5.1877.357.35); Wed, 5 Jul 2000 07:30:29 -0500 Received: from bloop.craftncomp.com (bloop.craftncomp.com [202.12.111.1]) by bleep.craftncomp.com (8.9.3/8.9.3) with ESMTP id HAA30687 for ; Wed, 5 Jul 2000 07:25:47 -0500 (CDT) (envelope-from shocking@houston.rr.com) Received: from bloop.craftncomp.com (localhost [127.0.0.1]) by bloop.craftncomp.com (8.9.3/8.9.3) with ESMTP id HAA62953 for ; Wed, 5 Jul 2000 07:25:43 -0500 (CDT) (envelope-from shocking@bloop.craftncomp.com) Message-Id: <200007051225.HAA62953@bloop.craftncomp.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: current@freebsd.org Subject: What's up with ftp.freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 07:25:42 -0500 From: Stephen Hocking Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It doesn't seem to be allowing anon logings - nobody released some fancy new game, have they? Stephen -- The views expressed above are not those of PGS Tensor. "We've heard that a million monkeys at a million keyboards could produce the Complete Works of Shakespeare; now, thanks to the Internet, we know this is not true." Robert Wilensky, University of California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 5:59:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.houston.rr.com (sm1.texas.rr.com [24.93.35.54]) by hub.freebsd.org (Postfix) with ESMTP id 3155337B791 for ; Wed, 5 Jul 2000 05:59:47 -0700 (PDT) (envelope-from shocking@houston.rr.com) Received: from bleep.craftncomp.com ([24.27.77.164]) by mail.houston.rr.com with Microsoft SMTPSVC(5.5.1877.357.35); Wed, 5 Jul 2000 08:01:03 -0500 Received: from bloop.craftncomp.com (bloop.craftncomp.com [202.12.111.1]) by bleep.craftncomp.com (8.9.3/8.9.3) with ESMTP id HAA30716 for ; Wed, 5 Jul 2000 07:56:21 -0500 (CDT) (envelope-from shocking@houston.rr.com) Received: from bloop.craftncomp.com (localhost [127.0.0.1]) by bloop.craftncomp.com (8.9.3/8.9.3) with ESMTP id HAA63152 for ; Wed, 5 Jul 2000 07:56:19 -0500 (CDT) (envelope-from shocking@bloop.craftncomp.com) Message-Id: <200007051256.HAA63152@bloop.craftncomp.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: current@freebsd.org Subject: Interesting SpecWeb benchmarks Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 07:56:18 -0500 From: Stephen Hocking Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG http://linuxtoday.com/news_story.php3?ltsn=2000-07-05-001-04-OP -- The views expressed above are not those of PGS Tensor. "We've heard that a million monkeys at a million keyboards could produce the Complete Works of Shakespeare; now, thanks to the Internet, we know this is not true." Robert Wilensky, University of California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 6: 7: 9 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 B301437B785; Wed, 5 Jul 2000 06:06:59 -0700 (PDT) (envelope-from n_hibma@qubesoft.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 139otE-0008gn-0B; Wed, 5 Jul 2000 13:06:56 +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 OAA40208; Wed, 5 Jul 2000 14:06:54 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id LAA27269; Wed, 5 Jul 2000 11:48:04 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Wed, 5 Jul 2000 11:48:04 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: KAME integration and plans 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 Could you mention the locations (as in a set of paths) that are hands-off? Nick On Wed, 5 Jul 2000, Kris Kennaway wrote: > As itojun has already posted, we are in the process of updating the > KAME IPv6/IPSEC code in FreeBSD to the latest KAME sources. > > In importing the latest KAME code, we are not being too concerned about > whitespace or cosmetic diffs, unifdef'ing __NetBSD__ sections (at least in > userland) and so forth. The reason for this is that KAME is externally > maintained code, and so cosmetic differences in FreeBSD needlessly > complicate the diffs and really make life harder for merging. The KAME > team already have a difficult enough job in maintaining and developing the > code on 11 different BSD releases without us making life more difficult > for them by committing unneccessary code changes to FreeBSD. > > In this vein, I'd like to suggest a new "hands-off" policy of not > committing gratuitous changes to KAME-derived code, including manpage > changes, unless: > > a) The commit is required for operation on FreeBSD (in which case it's not > really gratuitous) > > b) The commit is suitable for the other platforms KAME supports > as well, and is submitted back to KAME to be merged into their master > repo. If there are legitimate concerns with KAME code the place to get > them fixed is upstream, not in FreeBSD. > > For example, the "hard sentence break" manpage sweeps should have been > submitted back to KAME, and the "remove unneeded #includes" should not > have touched the KAME code at all since it creates gratuitous diffs for no > functional change. X years down the line if the KAME project disbands, we > can do the FreeBSD style cleanups then. > > At the moment I am not bothering to merge in gratuitous FreeBSD changes to > things like manpages, because we want to get this code into -current and > tested as quickly as possible. Sheldon Hearn will be taking care of > passing the manpage diffs back to KAME. > > I intend to MFC this stuff in 4 or 5 days assuming it doesn't present any > problems, so this means we need everyone who is capable of doing so to > stress the new code as much as possible. IMO we *really* need to get this > into 4.1 despite the relatively short testing cycle, for the simple reason > that the newer code is much more functional, and in particular supports > the racoon IKE daemon for automatic management of IPSEFC security > associations (i.e. manually-keyed SAs are no longer required) - this is > already in ports. This is important for interoperability with other IPSEC > implementations. > > I also would quite like to see ALTQ brought in - I have had lots of > support for this and so far no objections - although I forgot to ask > itojun not to unifdef that code before it was committed :-(. Perhaps if he > has time he'll commit that as well. > > Userland binaries are not yet fully committed: the older binaries may not > work corectly with the new kernel code. > > Anyone wanting to play with this stuff to help test it should check out > www.freenet6.net, who provide a very simple way to establish a tunnel to > the 6bone. Documentation is available on www.kame.net and related links. > > 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 > -- 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 Wed Jul 5 7:35:17 2000 Delivered-To: freebsd-current@freebsd.org Received: from zappa.demon.nl (zappa.demon.nl [195.173.232.30]) by hub.freebsd.org (Postfix) with ESMTP id 5CB9F37B59D for ; Wed, 5 Jul 2000 07:35:12 -0700 (PDT) (envelope-from ron@zappa.demon.nl) Received: from zappa.demon.nl (sonic.demon.nl [192.168.1.4]) by zappa.demon.nl (Postfix) with ESMTP id 922C31EE3 for ; Wed, 5 Jul 2000 16:36:31 +0200 (CEST) Message-ID: <3963491C.FA3546D9@zappa.demon.nl> Date: Wed, 05 Jul 2000 16:41:32 +0200 From: Ron Klinkien X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Subject: Sysinstall panics kernel when SCSI_DELAY in kernel is too short, is this ok? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, In current as of today, /stand/sysinstall generates the following kernel panic when probing for devices... --- (typed manually from console) --- fatal trap 12: page fault while in kernel mode fault virtual addres = 0x26c80 fault code = supervisor read, page not present instruction pointer = 0x8:0xc017309e stack pointer = 0x10:0xc8782d04 frame pointer = 0x10:0xc8782d04 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gram 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 163 (sysinstall) interrupt mask = none trap number = 12 panic: page fault scsi part from dmesg: da0 at ahc0 bus 0 target 10 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 8761MB (17942584 512 byte sectors: 255H 63S/T 1116C) WARNING: / was not properly dismounted (cd1:ahc0:0:5:0): got CAM status 0x4c (cd1:ahc0:0:5:0): fatal error, failed to attach to device (cd1:ahc0:0:5:0): lost device (cd1:ahc0:0:5:0): removing device entry cd0 at ahc0 bus 0 target 1 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present Notice the cd1: lines, its a CDR (HP 4020i) which is not recognized because SCSI_DELAY was too short in kernel config. When I raise it too 15000 instead of 150 the cd1 is recognized on startup. And the panic went away, thats not the problem. My question is: Is the device entry removed ok from the system like dmesg says, sysinstall seems to still find something there when probing, and crashes the system. The scsi controller is a ahc type (onboard Asus P2B-S). Regards, Ron. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 9:29: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id BA5F137B56C for ; Wed, 5 Jul 2000 09:29:01 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id JAA38679; Wed, 5 Jul 2000 09:29:00 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id JAA43538; Wed, 5 Jul 2000 09:30:13 -0700 (PDT) (envelope-from john) Message-Id: <200007051630.JAA43538@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200007051227.IAA81038@whizzo.transsys.com> Date: Wed, 05 Jul 2000 09:30:13 -0700 (PDT) From: John Baldwin To: "Louis A. Mamakos" Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 05-Jul-00 Louis A. Mamakos wrote: > >> Here is my proposal, adjusted a little as per suggestions. It attempts to >> follow these loose guidelines: > > ... > >> net/ - move existing contents to net/base or something >> similar >> atalk/ - formerly sys/netatalk >> atm/ - formerly sys/netatm >> netgraph/ - formerly sys/netgraph >> ip/ - IPv4, IPv6, and IPsec bits from sys/netinet{,6} >> tcp/ - TCP " " " " >> udp/ - UDP " " " " >> ipx/ - formerly sys/netipx >> key/ - formerly sys/netkey >> natm/ - formerly sys/netnatm >> ncp/ - formerly sys/netncp >> ns/ - formerly sus/netns > >> Notes: >> - There has been one vote so far to ditch the whole net/ reorg, although >> other people have expressed support for it. > > Please take this as another vote to ditch the whole net/ reorg. > > It's interesting that as this discussion is going on,the KAME folks are > merging the new IPv6 and IPSEC code into -current and comment that our > network code is much more different that the other BSD's. I'd hate to > see it diverge further unless there's a real compelling reason. The KAME integration is a primary reason why I am becoming more reluctant to reorganize net/, or possibly postpone it until that work is done. Another guideline that lines up with our existing code might be to require all networking modules to use a directory matching the regex 'net.*'. I'm planning on doing this in stages anyway, and net/ would probably be the last stage if it is done, but I need to discuss this with Peter first. :) > louie -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 9:29:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 033BA37B58F for ; Wed, 5 Jul 2000 09:29:02 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id JAA38683; Wed, 5 Jul 2000 09:29:01 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id JAA43542; Wed, 5 Jul 2000 09:30:13 -0700 (PDT) (envelope-from john) Message-Id: <200007051630.JAA43542@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000705184041K.kjc@csl.sony.co.jp> Date: Wed, 05 Jul 2000 09:30:13 -0700 (PDT) From: John Baldwin To: Kenjiro Cho Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 05-Jul-00 Kenjiro Cho wrote: > > John Baldwin wrote: >> Notes: >> - There has been one vote so far to ditch the whole net/ reorg, although >> other people have expressed support for it. > > What do you intend to do with the networking headers? > The socket API standards specify the socket related headers and their > paths. At least, "net" and "netinet" should not be moved. The headers will always be installed in the right place in /usr/include: Makefile's are editable. As far as kernel compiles, symlinks can be created in the work directory as one possible solution. For example, sys/compile/i386/GENERIC/netinet -> ../../../../net/inet. This would most likely result in netinet _not_ being split up. > -Kenjiro -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 9:39:57 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id C961B37B509; Wed, 5 Jul 2000 09:39:52 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id BAA08611; Thu, 6 Jul 2000 01:38:59 +0900 (JST) To: Nick Hibma Cc: Kris Kennaway , current@FreeBSD.ORG In-reply-to: n_hibma's message of Wed, 05 Jul 2000 11:48:04 +0100. X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: KAME integration and plans From: itojun@iijlab.net Date: Thu, 06 Jul 2000 01:38:59 +0900 Message-ID: <8609.962815139@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Could you mention the locations (as in a set of paths) that are >hands-off? thanks for your understanding, will try to list those and put the list into sys/netinet6/README. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 9:54:51 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 E4E4F37B5B2; Wed, 5 Jul 2000 09:54:45 -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 KAA16478; Wed, 5 Jul 2000 10:54:42 -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 KAA40980; Wed, 5 Jul 2000 10:54:23 -0600 (MDT) Message-Id: <200007051654.KAA40980@harmony.village.org> To: FUJISHIMA Satsuki Subject: Re: Help with Linux interpreter Cc: grog@lemis.com, current@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: Your message of "Wed, 05 Jul 2000 00:17:46 +0900." <86lmzhgc11.wl@cheerful.com> References: <86lmzhgc11.wl@cheerful.com> <86hfa81m2f.wl@cheerful.com> <200007020325.VAA56324@harmony.village.org> <20000704110640.B94351@wantadilla.lemis.com> Date: Wed, 05 Jul 2000 10:54:23 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <86lmzhgc11.wl@cheerful.com> FUJISHIMA Satsuki writes: : Hmm, all that I can tell about the matter is described in the PR: : http://www.freebsd.org/cgi/query-pr.cgi?pr=18489 : : I'm not sure this is the case but it looks pretty similar for me. Hmmm. I took another look at this PR. It fixed my problem. I deinstalled linux_base (cause I F***ed it up somehow) and acroread4. I then updated the acroread4 port (which had Makefile 1.25 instead of Makefile 1.26 for reasons I still don't understand, but were likely pilot error on my part) and reinstalled both. It works for me now. fujishima-san, arigatou gozaimashita! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 10:24:18 2000 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id E3B8837B81C; Wed, 5 Jul 2000 10:24:12 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id NAA30378; Wed, 5 Jul 2000 13:24:07 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 5 Jul 2000 13:24:07 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Kris Kennaway Cc: current@FreeBSD.org Subject: Re: KAME integration and plans 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 This is great news -- one of the big hangups in our interop testing at NAI Labs was the like of IKE on FreeBSD. I notice that right now racoon is a port -- assuming this interpretation is correct, are their any plans to integrate racoon as a base system component? As you point out, without IKE, FreeBSD's IPsec implementation is effectively useless for cross-platform communication due to the number of frobs in SA configuration. I also look forward to the rapid MFC'ing, assuming that the code works :-). Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 10:26:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 74C6537B738; Wed, 5 Jul 2000 10:26:12 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.9.3/8.9.3) with SMTP id NAA30407; Wed, 5 Jul 2000 13:26:10 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 5 Jul 2000 13:26:10 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: John Baldwin Cc: Kenjiro Cho , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-Reply-To: <200007051630.JAA43542@john.baldwin.cx> 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, 5 Jul 2000, John Baldwin wrote: > The headers will always be installed in the right place in > /usr/include: Makefile's are editable. As far as kernel > compiles, symlinks can be created in the work directory as > one possible solution. For example, > sys/compile/i386/GENERIC/netinet -> ../../../../net/inet. > This would most likely result in netinet _not_ being split > up. As much as I'd love a complete cleanup of sys/, this cure seems to be worse than the problem. :-) Take this as another vote to leave net/ as is, if only to keep the includes in kernel code in sync with includes in userland code :-). Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 10:27:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from implode.root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 6DC0A37B8A3 for ; Wed, 5 Jul 2000 10:27:50 -0700 (PDT) (envelope-from dg@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id KAA17209; Wed, 5 Jul 2000 10:16:52 -0700 (PDT) Message-Id: <200007051716.KAA17209@implode.root.com> To: Stephen Hocking Cc: current@FreeBSD.ORG Subject: Re: What's up with ftp.freebsd.org In-reply-to: Your message of "Wed, 05 Jul 2000 07:25:42 CDT." <200007051225.HAA62953@bloop.craftncomp.com> From: David Greenman Reply-To: dg@root.com Date: Wed, 05 Jul 2000 10:16:52 -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >It doesn't seem to be allowing anon logings - nobody released some fancy new >game, have they? I've had to reduce the user limit until a bandwidth issue is addressed. It should be back to normal by the weekend. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org Manufacturer of high-performance Internet servers - http://www.terasolutions.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 10:58: 4 2000 Delivered-To: freebsd-current@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id A7FD937BC0C; Wed, 5 Jul 2000 10:58:02 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 0D98E1C64; Wed, 5 Jul 2000 13:58:02 -0400 (EDT) Date: Wed, 5 Jul 2000 13:58:02 -0400 From: Bill Fumerola To: Blaz Zupan Cc: Will Andrews , FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000705135801.P4034@jade.chc-chimes.com> References: <20000704154725.A445@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from blaz@amis.net on Tue, Jul 04, 2000 at 09:56:43PM +0200 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 04, 2000 at 09:56:43PM +0200, Blaz Zupan wrote: > Ok, so let's say my / is 100% full, my /usr is 50% full and my /var is 20% > full. What would the total number tell me? That my file systems are 56.6% > full. That tells me nothing about my root file system running out of space, so > this number is completely useless to me. I have to agree with Sheldon, where > is the use to this number? If you would use the "total" field to monitor diskusage on / then you get what you deserve. Think about doing something like $ df -c/disk0 /disk1 /disk2 ... /diskX To just monitor a cluster of disks. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CHIMES e-mail: billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 11: 0:34 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 B66C337BCC2 for ; Wed, 5 Jul 2000 11:00:30 -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 LAA03814 for ; Wed, 5 Jul 2000 11:00:29 -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 LAA38193; Wed, 5 Jul 2000 11:00:29 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Wed, 5 Jul 2000 11:00:29 -0700 (PDT) Message-Id: <200007051800.LAA38193@vashon.polstra.com> To: current@freebsd.org Reply-To: current@freebsd.org Subject: Re: /sys hierarchy In-Reply-To: References: Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article , Robert Watson wrote: > On Wed, 5 Jul 2000, John Baldwin wrote: > > > The headers will always be installed in the right place in > > /usr/include: Makefile's are editable. As far as kernel > > compiles, symlinks can be created in the work directory as > > one possible solution. For example, > > sys/compile/i386/GENERIC/netinet -> ../../../../net/inet. > > This would most likely result in netinet _not_ being split > > up. > > As much as I'd love a complete cleanup of sys/, this cure seems to be > worse than the problem. :-) Take this as another vote to leave net/ as > is, if only to keep the includes in kernel code in sync with includes in > userland code :-). I agree with Robert. Leave the network stuff where it is. 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 Wed Jul 5 11:17:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 1D9B237BDEA for ; Wed, 5 Jul 2000 11:17:43 -0700 (PDT) (envelope-from mikko@dynas.se) Received: (qmail 9496 invoked from network); 5 Jul 2000 18:17:40 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 5 Jul 2000 18:17:40 -0000 Received: (qmail 10003 invoked from network); 5 Jul 2000 18:17:46 -0000 Received: from m2.dynas.se (172.16.1.168) by spirit.dynas.se with SMTP; 5 Jul 2000 18:17:46 -0000 Received: (from mikko@localhost) by m2.dynas.se (8.9.3/8.9.3) id UAA24735; Wed, 5 Jul 2000 20:22:32 +0200 (CEST) (envelope-from mikko) Date: Wed, 5 Jul 2000 20:22:32 +0200 (CEST) From: Mikko Tyolajarvi Message-Id: <200007051822.UAA24735@m2.dynas.se> To: bsd@bsdhome.com Cc: freebsd-current@freebsd.org Subject: Re: DHCP does not honor default router? Newsgroups: local.freebsd-current References: <3962845C.F195E50D@gorean.org> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In freebsd-current Brian Dean wrote: [... About using /etc/dhclient-exit-hooks ] >I found this exit hook feature by looking at the source for >dhclient-script, but, oddly enough, it is even documented in the man >page. That is how I found the hooks too... However, the one hook that I like to use most does not work on FreeBSD; to redefine the make_resolv_conf function which gets called right after everything has been set up. Last time I checked the ISC source, it was botched for all platforms but NetBSD. I wish someone would commit the obvious fix for this (bin/15046). /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 11:20:58 2000 Delivered-To: freebsd-current@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E82F37B509 for ; Wed, 5 Jul 2000 11:20:53 -0700 (PDT) (envelope-from dkwiebe@hagenhomes.com) Received: from hagenhomes.com (dyn118.heartland.ab.ca [207.107.228.118]) by jasper.heartland.ab.ca (8.9.0/8.9.0) with ESMTP id MAA26420; Wed, 5 Jul 2000 12:18:17 -0600 (MDT) Message-ID: <396327CE.F53D05C6@hagenhomes.com> Date: Wed, 05 Jul 2000 12:19:26 +0000 From: Darren Wiebe Organization: Hagen Homes Ltd. X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Ollivier Robert Cc: "FreeBSD Current Users' list" Subject: Re: [PATCH] buildworld broken in libusb References: <20000705130022.I70328@caerdonn.eurocontrol.fr> <20000705131854.A78573@caerdonn.eurocontrol.fr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just tried out this patch and it does indead appear to work. Darren Wiebe dkwiebe@hagenhomes.com Ollivier Robert wrote: > > According to Ollivier Robert: > > buildworld is broken in libusb. Here is a tentative patch (I'm re-building > > the world right now). The alternative is to #define UPACKED in usbhid.h. > > Forget that fix, it doesn't work. > > This one will although I don't like it. > > cvs diff: Diffing . > Index: usbhid.h > =================================================================== > RCS file: /home/ncvs/src/sys/dev/usb/usbhid.h,v > retrieving revision 1.9 > diff -u -2 -r1.9 usbhid.h > --- usbhid.h 2000/07/05 08:11:43 1.9 > +++ usbhid.h 2000/07/05 11:14:13 > @@ -55,4 +55,6 @@ > #define UR_SET_PROTOCOL 0x0b > > +#define UPACKED __attribute__ ((packed)) > + > typedef struct usb_hid_descriptor { > uByte bLength; > > -- > Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr > The Postman hits! The Postman hits! You have new mail. > > 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 Wed Jul 5 11:25:18 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 5A72037B509 for ; Wed, 5 Jul 2000 11:25:13 -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 LAA03947; Wed, 5 Jul 2000 11:25:12 -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 LAA38268; Wed, 5 Jul 2000 11:25:11 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Wed, 5 Jul 2000 11:25:11 -0700 (PDT) Message-Id: <200007051825.LAA38268@vashon.polstra.com> To: mjacob@feral.com Subject: Re: fwiw, release for -stable (alpha) 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 , Matthew Jacob wrote: > > And for -stable (instead of -current); > > ===> Creating README.html for jpeg-6b > ===> graphics/juno-2 > "Makefile", line 60: Malformed conditional (empty(TARGET)) > "Makefile", line 60: Missing dependency operator > "Makefile", line 64: if-less endif > "Makefile", line 64: Need an operator > make: fatal errors encountered -- cannot continue > *** Error code 1 *Shrug* It's a mystery to me. The offending line looks like this: .if empty(TARGET) and as far as I can tell, it's valid. There is a similar construct in "src/lib/libc/Makefile.inc": .if empty(MDSRCS) and I haven't seen any complaints of problems with that. The Makefile hasn't changed since mid-April. I don't know what to advise, except check to make sure your copy of the Makefile is uncorrupted. 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 Wed Jul 5 11:26:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 756D137B509 for ; Wed, 5 Jul 2000 11:26:50 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id LAA08614; Wed, 5 Jul 2000 11:26:39 -0700 Date: Wed, 5 Jul 2000 11:25:06 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: John Polstra Cc: current@freebsd.org Subject: Re: fwiw, release for -stable (alpha) In-Reply-To: <200007051825.LAA38268@vashon.polstra.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Huh. That's what it has. Sigh...Whine..... On Wed, 5 Jul 2000, John Polstra wrote: > In article , > Matthew Jacob wrote: > >=20 > > And for -stable (instead of -current); > >=20 > > =3D=3D=3D> Creating README.html for jpeg-6b > > =3D=3D=3D> graphics/juno-2 > > "Makefile", line 60: Malformed conditional (empty(TARGET)) > > "Makefile", line 60: Missing dependency operator > > "Makefile", line 64: if-less endif > > "Makefile", line 64: Need an operator > > make: fatal errors encountered -- cannot continue > > *** Error code 1 >=20 > *Shrug* It's a mystery to me. The offending line looks like this: >=20 > =09.if empty(TARGET) >=20 > and as far as I can tell, it's valid. There is a similar construct > in "src/lib/libc/Makefile.inc": >=20 > =09.if empty(MDSRCS) >=20 > and I haven't seen any complaints of problems with that. The Makefile > hasn't changed since mid-April. >=20 > I don't know what to advise, except check to make sure your copy of the > Makefile is uncorrupted. >=20 > John > --=20 > John Polstra jdp@polstra.= com > John D. Polstra & Co., Inc. Seattle, Washington = USA > "Disappointment is a good sign of basic intelligence." -- Ch=F6gyam Tr= ungpa >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 11:27:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id CCFF237BF86 for ; Wed, 5 Jul 2000 11:27:18 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id MAA14607; Wed, 5 Jul 2000 12:27:06 -0600 (MDT) (envelope-from ken) Date: Wed, 5 Jul 2000 12:27:05 -0600 From: "Kenneth D. Merry" To: David Greenman Cc: Stephen Hocking , current@FreeBSD.ORG Subject: Re: What's up with ftp.freebsd.org Message-ID: <20000705122705.A14588@panzer.kdm.org> References: <200007051225.HAA62953@bloop.craftncomp.com> <200007051716.KAA17209@implode.root.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007051716.KAA17209@implode.root.com>; from dg@root.com on Wed, Jul 05, 2000 at 10:16:52AM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 05, 2000 at 10:16:52 -0700, David Greenman wrote: > >It doesn't seem to be allowing anon logings - nobody released some fancy new > >game, have they? > > I've had to reduce the user limit until a bandwidth issue is addressed. It > should be back to normal by the weekend. You might want to adjust the error message people get when the user limit has been exceeded: ncftp>open ftp.freebsd.org User anonymous access denied. Login failed. ncftp>quit Most ftp servers say something about too many users...this leaves people with the impression that the machine doesn't support anonymous ftp. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 11:37:18 2000 Delivered-To: freebsd-current@freebsd.org Received: from implode.root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 9977A37BED0 for ; Wed, 5 Jul 2000 11:37:10 -0700 (PDT) (envelope-from dg@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id LAA17513; Wed, 5 Jul 2000 11:25:38 -0700 (PDT) Message-Id: <200007051825.LAA17513@implode.root.com> To: "Kenneth D. Merry" Cc: Stephen Hocking , current@FreeBSD.ORG Subject: Re: What's up with ftp.freebsd.org In-reply-to: Your message of "Wed, 05 Jul 2000 12:27:05 MDT." <20000705122705.A14588@panzer.kdm.org> From: David Greenman Reply-To: dg@root.com Date: Wed, 05 Jul 2000 11:25:38 -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >On Wed, Jul 05, 2000 at 10:16:52 -0700, David Greenman wrote: >> >It doesn't seem to be allowing anon logings - nobody released some fancy new >> >game, have they? >> >> I've had to reduce the user limit until a bandwidth issue is addressed. It >> should be back to normal by the weekend. > >You might want to adjust the error message people get when the user limit >has been exceeded: > >ncftp>open ftp.freebsd.org >User anonymous access denied. >Login failed. >ncftp>quit > >Most ftp servers say something about too many users...this leaves people >with the impression that the machine doesn't support anonymous ftp. Oops! I forgot about that when I built the server earlier in the year. This is the first time that the limit has been reached, so noone noticed. :-) -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org Manufacturer of high-performance Internet servers - http://www.terasolutions.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 11:57:57 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id 82FCF37BFDC; Wed, 5 Jul 2000 11:57:52 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id DAA12257; Thu, 6 Jul 2000 03:57:51 +0900 (JST) To: Robert Watson Cc: Kris Kennaway , current@FreeBSD.org In-reply-to: rwatson's message of Wed, 05 Jul 2000 13:24:07 -0400. X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: KAME integration and plans From: itojun@iijlab.net Date: Thu, 06 Jul 2000 03:57:51 +0900 Message-ID: <12255.962823471@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >This is great news -- one of the big hangups in our interop testing at NAI >Labs was the like of IKE on FreeBSD. I notice that right now racoon is a >port -- assuming this interpretation is correct, are their any plans to >integrate racoon as a base system component? As you point out, without >IKE, FreeBSD's IPsec implementation is effectively useless for >cross-platform communication due to the number of frobs in SA >configuration. I also look forward to the rapid MFC'ing, assuming that >the code works :-). this is because we expect to have so many many changes/improvements in racoon - once we put racoon into base tree, we need to be much more careful about backward-compatibility in config file, for example. also, we need to improve kernel policy management for socket-based policy, and process-to-process policy inheritance. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 12:14:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 1FF9337B66F; Wed, 5 Jul 2000 12:14:23 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id MAA53761; Wed, 5 Jul 2000 12:10:30 -0700 (PDT) (envelope-from obrien) Date: Wed, 5 Jul 2000 12:10:30 -0700 From: "David O'Brien" To: Marcel Moolenaar Cc: John Baldwin , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000705121030.B53625@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> <20000702134944.D96427@dragon.nuxi.com> <39626AD8.4C7FAF20@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <39626AD8.4C7FAF20@cup.hp.com>; from marcel@cup.hp.com on Tue, Jul 04, 2000 at 03:53:12PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jul 04, 2000 at 03:53:12PM -0700, Marcel Moolenaar wrote: > Good point. For the linuxulator this has been discussed before and > something in the line off... > ...came out of it. Even before you get an Alpha, would you be able to seperate the Linux bits before 4.1-R so the 4.x sys/ tree stays the same for most of its life and matches 5-CURRENT? I have a tarball of /sys/alpha/linux/ that I could pass on to you to look at what is needed MD wise for the Alpha. Just a list of what should be repo copied to /sys/linux and ``cvs rm'' from /sys/i386/linux/ would be very helpful. I can do forward the list to the CVS meisers and do the cleanup if you don't have time to deal with it. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 12:47:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 4814137B824; Wed, 5 Jul 2000 12:47:07 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 8FA24DA2; Wed, 5 Jul 2000 12:47:06 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id MAA21071; Wed, 5 Jul 2000 12:47:05 -0700 (PDT) Message-ID: <396390BA.BE499645@cup.hp.com> Date: Wed, 05 Jul 2000 12:47:06 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.ORG Cc: John Baldwin , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> <20000702134944.D96427@dragon.nuxi.com> <39626AD8.4C7FAF20@cup.hp.com> <20000705121030.B53625@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > > On Tue, Jul 04, 2000 at 03:53:12PM -0700, Marcel Moolenaar wrote: > > Good point. For the linuxulator this has been discussed before and > > something in the line off... > > ...came out of it. > > Even before you get an Alpha, would you be able to seperate the Linux > bits before 4.1-R so the 4.x sys/ tree stays the same for most of its > life and matches 5-CURRENT? I have a tarball of /sys/alpha/linux/ that I > could pass on to you to look at what is needed MD wise for the Alpha. Tricky. I have been working on this before and the approach I took (and seemed most likely to succeed) was to look at each syscall and see if it was directly or indirectly MD or MI. I could do this before I have an Alpha assuming that we don't need a working Alpha port yet. The question is if we have enough time for it? On the other hand, it doesn't have to be perfect, as long as the i386 port works... I should have the tarball somewhere as well (at least the one Andrew made "public"). Send me what you've got (to make sure I have the latest) and I'll take a look at it... -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 13: 9:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 4B31F37BC9D for ; Wed, 5 Jul 2000 13:09:21 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id NAA54159; Wed, 5 Jul 2000 13:06:47 -0700 (PDT) (envelope-from obrien) Date: Wed, 5 Jul 2000 13:06:47 -0700 From: "David O'Brien" To: Marcel Moolenaar Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy Message-ID: <20000705130646.B54125@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <40081.962483740@localhost> <200007020736.AAA33902@john.baldwin.cx> <20000702134944.D96427@dragon.nuxi.com> <39626AD8.4C7FAF20@cup.hp.com> <20000705121030.B53625@dragon.nuxi.com> <396390BA.BE499645@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <396390BA.BE499645@cup.hp.com>; from marcel@cup.hp.com on Wed, Jul 05, 2000 at 12:47:06PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jul 05, 2000 at 12:47:06PM -0700, Marcel Moolenaar wrote: > I could do this before I have an Alpha assuming that we don't need a > working Alpha port yet. The question is if we have enough time for it? > On the other hand, it doesn't have to be perfect, as long as the i386 > port works... Yes on the i386, and IMHO yes on the Alpha issue. > I should have the tarball somewhere as well (at least the one Andrew > made "public"). Send me what you've got (to make sure I have the latest) > and I'll take a look at it... I started with Andrews and made some tweaks. It used to build fine, but a month ago got broke with some changes to i386/linux. I'll try to get it buildable again before sending it on. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 13:33:16 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 44D7C37BE9C; Wed, 5 Jul 2000 13:33:14 -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 NAA72028; Wed, 5 Jul 2000 13:33:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 13:33:14 -0700 (PDT) From: Kris Kennaway To: Nick Hibma Cc: current@FreeBSD.ORG Subject: Re: KAME integration and plans 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 Wed, 5 Jul 2000, Nick Hibma wrote: > Could you mention the locations (as in a set of paths) that are > hands-off? I'll generate a list and put it somewhere (in the tree?) Good idea. 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 Jul 5 13:35:55 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 BE85A37BCC2; Wed, 5 Jul 2000 13:35:52 -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 NAA72257; Wed, 5 Jul 2000 13:35:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 13:35:52 -0700 (PDT) From: Kris Kennaway To: Robert Watson Cc: current@FreeBSD.org Subject: Re: KAME integration and plans 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 Wed, 5 Jul 2000, Robert Watson wrote: > > This is great news -- one of the big hangups in our interop testing at NAI > Labs was the like of IKE on FreeBSD. I notice that right now racoon is a > port -- assuming this interpretation is correct, are their any plans to > integrate racoon as a base system component? As you point out, without > IKE, FreeBSD's IPsec implementation is effectively useless for > cross-platform communication due to the number of frobs in SA > configuration. I also look forward to the rapid MFC'ing, assuming that > the code works :-). racoon was not imported because it is still a rapidly changing target..perhaps once development slows down a bit we can import it (NetBSD also have it in ports) 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 Jul 5 15: 4:54 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id D59F337B831 for ; Wed, 5 Jul 2000 15:04:47 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA09388 for ; Wed, 5 Jul 2000 15:04:47 -0700 Date: Wed, 5 Jul 2000 15:03:13 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: current@freebsd.org Subject: subtle problem du jour.... 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 This really bit me- it shouldn't have- but it did.... I had a i386 system with a 4GB disk -- root partition ~1GB.... but the motherboard was setting up BIOS as a CHS instead of an LBA arrangement. The only time this showed up as problem was that when I reinstalled the loader (and related forth files), loader silently was not able to read /boot or /modules- the key word here is "silently". There ought to be a warning in loader(8) maybe about this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 15:12: 2 2000 Delivered-To: freebsd-current@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-51.dsl.snfc21.pacbell.net [63.202.177.51]) by hub.freebsd.org (Postfix) with ESMTP id 453AE37B94A for ; Wed, 5 Jul 2000 15:11:56 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id PAA13242; Wed, 5 Jul 2000 15:18:59 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200007052218.PAA13242@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: mjacob@feral.com Cc: current@freebsd.org Subject: Re: subtle problem du jour.... In-reply-to: Your message of "Wed, 05 Jul 2000 15:03:13 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 15:18:59 -0700 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > This really bit me- it shouldn't have- but it did.... > > I had a i386 system with a 4GB disk -- root partition ~1GB.... but the > motherboard was setting up BIOS as a CHS instead of an LBA arrangement. > > The only time this showed up as problem was that when I reinstalled the > loader (and related forth files), loader silently was not able to read /boot > or /modules- the key word here is "silently". > > There ought to be a warning in loader(8) maybe about this? The loader used to bitch if it couldn't find its startup files, but this got turned off because people didn't like it. There would be a couple of ways to deal with the problem you're seeing (in addition to the very worthwhile documentation) - a) bitch if the loader.rc file can't be found/read. b) bitch in the BIOS disk driver if an illegal read is attempted. Both of these might have given you enough clue to help find the problem more quickly. Any comments, folks? -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 15:30:42 2000 Delivered-To: freebsd-current@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id E93BD37B7CF; Wed, 5 Jul 2000 15:30:33 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from semuta.feral.com (semuta [192.67.166.70]) by feral.com (8.9.3/8.9.3) with ESMTP id PAA09483; Wed, 5 Jul 2000 15:30:31 -0700 Date: Wed, 5 Jul 2000 15:28:57 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: Mike Smith Cc: current@freebsd.org Subject: Re: subtle problem du jour.... In-Reply-To: <200007052218.PAA13242@mass.osd.bsdi.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, 5 Jul 2000, Mike Smith wrote: > > > > This really bit me- it shouldn't have- but it did.... > > > > I had a i386 system with a 4GB disk -- root partition ~1GB.... but the > > motherboard was setting up BIOS as a CHS instead of an LBA arrangement. > > > > The only time this showed up as problem was that when I reinstalled the > > loader (and related forth files), loader silently was not able to read /boot > > or /modules- the key word here is "silently". > > > > There ought to be a warning in loader(8) maybe about this? > > The loader used to bitch if it couldn't find its startup files, but this > got turned off because people didn't like it. There would be a couple of > ways to deal with the problem you're seeing (in addition to the very > worthwhile documentation) - > > a) bitch if the loader.rc file can't be found/read. > > b) bitch in the BIOS disk driver if an illegal read is attempted. > > Both of these might have given you enough clue to help find the problem > more quickly. Any comments, folks? both would have been helpful To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 16:21:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id DFB9B37BD3C for ; Wed, 5 Jul 2000 16:21:01 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id IAA07298; Thu, 6 Jul 2000 08:20:53 +0900 (JST) Received: from unknown(133.253.122.1) by kbtfw.kubota.co.jp via smap (V4.2) id xma007234; Thu, 6 Jul 00 08:20:45 +0900 Received: from jkpc15.tk.kubota.co.jp ([192.168.7.250]) by kbtmx.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id IAA03167; Thu, 6 Jul 2000 08:20:42 +0900 (JST) Received: from localhost (localhost.ttr.kubota.co.jp [127.0.0.1]) by jkpc15.tk.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id IAA00764; Thu, 6 Jul 2000 08:19:14 +0900 (JST) To: iwasaki@jp.FreeBSD.org Cc: mark@grondar.za, current@FreeBSD.ORG Subject: Re: randomdev and APM. Not working together? In-Reply-To: <20000705204455R.iwasaki@jp.FreeBSD.org> References: <20000705145916I.haro@tk.kubota.co.jp> <20000705201216R.haro@tk.kubota.co.jp> <20000705204455R.iwasaki@jp.FreeBSD.org> X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000706081914X.haro@tk.kubota.co.jp> Date: Thu, 06 Jul 2000 08:19:14 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 30 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: Mitsuru IWASAKI Date: Wed, 05 Jul 2000 20:44:55 +0900 ::> 2)Randomdev Loaded: Probe & attach will happen in the order - ::> (1)acpi0, (2)apm0, (3)nxp0 .....NG ::> ::> Because acpi0 access the BIOS first, APM support in BIOS seems to ::> get turned off. :-( :: ::Yes, current acpi driver is doing this for testing purpose in ::attach(). We need to handle this matter soon so that we could have ::both of apm and acpi in our kernel. Could you disable this line in ::sys/i386/acpi/acpi.c:acpi_attach() and enable acpi later with acpiconf -e ? :: :: acpi_enable_disable(sc, 1); Iwasaki-san, I'll try that and report back to you. Thank you, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kubota.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 17:17:49 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 C0C2037BAD9; Wed, 5 Jul 2000 17:17:45 -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 UAA250012; Wed, 5 Jul 2000 20:17:42 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <200007052218.PAA13242@mass.osd.bsdi.com> References: <200007052218.PAA13242@mass.osd.bsdi.com> Date: Wed, 5 Jul 2000 20:18:44 -0400 To: Mike Smith , mjacob@feral.com From: Garance A Drosihn Subject: Re: subtle problem du jour.... 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 3:18 PM -0700 7/5/00, Mike Smith wrote: >someone else wrote: > > The only time this showed up as problem was that when I reinstalled > > the loader (and related forth files), loader silently was not able > > to read /boot or /modules- the key word here is "silently". > > > > There ought to be a warning in loader(8) maybe about this? > >There would be a couple of ways to deal with the problem you're >seeing (in addition to the very worthwhile documentation) - > >a) bitch if the loader.rc file can't be found/read. > >b) bitch in the BIOS disk driver if an illegal read is attempted. > >Both of these might have given you enough clue to help find the >problem more quickly. Any comments, folks? Something along these lines might have saved me a few hours a week or two ago. I managed to create my partitions so '/' was the LAST freebsd in the slice I was installing into, instead of the first partition. This gave me some weird error messages when trying to start up. In my case the problem was that '/' started out past the 8-gig mark (even though the rest of the partitions were all before the 8-gig mark). I don't know how much work it would be to generate a specific enough error message, but in my case I didn't realize I had put the partition where I had put it. I was getting some kind of error message, but it wasn't specific enough to help jar me into looking at the right issue. Eventually one of my friends asked for some disklabel info, and then we were able to see where I had mixed things up. --- 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 Jul 5 18:37:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.butya.kz (butya-gw.butya.kz [212.154.129.94]) by hub.freebsd.org (Postfix) with ESMTP id 1AA2E37B772; Wed, 5 Jul 2000 18:37:41 -0700 (PDT) (envelope-from bp@butya.kz) Received: from bp (helo=localhost) by relay.butya.kz with local-esmtp (Exim 3.13 #1) id 13A0bg-000CJj-00; Thu, 06 Jul 2000 08:37:36 +0700 Date: Thu, 6 Jul 2000 08:37:36 +0700 (ALMST) From: Boris Popov To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-Reply-To: <200007050704.AAA42641@john.baldwin.cx> 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, 5 Jul 2000, John Baldwin wrote: > Here is my proposal, adjusted a little as per suggestions. It attempts to > follow these loose guidelines: > > - MD code under sys/${MACHINE_ARCH} > - device drivers (including bus's such as cam and usb) under sys/dev > - file systems under fs/ > - networking under net/ I would like also suggest a directory for optional kernel interfaces which doesn't belong to drivers (syscall and sysctl extensions for example) and can't go under sys/dev/. They can be considered as 'kernel libraries' and may live under sys/lib directory (it should be organized as sys/dev, eg. one directory per interface). Comments ? -- Boris Popov http://www.butya.kz/~bp/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 18:59:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 70D0137B772 for ; Wed, 5 Jul 2000 18:59:47 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id SAA95027; Wed, 5 Jul 2000 18:59:38 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from FreeBSD.org (jhb@localhost [127.0.0.1]) by foo.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id SAA02081; Wed, 5 Jul 2000 18:59:13 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-ID: <3963E7F1.EC8F6D52@FreeBSD.org> Date: Wed, 05 Jul 2000 18:59:13 -0700 From: John Baldwin Organization: BSD, Inc. X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Boris Popov Cc: freebsd-current@FreeBSD.org Subject: Re: /sys hierarchy References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Boris Popov wrote: > > On Wed, 5 Jul 2000, John Baldwin wrote: > > > Here is my proposal, adjusted a little as per suggestions. It attempts to > > follow these loose guidelines: > > > > - MD code under sys/${MACHINE_ARCH} > > - device drivers (including bus's such as cam and usb) under sys/dev > > - file systems under fs/ > > - networking under net/ > > I would like also suggest a directory for optional kernel > interfaces which doesn't belong to drivers (syscall and sysctl extensions > for example) and can't go under sys/dev/. They can be considered as > 'kernel libraries' and may live under sys/lib directory (it should be > organized as sys/dev, eg. one directory per interface). > > Comments ? OpenBSD has a precedent for this with sys/lib containing libkern, libz, and some other library. Boris has a libiconv that he needs to import for Netware stuff if I'm correct. If we deem that it needs to go in the kernel, then I can add sys/lib to the list. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 19:48:39 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 395FB37BF05; Wed, 5 Jul 2000 19:48:34 -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 UAA19612; Wed, 5 Jul 2000 20:48:31 -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 UAA46767; Wed, 5 Jul 2000 20:48:10 -0600 (MDT) Message-Id: <200007060248.UAA46767@harmony.village.org> To: Robert Watson Subject: Re: /sys hierarchy Cc: John Baldwin , Kenjiro Cho , freebsd-current@FreeBSD.ORG In-reply-to: Your message of "Wed, 05 Jul 2000 13:26:10 EDT." References: Date: Wed, 05 Jul 2000 20:48:10 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message Robert Watson writes: : On Wed, 5 Jul 2000, John Baldwin wrote: : : > The headers will always be installed in the right place in : > /usr/include: Makefile's are editable. As far as kernel : > compiles, symlinks can be created in the work directory as : > one possible solution. For example, : > sys/compile/i386/GENERIC/netinet -> ../../../../net/inet. : > This would most likely result in netinet _not_ being split : > up. : : As much as I'd love a complete cleanup of sys/, this cure seems to be : worse than the problem. :-) Take this as another vote to leave net/ as : is, if only to keep the includes in kernel code in sync with includes in : userland code :-). The proposed change also breaks the ability to have /usr/include/* be symbolic links to your real source tree. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 20: 2:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 8578537C01C for ; Wed, 5 Jul 2000 20:02:11 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id UAA41219; Wed, 5 Jul 2000 20:02:09 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id UAA44599; Wed, 5 Jul 2000 20:03:24 -0700 (PDT) (envelope-from john) Message-Id: <200007060303.UAA44599@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200007060243.UAA46744@harmony.village.org> Date: Wed, 05 Jul 2000 20:03:24 -0700 (PDT) From: John Baldwin To: Warner Losh Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 06-Jul-00 Warner Losh wrote: > In message <200007050704.AAA42641@john.baldwin.cx> John Baldwin writes: >: pccard/ - formerly sys/pccard > > Maintainers Veto. Do not do this. This sys/pccard will go away in > time. There will be a sys/dev/pccard when newcard comes in. DO NOT > MOVE sys/pccard. It will make it impossible to have both OLDCARD and > NEWCARD in the tree at the same time. Leave it be as a bit of cruft > that will be (and is being) replaced. > > Thank you for your understanding in this matter :-). No problem. >: - There has been one vote so far to ditch the whole net/ reorg, although >: other people have expressed support for it. > > Make that two votes. It is a gratuitous change that will buy us only > incompatibility with other systems. Also, it will make installing > header files into /usr/include/netinet much harder than it needs to > be. And these are the defined APIs that we can't break. Please keep > that in mind :-) It's pretty much dead at this point. >: - There have been a few votes for sys/bus instead of sys/dev for isa, eisa, >: pci, cam, usb, and friends. > > Don't care too much. Will make compatibility harder with other > systems, but not hugely so. I'm going with sys/dev since that is where they are in both OpenBSD and NetBSD. >: - The question has been raised as to whether or not splitting up netinet >: is feasible. I'd like to hear back some more from people working with >: the code if splitting it up is difficult, and if it is, if having >: sys/net/inet containing all IP, TCP, UDP, etc. is a more workable option? > > No. I don't think it is. It's not relevant if it isn't going to be moved. > Warner -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 20: 5:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from kbtfw.kubota.co.jp (kbtfw.kubota.co.jp [133.253.102.202]) by hub.freebsd.org (Postfix) with ESMTP id CF0D337C01C for ; Wed, 5 Jul 2000 20:05:09 -0700 (PDT) (envelope-from haro@tk.kubota.co.jp) Received: by kbtfw.kubota.co.jp; id MAA17788; Thu, 6 Jul 2000 12:05:05 +0900 (JST) Received: from unknown(133.253.122.1) by kbtfw.kubota.co.jp via smap (V4.2) id xma017153; Thu, 6 Jul 00 12:04:06 +0900 Received: from jkpc15.tk.kubota.co.jp ([192.168.7.250]) by kbtmx.eto.kubota.co.jp (8.9.3+3.2W/3.7W) with ESMTP id MAA04340; Thu, 6 Jul 2000 12:04:05 +0900 (JST) Received: from localhost (localhost.ttr.kubota.co.jp [127.0.0.1]) by jkpc15.tk.kubota.co.jp (8.9.3/3.7W-02/21/99) with ESMTP id MAA00561; Thu, 6 Jul 2000 12:02:48 +0900 (JST) To: julian@elischer.org Cc: current@freebsd.org Subject: Re: Xbatt now fails on -current In-Reply-To: <395E2334.41C67EA6@elischer.org> References: <395E2334.41C67EA6@elischer.org> X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000706120247F.haro@tk.kubota.co.jp> Date: Thu, 06 Jul 2000 12:02:47 +0900 From: haro@tk.kubota.co.jp (Munehiro Matsuda) X-Dispatcher: imput version 990905(IM130) Lines: 29 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: Julian Elischer Date: Sat, 01 Jul 2000 09:59:36 -0700 ::I used to run (well I still do, but it fails) xbatt. ::It used to give an accurate picture of the state of my batteries. ::in the last week, xbatt no-longer runs. :: ::it complains that :: ::jules# xbatt ::xbatt: cannot open apm device (/dev/apm0 or /dev/apm): Device not ::configured Do you have ACPI driver in you system? I had my systen working again by (1)disabling ACPI driver, or (2)adding RANDOMDEV to my config and disabled loading it through loader.conf. Hope this helps, Haro =------------------------------------------------------------------------------ _ _ Munehiro (haro) Matsuda -|- /_\ |_|_| Business Incubation Dept., Kubota Corp. /|\ |_| |_|_| 1-3 Nihonbashi-Muromachi 3-Chome Chuo-ku Tokyo 103-8310, Japan Tel: +81-3-3245-3318 Fax: +81-3-3245-3315 Email: haro@kubota.co.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 20:29:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay.butya.kz (butya-gw.butya.kz [212.154.129.94]) by hub.freebsd.org (Postfix) with ESMTP id 5546D37B5CD; Wed, 5 Jul 2000 20:29:42 -0700 (PDT) (envelope-from bp@butya.kz) Received: from bp (helo=localhost) by relay.butya.kz with local-esmtp (Exim 3.13 #1) id 13A2M6-000CX5-00; Thu, 06 Jul 2000 10:29:38 +0700 Date: Thu, 6 Jul 2000 10:29:38 +0700 (ALMST) From: Boris Popov To: John Baldwin Cc: freebsd-current@FreeBSD.org Subject: Re: /sys hierarchy In-Reply-To: <3963E7F1.EC8F6D52@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 Wed, 5 Jul 2000, John Baldwin wrote: > > I would like also suggest a directory for optional kernel > > interfaces which doesn't belong to drivers (syscall and sysctl extensions > > for example) and can't go under sys/dev/. They can be considered as > > 'kernel libraries' and may live under sys/lib directory (it should be > > organized as sys/dev, eg. one directory per interface). > > > > Comments ? > > OpenBSD has a precedent for this with sys/lib containing libkern, libz, > and some other library. Boris has a libiconv that he needs to import > for > Netware stuff if I'm correct. If we deem that it needs to go in the > kernel, > then I can add sys/lib to the list. It will be shared by both smbfs and nwfs. One also can convert msdosfs to use it too. -- Boris Popov http://www.butya.kz/~bp/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 20:41: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 7C38837B5CD for ; Wed, 5 Jul 2000 20:40:53 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id XAA57381 for ; Wed, 5 Jul 2000 23:40:50 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007060340.XAA57381@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg To: current@freebsd.org From: "Louis A. Mamakos" Subject: -current with new KAME doesn't build with KERBEROS5 defined Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Jul 2000 23:40:50 -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I get errors like this while 'make depend' in the Heimdel code. So far, in libroken and libasn1. I tried looking at fixing this, but I fear the build system is too tricky for me to want to venture in to fix. louie mkdep -f .depend -a -I/usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/include -I/usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1 -I/usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/roken -I/usr/src/kerberos5/lib/libasn1/../../include -I/usr/obj/usr/src/kerberos5/lib/libasn1 -I/usr/src/kerberos5/lib/libasn1/../../include -I/usr/src/kerberos5/lib/libasn1/../../include -DHAVE_CONFIG_H -DKRB5_KRB4_COMPAT -DKRB4 -DINET6 -I/usr/obj/usr/src/i386/usr/include /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_get.c /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_put.c /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_free.c /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_length.c /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_copy.c /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/timegm.c asn1_err.c asn1_APOptions.c asn1_AP_REP.c asn1_AP_REQ! .c asn1_AS_REP.c asn1_AS_REQ.c asn1_Authenticator.c asn1_AuthorizationData.c asn1_Checksum.c asn1_EncAPRepPart.c asn1_EncASRepPart.c asn1_EncKDCRepPart.c asn1_EncKrbCredPart.c asn1_EncKrbPrivPart.c asn1_EncTGSRepPart.c asn1_EncTicketPart.c asn1_EncryptedData.c asn1_EncryptionKey.c asn1_ETYPE_INFO.c asn1_ETYPE_INFO_ENTRY.c asn1_HostAddress.c asn1_HostAddresses.c asn1_KDCOptions.c asn1_KDC_REP.c asn1_KDC_REQ.c asn1_KDC_REQ_BODY.c asn1_KRB_CRED.c asn1_KRB_ERROR.c asn1_KRB_PRIV.c asn1_KRB_SAFE.c asn1_KRB_SAFE_BODY.c asn1_KerberosTime.c asn1_KrbCredInfo.c asn1_LastReq.c asn1_METHOD_DATA.c asn1_PA_DATA.c asn1_PA_ENC_TS_ENC.c asn1_Principal.c asn1_PrincipalName.c asn1_Realm.c asn1_TGS_REP.c asn1_TGS_REQ.c asn1_Ticket.c asn1_TicketFlags.c asn1_TransitedEncoding.c In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_get.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_put.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_free.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_length.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_copy.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" In file included from /usr/obj/usr/src/kerberos5/lib/libasn1/roken.h:56, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/der_locl.h:50, from /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/timegm.c:34: /usr/obj/usr/src/i386/usr/include/netinet6/in6.h:69: #error "do not include netinet6/in6.h directly, include netinet/in.h" mkdep: compile failed *** Error code 1 Stop in /usr/src/kerberos5/lib/libasn1. *** Error code 1 Stop in /usr/src/kerberos5/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. root@whizzo[140] # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 20:47:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from gimp.lame.net (adsl-63-197-30-140.dsl.snfc21.pacbell.net [63.197.30.140]) by hub.freebsd.org (Postfix) with ESMTP id BA7EB37B6D9 for ; Wed, 5 Jul 2000 20:47:18 -0700 (PDT) (envelope-from esabban@pacbell.net) Received: from lovemachine (dhcp-18.lame.net [192.168.0.18]) by gimp.lame.net (8.9.3/8.9.3) with SMTP id UAA04583 for ; Wed, 5 Jul 2000 20:47:16 -0700 (PDT) (envelope-from esabban@pacbell.net) Message-ID: <009701bfe6fc$b89f7bf0$1200a8c0@lovemachine> From: "Eric Sabban" To: Subject: -CURRENT world fails at rtadvd Date: Wed, 5 Jul 2000 20:46:08 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0094_01BFE6C2.0BF2AB00" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0094_01BFE6C2.0BF2AB00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable cc -O -pipe -DINET6 -c /usr/src/usr.sbin/rtadvd/rtadvd.c /usr/src/usr.sbin/rtadvd/rtadvd.c:64: dump.h: No such file or directory *** Error code 1 Stop in /usr/src/usr.sbin/rtadvd. ------=_NextPart_000_0094_01BFE6C2.0BF2AB00 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
cc -O -pipe -DINET6   -c=20 /usr/src/usr.sbin/rtadvd/rtadvd.c
/usr/src/usr.sbin/rtadvd/rtadvd.c:64= :=20 dump.h: No such file or directory
*** Error code 1
 
Stop in = /usr/src/usr.sbin/rtadvd.
 
 
------=_NextPart_000_0094_01BFE6C2.0BF2AB00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 21: 2:15 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 24BB637B6D9; Wed, 5 Jul 2000 21:02:13 -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 VAA45184; Wed, 5 Jul 2000 21:02:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 5 Jul 2000 21:02:13 -0700 (PDT) From: Kris Kennaway To: Eric Sabban Cc: current@freebsd.org Subject: Re: -CURRENT world fails at rtadvd In-Reply-To: <009701bfe6fc$b89f7bf0$1200a8c0@lovemachine> 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, 5 Jul 2000, Eric Sabban wrote: > cc -O -pipe -DINET6 -c /usr/src/usr.sbin/rtadvd/rtadvd.c > /usr/src/usr.sbin/rtadvd/rtadvd.c:64: dump.h: No such file or directory Fixed. 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 Jul 5 21:19:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id 24C3A37C044; Wed, 5 Jul 2000 21:17:28 -0700 (PDT) (envelope-from nakaji@tutrp.tut.ac.jp) Received: from nakaji.tutrp.tut.ac.jp (localhost.tutrp.tut.ac.jp [127.0.0.1]) by nakaji.tutrp.tut.ac.jp (8.9.3/3.7W) with ESMTP id NAA41163; Thu, 6 Jul 2000 13:16:33 +0900 (JST) To: Sheldon Hearn Cc: current@freebsd.org, des@freebsd.org Subject: Re: fetch is strange References: <87n1jxfddo.fsf@nakaji.tutrp.tut.ac.jp> <97684.962788459@axl.ops.uunet.co.za> MIME-Version: 1.0 (generated by REMI 1.14.1 - =?ISO-8859-4?Q?=22Mushigawa=F2?= =?ISO-8859-4?Q?sugi=22?=) Content-Type: text/plain; charset=US-ASCII From: NAKAJI Hiroyuki Date: 06 Jul 2000 13:16:32 +0900 In-Reply-To: <97684.962788459@axl.ops.uunet.co.za> (Sheldon Hearn's message of "Wed, 05 Jul 2000 11:14:19 +0200") Message-ID: <87n1jvzye7.fsf@nakaji.tutrp.tut.ac.jp> Lines: 41 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) REMI/1.14.1 (=?ISO-8859-4?Q?Mushigawa=F2sugi?=) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thank you, Sheldon Hearn. This mail is also sent to the auther. I faced same problem with ports-current, just cvsuped about 20 minutes ago. For example, $ su # cd /usr/ports/x11/xscreensaver # make install -DALWAYS_BUILD_DEPENDS [snip] ===> Mesa-3.2 depends on executable: bzip2 - found (but building it anyway) ===> Verifying install for bzip2 in /usr/ports/archivers/bzip2 >> bzip2-1.0.1.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.tutrp.tut.ac.jp/pub/FreeBSD/ports/distfiles/. fetch: warning: the -b option is deprecated fetch: bzip2-1.0.1.tar.gz: size not known Receiving bzip2-1.0.1.tar.gz -1 bytes transferred in 0.0 seconds (-10645.44 Bps) ===> Extracting for bzip2-1.0.1 >> Checksum mismatch for bzip2-1.0.1.tar.gz. Make sure the Makefile and md5 file (/export/ports/archivers/bzip2/files/md5) are up to date. If you are absolutely sure you want to override this "check, type make NO_CHECKSUM=yes [other args]". *** Error code 1 It seems that fetch(1) can not fetch any file. In this case, the downloaded(?) file size is zero. $ ls -l /usr/ports/distfiles/bzip2-1.0.1.tar.gz -rw-r--r-- 1 nakaji operator 0 7/ 6 13:06 /usr/ports/distfiles/bzip2-1.0.1.tar.gz My system is current: $ uname -a FreeBSD nakaji.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Jul 4 12:15:52 JST 2000 root@nakaji.tutrp.tut.ac.jp:/home2/obj/usr/src/sys/NAKAJI i386 -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Jul 5 23:50:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from inconnu.isu.edu (inconnu.isu.edu [134.50.8.55]) by hub.freebsd.org (Postfix) with ESMTP id 1C49237B5ED; Wed, 5 Jul 2000 23:50:35 -0700 (PDT) (envelope-from galt@inconnu.isu.edu) Received: from localhost (galt@localhost) by inconnu.isu.edu (8.9.3/8.9.3) with ESMTP id AAA01609; Thu, 6 Jul 2000 00:50:30 -0600 Date: Thu, 6 Jul 2000 00:50:29 -0600 (MDT) From: John Galt To: Garance A Drosihn Cc: Mike Smith , mjacob@feral.com, current@FreeBSD.ORG Subject: Re: subtle problem du jour.... 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 Is there a quick and dirty way for the label editor to detect if a BIOS is using LBA? This actually sounds like a setup in which the error condition should be alerted on placing / on a cylinder higher than 1024 rather than long after you can do anything about it. The loader error might be a good extra, but the real place the user should be notified of the error condition is upon creation. If the editor can't detect LBA, maybe a generic warning about the wisdom of root partitions above cyl 1024 on non-LBA drives might popup when root partition exists above cyl 1024 (and prepare for lusers who don't know what LBA is flying off the proverbial handle). On Wed, 5 Jul 2000, Garance A Drosihn wrote: > At 3:18 PM -0700 7/5/00, Mike Smith wrote: > >someone else wrote: > > > The only time this showed up as problem was that when I reinstalled > > > the loader (and related forth files), loader silently was not able > > > to read /boot or /modules- the key word here is "silently". > > > > > > There ought to be a warning in loader(8) maybe about this? > > > >There would be a couple of ways to deal with the problem you're > >seeing (in addition to the very worthwhile documentation) - > > > >a) bitch if the loader.rc file can't be found/read. > > > >b) bitch in the BIOS disk driver if an illegal read is attempted. > > > >Both of these might have given you enough clue to help find the > >problem more quickly. Any comments, folks? > > Something along these lines might have saved me a few hours a > week or two ago. I managed to create my partitions so '/' was > the LAST freebsd in the slice I was installing into, instead of > the first partition. This gave me some weird error messages > when trying to start up. In my case the problem was that '/' > started out past the 8-gig mark (even though the rest of the > partitions were all before the 8-gig mark). > > I don't know how much work it would be to generate a specific > enough error message, but in my case I didn't realize I had > put the partition where I had put it. I was getting some kind > of error message, but it wasn't specific enough to help jar > me into looking at the right issue. Eventually one of my > friends asked for some disklabel info, and then we were able > to see where I had mixed things up. > > > --- > 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 > -- Pardon me, but you have obviously mistaken me for someone who gives a damn. email galt@inconnu.isu.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 0:29:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id A83AB37B659; Thu, 6 Jul 2000 00:29:42 -0700 (PDT) (envelope-from pherman@frenchfries.net) Received: from bagabeedaboo.security.at12.de (dial-195-14-226-38.netcologne.de [195.14.226.38]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id JAA11131; Thu, 6 Jul 2000 09:29:32 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.10.2/8.10.2) with ESMTP id e667T7f00468; Thu, 6 Jul 2000 09:29:07 +0200 (CEST) Date: Thu, 6 Jul 2000 09:29:06 +0200 (CEST) From: Paul Herman To: Bill Fumerola Cc: Blaz Zupan , Will Andrews , FreeBSD-gnats-submit@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-Reply-To: <20000705135801.P4034@jade.chc-chimes.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, 5 Jul 2000, Bill Fumerola wrote: > On Tue, Jul 04, 2000 at 09:56:43PM +0200, Blaz Zupan wrote: > > > this number is completely useless to me. I have to agree with Sheldon, where > > is the use to this number? > > Think about doing something like > > $ df -c/disk0 /disk1 /disk2 ... /diskX > > To just monitor a cluster of disks. I'm all for adding options to get features you can't otherwise get (even *IF* the use of "total" is debatable), but c'mon, this is an awk one-liner. I would agree with Sheldon as well. Let this one go. -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 1: 8: 7 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 E782E37B898; Thu, 6 Jul 2000 01:08:04 -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 BAA85784; Thu, 6 Jul 2000 01:08:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 6 Jul 2000 01:08:04 -0700 (PDT) From: Kris Kennaway To: current@Freebsd.org Cc: net@freebsd.org Subject: Call for help: KAME (inter)operational testing 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 If anyone is able to help in verifying the new FreeBSD-current KAME ipv6/ipsec code, especially if you have available other platform ipv6/ipsec implementations to test against, please let me know or drop by the #kame channel on efnet on IRC (server irc.lsl.com, for example) so we can work together. We need to test the new KAME code as much as possible prior to merging into 4.0-STABLE, so anything you can do to help would be appreciated. I particularly want to make sure that racoon (IKE daemon) works as expected (/usr/ports/security/racoon) since that is the primary reason for wanting to push this stuff into -stable. Thanks! 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 Thu Jul 6 1:31: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-193-112-57.dsl.snfc21.pacbell.net [63.193.112.57]) by hub.freebsd.org (Postfix) with ESMTP id 30AAA37B95B for ; Thu, 6 Jul 2000 01:30:57 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id BAA00415; Thu, 6 Jul 2000 01:38:27 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200007060838.BAA00415@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: John Galt Cc: current@FreeBSD.ORG Subject: Re: subtle problem du jour.... In-reply-to: Your message of "Thu, 06 Jul 2000 00:50:29 MDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 06 Jul 2000 01:38:27 -0700 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Is there a quick and dirty way for the label editor to detect if a BIOS is > using LBA? No. > This actually sounds like a setup in which the error condition > should be alerted on placing / on a cylinder higher than 1024 rather than > long after you can do anything about it. There's actually more productive work underway to remove the entire 1024 cylinder issue from the picture. The set of systems where this will remain a problem is bounded and rapidly diminishing. The loader error might be a good > extra, but the real place the user should be notified of the error > condition is upon creation. If the editor can't detect LBA, maybe a > generic warning about the wisdom of root partitions above cyl 1024 on > non-LBA drives might popup when root partition exists above cyl 1024 (and > prepare for lusers who don't know what LBA is flying off the proverbial > handle). This already happens. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 3:29:15 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 120AE37B85D; Thu, 6 Jul 2000 03:29:14 -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 DAA02744; Thu, 6 Jul 2000 03:29:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 6 Jul 2000 03:29:13 -0700 (PDT) From: Kris Kennaway To: "Louis A. Mamakos" Cc: current@freebsd.org Subject: Re: -current with new KAME doesn't build with KERBEROS5 defined In-Reply-To: <200007060340.XAA57381@whizzo.transsys.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, 5 Jul 2000, Louis A. Mamakos wrote: > I get errors like this while 'make depend' in the Heimdel code. So far, > in libroken and libasn1. Fixed. > I tried looking at fixing this, but I fear the build system is too > tricky for me to want to venture in to fix. Actually, the fix was one line ;-) is no longer supposed to be included, so we just had to disable it in the pregenerated heimdal config.h file. 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 Thu Jul 6 3:41:57 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 94F4737B564; Thu, 6 Jul 2000 03:41:42 -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.15 #1) id 13A965-0004JC-00; Thu, 06 Jul 2000 12:41:33 +0200 From: Sheldon Hearn To: current@FreeBSD.org Cc: mharo@FreeBSD.org, obrien@FreeBSD.org, Mike Meyer Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-reply-to: Your message of "Thu, 06 Jul 2000 09:29:06 +0200." Date: Thu, 06 Jul 2000 12:41:33 +0200 Message-ID: <16565.962880093@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG As a side issue, can anyone explain these peculiar results from df(1)'s huamn-readable (-h) output: Filesystem Size Used Avail Capacity Mounted on mfs:26 87M 11K 80M 0% /tmp /dev/ad0s1f 1.2G 934M 241M 80% /usr /dev/ad0s1e 193M 92M 86M 52% /var /dev/ccd0c 1.8G 786M 900M 47% /a /dev/ad1s1e 1.3G 728M 474M 61% /b procfs 4.0K 4.0K 0B 100% /proc rodent.ops:/home/ncvs 3.4G 3.1G 36M 99% /usr/home/ncvs In particular, I can't believe that 87M - 11K == 80M (I'd expect 86M or 87M). Nor is it credible that 1.8G - 786 == 900M (I'd expect 1057M or 1G). Am I being obtuse, and if so could someone explain my folly? :-) 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 Jul 6 3:51: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.theinternet.com.au (zeus.theinternet.com.au [203.34.176.2]) by hub.freebsd.org (Postfix) with ESMTP id AC9B337B564; Thu, 6 Jul 2000 03:50:56 -0700 (PDT) (envelope-from akm@mail.theinternet.com.au) Received: (from akm@localhost) by mail.theinternet.com.au (8.9.3/8.9.3) id UAA22625; Thu, 6 Jul 2000 20:48:46 +1000 (EST) (envelope-from akm) From: Andrew Kenneth Milton Message-Id: <200007061048.UAA22625@mail.theinternet.com.au> Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-Reply-To: <16565.962880093@axl.ops.uunet.co.za> from Sheldon Hearn at "Jul 6, 2000 12:41:33 pm" To: Sheldon Hearn Date: Thu, 6 Jul 2000 20:48:46 +1000 (EST) Cc: current@FreeBSD.ORG, mharo@FreeBSD.ORG, obrien@FreeBSD.ORG, Mike Meyer 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 +----[ Sheldon Hearn ]--------------------------------------------- | | As a side issue, can anyone explain these peculiar results from df(1)'s | huamn-readable (-h) output: | | Filesystem Size Used Avail Capacity Mounted on | mfs:26 87M 11K 80M 0% /tmp | /dev/ad0s1f 1.2G 934M 241M 80% /usr | /dev/ad0s1e 193M 92M 86M 52% /var | /dev/ccd0c 1.8G 786M 900M 47% /a | /dev/ad1s1e 1.3G 728M 474M 61% /b | procfs 4.0K 4.0K 0B 100% /proc | rodent.ops:/home/ncvs 3.4G 3.1G 36M 99% /usr/home/ncvs | | In particular, I can't believe that 87M - 11K == 80M (I'd expect 86M or | 87M). Nor is it credible that 1.8G - 786 == 900M (I'd expect 1057M or | 1G). | | Am I being obtuse, and if so could someone explain my folly? :-) Those are block available to non-superuser I think, not "just available" There's some amount reserved (10% ?). -- Totally Holistic Enterprises Internet| P:+61 7 3870 0066 | Andrew Milton The Internet (Aust) Pty Ltd | F:+61 7 3870 4477 | ACN: 082 081 472 ABN: 83 082 081 472 | M:+61 416 022 411 | Carpe Daemon PO Box 837 Indooroopilly QLD 4068 |akm@theinternet.com.au| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 3:56:47 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 CCAE437B564; Thu, 6 Jul 2000 03:56:41 -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.15 #1) id 13A9KB-0004PT-00; Thu, 06 Jul 2000 12:56:07 +0200 From: Sheldon Hearn To: Andrew Kenneth Milton Cc: current@FreeBSD.ORG, mharo@FreeBSD.ORG, obrien@FreeBSD.ORG, Mike Meyer Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-reply-to: Your message of "Thu, 06 Jul 2000 20:48:46 +1000." <200007061048.UAA22625@mail.theinternet.com.au> Date: Thu, 06 Jul 2000 12:56:07 +0200 Message-ID: <16954.962880967@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 06 Jul 2000 20:48:46 +1000, Andrew Kenneth Milton wrote: > Those are block available to non-superuser I think, not "just available" > There's some amount reserved (10% ?). Duh. Classic mistake in disguise. :-) Sorry to trouble. 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 Jul 6 3:58:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from apoq.skynet.be (apoq.skynet.be [195.238.2.35]) by hub.freebsd.org (Postfix) with ESMTP id 65A7437C24D; Thu, 6 Jul 2000 03:58:38 -0700 (PDT) (envelope-from blk@skynet.be) Received: from [195.238.1.121] (brad.techos.skynet.be [195.238.1.121]) by apoq.skynet.be (Postfix) with ESMTP id 0A1A31F2F4; Thu, 6 Jul 2000 12:58:35 +0200 (MET DST) Mime-Version: 1.0 X-Sender: blk@pop.skynet.be Message-Id: In-Reply-To: <16565.962880093@axl.ops.uunet.co.za> References: <16565.962880093@axl.ops.uunet.co.za> Date: Thu, 6 Jul 2000 12:58:27 +0200 To: Sheldon Hearn , current@FreeBSD.ORG From: Brad Knowles Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Cc: mharo@FreeBSD.ORG, obrien@FreeBSD.ORG, Mike Meyer Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 12:41 PM +0200 2000/7/6, Sheldon Hearn wrote: > Filesystem Size Used Avail Capacity Mounted on > mfs:26 87M 11K 80M 0% /tmp > /dev/ad0s1f 1.2G 934M 241M 80% /usr > /dev/ad0s1e 193M 92M 86M 52% /var > /dev/ccd0c 1.8G 786M 900M 47% /a > /dev/ad1s1e 1.3G 728M 474M 61% /b > procfs 4.0K 4.0K 0B 100% /proc > rodent.ops:/home/ncvs 3.4G 3.1G 36M 99% /usr/home/ncvs > > In particular, I can't believe that 87M - 11K == 80M (I'd expect 86M or > 87M). Nor is it credible that 1.8G - 786 == 900M (I'd expect 1057M or > 1G). You're ignoring the fact that "Size" is the total physical size of the device, while "Used", "Avail", and "Capacity" take into account the 10% (or whatever) overhead that is typically left unallocated for performance reasons. Thus, when "Capacity" shows that ~110% is used, and "Used" == "Size", then you are really and truly completely full on that device. -- These are my opinions -- not to be taken as official Skynet policy ====================================================================== Brad Knowles, || Belgacom Skynet SA/NV Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels http://www.skynet.be || Belgium To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 4:18:40 2000 Delivered-To: freebsd-current@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id D9E1B37B9A9 for ; Thu, 6 Jul 2000 04:18:36 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 756B21931; Thu, 6 Jul 2000 13:18:40 +0200 (CEST) Date: Thu, 6 Jul 2000 13:18:40 +0200 From: Stijn Hoop To: current@freebsd.org Subject: Large disks (was Re: bin/19635: add -c for grand total to df(1)) Message-ID: <20000706131840.B58747@pcwin002.win.tue.nl> References: <16565.962880093@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from blk@skynet.be on Thu, Jul 06, 2000 at 12:58:27PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 12:58:27PM +0200, Brad Knowles wrote: [whole discussion about df -h output snipped] > You're ignoring the fact that "Size" is the total physical size > of the device, while "Used", "Avail", and "Capacity" take into > account the 10% (or whatever) overhead that is typically left > unallocated for performance reasons. Maybe this isn't the right list to ask, but stepping into this: I bought a 30G drive recently, and I was wondering if the 10% 'rule' for performance is still really needed. I mean, I lose 3 _gigs_ of storage space, and otherwise the performance detoriates? That doesn't make sense to me. I am running now with reserved set to 2% (on my /home, not on smaller / & /usr of course) and haven't noticed anything of performance loss; of course I haven't managed to fill that ~27G in the short time I have this setup ;) Which also leads me to the question: is it desirable, given those large disks, to have a finer grain of control over reserved space, for example setting reserved space to 2.5% or whatever? Or can this be done already? In the hopes that someone can enlighten me... --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 4:24: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from cip1.melaten.rwth-aachen.de (cip1.melaten.RWTH-Aachen.DE [134.130.92.100]) by hub.freebsd.org (Postfix) with ESMTP id 5A2C037B9A9; Thu, 6 Jul 2000 04:23:56 -0700 (PDT) (envelope-from tg@melaten.rwth-aachen.de) Received: from cip12.melaten.rwth-aachen.de (cip12.melaten.rwth-aachen.de [134.130.92.12]) by cip1.melaten.rwth-aachen.de (8.9.3/8.8.8) with ESMTP id MAA28506; Thu, 6 Jul 2000 12:27:13 +0200 Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id NAA39907; Thu, 6 Jul 2000 13:36:50 +0200 (CEST) (envelope-from tg@melaten.rwth-aachen.de) X-Authentication-Warning: cip12.melaten.rwth-aachen.de: tg set sender to tg@melaten.rwth-aachen.de using -f To: freebsd-current@freebsd.org Cc: freebsd-stable@freebsd.org Subject: HEADS UP: /etc/rc.shutdown calls local scripts now From: Thomas Gellekum Date: 06 Jul 2000 13:36:50 +0200 Message-ID: Lines: 34 User-Agent: Gnus/5.0805 (Gnus v5.8.5) XEmacs/21.1 (Canyonlands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Moin, sorry for the late notice, I forgot to mail this yesterday. /etc/rc.shutdown in -current has been changed to call the scripts in ${local_startup} with the `stop' option. This allows packages like databases to call their own shutdown methods and clean up after themselves. All the ports have been changed accordingly. If you still have old startup scripts lying around in /usr/{local,X11R6}/etc/rc.d you should upgrade these ASAP. Basically, the new scripts look like this: ,---- | case "$1" in | start) | # startup code here | ;; | stop) | # shutdown code here | ;; | *) | echo "Usage: `basename $0` {start|stop}" >&2 | exit 64 | ;; | esac | exit 0 `---- -stable users: I intend to merge and activate this change shortly before the code freeze for the 4.1 release, which is July 20th, if I'm not mistaken. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 6:40:27 2000 Delivered-To: freebsd-current@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 2088A37C03C for ; Thu, 6 Jul 2000 06:40:22 -0700 (PDT) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1617 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Thu, 6 Jul 2000 15:40:21 +0200 (CEST) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 414D3158A; Thu, 6 Jul 2000 15:40:07 +0200 (METDST) Subject: config/hints changes: panic booting pcvt kernel To: freebsd-current@freebsd.org Date: Thu, 6 Jul 2000 15:40:06 +0200 (METDST) Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 899 Message-Id: <20000706134007.414D3158A@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After the latest config/hints changes, just commenting the syscons driver "sc" line and uncommenting the pcvt "vt" line in the GENERIC kernel config file, a booting kernel panics after the the message "atkbdc0: .." with a fatal trap 12, page fault while in kernel mode. This is reliably reproducible on my 2 test machines running current cvsuped a day ago. I'm now trying and searching for two days and i'm running out of ideas. It might be that i'm doing something very stupid here, but i tried hard to make shure i'm doing not. Help .... hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 6:48:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from finch-post-12.mail.demon.net (finch-post-12.mail.demon.net [194.217.242.41]) by hub.freebsd.org (Postfix) with ESMTP id 4A4E837BDC2 for ; Thu, 6 Jul 2000 06:48:04 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by finch-post-12.mail.demon.net with esmtp (Exim 2.12 #1) id 13AC0U-000LhJ-0C; Thu, 6 Jul 2000 13:48:00 +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 OAA39682; Thu, 6 Jul 2000 14:47:40 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id OAA31029; Thu, 6 Jul 2000 14:42:18 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Thu, 6 Jul 2000 14:42:18 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Ollivier Robert Cc: "FreeBSD Current Users' list" Subject: Re: [PATCH] buildworld broken in libusb In-Reply-To: <20000705131854.A78573@caerdonn.eurocontrol.fr> 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 Yes, that will work. Sorry for breaking the build. The problem was some stale files in my directories. Nick On Wed, 5 Jul 2000, Ollivier Robert wrote: > According to Ollivier Robert: > > buildworld is broken in libusb. Here is a tentative patch (I'm re-building > > the world right now). The alternative is to #define UPACKED in usbhid.h. > > Forget that fix, it doesn't work. > > This one will although I don't like it. > > cvs diff: Diffing . > Index: usbhid.h > =================================================================== > RCS file: /home/ncvs/src/sys/dev/usb/usbhid.h,v > retrieving revision 1.9 > diff -u -2 -r1.9 usbhid.h > --- usbhid.h 2000/07/05 08:11:43 1.9 > +++ usbhid.h 2000/07/05 11:14:13 > @@ -55,4 +55,6 @@ > #define UR_SET_PROTOCOL 0x0b > > +#define UPACKED __attribute__ ((packed)) > + > typedef struct usb_hid_descriptor { > uByte bLength; > > -- > Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr > The Postman hits! The Postman hits! You have new mail. > > > 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 Thu Jul 6 6:49:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by hub.freebsd.org (Postfix) with ESMTP id 44D1737B55F for ; Thu, 6 Jul 2000 06:49:29 -0700 (PDT) (envelope-from roberto@eurocontrol.fr) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.5.62]) by matrix.eurocontrol.fr (Postfix) with ESMTP id 1BC685A44 for ; Thu, 6 Jul 2000 15:49:28 +0200 (CEST) Received: by caerdonn.eurocontrol.fr (Postfix, from userid 1193) id BB90F4E5A; Thu, 6 Jul 2000 15:49:27 +0200 (CEST) Date: Thu, 6 Jul 2000 15:49:27 +0200 From: Ollivier Robert To: FreeBSD Current Users' list Subject: buildworld breakage in pim6sd Message-ID: <20000706154927.D2451@caerdonn.eurocontrol.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Operating-System: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG CVSup-ed one hour ago. mkdep -f .depend -a -DINET6 -DPIM -DIOCTL_OK_ON_RAW_SOCKET -DHAVE_GETIFADDRS -DHAVE_STDARG_H -I/usr/obj/src/src/i386/usr/include /src/src/usr.sbin/pim6sd/mld6.c /src/src/usr.sbin/pim6sd/mld6_proto.c /src/src/usr.sbin/pim6sd/inet6.c /src/src/usr.sbin/pim6sd/kern.c /src/src/usr.sbin/pim6sd/main.c /src/src/usr.sbin/pim6sd/config.c /src/src/usr.sbin/pim6sd/debug.c /src/src/usr.sbin/pim6sd/routesock.c /src/src/usr.sbin/pim6sd/vers.c /src/src/usr.sbin/pim6sd/callout.c /src/src/usr.sbin/pim6sd/route.c /src/src/usr.sbin/pim6sd/vif.c /src/src/usr.sbin/pim6sd/timer.c /src/src/usr.sbin/pim6sd/mrt.c /src/src/usr.sbin/pim6sd/pim6.c /src/src/usr.sbin/pim6sd/pim6_proto.c /src/src/usr.sbin/pim6sd/rp.c /src/src/usr.sbin/pim6sd/crc.c /src/src/usr.sbin/pim6sd/trace.c cfparse.c cftoken.c /src/src/usr.sbin/pim6sd/cftoken.l:47: y.tab.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /src/src/usr.sbin/pim6sd. *** Error code 1 -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr The Postman hits! The Postman hits! You have new mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 6:50:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by hub.freebsd.org (Postfix) with ESMTP id E8AC437C3A3 for ; Thu, 6 Jul 2000 06:50:19 -0700 (PDT) (envelope-from roberto@eurocontrol.fr) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.5.62]) by matrix.eurocontrol.fr (Postfix) with ESMTP id 5689F5A28; Thu, 6 Jul 2000 15:50:10 +0200 (CEST) Received: by caerdonn.eurocontrol.fr (Postfix, from userid 1193) id EEBC24E5A; Thu, 6 Jul 2000 15:50:09 +0200 (CEST) Date: Thu, 6 Jul 2000 15:50:09 +0200 From: Ollivier Robert To: Nick Hibma Cc: FreeBSD Current Users' list Subject: Re: [PATCH] buildworld broken in libusb Message-ID: <20000706155009.E2451@caerdonn.eurocontrol.fr> References: <20000705131854.A78573@caerdonn.eurocontrol.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from n_hibma@calcaphon.com on Thu, Jul 06, 2000 at 02:42:18PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Nick Hibma: > Yes, that will work. Sorry for breaking the build. The problem was some > stale files in my directories. No problem, now it is broken elsewhere anyway :-) -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr The Postman hits! The Postman hits! You have new mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 6:53:15 2000 Delivered-To: freebsd-current@freebsd.org Received: from tele-post-20.mail.demon.net (tele-post-20.mail.demon.net [194.217.242.20]) by hub.freebsd.org (Postfix) with ESMTP id 8432C37BDC2; Thu, 6 Jul 2000 06:53:10 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by tele-post-20.mail.demon.net with esmtp (Exim 2.12 #2) id 13AC5Q-000IzJ-0K; Thu, 6 Jul 2000 13:53:06 +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 XAA00525; Wed, 5 Jul 2000 23:27:49 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id WAA28857; Wed, 5 Jul 2000 22:09:44 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Wed, 5 Jul 2000 22:09:44 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: KAME integration and plans 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 > > Could you mention the locations (as in a set of paths) that are > > hands-off? > > I'll generate a list and put it somewhere (in the tree?) Good idea. To be honest, I was more thinking of the heads up message. But it was suggested to add it to the readme in netinet6/ 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 Thu Jul 6 7:45:30 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 CE86E37B535; Thu, 6 Jul 2000 07:45:13 -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.15 #1) id 13ACtB-00054s-00; Thu, 06 Jul 2000 16:44:29 +0200 From: Sheldon Hearn To: Brian Hechinger Cc: 'Robert Drehmel' , Will Andrews , current@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-reply-to: Your message of "Thu, 06 Jul 2000 10:26:00 -0400." Date: Thu, 06 Jul 2000 16:44:29 +0200 Message-ID: <19521.962894669@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 06 Jul 2000 10:26:00 -0400, Brian Hechinger wrote: > beancounters don't understand that computers can have more than one disk let > alone multiple slices. so it gives a nice total number to slap into a pie > chart so that you can requisition more hard drives for your machines. This argument from Bill Fumerola is what swayed me enough to bring me back to being neutral. ;-) 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 Jul 6 8:23:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 1EBA837B9B0; Thu, 6 Jul 2000 08:23:25 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.9.3/8.9.3) id KAA29020; Thu, 6 Jul 2000 10:23:10 -0500 (CDT) (envelope-from dan) Date: Thu, 6 Jul 2000 10:23:10 -0500 From: Dan Nelson To: Thomas Gellekum Cc: freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Message-ID: <20000706102309.D20588@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.4i In-Reply-To: ; from "Thomas Gellekum" on Thu Jul 6 13:36:50 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Jul 06), Thomas Gellekum said: > sorry for the late notice, I forgot to mail this yesterday. > > /etc/rc.shutdown in -current has been changed to call the scripts in > ${local_startup} with the `stop' option. This allows packages like > databases to call their own shutdown methods and clean up after > themselves. All the ports have been changed accordingly. If you still > have old startup scripts lying around in /usr/{local,X11R6}/etc/rc.d > you should upgrade these ASAP. Can we have little green "[ OK ]"s as well? :) j/k -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 8:32:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 0B5BD37C61F for ; Thu, 6 Jul 2000 08:32:50 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id LAA33286; Thu, 6 Jul 2000 11:32:47 -0400 (EDT) (envelope-from wollman) Date: Thu, 6 Jul 2000 11:32:47 -0400 (EDT) From: Garrett Wollman Message-Id: <200007061532.LAA33286@khavrinen.lcs.mit.edu> To: Stijn Hoop Cc: current@FreeBSD.ORG Subject: Large disks (was Re: bin/19635: add -c for grand total to df(1)) In-Reply-To: <20000706131840.B58747@pcwin002.win.tue.nl> References: <16565.962880093@axl.ops.uunet.co.za> <20000706131840.B58747@pcwin002.win.tue.nl> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > Maybe this isn't the right list to ask, but stepping into this: > I bought a 30G drive recently, and I was wondering if the 10% 'rule' > for performance is still really needed. I mean, I lose 3 _gigs_ of > storage space, and otherwise the performance detoriates? That > doesn't make sense to me. Yes. The efficiency of the hashing mechanism used to lay out new blocks on the disk depends only on what fraction of the disk is used, not how much space that represents. (On the other hand, it is unlikely that you are significantly stressing the allocator in any meaningful way.) If you're concerned about wasted disk space, there's a lot to be gained by fiddling with the block sizes, bytes per inode, and other layout parameters. Your 30-GB disk probably has a zillion cylinder groups, which is far too many to actually be helpful in disk layout. When creating a large filesystem, it pays to increase the `-c' parameter as high as newfs will permit. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 8:39:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.interware.hu (mail.interware.hu [195.70.32.130]) by hub.freebsd.org (Postfix) with ESMTP id D6D5D37C3F7 for ; Thu, 6 Jul 2000 08:39:41 -0700 (PDT) (envelope-from julian@elischer.org) Received: from dakar-35.budapest.interware.hu ([195.70.51.99] helo=jules.elischer.org) by mail.interware.hu with smtp (Exim 3.12 #1 (Debian)) id 13ADiN-0005x1-00; Thu, 06 Jul 2000 17:37:24 +0200 Message-ID: <3964A7A8.41C67EA6@elischer.org> Date: Thu, 06 Jul 2000 08:37:12 -0700 From: Julian Elischer X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 5.0-CURRENT i386) MIME-Version: 1.0 To: Daniel Berlin Cc: Brian Somers , Archie Cobbs , Daniel Berlin , freebsd-current@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: PPPoE not working References: <200007050827.JAA01803@hak.lan.Awfulhak.org> <86n1jwiyzm.fsf@dan2.cygnus.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel Berlin wrote: > > Brian Somers writes: > > > > > The code's in ppp/ether.c. > > > > I'll see if I can get time to figure out what's wrong, but I can't > > promise anything this week. I'm too busy (we're having a FreeBSD > > mini-conference here in the UK at which I'm speaking...). > > > I already solved this one, the problem is that the source address is being overwritten with 0's. > As a temporary hack, if you go into ng_pppoe.c, and replace the 0's with your ethernet address, you'll be golden. Actually Archie left out code to add IN the source MAC address. so it wasn;t being overwritten, it was never being set.... I just committed a fix. let me know the result > --Dan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- __--_|\ Julian Elischer / \ julian@elischer.org ( OZ ) World tour 2000 )_.---._/ presently in: Budapest v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 8:48:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id BE3DD37C41E; Thu, 6 Jul 2000 08:47:45 -0700 (PDT) (envelope-from lplist@q.closedsrc.org) Received: from localhost (lplist@localhost) by q.closedsrc.org (8.10.2/8.10.2) with ESMTP id e66FlIt74978; Thu, 6 Jul 2000 08:47:18 -0700 (PDT) (envelope-from lplist@q.closedsrc.org) Date: Thu, 6 Jul 2000 08:47:18 -0700 (PDT) From: Linh Pham To: Dan Nelson Cc: Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <20000706102309.D20588@dan.emsphone.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 > In the last episode (Jul 06), Thomas Gellekum said: > > sorry for the late notice, I forgot to mail this yesterday. > > > > /etc/rc.shutdown in -current has been changed to call the scripts in > > ${local_startup} with the `stop' option. This allows packages like > > databases to call their own shutdown methods and clean up after > > themselves. All the ports have been changed accordingly. If you still > > have old startup scripts lying around in /usr/{local,X11R6}/etc/rc.d > > you should upgrade these ASAP. > > Can we have little green "[ OK ]"s as well? :) > > j/k I hope you are joking... LOL... We don't want Linux emulation to go in that direction. > > -- > Dan Nelson > dnelson@emsphone.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Thu Jul 6 9:10:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 3F6DD37BA6C; Thu, 6 Jul 2000 09:10:11 -0700 (PDT) (envelope-from pherman@frenchfries.net) Received: from bagabeedaboo.security.at12.de (dial-195-14-235-163.netcologne.de [195.14.235.163]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id SAA28647; Thu, 6 Jul 2000 18:10:07 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.10.2/8.10.2) with ESMTP id e66G9sJ06714; Thu, 6 Jul 2000 18:09:54 +0200 (CEST) Date: Thu, 6 Jul 2000 18:09:54 +0200 (CEST) From: Paul Herman To: Sheldon Hearn Cc: freebsd-bugs@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-Reply-To: <200007061450.HAA01348@freefall.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 Thu, 6 Jul 2000, Sheldon Hearn wrote: > On Thu, 06 Jul 2000 10:26:00 -0400, Brian Hechinger wrote: > > > beancounters don't understand that computers can have more than one disk let > > alone multiple slices. so it gives a nice total number to slap into a pie > > chart so that you can requisition more hard drives for your machines. > > This argument from Bill Fumerola is what swayed me enough to bring me > back to being neutral. ;-) First of all I'll state, I (just some FreeBSD user) am neutral on this as well -- which means, I wouldn't complain if it gets commited. :) There's just one thing nagging me: I still can't get past the fact that this can all be done very simply and much better with available tools. I see this option similar to, for example, "why not have an option to print only the 'Used' column." If this were to be commited, there would be no net gain. (No net loss, either.) Naturally, "no reason not to put it in" is most certainly *not* a reason to put it in. I would like to hear some to sway me one way or the other. Spoiler: df /disk1 /disk2 | \ awk '/^\// {t+=$2;u+=$3;} END { print "Total:", t,u,t-u,u*100/t; }' ...and "slaping 'df -c' into a pie chart" usually intails running it through some parser like this, anyway... or? -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 9:16:38 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 2066637C4B5; Thu, 6 Jul 2000 09:16:26 -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 LAA98325; Thu, 6 Jul 2000 11:16:06 -0500 (CDT) (envelope-from dscheidt@enteract.com) Date: Thu, 6 Jul 2000 11:16:05 -0500 (CDT) From: David Scheidt To: Linh Pham Cc: Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now 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 Thu, 6 Jul 2000, Linh Pham wrote: :> :> Can we have little green "[ OK ]"s as well? :) :> :> j/k : :I hope you are joking... LOL... We don't want Linux emulation to go in :that direction. HP/UX does something like this. I find it rather useful, but that may be because I have boxes that take almost an hour to boot.... David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 9:23:31 2000 Delivered-To: freebsd-current@freebsd.org Received: from q.closedsrc.org (ip233.gte15.rb1.bel.nwlink.com [209.20.244.233]) by hub.freebsd.org (Postfix) with ESMTP id B6AD037C47A; Thu, 6 Jul 2000 09:23:01 -0700 (PDT) (envelope-from lplist@q.closedsrc.org) Received: from localhost (lplist@localhost) by q.closedsrc.org (8.10.2/8.10.2) with ESMTP id e66GMZD75109; Thu, 6 Jul 2000 09:22:35 -0700 (PDT) (envelope-from lplist@q.closedsrc.org) Date: Thu, 6 Jul 2000 09:22:35 -0700 (PDT) From: Linh Pham To: David Scheidt Cc: Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now 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 Thu, 6 Jul 2000, David Scheidt wrote: > On Thu, 6 Jul 2000, Linh Pham wrote: > > :> > :> Can we have little green "[ OK ]"s as well? :) > :> > :> j/k > : > :I hope you are joking... LOL... We don't want Linux emulation to go in > :that direction. > > > HP/UX does something like this. I find it rather useful, but that may be > because I have boxes that take almost an hour to boot.... An hour to boot? Boy... the only time I ever saw a machine take an hour to boot (which does not include the POST/memory check/BIOS screen) was a 486SX/33 with 24MB of RAM running Windows NT 3.51 SP3. Of course it was running off of a 5 1/4" 400MB SCSI hard drive too! > > > David > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 9:34:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 7801437C475; Thu, 6 Jul 2000 09:34:39 -0700 (PDT) (envelope-from cdf.lists@fxp.org) Received: by pawn.primelocation.net (Postfix, from userid 1016) id 08BAB9B1C; Thu, 6 Jul 2000 12:34:36 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by pawn.primelocation.net (Postfix) with ESMTP id F1565BA0C; Thu, 6 Jul 2000 12:34:36 -0400 (EDT) Date: Thu, 6 Jul 2000 12:34:36 -0400 (EDT) From: "Chris D. Faulhaber" X-Sender: cdf.lists@pawn.primelocation.net To: David Scheidt Cc: Dan Nelson , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now 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 Thu, 6 Jul 2000, David Scheidt wrote: > On Thu, 6 Jul 2000, Linh Pham wrote: > > :> > :> Can we have little green "[ OK ]"s as well? :) > :> > :> j/k > : > :I hope you are joking... LOL... We don't want Linux emulation to go in > :that direction. > > > HP/UX does something like this. I find it rather useful, but that may be > because I have boxes that take almost an hour to boot.... > Many Linux distributions do this too. It seems about as useful as a car's idiot light(s)... IMO, I would prefer to see useful information during boot than that eye-candy. ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 9:35:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from botbay.net (botbay.net [151.197.159.116]) by hub.freebsd.org (Postfix) with ESMTP id CC7F837B792; Thu, 6 Jul 2000 09:35:18 -0700 (PDT) (envelope-from wcampbel@botbay.net) Received: from localhost (wcampbel@localhost) by botbay.net (8.9.3/8.9.3) with ESMTP id MAA20182; Thu, 6 Jul 2000 12:34:56 -0400 (EDT) (envelope-from wcampbel@botbay.net) Date: Thu, 6 Jul 2000 12:34:56 -0400 (EDT) From: Walter Campbell To: Linh Pham Cc: David Scheidt , Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now 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 > > HP/UX does something like this. I find it rather useful, but that may be > > because I have boxes that take almost an hour to boot.... > > An hour to boot? Boy... the only time I ever saw a machine take an hour to > boot (which does not include the POST/memory check/BIOS screen) was a > 486SX/33 with 24MB of RAM running Windows NT 3.51 SP3. Of course it was > running off of a 5 1/4" 400MB SCSI hard drive too! Try a Solaris 2.6 machine fsck'ing an array of 14 9.1 giggers Longest I've ever seen a BSD box boot was about 10-15 minutes though, including fsck'ing 4 drives To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 9:53:53 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 5F11037B780; Thu, 6 Jul 2000 09:53:45 -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 MAA78979; Thu, 6 Jul 2000 12:53:09 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Thu, 6 Jul 2000 12:53:09 -0400 (EDT) From: "Brandon D. Valentine" To: "Chris D. Faulhaber" Cc: David Scheidt , Dan Nelson , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now 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 Thu, 6 Jul 2000, Chris D. Faulhaber wrote: >Many Linux distributions do this too. It seems about as useful as a car's >idiot light(s)... IMO, I would prefer to see useful information during >boot than that eye-candy. I'd prefer to buy a box of blinkenlights to put in a spare 5.25" bay and let the dmesg on boot reflect only what I need to know as an admin when the box comes up. Brandon D. Valentine -- bandix at looksharp.net | bandix at structbio.vanderbilt.edu "Truth suffers from too much analysis." -- Ancient Fremen Saying To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 10: 3: 6 2000 Delivered-To: freebsd-current@freebsd.org Received: from ints.ru (ints.ru [194.67.173.1]) by hub.freebsd.org (Postfix) with ESMTP id 5C86137C134 for ; Thu, 6 Jul 2000 10:02:54 -0700 (PDT) (envelope-from ilmar@ints.ru) Received: (from uucp@localhost) by ints.ru (8.9.2/8.9.2) id VAA21441 for ; Thu, 6 Jul 2000 21:02:43 +0400 (MSD) Received: from ws-ilmar.ints.ru(194.67.173.16) via SMTP by ints.ru, id smtpdJ21439; Thu Jul 6 21:02:35 2000 Date: Thu, 6 Jul 2000 21:02:35 +0400 (MSD) From: "Ilmar S. Habibulin" To: freebsd-current@freebsd.org Subject: pam & login.conf 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 Looking through new PAMed login and PAM unix auth module i didn't find setting of login class params, such as resource limits, environment variables, etc. Do somebody working on it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 10:15:16 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragonstar.dhs.org (dsl-028-a.resnet.purdue.edu [128.211.161.178]) by hub.freebsd.org (Postfix) with ESMTP id EA3AD37BBEF; Thu, 6 Jul 2000 10:15:06 -0700 (PDT) (envelope-from jonsmith@dragonstar.dhs.org) Received: from localhost (jonsmith@localhost) by dragonstar.dhs.org (8.9.3/8.9.3) with ESMTP id MAA85524; Thu, 6 Jul 2000 12:14:54 -0500 (EST) (envelope-from jonsmith@dragonstar.dhs.org) Date: Thu, 6 Jul 2000 12:14:54 -0500 (EST) From: Jonathan Smith To: Dan Nelson Cc: Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <20000706102309.D20588@dan.emsphone.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 Quickie question: By implementing the 'start' and 'stop' in the local scripts, how much should one _expect_ their systems bootup and slow down times to take? I'm hearing whines of being to linux like, to sysv'ish and some likely valid complaints on startup/shutdown time. I, for one, like the functionality, and thought it kinda already worked that way (or maybe I _made_ it work that way on my machines, cn't remember). I would like solid facts, rather than a religious/exagerated discussion. To my (limited) understanding of this subject, it's not going to make hour long boot-ups. It may increase shutdown time to do things, but, sometimes you need to properly shut things down. If that were not the case, one could flip the power switch instead of typing shutdown.............. -- Close your eyes. Now forget what you see. What do you feel? -- My heart. -- Come here. -- Your heart. -- See? We're exactly the same. Jon Smith -- Senior Math Major @ Purdue On Thu, 6 Jul 2000, Dan Nelson wrote: > In the last episode (Jul 06), Thomas Gellekum said: > > sorry for the late notice, I forgot to mail this yesterday. > > > > /etc/rc.shutdown in -current has been changed to call the scripts in > > ${local_startup} with the `stop' option. This allows packages like > > databases to call their own shutdown methods and clean up after > > themselves. All the ports have been changed accordingly. If you still > > have old startup scripts lying around in /usr/{local,X11R6}/etc/rc.d > > you should upgrade these ASAP. > > Can we have little green "[ OK ]"s as well? :) > > j/k > > -- > Dan Nelson > dnelson@emsphone.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Thu Jul 6 10:42:36 2000 Delivered-To: freebsd-current@freebsd.org Received: from mercury.mich.com (mercury.mich.com [64.79.64.32]) by hub.freebsd.org (Postfix) with ESMTP id D642537B9F2; Thu, 6 Jul 2000 10:42:26 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm014-016.dialup.bignet.net [64.79.82.128]) by mercury.mich.com (8.9.3/8.9.3) with ESMTP id NAA27691; Thu, 6 Jul 2000 13:41:49 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id BD02118BC; Thu, 6 Jul 2000 13:39:46 -0400 (EDT) Date: Thu, 6 Jul 2000 13:39:46 -0400 From: Will Andrews To: Paul Herman Cc: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000706133946.C10303@argon.gryphonsoft.com> References: <200007061450.HAA01348@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from pherman@frenchfries.net on Thu, Jul 06, 2000 at 06:09:54PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 06:09:54PM +0200, Paul Herman wrote: > Naturally, "no reason not to put it in" is most certainly *not* a > reason to put it in. I would like to hear some to sway me one way or > the other. How about precedent: du -c. "Hey, we could have used an awk script with du(1) too!!" -- 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 Thu Jul 6 11: 6:12 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 EE2B837B875; Thu, 6 Jul 2000 11:06:07 -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 OAA264682; Thu, 6 Jul 2000 14:06:04 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Thu, 6 Jul 2000 14:07:01 -0400 To: John Galt From: Garance A Drosihn Subject: Re: subtle problem du jour.... Cc: Mike Smith , mjacob@feral.com, 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 12:50 AM -0600 7/6/00, John Galt wrote: >Is there a quick and dirty way for the label editor to detect if >a BIOS is using LBA? This actually sounds like a setup in which >the error condition should be alerted on placing / on a cylinder >higher than 1024 rather than long after you can do anything about >it. The loader error might be a good extra, but the real place >the user should be notified of the error condition is upon creation. In theory I agree with you. In my specific case, I was trying to do something "clever" (ahem), and as such it's pretty much my own fault that the partition ended up past the 8-gig mark. The label editor would have had to have been mighty smart to realize what I was up to. So, based on the sample of what I myself was doing, I don't really think it's possible to detect this problem at creation time. A clearer message at boot time would have been appreciated, though. --- 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 Thu Jul 6 11:18:46 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 3107737B557 for ; Thu, 6 Jul 2000 11:18:40 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:juWBAur3wt49WyNvz42JGk0A2Qk7L1imbiD6WPx0MI3chIJdDTiaUQqAh1rrEVTL@localhost.mahoroba.org [::1]) (authenticated) by peace.mahoroba.org (8.10.2/3.7W-peace) with ESMTP id e66IH7h92874; Fri, 7 Jul 2000 03:17:07 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 07 Jul 2000 03:17:03 +0900 (JST) Message-Id: <20000707.031703.74687893.ume@mahoroba.org> To: roberto@eurocontrol.fr Cc: freebsd-current@FreeBSD.ORG Subject: Re: buildworld breakage in pim6sd From: Hajimu UMEMOTO In-Reply-To: <20000706154927.D2451@caerdonn.eurocontrol.fr> References: <20000706154927.D2451@caerdonn.eurocontrol.fr> X-Mailer: xcite1.20> Mew version 1.95b38 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 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Thu, 6 Jul 2000 15:49:27 +0200 >>>>> Ollivier Robert said: roberto> /src/src/usr.sbin/pim6sd/cftoken.l:47: y.tab.h: No such file or directory roberto> mkdep: compile failed roberto> *** Error code 1 Thank you for reporting. I just fixed. Index: Makefile =================================================================== RCS file: /home/ncvs/src/usr.sbin/pim6sd/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 2000/07/06 01:48:00 1.4 +++ Makefile 2000/07/06 18:13:29 @@ -84,6 +84,7 @@ y.tab.h: cfparse.y CLEANFILES+= lex.yy.c y.tab.h y.tab.c CFLAGS+=-Wall +CFLAGS+=-I. -I${.CURDIR} CFLAGS+=-DINET6 -DPIM -DIOCTL_OK_ON_RAW_SOCKET -DHAVE_GETIFADDRS CFLAGS+=-DHAVE_STDARG_H DPADD= ${LIBY} ${LIBL} -- 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 Thu Jul 6 11:25: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from relay01.chello.nl (smtp.chello.nl [212.83.68.144]) by hub.freebsd.org (Postfix) with ESMTP id 5EB0537C0EF; Thu, 6 Jul 2000 11:25:00 -0700 (PDT) (envelope-from wkb@chello.nl) Received: from chello.nl ([213.46.78.184]) by relay01.chello.nl (InterMail vK.4.02.00.00 201-232-116 license 2ee4e7c625482f2f2a1950a80f6c8d58) with ESMTP id <20000706182601.NZZC28214.relay01@chello.nl>; Thu, 6 Jul 2000 20:26:01 +0200 Received: (from wkb@localhost) by chello.nl (8.9.3/8.9.3) id UAA00351; Thu, 6 Jul 2000 20:24:52 +0200 (CEST) (envelope-from wkb) Date: Thu, 6 Jul 2000 20:24:52 +0200 From: Wilko Bulte To: "Brandon D. Valentine" Cc: "Chris D. Faulhaber" , David Scheidt , Dan Nelson , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Message-ID: <20000706202452.B285@freebie.wbnet> Reply-To: wilko@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from bandix@looksharp.net on Thu, Jul 06, 2000 at 12:53:09PM -0400 X-OS: FreeBSD 4.0-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 12:53:09PM -0400, Brandon D. Valentine wrote: > On Thu, 6 Jul 2000, Chris D. Faulhaber wrote: > > >Many Linux distributions do this too. It seems about as useful as a car's > >idiot light(s)... IMO, I would prefer to see useful information during > >boot than that eye-candy. > > I'd prefer to buy a box of blinkenlights to put in a spare 5.25" bay and > let the dmesg on boot reflect only what I need to know as an admin when > the box comes up. We had that once. It's called a PDP/11 -- Wilko Bulte http://www.freebsd.org "Do, or do not. There is no try" wilko@freebsd.org http://www.nlfug.nl Yoda - The Empire Strikes Back To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 11:26: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from barracuda.aquarium.rtci.com (barracuda.aquarium.rtci.com [208.11.247.5]) by hub.freebsd.org (Postfix) with ESMTP id CC01637BA45 for ; Thu, 6 Jul 2000 11:26:03 -0700 (PDT) (envelope-from tstromberg@rtci.com) Received: from barracuda (barracuda [208.11.247.5]) by barracuda.aquarium.rtci.com (8.9.3+Sun/8.9.3) with ESMTP id OAA23574 for ; Thu, 6 Jul 2000 14:26:01 -0400 (EDT) Date: Thu, 6 Jul 2000 14:26:01 -0400 (EDT) From: Thomas Stromberg X-Sender: tstromberg@barracuda.aquarium.rtci.com To: freebsd-current@freebsd.org Subject: SB Live (or RAM parity?) crash on today's -CURRENT 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 'panic: RAM parity error, likely hardware failure.' This one had me confused at first, because it blamed a RAM parity error. As this is a brand new machine (Gateway GP-800), so I first thought I got a bad batch. Then I realized this only happens with apps that try to do sound stuff. It's also doubtful that it's a RAM parity error due to the severe compiling workout I've given it in the last 24 hours (134 ports, a few kernels and several attempts make world). Unfortunatly, since this machine was installed with yesterdays build to begin with, I cannot confirm whether or sound works on older builds (if needed for testing, I can rollback to an earlier kern revision..). I can get it to crash just by playing mpg123 or restarting esd. machine: ======== FreeBSD aesthetic.detachment.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Jul 6 12:55:50 EDT 2000 helixblue@aesthetic.detachment.org:/usr/src/sys/compile/AESTHETIX i386 gdb -k backtrace: ================= IdlePTD 3555328 initial pcb at 2dd180 panicstr: RAM parity error, likely hardware failure. panic messages: --- panic: RAM parity error, likely hardware failure. syncing disks... 14 11 done Uptime: 10m21s dumping to dev #ad/0x20001, offset 786432 dump ata0: resetting devices .. done 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 --- #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 303 dumppcb.pcb_cr3 = rcr3(); (kgdb) bt #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 #1 0xc0151320 in poweroff_wait (junk=0xc0291e80, howto=-903562160) at ../../kern/kern_shutdown.c:553 #2 0xc0260341 in isa_nmi (cd=0) at ../../i386/isa/intr_machdep.c:254 #3 0xc025a652 in trap (frame={tf_fs = -1058078704, tf_es = 16, tf_ds = -903610352, tf_edi = -1058025472, tf_esi = 49151, tf_ebp = -903562084, tf_isp = -903562108, tf_ebx = 4, tf_edx = 4260, tf_ecx = 49151, tf_eax = 49151, tf_trapno = 19, tf_err = 0, tf_eip = -1072503013, tf_cs = 8, tf_eflags = 582, tf_esp = 16, tf_ss = -903562048}) at ../../i386/i386/trap.c:583 #4 0xc012e71b in emu_wr (sc=0xc0efd000, regno=4, data=49151, size=4) at machine/cpufunc.h:331 #5 0xc012e807 in emu_wrptr (sc=0xc0efd000, chn=0, reg=16, data=49151) at ../../dev/sound/pci/emu10k1.c:258 #6 0xc012ef82 in emu_vwrite (sc=0xc0efd000, v=0xc0efd088) at ../../dev/sound/pci/emu10k1.c:585 #7 0xc012f21b in emupchan_trigger (data=0xc0efda88, go=1) at ../../dev/sound/pci/emu10k1.c:719 #8 0xc0135a58 in chn_trigger (c=0xc0ef9800, go=1) at ../../dev/sound/pcm/channel.c:1251 #9 0xc0134a06 in chn_wrintr (c=0xc0ef9800) at ../../dev/sound/pcm/channel.c:385 #10 0xc013503f in chn_intr (c=0xc0ef9800) at ../../dev/sound/pcm/channel.c:785 #11 0xc01350b7 in chn_start (c=0xc0ef9800) at ../../dev/sound/pcm/channel.c:811 #12 0xc0134b33 in chn_write (c=0xc0ef9800, buf=0xca24bedc) at ../../dev/sound/pcm/channel.c:476 #13 0xc0135e70 in dsp_write (d=0xc0ef7c00, chan=0, buf=0xca24bedc, flag=131089) at ../../dev/sound/pcm/dsp.c:194 #14 0xc0137e21 in sndwrite (i_dev=0xc0efa800, buf=0xca24bedc, flag=131089) at ../../dev/sound/pcm/sound.c:359 #15 0xc018bffd in spec_write (ap=0xca24be70) at ../../miscfs/specfs/spec_vnops.c:291 #16 0xc0221c38 in ufsspec_write (ap=0xca24be70) at ../../ufs/ufs/ufs_vnops.c:1857 #17 0xc02220ed in ufs_vnoperatespec (ap=0xca24be70) at ../../ufs/ufs/ufs_vnops.c:2305 #18 0xc01874e4 in vn_write (fp=0xc105ae00, uio=0xca24bedc, cred=0xc102f200, flags=0, p=0xca212100) at vnode_if.h:363 #19 0xc0161ca6 in dofilewrite (p=0xca212100, fp=0xc105ae00, fd=4, buf=0x8056000, nbyte=4096, offset=-1, flags=0) at ../../sys/file.h:157 #20 0xc0161b9b in write (p=0xca212100, uap=0xca24bf80) at ../../kern/sys_generic.c:308 #21 0xc025af01 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 134569984, tf_esi = 55, tf_ebp = -1077937444, tf_isp = -903561260, tf_ebx = 671725864, tf_edx = 671686271, tf_ecx = 7807, tf_eax = 4, tf_trapno = 22, tf_err = 2, tf_eip = 672214240, tf_cs = 31, tf_eflags = 663, tf_esp = -1077937488, tf_ss = 47}) at ../../i386/i386/trap.c:1126 #22 0xc0250205 in Xint0x80_syscall () #23 0x804a0d9 in ?? () #24 0x804901d in ?? () dmesg: ====== CPU: Pentium III/Pentium III Xeon/Celeron (796.54-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134217728 (131072K bytes) avail memory = 127098880 (124120K bytes) Preloaded elf kernel "kernel" at 0xc0352000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x10c0-0x10cf at device 7.1 on pci0ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 9 pci0: at 7.3 pcm0: port 0x10a0-0x10bf irq 11 at device 14.0 on pci0 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0x1000-0x107f mem 0xf4000000-0xf400007f irq 10 at device 15.0 on pci0 xl0: Ethernet address: 00:01:02:69:19:77 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 .... unknown: can't assign resources atspeaker0: at port 0x61 on isa0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources bra tur. ------------------------------------------------------------------------ thomas r. stromberg tstromberg@rtci.com senior systems administrator http://www.afterthought.org/ research triangle commerce, inc. 1.919.657.1317 bless(\$Perl++); # the power to hack. http://www.perl.com/ #include /* the power to serve. http://www.freebsd.org/ */ ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 11:50:49 2000 Delivered-To: freebsd-current@freebsd.org Received: from yellow.rahul.net (yellow.rahul.net [192.160.13.18]) by hub.freebsd.org (Postfix) with ESMTP id B4CCE37BC49 for ; Thu, 6 Jul 2000 11:50:46 -0700 (PDT) (envelope-from dhesi@rahul.net) Received: by yellow.rahul.net (Postfix, from userid 104) id B4BAB7D4F; Thu, 6 Jul 2000 11:50:45 -0700 (PDT) To: freebsd-current@freebsd.org Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Newsgroups: a2i.lists.freebsd-current References: X-Newsreader: NN version 6.5.6 (NOV) Message-Id: <20000706185045.B4BAB7D4F@yellow.rahul.net> Date: Thu, 6 Jul 2000 11:50:45 -0700 (PDT) From: dhesi@rahul.net (Rahul Dhesi) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thomas Gellekum writes: >/etc/rc.shutdown in -current has been changed to call the scripts in >${local_startup} with the `stop' option. This allows packages like >databases to call their own shutdown methods and clean up after >themselves.... This will make it a bit harder to quickly add a boot-time start-up script. If not done right, the start-up script will be called twice, and will try to start the program each time, if it doesn't recognize the 'stop' argument. Not upward compatible and possibly harmful to some software. Better would be to put compatible scripts in a new directory. rc.d : invoked without arguments only when system boots rc.e : invoked with 'start' or 'stop' argument, when system boots or shuts down Alternatively a new suffix could be used. .sh : invoked without arguments only when system boots .nsh : invoked with 'start' or 'stop' argument, when system boots or shuts down Alternatively (less upward compatible) legacy scripts could be given a different suffix. Then just a rename would make a script compatible, without having to rewrite it to recognize 'start' and 'stop' arguments. .osh : invoked without arguments only when system boots .sh : invoked with 'start' or 'stop' argument, when system boots or shuts down Other upward-compatible solutions are probably possible. Oh, also, the order in which scripts are called ought ideally be to be reversed at shutdown time. -- Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 11:57:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from peedub.muc.de (p3E9B8F55.dip.t-dialin.net [62.155.143.85]) by hub.freebsd.org (Postfix) with ESMTP id 8B8BC37BAA3; Thu, 6 Jul 2000 11:57:21 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id UAA00520; Thu, 6 Jul 2000 20:48:50 +0200 (CEST) Message-Id: <200007061848.UAA00520@peedub.muc.de> X-Mailer: exmh version 2.1.1 10/15/1999 To: Julian Elischer Cc: freebsd-current@FreeBSD.org Subject: Re: cvs commit: src/sys/netgraph ng_ether.c Reply-To: Gary Jennejohn In-reply-to: Your message of "Thu, 06 Jul 2000 08:36:00 PDT." <200007061536.IAA08398@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 06 Jul 2000 20:48:50 +0200 From: Gary Jennejohn Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Julian Elischer writes: > julian 2000/07/06 08:36:00 PDT > > Modified files: > sys/netgraph ng_ether.c > Log: > Don't forget to set our MAC address into packets we wre sending out via > netgraph. Eventually we may need to have a separate hook for packets > that already have a source AMC address but for now just drop it in. > Should fix PPPoE. > > Revision Changes Path > 1.2 +7 -1 src/sys/netgraph/ng_ether.c > > > Yes, that fixed it. Thanks, Julian ! --- Gary Jennejohn / garyj@muc.de gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 11:58:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from yellow.rahul.net (yellow.rahul.net [192.160.13.18]) by hub.freebsd.org (Postfix) with ESMTP id 2E07637BAFF for ; Thu, 6 Jul 2000 11:58:11 -0700 (PDT) (envelope-from dhesi@rahul.net) Received: by yellow.rahul.net (Postfix, from userid 104) id 8EECB7D33; Thu, 6 Jul 2000 11:58:10 -0700 (PDT) To: freebsd-current@freebsd.org Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Newsgroups: a2i.lists.freebsd-current References: X-Newsreader: NN version 6.5.6 (NOV) Message-Id: <20000706185810.8EECB7D33@yellow.rahul.net> Date: Thu, 6 Jul 2000 11:58:10 -0700 (PDT) From: dhesi@rahul.net (Rahul Dhesi) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Linh Pham writes: >> Can we have little green "[ OK ]"s as well? :) >> >> j/k >I hope you are joking... LOL... We don't want Linux emulation to go in >that direction. It's not the green that's important, it's the 'OK'. The way Redhat Linux boots, you can see at a glance which start-up commands failed and which ones succeeded. The way FreeBSD boots, it's all one big blur. Also, in the Linux scheme, there is a standard mechanism to keep track of which boot-time service has already been started, and any accidental re-invocation of the script (without an intervening 'stop') will be detected and rejected. I personally find the 'chkconfig' command to be very convenient to enable, disable, and list boot-time services, without having to manually rename xxx.sh to xxx.sh.DISABLED and back. -- Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 12: 9:39 2000 Delivered-To: freebsd-current@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id B240E37B872 for ; Thu, 6 Jul 2000 12:09:32 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grimreaper.grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id VAA02845; Thu, 6 Jul 2000 21:10:19 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200007061910.VAA02845@grimreaper.grondar.za> To: "Ilmar S. Habibulin" Cc: freebsd-current@FreeBSD.ORG Subject: Re: pam & login.conf References: In-Reply-To: ; from "Ilmar S. Habibulin" "Thu, 06 Jul 2000 21:02:35 +0400." Date: Thu, 06 Jul 2000 21:10:19 +0200 From: Mark Murray Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Looking through new PAMed login and PAM unix auth module i didn't find > setting of login class params, such as resource limits, environment > variables, etc. Do somebody working on it? I'll get there (eventually). Patches welcome :-). M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 12:19: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 7BF0437BA9E for ; Thu, 6 Jul 2000 12:18:57 -0700 (PDT) (envelope-from marcel@cup.hp.com) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 64A70A06; Thu, 6 Jul 2000 12:18:56 -0700 (PDT) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.02) with ESMTP id MAA13964; Thu, 6 Jul 2000 12:18:55 -0700 (PDT) Message-ID: <3964DB9F.2D9E86D3@cup.hp.com> Date: Thu, 06 Jul 2000 12:18:55 -0700 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Rahul Dhesi Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now References: <20000706185810.8EECB7D33@yellow.rahul.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rahul Dhesi wrote: > > >> Can we have little green "[ OK ]"s as well? :) > > >I hope you are joking... LOL... We don't want Linux emulation to go in > >that direction. > > It's not the green that's important, it's the 'OK'. The way Redhat > Linux boots, you can see at a glance which start-up commands failed and > which ones succeeded. The way FreeBSD boots, it's all one big blur. I don't like the Linux/HP-UX/whatever way simply because it's non-unix in the sense that normally output is generated only in case of failure or in exceptional conditions. It's "telling" me things I don't want to "hear". The same applies to having "N/A" or "FAIL" emitted for services that aren't enabled/configured (in which case printing "FAIL" is plain wrong). > Also, in the Linux scheme, there is a standard mechanism to keep track > of which boot-time service has already been started, and any accidental > re-invocation of the script (without an intervening 'stop') will be > detected and rejected. Which means that if the daemon is down and the script doesn't know about it, you have to remove pid files and whatnot to use the script again to get the daemon running, right? > I personally find the 'chkconfig' command to be > very convenient to enable, disable, and list boot-time services, without > having to manually rename xxx.sh to xxx.sh.DISABLED and back. You mean the irritating pop-up that asks you questions everytime the bloody machine boots? :-) -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 12:29:36 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 3C8DC37C1F8 for ; Thu, 6 Jul 2000 12:29:31 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id MAA89649; Thu, 6 Jul 2000 12:29:13 -0700 (PDT) (envelope-from obrien) Date: Thu, 6 Jul 2000 12:29:13 -0700 From: "David O'Brien" To: Brad Knowles Cc: current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000706122913.C89581@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <16565.962880093@axl.ops.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from blk@skynet.be on Thu, Jul 06, 2000 at 12:58:27PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 12:58:27PM +0200, Brad Knowles wrote: > account the 10% (or whatever) overhead that is typically left > unallocated for performance reasons. FreeBSD defaults to 8%. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 12:34:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 3F2A237B965 for ; Thu, 6 Jul 2000 12:34:31 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Received: from ix.netcom.com (sil-wa17-31.ix.netcom.com [207.93.156.31]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id PAA05965 for ; Thu, 6 Jul 2000 15:34:26 -0400 (EDT) Received: (from tomdean@localhost) by ix.netcom.com (8.9.3/8.9.3) id MAA12852; Thu, 6 Jul 2000 12:34:20 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Date: Thu, 6 Jul 2000 12:34:20 -0700 (PDT) Message-Id: <200007061934.MAA12852@ix.netcom.com> X-Authentication-Warning: celebris.tddhome: tomdean set sender to tomdean@ix.netcom.com using -f From: "Thomas D. Dean" To: freebsd-current@FreeBSD.ORG In-reply-to: <3964DB9F.2D9E86D3@cup.hp.com> (message from Marcel Moolenaar on Thu, 06 Jul 2000 12:18:55 -0700) Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now References: <20000706185810.8EECB7D33@yellow.rahul.net> <3964DB9F.2D9E86D3@cup.hp.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We have gone to some pains in the past to make the rc.d scripts silent. Either work or fail silently. if [ -x ... ]; do ... done Now, with the addition of the start/stop, there is a message output if the argument is not 'start' or 'stop'. The default should be 'start'. These scripts are frequently used to restart or redo things. And, continue to exit silently in all cases. tomdean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13: 2:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from scarybright.merseine.nu (host30-134.prestige.net [63.88.153.134]) by hub.freebsd.org (Postfix) with ESMTP id 1F91337B91F for ; Thu, 6 Jul 2000 13:02:15 -0700 (PDT) (envelope-from tcb@scarybright.merseine.nu) Received: by scarybright.merseine.nu (Postfix, from userid 500) id 4DA277DCC; Thu, 6 Jul 2000 16:01:32 -0400 (EDT) Date: Thu, 6 Jul 2000 16:01:32 -0400 From: Timothy Brown To: Thomas Stromberg Cc: freebsd-current@freebsd.org Subject: Re: SB Live (or RAM parity?) crash on today's -CURRENT Message-ID: <20000706160132.A24697@scarybright.merseine.nu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from tstromberg@rtci.com on Thu, Jul 06, 2000 at 02:26:01PM -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I filed a PR on this a little while ago. i386/19410. It happens on 4.0-STABLE (as of Tue Jun 20 19:40:01 PDT 2000), too. I have a revision 5 SBLive card. An interesting commonality (possible connection) is that I have a Gateway system; This is a GP6-450. Tim On Thu, Jul 06, 2000 at 02:26:01PM -0400, Thomas Stromberg wrote: > 'panic: RAM parity error, likely hardware failure.' > > This one had me confused at first, because it blamed a RAM parity > error. As this is a brand new machine (Gateway GP-800), so I first thought > I got a bad batch. Then I realized this only happens with apps that try to > do sound stuff. It's also doubtful that it's a RAM parity error due to the > severe compiling workout I've given it in the last 24 hours (134 ports, a > few kernels and several attempts make world). > > Unfortunatly, since this machine was installed with > yesterdays build to begin with, I cannot confirm whether or sound works on > older builds (if needed for testing, I can rollback to an earlier kern > revision..). I can get it to crash just by playing mpg123 or restarting > esd. > > machine: > ======== > FreeBSD aesthetic.detachment.org 5.0-CURRENT FreeBSD 5.0-CURRENT > #0: Thu Jul 6 12:55:50 EDT 2000 > helixblue@aesthetic.detachment.org:/usr/src/sys/compile/AESTHETIX i386 > > gdb -k backtrace: > ================= > IdlePTD 3555328 > initial pcb at 2dd180 > panicstr: RAM parity error, likely hardware failure. > panic messages: > --- > panic: RAM parity error, likely hardware failure. > > syncing disks... 14 11 > done > Uptime: 10m21s > > dumping to dev #ad/0x20001, offset 786432 > dump ata0: resetting devices .. done > 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 > 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 > 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 > 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 > 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 > 14 13 12 11 10 9 8 7 6 5 4 3 2 1 > --- > #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 > 303 dumppcb.pcb_cr3 = rcr3(); > (kgdb) bt > #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 > #1 0xc0151320 in poweroff_wait (junk=0xc0291e80, howto=-903562160) > at ../../kern/kern_shutdown.c:553 > #2 0xc0260341 in isa_nmi (cd=0) at ../../i386/isa/intr_machdep.c:254 > #3 0xc025a652 in trap (frame={tf_fs = -1058078704, tf_es = 16, > tf_ds = -903610352, tf_edi = -1058025472, tf_esi = 49151, > tf_ebp = -903562084, tf_isp = -903562108, tf_ebx = 4, tf_edx = 4260, > tf_ecx = 49151, tf_eax = 49151, tf_trapno = 19, tf_err = 0, > tf_eip = -1072503013, tf_cs = 8, tf_eflags = 582, tf_esp = 16, > tf_ss = -903562048}) at ../../i386/i386/trap.c:583 > #4 0xc012e71b in emu_wr (sc=0xc0efd000, regno=4, data=49151, size=4) > at machine/cpufunc.h:331 > #5 0xc012e807 in emu_wrptr (sc=0xc0efd000, chn=0, reg=16, data=49151) > at ../../dev/sound/pci/emu10k1.c:258 > #6 0xc012ef82 in emu_vwrite (sc=0xc0efd000, v=0xc0efd088) > at ../../dev/sound/pci/emu10k1.c:585 > #7 0xc012f21b in emupchan_trigger (data=0xc0efda88, go=1) > at ../../dev/sound/pci/emu10k1.c:719 > #8 0xc0135a58 in chn_trigger (c=0xc0ef9800, go=1) > at ../../dev/sound/pcm/channel.c:1251 > #9 0xc0134a06 in chn_wrintr (c=0xc0ef9800) > at ../../dev/sound/pcm/channel.c:385 > #10 0xc013503f in chn_intr (c=0xc0ef9800) at > ../../dev/sound/pcm/channel.c:785 > #11 0xc01350b7 in chn_start (c=0xc0ef9800) at > ../../dev/sound/pcm/channel.c:811 > #12 0xc0134b33 in chn_write (c=0xc0ef9800, buf=0xca24bedc) > at ../../dev/sound/pcm/channel.c:476 > #13 0xc0135e70 in dsp_write (d=0xc0ef7c00, chan=0, buf=0xca24bedc, > flag=131089) > at ../../dev/sound/pcm/dsp.c:194 > #14 0xc0137e21 in sndwrite (i_dev=0xc0efa800, buf=0xca24bedc, flag=131089) > at ../../dev/sound/pcm/sound.c:359 > #15 0xc018bffd in spec_write (ap=0xca24be70) > at ../../miscfs/specfs/spec_vnops.c:291 > #16 0xc0221c38 in ufsspec_write (ap=0xca24be70) > at ../../ufs/ufs/ufs_vnops.c:1857 > #17 0xc02220ed in ufs_vnoperatespec (ap=0xca24be70) > at ../../ufs/ufs/ufs_vnops.c:2305 > #18 0xc01874e4 in vn_write (fp=0xc105ae00, uio=0xca24bedc, > cred=0xc102f200, > flags=0, p=0xca212100) at vnode_if.h:363 > #19 0xc0161ca6 in dofilewrite (p=0xca212100, fp=0xc105ae00, fd=4, > buf=0x8056000, nbyte=4096, offset=-1, flags=0) at ../../sys/file.h:157 > #20 0xc0161b9b in write (p=0xca212100, uap=0xca24bf80) > at ../../kern/sys_generic.c:308 > #21 0xc025af01 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, > tf_edi = 134569984, tf_esi = 55, tf_ebp = -1077937444, > tf_isp = -903561260, tf_ebx = 671725864, tf_edx = 671686271, > tf_ecx = 7807, tf_eax = 4, tf_trapno = 22, tf_err = 2, > tf_eip = 672214240, tf_cs = 31, tf_eflags = 663, tf_esp = > -1077937488, > tf_ss = 47}) at ../../i386/i386/trap.c:1126 > #22 0xc0250205 in Xint0x80_syscall () > #23 0x804a0d9 in ?? () > #24 0x804901d in ?? () > > > dmesg: > ====== > CPU: Pentium III/Pentium III Xeon/Celeron (796.54-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x683 Stepping = 3 > Features=0x383f9ff > real memory = 134217728 (131072K bytes) > avail memory = 127098880 (124120K bytes) > Preloaded elf kernel "kernel" at 0xc0352000. > Pentium Pro MTRR support enabled > md0: Malloc disk > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > pci0: at 0.0 > pcib1: at device 1.0 on pci0 > pci1: on pcib1 > pci1: at 0.0 irq 11 > isab0: at device 7.0 on pci0 > isa0: on isab0 > atapci0: port 0x10c0-0x10cf at device 7.1 > on pci0ata0: at 0x1f0 irq 14 on atapci0 > ata1: at 0x170 irq 15 on atapci0 > pci0: at 7.2 irq 9 > pci0: at 7.3 > pcm0: port 0x10a0-0x10bf irq 11 at device 14.0 on pci0 > xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0x1000-0x107f mem > 0xf4000000-0xf400007f irq 10 at device 15.0 on pci0 > xl0: Ethernet address: 00:01:02:69:19:77 > miibus0: on xl0 > xlphy0: <3c905C 10/100 internal PHY> on miibus0 > xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > sc0: on isa0 > .... > unknown: can't assign resources > atspeaker0: at port 0x61 on isa0 > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > unknown: can't assign resources > > > bra tur. > > ------------------------------------------------------------------------ > thomas r. stromberg tstromberg@rtci.com > senior systems administrator http://www.afterthought.org/ > research triangle commerce, inc. 1.919.657.1317 > > bless(\$Perl++); # the power to hack. http://www.perl.com/ > #include /* the power to serve. http://www.freebsd.org/ */ > ------------------------------------------------------------------------ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > -- Timothy Brown tcb@ga.prestige.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13: 3:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from ywing.creative.net.au (ywing.creative.net.au [203.56.168.34]) by hub.freebsd.org (Postfix) with ESMTP id 3D0CF37B61A for ; Thu, 6 Jul 2000 13:03:10 -0700 (PDT) (envelope-from adrian@ywing.creative.net.au) Received: (from adrian@localhost) by ywing.creative.net.au (8.9.3/8.9.3) id WAA84060; Thu, 6 Jul 2000 22:09:53 +0200 (CEST) (envelope-from adrian) Date: Thu, 6 Jul 2000 22:09:53 +0200 From: Adrian Chadd To: Rahul Dhesi Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Message-ID: <20000706220953.C82859@ywing.creative.net.au> References: <20000706185810.8EECB7D33@yellow.rahul.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000706185810.8EECB7D33@yellow.rahul.net>; from dhesi@rahul.net on Thu, Jul 06, 2000 at 11:58:10AM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000, Rahul Dhesi wrote: > Linh Pham writes: > > >> Can we have little green "[ OK ]"s as well? :) > >> > >> j/k > > >I hope you are joking... LOL... We don't want Linux emulation to go in > >that direction. > > It's not the green that's important, it's the 'OK'. The way Redhat > Linux boots, you can see at a glance which start-up commands failed and > which ones succeeded. The way FreeBSD boots, it's all one big blur. > > Also, in the Linux scheme, there is a standard mechanism to keep track > of which boot-time service has already been started, and any accidental > re-invocation of the script (without an intervening 'stop') will be > detected and rejected. I personally find the 'chkconfig' command to be > very convenient to enable, disable, and list boot-time services, without > having to manually rename xxx.sh to xxx.sh.DISABLED and back. Well, chkconfig isn't a linux thing: replicate 1% uname -a IRIX replicate 6.5 05190003 IP22 replicate 2% which chkconfig /sbin/chkconfig replicate 3% And its actually very useful IMHO. Thats what rc.conf is for though, right? enable_pkg_apache="YES" enable_pkg_qmail="YES" enable_pkg_mysql="YES" and so on .. ? Adrian -- Adrian Chadd Build a man a fire, and he's warm for the rest of the evening. Set a man on fire and he's warm for the rest of his life. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13: 7: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from ints.ru (ints.ru [194.67.173.1]) by hub.freebsd.org (Postfix) with ESMTP id ED27537B61A for ; Thu, 6 Jul 2000 13:07:05 -0700 (PDT) (envelope-from ilmar@ints.ru) Received: (from uucp@localhost) by ints.ru (8.9.2/8.9.2) id AAA28838; Fri, 7 Jul 2000 00:06:53 +0400 (MSD) Received: from ws-ilmar.ints.ru(194.67.173.16) via SMTP by ints.ru, id smtpdz28836; Fri Jul 7 00:06:52 2000 Date: Fri, 7 Jul 2000 00:06:52 +0400 (MSD) From: "Ilmar S. Habibulin" To: Mark Murray Cc: freebsd-current@FreeBSD.ORG Subject: Re: pam & login.conf In-Reply-To: <200007061910.VAA02845@grimreaper.grondar.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 Thu, 6 Jul 2000, Mark Murray wrote: > I'll get there (eventually). Oh, great. Somebody do get there. ;-) > Patches welcome :-). I don't know if i can help much. PAM is new and completly unknown to me. Old login was much more simlier. Maybe i'll try to integrate something from 2.2. Can you help me - which pam functions should i use or read man/sources to set such user attributes as resource limits are? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13:24:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from ywing.creative.net.au (ywing.creative.net.au [203.56.168.34]) by hub.freebsd.org (Postfix) with ESMTP id A8E6837B945; Thu, 6 Jul 2000 13:24:40 -0700 (PDT) (envelope-from adrian@ywing.creative.net.au) Received: (from adrian@localhost) by ywing.creative.net.au (8.9.3/8.9.3) id WAA84156; Thu, 6 Jul 2000 22:31:38 +0200 (CEST) (envelope-from adrian) Date: Thu, 6 Jul 2000 22:31:38 +0200 From: Adrian Chadd To: Adrian Chadd Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Message-ID: <20000706223138.D82859@ywing.creative.net.au> References: <20000706185810.8EECB7D33@yellow.rahul.net> <20000706220953.C82859@ywing.creative.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000706220953.C82859@ywing.creative.net.au>; from adrian@FreeBSD.ORG on Thu, Jul 06, 2000 at 10:09:53PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000, Adrian Chadd wrote: > > And its actually very useful IMHO. Thats what rc.conf is for though, right? > > enable_pkg_apache="YES" > enable_pkg_qmail="YES" > enable_pkg_mysql="YES" > > and so on .. ? Before people start going "huh?" .. that was an idea, not an outline as to what happens today. :-P Adrian -- Adrian Chadd Build a man a fire, and he's warm for the rest of the evening. Set a man on fire and he's warm for the rest of his life. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13:34: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id A148237B718; Thu, 6 Jul 2000 13:34:01 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id C7BFB1C65; Thu, 6 Jul 2000 16:34:00 -0400 (EDT) Date: Thu, 6 Jul 2000 16:34:00 -0400 From: Bill Fumerola To: Paul Herman Cc: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does Message-ID: <20000706163400.T4034@jade.chc-chimes.com> References: <200007061450.HAA01348@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from pherman@frenchfries.net on Thu, Jul 06, 2000 at 06:09:54PM +0200 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 06:09:54PM +0200, Paul Herman wrote: > Naturally, "no reason not to put it in" is most certainly *not* a > reason to put it in. I would like to hear some to sway me one way or > the other. > > Spoiler: > df /disk1 /disk2 | \ > awk '/^\// {t+=$2;u+=$3;} END { print "Total:", t,u,t-u,u*100/t; }' > > ...and "slaping 'df -c' into a pie chart" usually intails running it > through some parser like this, anyway... or? [hawk-billf] /home/billf > du -s /usr/src/sys/i386 /usr/ports/math | \ awk '{t+=$1; print $0} END { print t, "\ttotal" }' 6282 /usr/src/sys/i386 15288 /usr/ports/math 21570 total [hawk-billf] /home/billf > du -cs /usr/src/sys/i386 /usr/ports/math 6282 /usr/src/sys/i386 15288 /usr/ports/math 21570 total Precedence. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CHIMES e-mail: billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 13:54:32 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 8A3FC37B618 for ; Thu, 6 Jul 2000 13:54:30 -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 NAA68145 for ; Thu, 6 Jul 2000 13:54:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 6 Jul 2000 13:54:30 -0700 (PDT) From: Kris Kennaway To: current@freebsd.org Subject: HEADS UP: cvs commit: src/lib/libftpio Makefile (fwd) 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 If anyone has done a make world within the past few days you should remove your libftpio.6 since the version bump was made in error. It's now back to libftpio.5. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe ---------- Forwarded message ---------- Date: Thu, 6 Jul 2000 13:19:02 -0700 (PDT) From: Hajimu UMEMOTO To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libftpio Makefile ume 2000/07/06 13:19:02 PDT Modified files: lib/libftpio Makefile Log: Reduce shlib major that is bumped by my mistake. We don't need bumping it in this time. Revision Changes Path 1.11 +2 -2 src/lib/libftpio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 14:36:41 2000 Delivered-To: freebsd-current@freebsd.org Received: from web3104.mail.yahoo.com (web3104.mail.yahoo.com [204.71.202.189]) by hub.freebsd.org (Postfix) with SMTP id 6732B37B7FA for ; Thu, 6 Jul 2000 14:36:31 -0700 (PDT) (envelope-from rsstan@yahoo.com) Message-ID: <20000706213630.16205.qmail@web3104.mail.yahoo.com> Received: from [150.159.224.8] by web3104.mail.yahoo.com; Thu, 06 Jul 2000 14:36:30 PDT Date: Thu, 6 Jul 2000 14:36:30 -0700 (PDT) From: Richard Stanaford Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now To: freebsd-stable@FreeBSD.ORG Cc: 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 How bout a booting a SparcStation running Solaris 2.6 off a 1x CDROM? When it finally got done, I had to sit and remind myself what was wrong with it. -Richard --- Walter Campbell wrote: > > > HP/UX does something like this. I find it rather useful, but that may be > > > because I have boxes that take almost an hour to boot.... > > > > An hour to boot? Boy... the only time I ever saw a machine take an hour to > > boot (which does not include the POST/memory check/BIOS screen) was a > > 486SX/33 with 24MB of RAM running Windows NT 3.51 SP3. Of course it was > > running off of a 5 1/4" 400MB SCSI hard drive too! > > Try a Solaris 2.6 machine fsck'ing an array of 14 9.1 giggers > > Longest I've ever seen a BSD box boot was about 10-15 minutes though, > including fsck'ing 4 drives > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message __________________________________________________ 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 Jul 6 15:15: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from hurricane.columbus.rr.com (m5.columbus.rr.com [204.210.252.249]) by hub.freebsd.org (Postfix) with ESMTP id 90C3937B88A for ; Thu, 6 Jul 2000 15:14:55 -0700 (PDT) (envelope-from caa@columbus.rr.com) Received: from blizzard.columbus.rr.com ([204.210.252.245]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com for ; Thu, 6 Jul 2000 18:15:09 -0400 Received: from columbus.rr.com (dhcp9559163.columbus.rr.com [24.95.59.163]) by blizzard.columbus.rr.com (8.9.3/8.9.3) with ESMTP id SAA17420 for ; Thu, 6 Jul 2000 18:13:54 -0400 (EDT) Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id SAA73751 for freebsd-current@FreeBSD.ORG; Thu, 6 Jul 2000 18:15:50 GMT (envelope-from caa) Date: Thu, 6 Jul 2000 18:15:23 +0000 From: Charles Anderson To: FreeBSD Current Subject: _DIAGASSERT in libusb & libutil Message-ID: <20000706181523.B38809@midgard.dhs.org> 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 # grep -r DIAGASSERT . (from /usr/src) ./lib/libutil/fparseln.c: _DIAGASSERT(sp != NULL); ./lib/libutil/fparseln.c: _DIAGASSERT(p != NULL); ./lib/libutil/fparseln.c: _DIAGASSERT(fp != NULL); ./lib/libusb/data.c: _DIAGASSERT(p != NULL); ./lib/libusb/data.c: _DIAGASSERT(h != NULL); ./lib/libusb/data.c: _DIAGASSERT(p != NULL); ./lib/libusb/data.c: _DIAGASSERT(h != NULL); ./lib/libusb/descr.c: _DIAGASSERT(fd != -1); ./lib/libusb/parse.c: _DIAGASSERT(c != NULL); ./lib/libusb/parse.c: _DIAGASSERT(d != NULL); ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); ./lib/libusb/parse.c: _DIAGASSERT(r != NULL); ./lib/libusb/parse.c: _DIAGASSERT(desc != NULL); ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); ./make.out.070600.1528:/usr/obj/usr/src/i386/usr/lib/libusb.so: undefined reference to `_DIAGASSERT' Where does _DIAGASSERT come from? I updated right before I built which was 3:30 edt -Charlie -- Charles Anderson caa@columbus.rr.com No quote, no nothin' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 15:41:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id BCF4C37B8D1; Thu, 6 Jul 2000 15:41:17 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id QAA26414; Thu, 6 Jul 2000 16:41:14 -0600 (MDT) (envelope-from ken) Date: Thu, 6 Jul 2000 16:41:14 -0600 From: "Kenneth D. Merry" To: current@FreeBSD.ORG Cc: cg@FreeBSD.ORG Subject: module compile problems, partial fix attached Message-ID: <20000706164114.A26172@panzer.kdm.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I've got a source tree with -current from today, and I'm trying to build a kernel using that source on a machine running -current from about June 10th. I'm using a config built from the tree in question, so I know that's up to date. Anyway, I'm running into problems building the sound modules modules, since it seems that the sound modules are one directory level deeper than any other modules, and the sys directory search process in bsd.kmod.mk wasn't updated to take that into account. The result is that the build for the sound modules on my system is looking in /usr/src (which is symlinked to /a/src) on my machine, which doesn't contain an up-to-date -current. This is from the sys/compile/MACHINE/modules/..../sound/drivers/ad1816 directory: total 19 drwx------ 2 ken wheel 512 Jul 6 15:20 ./ drwx------ 17 ken wheel 512 Jul 6 14:59 ../ -rw------- 1 ken wheel 1490 Jul 6 15:00 .depend lrwx------ 1 ken wheel 10 Jul 6 15:00 @@ -> /a/src/sys -rw------- 1 ken wheel 7297 Jul 6 15:00 bus_if.h -rw------- 1 ken wheel 2069 Jul 6 15:00 device_if.h -rw------- 1 ken wheel 1570 Jul 6 15:00 isa_if.h lrwx------ 1 ken wheel 23 Jul 6 15:00 machine@ -> /a/src/sys/i386/include -rw------- 1 ken wheel 1140 Jul 6 15:00 pci_if.h /a/src isn't the tree that the modules are being compiled from, but rather another, older -current tree. This causes the sound modules to blow up: ============================================================================= ===> sound/driver ===> sound/driver/ad1816 cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/../include -mpreferred-stack-boundary=2 -c /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: `PCM_MINVER' undeclared here (not in a function) /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: initializer element is not constant /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: (near initialization for `_snd_ad1816_depend_on_snd_pcm.md_ver_minimum') /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: `PCM_PREFVER' undeclared here (not in a function) /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: initializer element is not constant /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: (near initialization for `_snd_ad1816_depend_on_snd_pcm.md_ver_preferred') /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: `PCM_MAXVER' undeclared here (not in a function) /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: initializer element is not constant /a/ken/perforce/cam/sys/modules/sound/driver/ad1816/../../../../dev/sound/isa/ad1816.c:623: (near initialization for `_snd_ad1816_depend_on_snd_pcm.md_ver_maximum') *** Error code 1 Stop in /a/ken/perforce/cam/sys/modules/sound/driver/ad1816. *** Error code 1 Stop in /a/ken/perforce/cam/sys/modules/sound/driver. *** Error code 1 Stop in /a/ken/perforce/cam/sys/modules/sound. *** Error code 1 Stop in /a/ken/perforce/cam/sys/modules. *** Error code 1 Stop in /a/ken/perforce/cam/sys/compile/sphere. ============================================================================= I suspect that the problem is the depth of the sound driver module tree and the method that bsd.kmod.mk uses to determine where the sys directory is. sys/modules/sound/driver/ad1816/Makefile includes bsd.kmod.mk, which does the following to find the "sys" directory: # Search for kernel source tree in standard places. .for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys .if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/) SYSDIR= ${_dir} .endif .endfor .if !defined(SYSDIR) || !exists(${SYSDIR}/kern/) || !exists(${SYSDIR}/conf/) .error "can't find kernel source tree" .endif .include "${SYSDIR}/conf/kmod.mk" Note that it checks two directories up, and three directories up from the current directory for a sys directory, but the ad1816 module is actually four directories down from the top level sys directory. So the 'kern' and 'conf' directories are not found, and the search then looks in /sys and /usr/src/sys, which is the wrong thing to do on this system. The fix for this is to include the directory four levels higher than the current directory in the search path in bsd.kmod.mk, above. The problem with this fix is that it only works after you've done an installworld or manually installed bsd.kmod.mk, because the module build uses the system's bsd.kmod.mk from /usr/share/mk instead of attempting to pull in bsd.kmod.mk from the source tree that is being used to build the kernel. (If it is available.) So the attached patch is a fix, but it isn't a complete fix. For the complete fix, we need to attempt to pull in mk files from the share directory in the source tree that is being used to build the kernel. Ken -- Kenneth Merry ken@kdm.org --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="bsd.kmod.mk.20000706" ==== //depot/cam/share/mk/bsd.kmod.mk#19 - /a/ken/perforce/cam/share/mk/bsd.kmod.mk ==== *** /tmp/tmp.42230.0 Thu Jul 6 16:36:52 2000 --- /a/ken/perforce/cam/share/mk/bsd.kmod.mk Thu Jul 6 16:18:04 2000 *************** *** 1,7 **** # $FreeBSD: src/share/mk/bsd.kmod.mk,v 1.84 2000/05/27 01:11:17 peter Exp $ # Search for kernel source tree in standard places. ! .for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys .if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/) SYSDIR= ${_dir} .endif --- 1,7 ---- # $FreeBSD: src/share/mk/bsd.kmod.mk,v 1.84 2000/05/27 01:11:17 peter Exp $ # Search for kernel source tree in standard places. ! .for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. ${.CURDIR}/../../../.. /sys /usr/src/sys .if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/) SYSDIR= ${_dir} .endif --M9NhX3UHpAaciwkO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 16:33:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 3D5DE37B9FC; Thu, 6 Jul 2000 16:33:23 -0700 (PDT) (envelope-from pherman@frenchfries.net) Received: from bagabeedaboo.security.at12.de (dial-195-14-251-131.netcologne.de [195.14.251.131]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id BAA15914; Fri, 7 Jul 2000 01:33:20 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.10.2/8.10.2) with ESMTP id e66NXDw07290; Fri, 7 Jul 2000 01:33:13 +0200 (CEST) Date: Fri, 7 Jul 2000 01:33:12 +0200 (CEST) From: Paul Herman To: Bill Fumerola Cc: Sheldon Hearn , freebsd-bugs@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does In-Reply-To: <20000706163400.T4034@jade.chc-chimes.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 Thu, 6 Jul 2000, Bill Fumerola wrote: > On Thu, Jul 06, 2000 at 06:09:54PM +0200, Paul Herman wrote: > > > Naturally, "no reason not to put it in" is most certainly *not* a > > reason to put it in. I would like to hear some to sway me one way or > > the other. > > > > [...] > [hawk-billf] /home/billf > du -cs /usr/src/sys/i386 /usr/ports/math > 6282 /usr/src/sys/i386 > 15288 /usr/ports/math > 21570 total > > Precedence. > OK, I'm with ya, I could go with Precedence, but you have to admit, it's pretty weak. Just because "it's been done before"...? Hmmm. Well, I was hoping for something concrete about the program like "because this option gives us something never seen by sysadmins before without massive contortions", or "this option does correctly what XXX program never could..." etc. Unfortunately, I can't think of any myself. For what one person's opinion is worth, I still haven't heard a strong reason for this. Sorry guys, you can still color me undecided on this one. :( On a side note, look what I found: bash-2.03# cd bash-2.03# ln -s /dev/ad0s6e "Heh? What's this?" bash-2.03# mount "Heh? What's this?" /mnt bash-2.03# ln -s /dev/ad0s6f total bash-2.03# mount total /mnt2 bash-2.03# mkdir whut_thuh_hey; cd whut_thuh_hey bash-2.03# ln -s /dev/ad0s6g total bash-2.03# mount total /mnt3 bash-2.03# df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s2a 446503 30922 379861 8% / /dev/ad0s9e 1453615 758910 578416 57% /usr /dev/ad0s9f 968983 357403 534062 40% /usr/local /dev/ad0s9g 242239 9945 212915 4% /var /dev/ad0s9h 2013515 1242447 609987 67% /u01 procfs 4 4 0 100% /proc Heh? What's this? 242239 9945 212915 4% /mnt total 1581144 505684 995140 34% /mnt2 total 1391380 414168 906528 31% /mnt3 bash-2.03# Hee, hee. Yes, this is probably no big deal (and not put forth as any strong argument for not commiting this) but who knows what some cronjob scripts might expect. Hmmm, let me give constructive criticism a shot and see how far it goes: Perhaps if it were expected that the "df -c" output were completly different? Then "total" would be less likely to be counted as some other filesystem by mistake? Perhaps something along the lines: bash-2.0.3# df -c /usr /usr/local Totals for: /usr /usr/local 1K-Blocks: 2422598 Used: 1116313 Avail: 1306285 Capacity: 46% Dunno how that would go over with the purists, though... after all 'df' is in one of the holiest of directories... /bin. -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 16:38:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id 66DEA37B7EB for ; Thu, 6 Jul 2000 16:38:17 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.10.1/8.10.1) with ESMTP id e66NcGK70125; Thu, 6 Jul 2000 16:38:16 -0700 (PDT) Date: Thu, 6 Jul 2000 16:38:16 -0700 (PDT) From: Doug White To: Rahul Dhesi Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <20000706185810.8EECB7D33@yellow.rahul.net> 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 Thu, 6 Jul 2000, Rahul Dhesi wrote: > Linh Pham writes: > > >> Can we have little green "[ OK ]"s as well? :) > >> > >> j/k > > >I hope you are joking... LOL... We don't want Linux emulation to go in > >that direction. > > It's not the green that's important, it's the 'OK'. The way Redhat > Linux boots, you can see at a glance which start-up commands failed and > which ones succeeded. The way FreeBSD boots, it's all one big blur. But guess what, the error messages are eaten. I've had times where errors were not redirected into the log so you have phantom errors. Plus I've had erroneous 'OK' conditions on things that were actually broken (eg missing ethernet interfaces). The current way spews the error all over, but it's plainly obvious what's broken and why. Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 17: 2:52 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 1505237BB56 for ; Thu, 6 Jul 2000 17:02:41 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id RAA14545; Thu, 6 Jul 2000 17:01:19 -0700 (PDT) From: Archie Cobbs Message-Id: <200007070001.RAA14545@bubba.whistle.com> Subject: Re: PPPoE not working In-Reply-To: <3964A7A8.41C67EA6@elischer.org> from Julian Elischer at "Jul 6, 2000 08:37:12 am" To: julian@elischer.org (Julian Elischer) Date: Thu, 6 Jul 2000 17:01:19 -0700 (PDT) Cc: dberlin@cygnus.com (Daniel Berlin), brian@Awfulhak.org (Brian Somers), archie@whistle.com (Archie Cobbs), dan@cgsoftware.com (Daniel Berlin), freebsd-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 Julian Elischer writes: > > > The code's in ppp/ether.c. > > > > > > I'll see if I can get time to figure out what's wrong, but I can't > > > promise anything this week. I'm too busy (we're having a FreeBSD > > > mini-conference here in the UK at which I'm speaking...). > > > > > I already solved this one, the problem is that the source address is being overwritten with 0's. > > As a temporary hack, if you go into ng_pppoe.c, and replace the 0's with your ethernet address, you'll be golden. > > Actually Archie left out code to add IN the source MAC address. > so it wasn;t being overwritten, it was never being set.... > > I just committed a fix. > let me know the result Julian, Thanks for the fix. However, this seems like the wrong fix to me. I think the right fix would be for ppp(8) to set the source address, rather than always forcing it in ng_ether.c... that way the "lower" hook really is WYSIWYG and applications where other source addresses may want to be used are possible. I thought the semantics of writing to "lower" or "orphans" were to be that the packet gets delivered out the link exactly "as-is", unchanged. Having the correct source address should be optional. Perhaps there could be a control message to set an "add source address" bit. While we're at it, we could also use a control message to get the unique Ethernet address, turn promiscuous mode on/off, and add multicast addresses. What do you guys think? -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 Thu Jul 6 17:10:31 2000 Delivered-To: freebsd-current@freebsd.org Received: from guru.mired.org (zoom1-182.telepath.com [216.14.1.182]) by hub.freebsd.org (Postfix) with SMTP id 9B5AD37BB13 for ; Thu, 6 Jul 2000 17:10:21 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 37235 invoked by uid 100); 7 Jul 2000 00:09:39 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14693.8131.369629.705232@guru.mired.org> Date: Thu, 6 Jul 2000 19:09:39 -0500 (CDT) To: Jonathan Smith Cc: Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: References: <20000706102309.D20588@dan.emsphone.com> X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jonathan Smith writes: > I, for one, like the functionality, and thought it kinda already worked > that way (or maybe I _made_ it work that way on my machines, cn't > remember). I would like solid facts, rather than a religious/exagerated > discussion. I agree. I first ran into this on solaris. I *like* being able to shut down subsystems in a consistent manner. This makes every bit as much sense as having "make deinstall" work in the ports tree. ; Thu, 6 Jul 2000 17:45:50 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 9628850 invoked from network); 7 Jul 2000 00:45:44 -0000 Received: from r224m65.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.224.65]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 7 Jul 2000 00:45:44 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id CAA24303; Fri, 7 Jul 2000 02:45:43 +0200 (CEST) (envelope-from root) Posted-Date: Fri, 7 Jul 2000 02:45:43 +0200 (CEST) To: Jonathan Smith Cc: Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now References: Reply-To: clefevre@citeweb.net X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C From: Cyrille Lefevre Date: 07 Jul 2000 02:45:42 +0200 In-Reply-To: Jonathan Smith's message of "Thu, 6 Jul 2000 12:14:54 -0500 (EST)" Message-ID: Lines: 19 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Canyonlands" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jonathan Smith writes: > Quickie question: [snip] > To my (limited) understanding of this subject, it's not going to make hour > long boot-ups. It may increase shutdown time to do things, but, sometimes > you need to properly shut things down. If that were not the case, one > could flip the power switch instead of typing shutdown.............. what about reimplementing a fast{boot|halt} which don't runs thoses scripts a shutdown and don't runs fsck at bootup ? Cyrille. -- home:mailto:clefevre@no-spam.citeweb.net Supprimer "no-spam." pour me repondre. work:mailto:Cyrille.Lefevre@no-spam.edf.fr Remove "no-spam." to answer me back. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 17:53:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id EA87837BD24; Thu, 6 Jul 2000 17:53:05 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id RAA29382; Thu, 6 Jul 2000 17:52:54 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from FreeBSD.org (jhb@localhost [127.0.0.1]) by foo.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id RAA10197; Thu, 6 Jul 2000 17:52:28 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-ID: <396529CC.6988EBE9@FreeBSD.org> Date: Thu, 06 Jul 2000 17:52:28 -0700 From: John Baldwin Organization: BSD, Inc. X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Charles Anderson Cc: FreeBSD Current , n_hibma@FreeBSD.org Subject: Re: _DIAGASSERT in libusb & libutil References: <20000706181523.B38809@midgard.dhs.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Charles Anderson wrote: > > # grep -r DIAGASSERT . (from /usr/src) > ./lib/libutil/fparseln.c: _DIAGASSERT(sp != NULL); > ./lib/libutil/fparseln.c: _DIAGASSERT(p != NULL); > ./lib/libutil/fparseln.c: _DIAGASSERT(fp != NULL); > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > ./lib/libusb/descr.c: _DIAGASSERT(fd != -1); > ./lib/libusb/parse.c: _DIAGASSERT(c != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(d != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(r != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(desc != NULL); > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > ./make.out.070600.1528:/usr/obj/usr/src/i386/usr/lib/libusb.so: undefined reference to `_DIAGASSERT' > > Where does _DIAGASSERT come from? I updated right before I built which was > 3:30 edt It's a macro that NetBSD uses just to be different from the rest of the known world which uses the assert() macro from /usr/include/assert.h. In libutil/fparseln.c, all the _DIAGASSERT() macro calls are #if 0/#endif'd out. A similar patch should fix libusb. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 18: 5:58 2000 Delivered-To: freebsd-current@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 4279937B6F9; Thu, 6 Jul 2000 18:05:52 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id SAA03414; Thu, 6 Jul 2000 18:05:50 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007070105.SAA03414@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Kris Kennaway Cc: current@FreeBSD.ORG Subject: Re: HEADS UP: cvs commit: src/lib/libftpio Makefile (fwd) In-Reply-To: Message from Kris Kennaway of "Thu, 06 Jul 2000 13:54:30 PDT." Date: Thu, 06 Jul 2000 18:05:50 -0700 From: Peter Wemm Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Kennaway wrote: > If anyone has done a make world within the past few days you should remove > your libftpio.6 since the version bump was made in error. It's now back to > libftpio.5. It actually does not matter. Which major version new programs are linked against is controlled by which file the symlinks point to. peter@t8000[6:01pm]/usr/lib-113> ls -l libftpio.so* lrwxr-xr-x 1 root wheel 13 Jun 28 12:49 libftpio.so@ -> libftpio.so.5 -r--r--r-- 1 root wheel 14680 Jun 10 20:14 libftpio.so.5 -r--r--r-- 1 root wheel 17244 Jun 5 19:43 libftpio.so.6 -lftpio will follow the symlink, and read the headers in libftpio.so.5: 8000# objdump --all-headers /usr/lib/libftpio.so | grep SONAME SONAME libftpio.so.5 As a result, all programs linked with '-lftpio' will end up linking against libftpio.so.5 explicitly. This is *not* the same as the a.out behavior which searched directories to find the largest number. ELF uses the symlinks and no searching, which is why ld and ld-elf.so is faster when locating directories and does not need ldconfig or the ld.so.cache. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 18:33:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id 0446437BBBA for ; Thu, 6 Jul 2000 18:33:07 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from slave (doug@slave [10.0.0.1]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id SAA31923; Thu, 6 Jul 2000 18:32:49 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 6 Jul 2000 18:32:49 -0700 (PDT) From: Doug Barton X-Sender: doug@dt052n3e.san.rr.com To: Thomas Stromberg Cc: freebsd-current@freebsd.org Subject: Re: SB Live (or RAM parity?) crash on today's -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 On Thu, 6 Jul 2000, Thomas Stromberg wrote: > 'panic: RAM parity error, likely hardware failure.' > > This one had me confused at first, because it blamed a RAM parity > error. As this is a brand new machine (Gateway GP-800), so I first thought > I got a bad batch. Then I realized this only happens with apps that try to > do sound stuff. This is a known problem with all PCI sound cards. It happens most often with ECC ram, but it also happens without. What kind of NIC do you have, and specifically, is it a PCI card or ISA? We're trying to track that bit down too. Doug -- "Live free or die" - State motto of my ancestral homeland, New Hampshire Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 18:56:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id 2EC3837BCEA; Thu, 6 Jul 2000 18:56:26 -0700 (PDT) (envelope-from Cy.Schubert@uumail.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id SAA32179; Thu, 6 Jul 2000 18:54:27 -0700 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda32177; Thu Jul 6 18:54:13 2000 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.9.3/8.9.1) id SAA45352; Thu, 6 Jul 2000 18:54:12 -0700 (PDT) Received: from cwsys9.cwsent.com(10.2.2.1), claiming to be "cwsys.cwsent.com" via SMTP by passer9.cwsent.com, id smtpdJ45350; Thu Jul 6 18:54:02 2000 Received: (from uucp@localhost) by cwsys.cwsent.com (8.10.2/8.9.1) id e671s0I72958; Thu, 6 Jul 2000 18:54:00 -0700 (PDT) Message-Id: <200007070154.e671s0I72958@cwsys.cwsent.com> Received: from localhost.cwsent.com(127.0.0.1), claiming to be "cwsys" via SMTP by localhost.cwsent.com, id smtpdg72954; Thu Jul 6 18:53:49 2000 X-Mailer: exmh version 2.1.1 10/15/1999 Reply-To: Cy Schubert - ITSD Open Systems Group From: Cy Schubert - ITSD Open Systems Group X-OS: FreeBSD 4.0-STABLE X-Sender: cy To: Walter Campbell Cc: Linh Pham , David Scheidt , Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-reply-to: Your message of "Thu, 06 Jul 2000 12:34:56 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 06 Jul 2000 18:53:49 -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Walter Campbe ll writes: > > > HP/UX does something like this. I find it rather useful, but that may be > > > because I have boxes that take almost an hour to boot.... > > > > An hour to boot? Boy... the only time I ever saw a machine take an hour to > > boot (which does not include the POST/memory check/BIOS screen) was a > > 486SX/33 with 24MB of RAM running Windows NT 3.51 SP3. Of course it was > > running off of a 5 1/4" 400MB SCSI hard drive too! > > Try a Solaris 2.6 machine fsck'ing an array of 14 9.1 giggers An Alpha my team manages with 1 TB of images on UFS takes 4 hours to fsck. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Team Leader, Sun/DEC Team Internet: Cy.Schubert@osg.gov.bc.ca Open Systems Group, ITSD, ISTA Province of BC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 19:13: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from web3105.mail.yahoo.com (web3105.mail.yahoo.com [204.71.202.190]) by hub.freebsd.org (Postfix) with SMTP id E6F2537BD7E for ; Thu, 6 Jul 2000 19:12:52 -0700 (PDT) (envelope-from rsstan@yahoo.com) Message-ID: <20000707021251.8333.qmail@web3105.mail.yahoo.com> Received: from [150.159.224.8] by web3105.mail.yahoo.com; Thu, 06 Jul 2000 19:12:51 PDT Date: Thu, 6 Jul 2000 19:12:51 -0700 (PDT) From: Richard Stanaford Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now To: freebsd-stable@FreeBSD.ORG Cc: 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 --- Cy Schubert - ITSD Open Systems Group wrote: > > An Alpha my team manages with 1 TB of images on UFS takes 4 hours to > fsck. > Now that's a bit of thrashing, eh? Jordan, or anyone else who might know.. How long does it take "our" beast (ftp.freebsd.org) to bring up 400+ GB of RAID? -Richard __________________________________________________ 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 Jul 6 19:30:46 2000 Delivered-To: freebsd-current@freebsd.org Received: from barracuda.aquarium.rtci.com (barracuda.aquarium.rtci.com [208.11.247.5]) by hub.freebsd.org (Postfix) with ESMTP id 4776A37BAE8 for ; Thu, 6 Jul 2000 19:30:41 -0700 (PDT) (envelope-from tstromberg@rtci.com) Received: from barracuda (barracuda [208.11.247.5]) by barracuda.aquarium.rtci.com (8.9.3+Sun/8.9.3) with ESMTP id WAA17098; Thu, 6 Jul 2000 22:30:33 -0400 (EDT) Date: Thu, 6 Jul 2000 22:30:18 -0400 (EDT) From: Thomas Stromberg X-Sender: tstromberg@barracuda.aquarium.rtci.com To: Doug Barton Cc: freebsd-current@freebsd.org Subject: Re: SB Live (or RAM parity?) crash on today's -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 Its in the dmesg from my post, but: CPU: Pentium III/Pentium III Xeon/Celeron (796.54-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134217728 (131072K bytes) avail memory = 127098880 (124120K bytes) .. pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 .. pci0: at 7.2 irq 9 pci0: at 7.3 pcm0: port 0x10a0-0x10bf irq 11 at device 14.0 on pci0 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0x1000-0x107f mem 0xf4000000-0xf400007f irq 10 at device 15.0 on pci0 Good luck.. happy to test patches. ------------------------------------------------------------------------ thomas r. stromberg tstromberg@rtci.com senior systems administrator http://www.afterthought.org/ research triangle commerce, inc. 1.919.657.1317 bless(\$Perl++); # the power to hack. http://www.perl.com/ #include /* the power to serve. http://www.freebsd.org/ */ ------------------------------------------------------------------------ On Thu, 6 Jul 2000, Doug Barton wrote: > On Thu, 6 Jul 2000, Thomas Stromberg wrote: > > > 'panic: RAM parity error, likely hardware failure.' > > > > This one had me confused at first, because it blamed a RAM parity > > error. As this is a brand new machine (Gateway GP-800), so I first thought > > I got a bad batch. Then I realized this only happens with apps that try to > > do sound stuff. > > This is a known problem with all PCI sound cards. It happens most > often with ECC ram, but it also happens without. What kind of NIC do you > have, and specifically, is it a PCI card or ISA? We're trying to track > that bit down too. > > Doug > -- > "Live free or die" > - State motto of my ancestral homeland, New Hampshire > > Do YOU Yahoo!? > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 19:52:31 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 69AEA37BC37; Thu, 6 Jul 2000 19:52:23 -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 WAA01192; Thu, 6 Jul 2000 22:51:06 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Thu, 6 Jul 2000 22:51:06 -0400 (EDT) From: "Brandon D. Valentine" To: Cy Schubert - ITSD Open Systems Group Cc: Walter Campbell , Linh Pham , David Scheidt , Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <200007070154.e671s0I72958@cwsys.cwsent.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 Thu, 6 Jul 2000, Cy Schubert - ITSD Open Systems Group wrote: >An Alpha my team manages with 1 TB of images on UFS takes 4 hours to >fsck. Sounds like a good enough reason to me to port the newer NetBSD LFS code to FreeBSD. Brandon D. Valentine -- bandix at looksharp.net | bandix at structbio.vanderbilt.edu "Truth suffers from too much analysis." -- Ancient Fremen Saying To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 20:33:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from reyim.ne.mediaone.net (reyim.ne.mediaone.net [24.218.251.241]) by hub.freebsd.org (Postfix) with ESMTP id D90C737B563 for ; Thu, 6 Jul 2000 20:33:44 -0700 (PDT) (envelope-from bloom@reyim.ne.mediaone.net) Received: (from bloom@localhost) by reyim.ne.mediaone.net (8.9.3/8.9.3) id XAA12677 for current@freebsd.org; Thu, 6 Jul 2000 23:33:42 -0400 (EDT) (envelope-from bloom) Date: Thu, 6 Jul 2000 23:33:42 -0400 (EDT) From: Jim Bloom Message-Id: <200007070333.XAA12677@reyim.ne.mediaone.net> To: current@freebsd.org Subject: Problems building kernel with IPSEC_DEBUG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG While compiling a kernel with recent code (cvsup 22:30 -0400 July 6), I had some undefined symbols. I traced the symbols to netkey/key_debug.c and found that it did not test IPSEC_DEBUG correctly. I have attached a patch below. Jim Bloom bloom@acm.org Index: netkey/key_debug.c =================================================================== RCS file: /users/ncvs/src/sys/netkey/key_debug.c,v retrieving revision 1.11 diff -u -r1.11 key_debug.c --- netkey/key_debug.c 2000/07/04 16:35:14 1.11 +++ netkey/key_debug.c 2000/07/07 03:26:30 @@ -33,6 +33,7 @@ #ifdef _KERNEL #include "opt_inet.h" #include "opt_inet6.h" +#include "opt_ipsec.h" #endif #include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 21: 4: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 BE9FF37BC61; Thu, 6 Jul 2000 21:04: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 VAA58186; Thu, 6 Jul 2000 21:04:42 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 6 Jul 2000 21:04:42 -0700 (PDT) From: Kris Kennaway To: Jim Bloom Cc: current@freebsd.org Subject: Re: Problems building kernel with IPSEC_DEBUG In-Reply-To: <200007070333.XAA12677@reyim.ne.mediaone.net> 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 Thu, 6 Jul 2000, Jim Bloom wrote: > While compiling a kernel with recent code (cvsup 22:30 -0400 July 6), I > had some undefined symbols. I traced the symbols to netkey/key_debug.c > and found that it did not test IPSEC_DEBUG correctly. I have attached > a patch below. Whee! Thanks. I'll commit this later on tonight. 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 Thu Jul 6 22:12: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from lips.borg.umn.edu (lips.borg.umn.edu [160.94.232.50]) by hub.freebsd.org (Postfix) with ESMTP id EABEA37BCEB for ; Thu, 6 Jul 2000 22:11:56 -0700 (PDT) (envelope-from cattelan@thebarn.com) Received: from thebarn.com (nic-25-c125-118.mn.mediaone.net [24.25.125.118]) by lips.borg.umn.edu (8.10.1/8.10.1) with ESMTP id e675Bqb30406; Fri, 7 Jul 2000 00:11:52 -0500 (CDT) Message-ID: <39656697.B358306A@thebarn.com> Date: Fri, 07 Jul 2000 00:11:52 -0500 From: Russell Cattelan Reply-To: cattelan@thebarn.com X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Ollivier Robert Cc: freebsd-current@FreeBSD.ORG, culverk@wam.umd.edu Subject: Re: could someone with committer access commit this? References: <20000702161721.A97851@keltia.freenix.fr> Content-Type: multipart/mixed; boundary="------------CE9C01862C6B0E6A6E54B1FB" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------CE9C01862C6B0E6A6E54B1FB Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Ollivier Robert wrote: > According to Kenneth Wayne Culver: > > This is the patch to make my soundcard, a Creative Ensoniq AudioPCI (an > > es1371 chip, device id 0x58801274 rev 0x02). Can someone commit it please? > > Done. There is a problem with that patch. I'm not sure if there are older 1371 rev 2 boards out there, but they would be incorrectly inited. Test this patch first, but it should be more definitive. --------------CE9C01862C6B0E6A6E54B1FB Content-Type: text/plain; charset=us-ascii; name="patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch" Index: es137x.c =================================================================== RCS file: /usr/FreeBSD-CVS/src/sys/dev/sound/pci/es137x.c,v retrieving revision 1.21 diff -u -r1.21 es137x.c --- es137x.c 2000/07/03 20:52:26 1.21 +++ es137x.c 2000/07/07 05:05:48 @@ -107,7 +107,7 @@ static void es1371_src_write(struct es_info *, u_short, unsigned short); static u_int es1371_adc_rate(struct es_info *, u_int, int); static u_int es1371_dac_rate(struct es_info *, u_int, int); -static int es1371_init(struct es_info *es, int); +static int es1371_init(struct es_info *es, device_t); static int es1370_init(struct es_info *); static int es1370_wrcodec(struct es_info *, u_char, u_char); @@ -484,9 +484,11 @@ /* ES1371 specific */ int -es1371_init(struct es_info *es, int rev) +es1371_init(struct es_info *es, device_t dev) { int idx; + int devid = pci_get_devid(dev); + int rev = pci_get_revid(dev); if (debug > 0) printf("es_init\n"); @@ -494,7 +496,7 @@ es->ctrl = 0; es->sctrl = 0; /* initialize the chips */ - if (rev == 7 || rev >= 9 || rev == 2) { + if (rev == 7 || rev >= 9 || (devid == ES1371_PCI_ID3 && rev == 2)) { #define ES1371_BINTSUMM_OFF 0x07 bus_space_write_4(es->st, es->sh, ES1371_BINTSUMM_OFF, 0x20); if (debug > 0) printf("es_init rev == 7 || rev >= 9\n"); @@ -793,7 +795,7 @@ if (pci_get_devid(dev) == ES1371_PCI_ID || pci_get_devid(dev) == ES1371_PCI_ID2 || pci_get_devid(dev) == ES1371_PCI_ID3) { - if(-1 == es1371_init(es, pci_get_revid(dev))) { + if(-1 == es1371_init(es, dev)) { device_printf(dev, "unable to initialize the card\n"); goto bad; } --------------CE9C01862C6B0E6A6E54B1FB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 22:56:48 2000 Delivered-To: freebsd-current@freebsd.org Received: from kant.nihilist.org (kant.nihilist.org [64.6.194.8]) by hub.freebsd.org (Postfix) with ESMTP id AC93937BCB4; Thu, 6 Jul 2000 22:56:40 -0700 (PDT) (envelope-from tcole@nietzsche.nihilist.org) Received: from nietzsche.nihilist.org (nietzsche.nihilist.org [192.168.1.5]) by kant.nihilist.org (8.10.1/8.10.1) with ESMTP id e675uex31478; Thu, 6 Jul 2000 22:56:40 -0700 (PDT) Received: (from tcole@localhost) by nietzsche.nihilist.org (8.9.3/8.9.3) id WAA04075; Thu, 6 Jul 2000 22:56:33 -0700 (PDT) (envelope-from tcole) Date: Thu, 6 Jul 2000 22:56:33 -0700 From: Travis Cole To: Cy Schubert - ITSD Open Systems Group Cc: Walter Campbell , Linh Pham , David Scheidt , Dan Nelson , Thomas Gellekum , freebsd-current@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Message-ID: <20000706225633.A3939@nihilist.org> References: <200007070154.e671s0I72958@cwsys.cwsent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007070154.e671s0I72958@cwsys.cwsent.com>; from Cy.Schubert@uumail.gov.bc.ca on Thu, Jul 06, 2000 at 06:53:49PM -0700 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 06:53:49PM -0700, Cy Schubert - ITSD Open Systems Group wrote: > In message , > Walter Campbe > ll writes: > > > > HP/UX does something like this. I find it rather useful, but that may be > > > > because I have boxes that take almost an hour to boot.... > > > > > > An hour to boot? Boy... the only time I ever saw a machine take an hour to > > > boot (which does not include the POST/memory check/BIOS screen) was a > > > 486SX/33 with 24MB of RAM running Windows NT 3.51 SP3. Of course it was > > > running off of a 5 1/4" 400MB SCSI hard drive too! > > > > Try a Solaris 2.6 machine fsck'ing an array of 14 9.1 giggers > > An Alpha my team manages with 1 TB of images on UFS takes 4 hours to > fsck. At work I've watched some of our BSD/OS 4.0.1 servers go down hard while qmail had its queue totaly backed up. And when the ufs (running softupdates) 500MB /var got to fsck'ing it could take over 8 hours. (and yes, we know something was not right there, the problem has since been solved for the most part) Not fun. -- --Travis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Jul 6 22:58:33 2000 Delivered-To: freebsd-current@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 2E63937BCED for ; Thu, 6 Jul 2000 22:58:20 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.8.7/8.8.7) with ESMTP id PAA28506; Fri, 7 Jul 2000 15:57:58 +1000 Date: Fri, 7 Jul 2000 15:57:53 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Garrett Wollman Cc: Stijn Hoop , current@FreeBSD.ORG Subject: Re: Large disks (was Re: bin/19635: add -c for grand total to df(1)) In-Reply-To: <200007061532.LAA33286@khavrinen.lcs.mit.edu> 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 Thu, 6 Jul 2000, Garrett Wollman wrote: > When creating a large filesystem, it pays to increase the `-c' > parameter as high as newfs will permit. I always do this manually. It should probably be the default for sufficiently large filesystems. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 0:26: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from sohara.dyndns.org (pooh.elsevier.nl [145.36.13.27]) by hub.freebsd.org (Postfix) with ESMTP id 7754337BD7A for ; Fri, 7 Jul 2000 00:25:55 -0700 (PDT) (envelope-from steve@sohara.dyndns.org) Received: (from steve@localhost) by sohara.dyndns.org (8.9.3/8.9.3) id IAA01248; Fri, 7 Jul 2000 08:33:22 +0100 (IST) (envelope-from steve) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 07 Jul 2000 08:33:21 +0100 (IST) From: "Steve O'Hara-Smith" To: Doug Barton Subject: Re: SB Live (or RAM parity?) crash on today's -CURRENT Cc: freebsd-current@freebsd.org, Thomas Stromberg Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 07-Jul-00 Doug Barton wrote: > This is a known problem with all PCI sound cards. It happens most > often with ECC ram, but it also happens without. What kind of NIC do you > have, and specifically, is it a PCI card or ISA? We're trying to track > that bit down too. Could it be related to the way my SB128 causes glitches on my SiS530 AGP video when playing PCM (I've never worried much about it, the way the video shares system memory seems a little iffy to me) ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 1:39: 1 2000 Delivered-To: freebsd-current@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id 52B5937B945; Fri, 7 Jul 2000 01:38:52 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 13ATe7-0005UC-0V; Fri, 7 Jul 2000 09:38:03 +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 JAA85381; Fri, 7 Jul 2000 09:38:01 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id JAA33815; Fri, 7 Jul 2000 09:16:33 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Fri, 7 Jul 2000 09:16:33 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: John Baldwin Cc: Charles Anderson , FreeBSD Current , committers@FreeBSD.org Subject: Re: _DIAGASSERT in libusb & libutil In-Reply-To: <396529CC.6988EBE9@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 Fixed. Sorry. On Thu, 6 Jul 2000, John Baldwin wrote: > Charles Anderson wrote: > > > > # grep -r DIAGASSERT . (from /usr/src) > > ./lib/libutil/fparseln.c: _DIAGASSERT(sp != NULL); > > ./lib/libutil/fparseln.c: _DIAGASSERT(p != NULL); > > ./lib/libutil/fparseln.c: _DIAGASSERT(fp != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/descr.c: _DIAGASSERT(fd != -1); > > ./lib/libusb/parse.c: _DIAGASSERT(c != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(d != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(r != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(desc != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > > ./make.out.070600.1528:/usr/obj/usr/src/i386/usr/lib/libusb.so: undefined reference to `_DIAGASSERT' > > > > Where does _DIAGASSERT come from? I updated right before I built which was > > 3:30 edt > > It's a macro that NetBSD uses just to be different from the rest of the > known > world which uses the assert() macro from /usr/include/assert.h. In > libutil/fparseln.c, all the _DIAGASSERT() macro calls are #if 0/#endif'd > out. > A similar patch should fix libusb. > > -- > > John Baldwin -- http://www.FreeBSD.org/~jhb/ > PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > -- 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 Fri Jul 7 1:45:17 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 4D40737B6F7; Fri, 7 Jul 2000 01:45:14 -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 BAA31992; Fri, 7 Jul 2000 01:44:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Fri, 7 Jul 2000 01:44:08 -0700 (PDT) From: Kris Kennaway To: Jim Bloom Cc: current@freebsd.org Subject: Re: Problems building kernel with IPSEC_DEBUG In-Reply-To: <200007070333.XAA12677@reyim.ne.mediaone.net> 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 Thu, 6 Jul 2000, Jim Bloom wrote: > While compiling a kernel with recent code (cvsup 22:30 -0400 July 6), I > had some undefined symbols. I traced the symbols to netkey/key_debug.c > and found that it did not test IPSEC_DEBUG correctly. I have attached > a patch below. Fixed! 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 Fri Jul 7 3:13:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id 978FA37BB25; Fri, 7 Jul 2000 03:13:41 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id TAA09848; Fri, 7 Jul 2000 19:13:38 +0900 (JST) To: John Baldwin Cc: Charles Anderson , FreeBSD Current , n_hibma@FreeBSD.org In-reply-to: jhb's message of Thu, 06 Jul 2000 17:52:28 MST. <396529CC.6988EBE9@FreeBSD.org> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: _DIAGASSERT in libusb & libutil From: itojun@iijlab.net Date: Fri, 07 Jul 2000 19:13:38 +0900 Message-ID: <9846.962964818@coconut.itojun.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >It's a macro that NetBSD uses just to be different from the rest of the >known >world which uses the assert() macro from /usr/include/assert.h. _DIAGASSERT() has its history and reasons (there was some proposal on it and _DIAGASSERT() implements that). it is not just to be different. I admit it is now equivalent to assert(). netbsd may need to clean them up... itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 3:33:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 7493237BF7C for ; Fri, 7 Jul 2000 03:33:08 -0700 (PDT) (envelope-from leifn@neland.dk) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id MAA45515 for freebsd-current@freebsd.org; Fri, 7 Jul 2000 12:33:05 +0200 (CEST) (envelope-from leifn@neland.dk) Received: from localhost (localhost [127.0.0.1]) by arnold.neland.dk (8.9.3/8.9.3) with ESMTP id MAA86752 for ; Fri, 7 Jul 2000 12:31:01 +0200 (CEST) (envelope-from leifn@neland.dk) Date: Fri, 7 Jul 2000 12:31:01 +0200 (CEST) From: Leif Neland To: freebsd-current@freebsd.org Subject: confusion regarding *.dk.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 Who is controlling the DNS for dk.freebsd.org? Appearently the dns is on ra.dkuug.dk and ns1.cybercity.dk, but neither have the zone. Phoneing dkuug; they're not sure they should host that domain. Phoneing cybercity: You don't own that domain? I can't help you... I wouldn't mind hosting the DNS if needed. Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 3:36: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 B8CAD37BB15 for ; Fri, 7 Jul 2000 03:36:32 -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 MAA04309; Fri, 7 Jul 2000 12:36:29 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Leif Neland Cc: freebsd-current@FreeBSD.ORG Subject: Re: confusion regarding *.dk.freebsd.org In-reply-to: Your message of "Fri, 07 Jul 2000 12:31:01 +0200." Date: Fri, 07 Jul 2000 12:36:28 +0200 Message-ID: <4307.962966188@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am, I'm looking at the problem right now. Poul-Henning In message , Leif N eland writes: >Who is controlling the DNS for dk.freebsd.org? > >Appearently the dns is on ra.dkuug.dk and ns1.cybercity.dk, but neither >have the zone. > >Phoneing dkuug; they're not sure they should host that domain. >Phoneing cybercity: You don't own that domain? I can't help you... > >I wouldn't mind hosting the DNS if needed. > >Leif > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > -- 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 Fri Jul 7 5:47:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from main.avias.com (avias-gw.corbina.net [195.14.40.4]) by hub.freebsd.org (Postfix) with ESMTP id 770CD37B67C for ; Fri, 7 Jul 2000 05:47:41 -0700 (PDT) (envelope-from camel@avias.com) Received: from camel.avias.com (camel.avias.com [195.14.38.87]) by main.avias.com (8.9.3/8.9.3) with ESMTP id QAA17406 for ; Fri, 7 Jul 2000 16:47:38 +0400 (MSD) (envelope-from camel@avias.com) Date: Fri, 7 Jul 2000 16:47:39 +0400 (MSD) From: Ilya Naumov To: freebsd-current@FreeBSD.ORG Subject: vmware2 & new kernel 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 experiencing a problem with vmware2 build 570 (installed from ports) and latest kernels. vmware runs perfectly with kernel built on July, 3, but crashes my box with later kernel versions (July, 6 and 7). any ideas? sincerely, ilya naumov (at work) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 5:49:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from inu.net (downtown.inu.net [208.129.164.2]) by hub.freebsd.org (Postfix) with ESMTP id 1052A37BFEF; Fri, 7 Jul 2000 05:49:35 -0700 (PDT) (envelope-from robert@superjake.net) Received: from technogeek [208.129.166.68] by inu.net (SMTPD32-5.05) id A1DB263023C; Fri, 07 Jul 2000 07:49:31 -0500 From: "Robert Small" To: "freebsd-questions@FreeBSD. ORG" , Subject: SCSI Question Date: Fri, 7 Jul 2000 07:49:33 -0500 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.6600 Importance: Normal Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed an Adaptec AHA-1542 controller in my system tonight, and hooked up a Sony SDT-5000 tape drive. When I try to boot into FreeBSD (5.0-20000511-CURRENT FreeBSD 5.0-20000511-CURRENT #4: Thu Jul 6 20:31:41 CDT 2000) I receive: Waiting 15 seconds for SCSI devices to settle down (approximately 30-45 seconds later) (Probe0:aha0:0:0:0) CCB 0xc782c508 (Probe0:aha0:0:0:0) CCB 0xc782c508 aha0: aha_cmd: Timeout waiting for adapter idle ahainitmboxes: Initialization command failed aha0 no longer in timeout (Probe6:aha0:0:6:0) CCB 0xc782c508 (Probe6:aha0:0:6:0) CCB 0xc782c508 aha0: aha_cmd: Timeout waiting for adapter idle ahainitmboxes: Initialization command failed aha0 no longer in timeout And it keeps repeating. I had to remove the card to boot into FreeBSD. The card recognizes the tape drive. Any ideas? Robert -------------------------------------------------------------------- Does killing time damage eternity? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 6:49:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from dr-evil.shagadelic.org (yeah-baby.shagadelic.org [208.176.2.162]) by hub.freebsd.org (Postfix) with ESMTP id E202437B9A4 for ; Fri, 7 Jul 2000 06:49:24 -0700 (PDT) (envelope-from thorpej@zembu.com) Received: by dr-evil.shagadelic.org (Postfix, from userid 7518) id 06500D203; Fri, 7 Jul 2000 06:46:41 -0700 (PDT) Date: Fri, 7 Jul 2000 06:46:40 -0700 From: Jason R Thorpe To: itojun@iijlab.net Cc: freebsd-current@FreeBSD.org Subject: Re: _DIAGASSERT() Message-ID: <20000707064640.A391@dr-evil.shagadelic.org> Reply-To: thorpej@zembu.com References: <9787.962964470@coconut.itojun.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <9787.962964470@coconut.itojun.org>; from itojun@iijlab.net on Fri, Jul 07, 2000 at 07:07:50PM +0900 Organization: Zembu Labs, Inc. Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 07, 2000 at 07:07:50PM +0900, itojun@iijlab.net wrote: > do we still need _DIAGASSERT()? i'm not sure if they are maintained > any longer... jhb does not seem to have checked the history of it BTW. Yes, if Mr. Baldwin had done his homework, rather than make an insulting and uninformed comment on a public FreeBSD mailing list, he would have discovered that _DIAGASSERT() performs a very different role than the standard assert(). That's why it's in the implementation namespace (and used only in system libraries). They are designed to catch bugs in non-library code when the library is specifically compiled to do such checks. We went through all this before, and it is *inappropriate* for those checks to be ASSERT/assert for shipped libraries. It's *intended* that they expand only when the library is compiled with -D_DIAGNOSTIC. The goal is to improve the quality if NetBSD's userland code. FreeBSD, if they were smart, would adopt the same mechanism. But as can be shown by the error message, FreeBSD isn't even doing the basic work like building with strict prototype checking (which would have caught the missing _DIAGASSERT() in FreeBSD at compile time, rather than at run-time). > > itojun > > > ------- Forwarded Message > > Return-Path: > Received: from hub.freebsd.org (hub.FreeBSD.ORG [204.216.27.18]) > by coconut.itojun.org (8.9.3+3.2W/3.7W) with ESMTP id JAA02871 > for ; Fri, 7 Jul 2000 09:55:50 +0900 (JST) > Received: by hub.freebsd.org (Postfix, from userid 538) > id 12D6E37BC6C; Thu, 6 Jul 2000 17:53:25 -0700 (PDT) > Received: from localhost (localhost [127.0.0.1]) > by hub.freebsd.org (Postfix) with SMTP > id ED2182E816E; Thu, 6 Jul 2000 17:53:24 -0700 (PDT) > (envelope-from owner-freebsd-current) > Received: by hub.freebsd.org (bulk_mailer v1.12); Thu, 6 Jul 2000 17:53:24 -0700 > Delivered-To: freebsd-current@freebsd.org > Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) > by hub.freebsd.org (Postfix) with ESMTP > id EA87837BD24; Thu, 6 Jul 2000 17:53:05 -0700 (PDT) > (envelope-from jhb@FreeBSD.org) > Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) > by pike.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id RAA29382; > Thu, 6 Jul 2000 17:52:54 -0700 (PDT) > (envelope-from jhb@FreeBSD.org) > Received: from FreeBSD.org (jhb@localhost [127.0.0.1]) > by foo.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id RAA10197; > Thu, 6 Jul 2000 17:52:28 -0700 (PDT) > (envelope-from jhb@FreeBSD.org) > Message-ID: <396529CC.6988EBE9@FreeBSD.org> > Date: Thu, 06 Jul 2000 17:52:28 -0700 > From: John Baldwin > Organization: BSD, Inc. > X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.0-STABLE i386) > X-Accept-Language: en > MIME-Version: 1.0 > To: Charles Anderson > Cc: FreeBSD Current , n_hibma@FreeBSD.org > Subject: Re: _DIAGASSERT in libusb & libutil > References: <20000706181523.B38809@midgard.dhs.org> > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > Sender: owner-freebsd-current@FreeBSD.ORG > X-Loop: FreeBSD.ORG > Precedence: bulk > X-Filter: mailagent [version 3.0 PL68] for itojun@itojun.org > > Charles Anderson wrote: > > > > # grep -r DIAGASSERT . (from /usr/src) > > ./lib/libutil/fparseln.c: _DIAGASSERT(sp != NULL); > > ./lib/libutil/fparseln.c: _DIAGASSERT(p != NULL); > > ./lib/libutil/fparseln.c: _DIAGASSERT(fp != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(p != NULL); > > ./lib/libusb/data.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/descr.c: _DIAGASSERT(fd != -1); > > ./lib/libusb/parse.c: _DIAGASSERT(c != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(d != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(s != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(r != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(desc != NULL); > > ./lib/libusb/parse.c: _DIAGASSERT(h != NULL); > > ./make.out.070600.1528:/usr/obj/usr/src/i386/usr/lib/libusb.so: undefined reference to `_DIAGASSERT' > > > > Where does _DIAGASSERT come from? I updated right before I built which was > > 3:30 edt > > It's a macro that NetBSD uses just to be different from the rest of the > known > world which uses the assert() macro from /usr/include/assert.h. In > libutil/fparseln.c, all the _DIAGASSERT() macro calls are #if 0/#endif'd > out. > A similar patch should fix libusb. > > - -- > > John Baldwin -- http://www.FreeBSD.org/~jhb/ > PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > > ------- End of Forwarded Message > > -- -- Jason R. Thorpe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 7: 4:43 2000 Delivered-To: freebsd-current@freebsd.org Received: from markl.com (markl.com [209.69.36.90]) by hub.freebsd.org (Postfix) with ESMTP id C8DCD37BD5B; Fri, 7 Jul 2000 07:04:31 -0700 (PDT) (envelope-from squirrel@hammis.com) Received: from localhost (squirrel@localhost) by markl.com (8.9.3/8.9.3) with ESMTP id KAA85138; Fri, 7 Jul 2000 10:04:25 -0400 (EDT) (envelope-from squirrel@hammis.com) Date: Fri, 7 Jul 2000 10:04:25 -0400 (EDT) From: Damon Hammis X-Sender: squirrel@markl.com To: Robert Small Cc: "freebsd-questions@FreeBSD. ORG" , freebsd-current@FreeBSD.ORG Subject: Re: SCSI Question 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 The jumpers are set wrong on the card. I had the exact same problem with an aha-1542 and aha-1540 card recently. The docs on the jumpers that you can get on Adaptec's site are kind of cryptic, but the card will work once you get the jumpers placed correctly. Currently I have mine running at irq 9, drq 5 and my jumpers are setup like this: J5 pin 8 jumpered pin 9 the jumper is on one pin J9 pins 2, 6, and 9 are jumpered. I have that configuration running on two systems now working great. Let me know how it goes for ya. --Damon On Fri, 7 Jul 2000, Robert Small wrote: > I installed an Adaptec AHA-1542 controller in my system tonight, and > hooked up a Sony SDT-5000 tape drive. > > When I try to boot into FreeBSD (5.0-20000511-CURRENT FreeBSD > 5.0-20000511-CURRENT #4: Thu Jul 6 20:31:41 CDT 2000) I receive: > > Waiting 15 seconds for SCSI devices to settle down > (approximately 30-45 seconds later) > (Probe0:aha0:0:0:0) CCB 0xc782c508 > (Probe0:aha0:0:0:0) CCB 0xc782c508 > aha0: aha_cmd: Timeout waiting for adapter idle > ahainitmboxes: Initialization command failed > aha0 no longer in timeout > (Probe6:aha0:0:6:0) CCB 0xc782c508 > (Probe6:aha0:0:6:0) CCB 0xc782c508 > aha0: aha_cmd: Timeout waiting for adapter idle > ahainitmboxes: Initialization command failed > aha0 no longer in timeout > > And it keeps repeating. I had to remove the card to boot into FreeBSD. > The card recognizes the tape drive. > > Any ideas? > > Robert > > > -------------------------------------------------------------------- > Does killing time damage eternity? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 Fri Jul 7 7:53:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 42EB737C42E for ; Fri, 7 Jul 2000 07:53:08 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id KAA37889; Fri, 7 Jul 2000 10:53:04 -0400 (EDT) (envelope-from wollman) Date: Fri, 7 Jul 2000 10:53:04 -0400 (EDT) From: Garrett Wollman Message-Id: <200007071453.KAA37889@khavrinen.lcs.mit.edu> To: "Brandon D. Valentine" Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: References: <200007070154.e671s0I72958@cwsys.cwsent.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > Sounds like a good enough reason to me to port the newer NetBSD LFS code > to FreeBSD. Or, even better, for someone to implement background fsck for soft updates. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 8: 4:19 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns1.hutchtel.net (ns1.hutchtel.net [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id 17CED37C495; Fri, 7 Jul 2000 08:04:02 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from josh (hutch-838.hutchtel.net [206.10.71.166]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id KAA00035; Fri, 7 Jul 2000 10:03:54 -0500 (CDT) Message-ID: <023d01b42778$573b2a20$c4ebfea9@josh> From: "Josh Paetzel" To: "Robert Small" , "freebsd-questions@FreeBSD. ORG" , References: Subject: Re: SCSI Question Date: Fri, 12 Jan 1990 14:12:43 -0600 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.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 ----- Original Message ----- From: "Robert Small" To: "freebsd-questions@FreeBSD. ORG" ; Sent: Friday, July 07, 2000 6:49 AM Subject: SCSI Question > I installed an Adaptec AHA-1542 controller in my system tonight, and > hooked up a Sony SDT-5000 tape drive. > > When I try to boot into FreeBSD (5.0-20000511-CURRENT FreeBSD > 5.0-20000511-CURRENT #4: Thu Jul 6 20:31:41 CDT 2000) I receive: > > Waiting 15 seconds for SCSI devices to settle down > (approximately 30-45 seconds later) > (Probe0:aha0:0:0:0) CCB 0xc782c508 > (Probe0:aha0:0:0:0) CCB 0xc782c508 > aha0: aha_cmd: Timeout waiting for adapter idle > ahainitmboxes: Initialization command failed > aha0 no longer in timeout > (Probe6:aha0:0:6:0) CCB 0xc782c508 > (Probe6:aha0:0:6:0) CCB 0xc782c508 > aha0: aha_cmd: Timeout waiting for adapter idle > ahainitmboxes: Initialization command failed > aha0 no longer in timeout > > And it keeps repeating. I had to remove the card to boot into FreeBSD. > The card recognizes the tape drive. > > Any ideas? > Do you mean that the card recognizes the tape drive under some other OS? I have an adaptec 1542b that worked fine under win98, but wouldn't work worth anything under FreeBSD. I started playing with the jumpers and here there is about 4 places to set the IRQ on the card. If they aren't all set the same it doesn't seem to matter under win98, but Freebsd can't handle the card unless they are all set the same. I still can't get FBSD to boot off this card, but then it is from 1987 or something like that, so I try not to get too worked up about it. Josh > Robert > > > -------------------------------------------------------------------- > Does killing time damage eternity? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 Fri Jul 7 8:23:55 2000 Delivered-To: freebsd-current@freebsd.org Received: from apollo.ocsny.com (apollo.ocsny.com [204.107.76.2]) by hub.freebsd.org (Postfix) with ESMTP id 0DD8537BD79 for ; Fri, 7 Jul 2000 08:23:50 -0700 (PDT) (envelope-from mikel@ocsny.com) Received: from ocsny.com (thoth.upan.org [204.107.76.16]) by apollo.ocsny.com (8.9.2/8.9.3) with ESMTP id LAA58469; Fri, 7 Jul 2000 11:24:31 -0400 (EDT) Message-ID: <3965F77B.9192C32B@ocsny.com> Date: Fri, 07 Jul 2000 11:30:03 -0400 From: Mikel Organization: Optimized Computer Solutions, Inc. X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en,it MIME-Version: 1.0 To: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: Content-Type: multipart/mixed; boundary="------------E90626DCB3A4A39D240846B6" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------E90626DCB3A4A39D240846B6 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Greetings all, I have to commend you all on this thread; as mundane as it may have seemed on the outset. It is nice to see that everyone is kind of working together to at the very least consider this proposal, especially now that most of smoke has cleared. I'll admit I'm more of a casual observer in this, but the idea is quite intriguing. Therefore I must ask; would it be worth putting together a sort of RFC regarding this subject and involving the entire BSD community, so that this could be placed on a long term game plan, and properly aligned with other BSD devlopement projects? Something like the new hierarchy shall be this by release such and such, and define some sort of road map to achieve this goal. -- Cheers, Mikel +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ | Optimized Computer Solutions, Inc http://www.ocsny.com | 39 W14th Street, Suite 203 212 727 2238 x132 | New York, NY 10011 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ --------------E90626DCB3A4A39D240846B6 Content-Type: text/x-vcard; charset=us-ascii; name="mikel.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Mikel Content-Disposition: attachment; filename="mikel.vcf" begin:vcard n:King;Mikel tel;fax:2124638402 tel;home:http://www.upan.org tel;work:2127272100 x-mozilla-html:TRUE org:Optimized Computer Solutions version:2.1 email;internet:mikel@ocsny.com title:Director of Network Operations & Technology adr;quoted-printable:;;39 W14th St.=0D=0ASte 203;New York;NY;10011;US note;quoted-printable:fBSD, PHP, MySql and OCS Rule!!!=0D=0A=0D=0AGoal is to be MS free by the end of 2k. x-mozilla-cpt:;7312 fn:Mikel King end:vcard --------------E90626DCB3A4A39D240846B6-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 8:52:14 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 75DCB37BF92 for ; Fri, 7 Jul 2000 08:52:07 -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 LAA06639; Fri, 7 Jul 2000 11:51:46 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Fri, 7 Jul 2000 11:51:46 -0400 (EDT) From: "Brandon D. Valentine" To: Garrett Wollman Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <200007071453.KAA37889@khavrinen.lcs.mit.edu> 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, 7 Jul 2000, Garrett Wollman wrote: >< said: > >> Sounds like a good enough reason to me to port the newer NetBSD LFS code >> to FreeBSD. > >Or, even better, for someone to implement background fsck for soft >updates. Yes, that too would be wonderful. Brandon D. Valentine -- bandix at looksharp.net | bandix at structbio.vanderbilt.edu "Truth suffers from too much analysis." -- Ancient Fremen Saying To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 9:36:17 2000 Delivered-To: freebsd-current@freebsd.org Received: from yellow.rahul.net (yellow.rahul.net [192.160.13.18]) by hub.freebsd.org (Postfix) with ESMTP id 391B837BF1F for ; Fri, 7 Jul 2000 09:35:58 -0700 (PDT) (envelope-from dhesi@rahul.net) Received: by yellow.rahul.net (Postfix, from userid 104) id 0DB3B7C1B; Fri, 7 Jul 2000 09:35:57 -0700 (PDT) To: freebsd-current@freebsd.org Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now Newsgroups: a2i.lists.freebsd-current References: X-Newsreader: NN version 6.5.6 (NOV) Message-Id: <20000707163557.0DB3B7C1B@yellow.rahul.net> Date: Fri, 7 Jul 2000 09:35:57 -0700 (PDT) From: dhesi@rahul.net (Rahul Dhesi) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I recently wrote: >It's not the green that's important, it's the 'OK'. The way Redhat >Linux boots, you can see at a glance which start-up commands failed and >which ones succeeded. The way FreeBSD boots, it's all one big blur. >Also, in the Linux scheme, there is a standard mechanism to keep track >of which boot-time service has already been started, and any accidental >re-invocation of the script (without an intervening 'stop') will be >detected and rejected. I personally find the 'chkconfig' command to be >very convenient to enable, disable, and list boot-time services, without >having to manually rename xxx.sh to xxx.sh.DISABLED and back. I am a bit disappointed by some of the responses I saw. Many of them exhibit the NIH ("not invented here") syndrome. Some are just argumentative with no useful content. Some make invalid assumptions. Some argue that the idea should be rejected just because some specific implementation might be flawed. Nobody has come up with any any real reason why the user should not at a glance be able to tell which boot-time services failed and which ones succeeded. -- Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 9:57:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id B7B9837BF06; Fri, 7 Jul 2000 09:57:28 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id JAA85127; Fri, 7 Jul 2000 09:57:22 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id JAA47636; Fri, 7 Jul 2000 09:58:45 -0700 (PDT) (envelope-from john) Message-Id: <200007071658.JAA47636@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <9846.962964818@coconut.itojun.org> Date: Fri, 07 Jul 2000 09:58:44 -0700 (PDT) From: John Baldwin To: itojun@iijlab.net Subject: Re: _DIAGASSERT in libusb & libutil Cc: n_hibma@FreeBSD.org, FreeBSD Current , Charles Anderson Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 07-Jul-00 itojun@iijlab.net wrote: > >>It's a macro that NetBSD uses just to be different from the rest of the >>known >>world which uses the assert() macro from /usr/include/assert.h. > > _DIAGASSERT() has its history and reasons (there was some proposal > on it and _DIAGASSERT() implements that). it is not just to be > different. I admit it is now equivalent to assert(). netbsd may need > to clean them up... It is slightly different in truth, because assert() is conditionally defined on NDEBUG, whereas _DIAGASSERT() is conditionally defined on DIAGNOSTICS. Also, it calls __diagassert() rather than __assert(), although both functions take the same arguments, so I suppose it could be performing additional behavior of some sort. > itojun -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 10:22:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id 9373F37C1A3 for ; Fri, 7 Jul 2000 10:22:03 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id KAA85197; Fri, 7 Jul 2000 10:20:21 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id KAA47676; Fri, 7 Jul 2000 10:21:44 -0700 (PDT) (envelope-from john) Message-Id: <200007071721.KAA47676@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000707064640.A391@dr-evil.shagadelic.org> Date: Fri, 07 Jul 2000 10:21:44 -0700 (PDT) From: John Baldwin To: Jason R Thorpe Subject: Re: _DIAGASSERT() Cc: freebsd-current@FreeBSD.ORG, itojun@iijlab.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 07-Jul-00 Jason R Thorpe wrote: > On Fri, Jul 07, 2000 at 07:07:50PM +0900, itojun@iijlab.net wrote: > > > do we still need _DIAGASSERT()? i'm not sure if they are maintained > > any longer... jhb does not seem to have checked the history of it BTW. > > Yes, if Mr. Baldwin had done his homework, rather than make an insulting > and uninformed comment on a public FreeBSD mailing list, he would have > discovered that _DIAGASSERT() performs a very different role than the > standard assert(). That's why it's in the implementation namespace (and > used only in system libraries). I do believe I let my sarcasm exceed the allowable boundary in my e-mail. :( I had noticed that _DIAGASSERT was conditional on _DIAGNOSTIC and that it called __diagassert() rather than __assert(), but failed to dig around enough to ascertain the differences between those functions. > They are designed to catch bugs in non-library code when the library > is specifically compiled to do such checks. We went through all this > before, and it is *inappropriate* for those checks to be ASSERT/assert > for shipped libraries. > > It's *intended* that they expand only when the library is compiled > with -D_DIAGNOSTIC. IOW, a way to enable a subset of assertions w/o having to enable all the normal debugging code I take it then? I can see the benefit in that. > The goal is to improve the quality if NetBSD's userland code. FreeBSD, > if they were smart, would adopt the same mechanism. But as can be shown > by the error message, FreeBSD isn't even doing the basic work like > building with strict prototype checking (which would have caught the > missing _DIAGASSERT() in FreeBSD at compile time, rather than at run-time). By default we do not, no. Although our debugging flags in -current would have caught this had I used them. Regardless, my apologies for allowing my sarcasm to come off much rougher than I intended. > -- > -- Jason R. Thorpe -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 10:30:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.interware.hu (mail.interware.hu [195.70.32.130]) by hub.freebsd.org (Postfix) with ESMTP id 873BC37C209 for ; Fri, 7 Jul 2000 10:30:37 -0700 (PDT) (envelope-from julian@elischer.org) Received: from casablanca-60.budapest.interware.hu ([195.70.53.60] helo=jules.elischer.org) by mail.interware.hu with smtp (Exim 3.12 #1 (Debian)) id 13Abx0-0005MF-00; Fri, 07 Jul 2000 19:30:07 +0200 Message-ID: <39661392.41C67EA6@elischer.org> Date: Fri, 07 Jul 2000 10:29:54 -0700 From: Julian Elischer X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 5.0-CURRENT i386) MIME-Version: 1.0 To: Archie Cobbs Cc: Daniel Berlin , Brian Somers , Daniel Berlin , freebsd-current@FreeBSD.ORG Subject: Re: PPPoE not working References: <200007070001.RAA14545@bubba.whistle.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Archie Cobbs wrote: > > Julian Elischer writes: > > > > The code's in ppp/ether.c. > > > > > > > > I'll see if I can get time to figure out what's wrong, but I can't > > > > promise anything this week. I'm too busy (we're having a FreeBSD > > > > mini-conference here in the UK at which I'm speaking...). > > > > > > > I already solved this one, the problem is that the source address is being overwritten with 0's. > > > As a temporary hack, if you go into ng_pppoe.c, and replace the 0's with your ethernet address, you'll be golden. > > > > Actually Archie left out code to add IN the source MAC address. > > so it wasn;t being overwritten, it was never being set.... > > > > I just committed a fix. > > let me know the result > > Julian, > Thanks for the fix. However, this seems like the wrong fix to me. > It was a quick replication of the original code.. the right answer is to have a hook that does this, and another that does not. The ppp code and in fact any code higher than the ethernet layer is the wrong place to do this because the source address is "out of scope" anwhere higher. At least that is my thought. I think that whenever code needs to manipulate data to which it really shouldn't have access to, we end up regretting it, and the code becomes overly complicated. > I think the right fix would be for ppp(8) to set the source address, > rather than always forcing it in ng_ether.c... that way the "lower" > hook really is WYSIWYG and applications where other source addresses > may want to be used are possible. In effect, some ethernet cards add in the source address themselves, overwriting whatever is there. (e.g. intel 82586). I think there should be a WYSIWYG hook. > > I thought the semantics of writing to "lower" or "orphans" were to > be that the packet gets delivered out the link exactly "as-is", > unchanged. Having the correct source address should be optional. No, becasue the hardware may clobber the source address. I theory you are right, but then the source address needs to be available to other nodes. > > Perhaps there could be a control message to set an "add source > address" bit. While we're at it, we could also use a control message > to get the unique Ethernet address, turn promiscuous mode on/off, > and add multicast addresses. The ng_ether routines have promiscuous knowledge of the ethernet specification and routines, so they could do all these things.. > > What do you guys think? I want to see the scope of the information preserved. Anything that works within correct scope or officially exports the information needed is ok. > > -Archie > > ___________________________________________________________________________ > Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com -- __--_|\ Julian Elischer / \ julian@elischer.org ( OZ ) World tour 2000 )_.---._/ presently in: Budapest v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 11:23:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail-relay.eunet.no (mail-relay.eunet.no [193.71.71.242]) by hub.freebsd.org (Postfix) with ESMTP id 7B89D37C498 for ; Fri, 7 Jul 2000 11:22:52 -0700 (PDT) (envelope-from mbendiks@eunet.no) Received: from login-1.eunet.no (login-1.eunet.no [193.75.110.2]) by mail-relay.eunet.no (8.9.3/8.9.3/GN) with ESMTP id UAA90303 for ; Fri, 7 Jul 2000 20:22:48 +0200 (CEST) (envelope-from mbendiks@eunet.no) Received: from localhost (mbendiks@localhost) by login-1.eunet.no (8.9.3/8.8.8) with ESMTP id UAA75041 for ; Fri, 7 Jul 2000 20:22:48 +0200 (CEST) (envelope-from mbendiks@eunet.no) X-Authentication-Warning: login-1.eunet.no: mbendiks owned process doing -bs Date: Fri, 7 Jul 2000 20:22:48 +0200 (CEST) From: Marius Bendiksen To: current@freebsd.org Subject: OpenBSD errata 008 also applies to FreeBSD 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 It appears msdosfs is using a vnode after having released its reference on it, which could lead to a bad things under high load. I've patched the OpenBSD errata to apply cleanly to FreeBSD. --- msdosfs_vnops.c.orig Mon Jun 26 06:10:40 2000 +++ msdosfs_vnops.c Mon Jun 26 07:10:17 2000 @@ -1095,9 +1095,9 @@ newparent = 1; vrele(fdvp); if (doingdirectory && newparent) { if (error) /* write access check above */ - goto bad; + goto bad1; if (xp != NULL) vput(tvp); /* * doscheckpath() vput()'s dp, @@ -1123,22 +1123,22 @@ */ if (xp->de_Attributes & ATTR_DIRECTORY) { if (!dosdirempty(xp)) { error = ENOTEMPTY; - goto bad; + goto bad1; } if (!doingdirectory) { error = ENOTDIR; - goto bad; + goto bad1; } cache_purge(tdvp); } else if (doingdirectory) { error = EISDIR; - goto bad; + goto bad1; } error = removede(dp, xp); if (error) - goto bad; + goto bad1; vput(tvp); xp = NULL; } @@ -1148,9 +1148,9 @@ * file/directory. */ error = uniqdosname(VTODE(tdvp), tcnp, toname); if (error) - goto abortit; + goto bad1; /* * Since from wasn't locked at various places above, * have to do a relookup here. @@ -1189,9 +1189,8 @@ if (xp != ip) { if (doingdirectory) panic("rename: lost dir entry"); vrele(ap->a_fvp); - VOP_UNLOCK(fvp, 0, p); if (newparent) VOP_UNLOCK(fdvp, 0, p); xp = NULL; } else { @@ -1214,9 +1213,8 @@ if (error) { bcopy(oldname, ip->de_Name, 11); if (newparent) VOP_UNLOCK(fdvp, 0, p); - VOP_UNLOCK(fvp, 0, p); goto bad; } ip->de_refcnt++; zp->de_fndoffset = from_diroffset; @@ -1224,9 +1222,8 @@ if (error) { /* XXX should really panic here, fs is corrupt */ if (newparent) VOP_UNLOCK(fdvp, 0, p); - VOP_UNLOCK(fvp, 0, p); goto bad; } if (!doingdirectory) { error = pcbmap(dp, de_cluster(pmp, to_diroffset), 0, @@ -1234,9 +1231,8 @@ if (error) { /* XXX should really panic here, fs is corrupt */ if (newparent) VOP_UNLOCK(fdvp, 0, p); - VOP_UNLOCK(fvp, 0, p); goto bad; } if (ip->de_dirclust == MSDOSFSROOT) ip->de_diroffset = to_diroffset; @@ -1263,9 +1259,8 @@ NOCRED, &bp); if (error) { /* XXX should really panic here, fs is corrupt */ brelse(bp); - VOP_UNLOCK(fvp, 0, p); goto bad; } dotdotp = (struct direntry *)bp->b_data + 1; putushort(dotdotp->deStartCluster, dp->de_StartCluster); @@ -1273,21 +1268,21 @@ putushort(dotdotp->deHighClust, dp->de_StartCluster >> 16); error = bwrite(bp); if (error) { /* XXX should really panic here, fs is corrupt */ - VOP_UNLOCK(fvp, 0, p); goto bad; } } - VOP_UNLOCK(fvp, 0, p); bad: + VOP_UNLOCK(fvp, 0, p); + vrele(fdvp); +bad1: if (xp) vput(tvp); vput(tdvp); out: ip->de_flag &= ~DE_RENAME; - vrele(fdvp); vrele(fvp); return (error); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 12: 2:24 2000 Delivered-To: freebsd-current@freebsd.org Received: from hawaii.rr.com (hnlmail1.hawaii.rr.com [24.25.227.33]) by hub.freebsd.org (Postfix) with ESMTP id 9345A37BF70; Fri, 7 Jul 2000 12:02:13 -0700 (PDT) (envelope-from tomokolove@anet.ne.jp) Received: from localhost ([204.210.118.42]) by hawaii.rr.com with Microsoft SMTPSVC(5.5.1877.447.44); Fri, 7 Jul 2000 08:05:37 -1000 X-Sender: tomokolove@anet.ne.jp From: Tomoko To: "love" Date: Fri, 07 Jul 2000 08:03:34 -1000 Subject: Ž„‚́AŒ³‹C‚Ÿ‚æ` MIME-Version: 1.0 Content-Type: text/plain; charset=euc-jp Content-Transfer-Encoding: 7bit Message-ID: <0af323705180770HNLMAIL1@hawaii.rr.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG •ÔM‚ ‚肪‚Æ‚€I Ž„‚́AŒ³‹C‚Ÿ‚æ`B ‹³‚Š‚Ä‚­‚ê‚œƒTƒCƒgA‚Æ‚Á‚Ä‚à‚g‚Ÿ‚Á‚œB ‚µ‚Á‚©‚èAŒ©‚Ä‚µ‚Ü‚Á‚œEEE’p‚ž‚©‚µ‚¢`B Ž„‚ªŒ©‚‚¯‚œƒTƒCƒg‚àA‚à‚€A‚ЂƂ‹³‚Š‚Ä‚ ‚°‚é‚ˁB ‚¯‚Á‚±‚€A‚g‚Ÿ‚æ‚ñ ”æ‚ê‚ê‚œŽž‚É‚Å‚àA‰É‚‚Ԃµ‚ÉŒ©‚Ă݂ĂˁB http://www.e-sexcity.com/ ‚»‚ꂶ‚áA‚ª‚ñ‚΂Á‚ĂˁB ‚Ü‚œ‚ˁB ‚΂¢‚΂¢ ‚Æ‚à‚±‚¿‚á‚ñ‚æ‚èB Love To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 12: 9:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from rye.elite.net (rye.elite.net [205.199.220.6]) by hub.freebsd.org (Postfix) with ESMTP id BFBC637C4A5 for ; Fri, 7 Jul 2000 12:09:52 -0700 (PDT) (envelope-from nate@elite.net) Received: from almond.elite.net (root@almond.elite.net [205.199.220.5]) by rye.elite.net (8.9.3/8.9.3) with ESMTP id MAA97661 for ; Fri, 7 Jul 2000 12:09:37 -0700 (PDT) From: Nate Lawson Received: (nate@localhost) by almond.elite.net (8.8.3/8.6.12) id MAA28408 for current@freebsd.org; Fri, 7 Jul 2000 12:09:37 -0700 (PDT) Date: Fri, 7 Jul 2000 12:09:37 -0700 (PDT) Message-Id: <200007071909.MAA28408@almond.elite.net> To: current@freebsd.org Subject: burncd fixate error Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm running 4.0-STABLE and my CDR drive can't write the toc. I tried twice and each time I get the following error: # burncd -f /dev/acd0c -s 2 data rawcd.iso fixate next writeable LBA 0 writing from file rawcd.iso size 656134 KB written this track 656134 KB (100%) total 656134 KB fixating CD, please wait.. burncd: ioctl(CDRIOCCLOSEDISK): Input/output error The kernel gives these messages: acd0: CLOSE_TRACK/SESSION - ILLEGAL REQUEST asc=30 ascq=09 error=04 I have an IDE Plextor CDR drive. It burns the exact same image just fine in Easy CD Creator under Windows. I noticed someone else had the same problem a few months ago: http://www.FreeBSD.org/cgi/mid.cgi?db=irt&id=200004051429.QAA46863@freebsd.dk Also, I still get sequence errors when trying to close the session again, so I guess the new atapi-cd stuff hasn't made it into -STABLE yet? Thanks, Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 12:34:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id B948837B781 for ; Fri, 7 Jul 2000 12:34:30 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e67JYLD01649; Fri, 7 Jul 2000 15:34:21 -0400 (EDT) Date: Fri, 7 Jul 2000 15:34:20 -0400 (EDT) From: Trevor Johnson To: Nate Lawson Cc: current@FreeBSD.ORG Subject: Re: burncd fixate error In-Reply-To: <200007071909.MAA28408@almond.elite.net> 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 running 4.0-STABLE and my CDR drive can't write the toc. > I tried twice and each time I get the following error: > fixating CD, please wait.. > burncd: ioctl(CDRIOCCLOSEDISK): Input/output error Hi, Nate. I was getting that error too. Unlike you, I have an H-P 8100 like the ones in the messages you directed us to. I did some testing for Soren Schmidt and he got everything working to my satisfaction. Not everything he fixed was specific to the H-P drives. That was around 6 May and the changes did go into 4.0-STABLE. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 13:45:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id 3344937BDC8 for ; Fri, 7 Jul 2000 13:45:04 -0700 (PDT) (envelope-from shawn@megadeth.org) Received: from shawn.megadeth.org (shawn.megadeth.org [192.216.87.244]) by luke.cpl.net (8.9.3/8.9.3) with ESMTP id NAA66675 for ; Fri, 7 Jul 2000 13:45:03 -0700 (PDT) Message-Id: <4.3.0.20000707134514.02099de0@mail.cpl.net> X-Sender: megadeth@mail.cpl.net X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Fri, 07 Jul 2000 13:45:56 -0700 To: current@freebsd.org From: Shawn Ramsey Subject: Fwd: Mylex AcceleRAID 250 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >I am trying to install FreeBSD 4.0-RELEASE onto a Mylex Acceleraid 250. >The RAID is two drives setup as a RAID1. When booting from the floppies, >it found the card, and the raid configuration. The OS installed fine onto >the RAID, but now when I try to boot, it tells me "missing operating >system". Is anyone using one of these in this fashion? What do I need to >do to get it to boot? > >Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 14:48: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from elch.heim4.tu-clausthal.de (elch.heim4.tu-clausthal.de [139.174.244.250]) by hub.freebsd.org (Postfix) with ESMTP id 1417337C068; Fri, 7 Jul 2000 14:47:56 -0700 (PDT) (envelope-from olli@elch.heim4.tu-clausthal.de) Received: (from olli@localhost) by elch.heim4.tu-clausthal.de (8.9.3/8.9.3) id XAA00715; Fri, 7 Jul 2000 23:47:39 +0200 (MET DST) Message-Id: <200007072147.XAA00715@elch.heim4.tu-clausthal.de> Subject: Re: about Kern/15436 To: keichii@peorth.iteration.net (Michael C. Wu) Date: Fri, 7 Jul 2000 23:47:38 +0200 (MET DST) Cc: yokota@freebsd.org, current@freebsd.org, oliver.fromme@heim3.tu-clausthal.de In-Reply-To: <20000705010454.A26452@peorth.iteration.net> from "Michael C. Wu" at Jul 5, 0 01:04:54 am From: Oliver Fromme X-Mailer: ELM [version 2.4 PL24 PGP6] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Michael C. Wu wrote: > Will you consider looking at : > > http://dorifer.heim3.tu-clausthal.de/~olli/propellers/ > > http://www.freebsd.org/cgi/query-pr.cgi?pr=15436 > > It is an additional functionality and should not > pose a stability/tradition/POLA issue. > > Perhaps we can get this done in time for for 4.1-R? This would be great, but I doubt it will be in 4.1-R. Please remember that we're only 2 - 3 weeks away from the release date, and maybe just one week from the beta stage. The ``propellers'' code is not widely tested (although I'm using it for many months, as well as a few friends of mine, but I wouldn't call this a ``wide test''), so I'd consider it to be experimental. 5.0-current is the right place to put this code into. Whether it's appropriate to MFC it after a while is a different question, but this won't happen before 4.1-R, I'm sure. BTW, the code that I have (and which I submitted) is for 4.0-current (about half a year old), and there have been a few changes to syscons in the meantime. That means that the code has to undergo some changes before it can be committed. And right now I have almost _zero_ time to spend on that (I'm moving and changing jobs). Regards Oliver Fromme -- Oliver Fromme, Leibnizstr. 18/61, 38678 Clausthal, Germany (Info: finger userinfo:olli@dorifer.heim3.tu-clausthal.de) "In jedem Stück Kohle wartet ein Diamant auf seine Geburt" (Terry Pratchett) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 15:31:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id 06D3E37C062 for ; Fri, 7 Jul 2000 15:31:08 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.10.1/8.10.1) with ESMTP id e67MV5A67495; Fri, 7 Jul 2000 15:31:05 -0700 (PDT) Date: Fri, 7 Jul 2000 15:31:04 -0700 (PDT) From: Doug White To: Rahul Dhesi Cc: freebsd-current@FreeBSD.ORG Subject: Re: HEADS UP: /etc/rc.shutdown calls local scripts now In-Reply-To: <20000707163557.0DB3B7C1B@yellow.rahul.net> 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, 7 Jul 2000, Rahul Dhesi wrote: > Nobody has come up with any any real reason why the user should not at a > glance be able to tell which boot-time services failed and which ones > succeeded. - The existing system does this already - Masking error messages is Evil(tm) Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 16: 0:28 2000 Delivered-To: freebsd-current@freebsd.org Received: from h132-197-97-45.gte.com (h132-197-97-45.gte.com [132.197.97.45]) by hub.freebsd.org (Postfix) with ESMTP id 080BF37B73D for ; Fri, 7 Jul 2000 16:00:18 -0700 (PDT) (envelope-from ak03@gte.com) Received: (from ak03@localhost) by h132-197-97-45.gte.com (8.9.3/8.9.3) id TAA49513 for freebsd-current@freebsd.org; Fri, 7 Jul 2000 19:00:11 -0400 (EDT) (envelope-from ak03) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 07 Jul 2000 19:00:11 -0400 (EDT) Organization: GTE Laboratories Inc. From: "Alexander N. Kabaev" To: freebsd-current@freebsd.org Subject: Suspicious warnings in -CURRENT Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After today's buildworld, I am seeing lots of warning messages from libc like: expr in free(): warning: modified (chunk-) pointer Does it happen to anyone else on this list? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 16: 8:47 2000 Delivered-To: freebsd-current@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 2929C37BD1E for ; Fri, 7 Jul 2000 16:08:41 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id TAA96908; Fri, 7 Jul 2000 19:08:38 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200007072308.TAA96908@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Alexander N. Kabaev" Cc: freebsd-current@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: Suspicious warnings in -CURRENT References: In-reply-to: Your message of "Fri, 07 Jul 2000 19:00:11 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 07 Jul 2000 19:08:38 -0400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, I started noticing this too while building some ports on a test machine with last night's -current (I think). louie > After today's buildworld, I am seeing lots of warning messages from libc like: > > expr in free(): warning: modified (chunk-) pointer > > Does it happen to anyone else on this list? > > > 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 Fri Jul 7 16:14:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from gargoyle.bazzle.com (dhcp233102.columbus.rr.com [204.210.233.102]) by hub.freebsd.org (Postfix) with SMTP id B856437BA43 for ; Fri, 7 Jul 2000 16:14:48 -0700 (PDT) (envelope-from ejc@bazzle.com) Received: (qmail 47390 invoked from network); 7 Jul 2000 23:14:44 -0000 Received: from unknown (HELO ?204.210.233.102?) (204.210.233.102) by 204.210.233.102 with SMTP; 7 Jul 2000 23:14:44 -0000 Date: Fri, 7 Jul 2000 19:14:43 -0400 (EDT) From: "Eric J. Chet" To: "Alexander N. Kabaev" Cc: freebsd-current@freebsd.org Subject: Re: Suspicious warnings in -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 On Fri, 7 Jul 2000, Alexander N. Kabaev wrote: > After today's buildworld, I am seeing lots of warning messages from libc like: > > expr in free(): warning: modified (chunk-) pointer > > Does it happen to anyone else on this list? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > Yep, I was just going to start looking at it. Eric Chet -> echet@cms.cendant.com, ejc@bazzle.com, ejc@kenpo-jujitsu.com Technical Lead/Architect Cendant Inc. Distributed OO Systems, J2EE, CORBA Kenpo JuJitsu the Ultimate in Self Defense, Tai Chi for Life ejc@FreeBSD.org -> "Live Free or Die" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 16:29:59 2000 Delivered-To: freebsd-current@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 1492037BE0A; Fri, 7 Jul 2000 16:29:54 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e67NTnd28131; Fri, 7 Jul 2000 16:29:49 -0700 (PDT) Date: Fri, 7 Jul 2000 16:29:49 -0700 From: Alfred Perlstein To: Oliver Fromme Cc: "Michael C. Wu" , yokota@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: about Kern/15436 Message-ID: <20000707162949.U25571@fw.wintelcom.net> References: <20000705010454.A26452@peorth.iteration.net> <200007072147.XAA00715@elch.heim4.tu-clausthal.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007072147.XAA00715@elch.heim4.tu-clausthal.de>; from oliver.fromme@heim3.tu-clausthal.de on Fri, Jul 07, 2000 at 11:47:38PM +0200 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Oliver Fromme [000707 16:18] wrote: > > Michael C. Wu wrote: > > Will you consider looking at : > > > > http://dorifer.heim3.tu-clausthal.de/~olli/propellers/ > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=15436 > > > > It is an additional functionality and should not > > pose a stability/tradition/POLA issue. > > > > Perhaps we can get this done in time for for 4.1-R? > > This would be great, but I doubt it will be in 4.1-R. > Please remember that we're only 2 - 3 weeks away from the > release date, and maybe just one week from the beta stage. > > The ``propellers'' code is not widely tested (although I'm > using it for many months, as well as a few friends of mine, > but I wouldn't call this a ``wide test''), so I'd consider > it to be experimental. 5.0-current is the right place to put > this code into. Whether it's appropriate to MFC it after a > while is a different question, but this won't happen before > 4.1-R, I'm sure. > > BTW, the code that I have (and which I submitted) is for > 4.0-current (about half a year old), and there have been a > few changes to syscons in the meantime. That means that the > code has to undergo some changes before it can be committed. > And right now I have almost _zero_ time to spend on that > (I'm moving and changing jobs). You'd have my support for committing this, I'd love to see it in FreeBSD asap. (As long as it's not the default) It'd be really nifty to see it as a loadable module, although I haven't seen how much it actually bloats the kernel, doing it that way and providing hooks in syscons would be a nice thing. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 16:42:30 2000 Delivered-To: freebsd-current@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 608) id 2053E37BC20; Fri, 7 Jul 2000 16:42:28 -0700 (PDT) From: "Jonathan M. Bresler" To: abial@webgiro.com Cc: kbyanc@posi.net, freebsd-current@FreeBSD.ORG In-reply-to: (message from Andrzej Bialecki on Tue, 4 Jul 2000 13:50:51 +0200 (CEST)) Subject: Re: Possible bug in netinet6/in6_rmx.c ? Message-Id: <20000707234228.2053E37BC20@hub.freebsd.org> Date: Fri, 7 Jul 2000 16:42:28 -0700 (PDT) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > By the way, while we are talking about sysctl, I don't suppose you would be > > willing to review/commit PR 15251? It is a fairly straightforward patch that > > I see Jonathan Bresler took it (today). > wow dude! put me on the spot or something! jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 16:59:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.ruhr.de (in-ruhr2.ruhr.de [141.39.224.60]) by hub.freebsd.org (Postfix) with SMTP id 2541737BA00 for ; Fri, 7 Jul 2000 16:59:29 -0700 (PDT) (envelope-from ue@nathan.ruhr.de) Received: (qmail 38431 invoked by alias); 8 Jul 2000 00:01:01 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.9.3/8.9.3) id BAA00772 for current@freebsd.org; Sat, 8 Jul 2000 01:59:12 +0200 (CEST) (envelope-from ue) Date: Sat, 8 Jul 2000 01:59:11 +0200 From: Udo Erdelhoff To: current@freebsd.org Subject: ppp -auto gone again Message-ID: <20000708015911.A252@nathan.ruhr.de> 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, ppp -auto stopped working fater I've updated my box from 06/17-Sources to yesterday's version (07/06, approx. 1500 GMT). tcpdump -ni tun0 shows the traffic but that's it. ppp.log doesn't show any obvious problems. -ddial works, sending a manual dial command (via pppctl) brings the link up immediately. IPv6-related breakage again (this is an IPv4-only system) or something new? /s/Udo (too tired for a decent bughunt) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 17:10:26 2000 Delivered-To: freebsd-current@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 7C31737B5AB for ; Fri, 7 Jul 2000 17:10:16 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 10271289 invoked from network); 8 Jul 2000 00:10:13 -0000 Received: from r224m65.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.224.65]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Jul 2000 00:10:13 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id CAA34519; Sat, 8 Jul 2000 02:10:12 +0200 (CEST) (envelope-from root) Posted-Date: Sat, 8 Jul 2000 02:10:12 +0200 (CEST) To: Paul Herman Cc: Bill Fumerola , Sheldon Hearn , freebsd-bugs@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does References: Reply-To: clefevre@citeweb.net X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C From: Cyrille Lefevre Date: 08 Jul 2000 02:10:11 +0200 In-Reply-To: Paul Herman's message of "Fri, 7 Jul 2000 01:33:12 +0200 (CEST)" Message-ID: Lines: 55 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Canyonlands" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Paul Herman writes: > On Thu, 6 Jul 2000, Bill Fumerola wrote: > [snip] > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s2a 446503 30922 379861 8% / > /dev/ad0s9e 1453615 758910 578416 57% /usr > /dev/ad0s9f 968983 357403 534062 40% /usr/local > /dev/ad0s9g 242239 9945 212915 4% /var > /dev/ad0s9h 2013515 1242447 609987 67% /u01 > procfs 4 4 0 100% /proc > Heh? What's this? 242239 9945 212915 4% /mnt > total 1581144 505684 995140 34% /mnt2 > total 1391380 414168 906528 31% /mnt3 > bash-2.03# > > Hee, hee. Yes, this is probably no big deal (and not put forth as any > strong argument for not commiting this) but who knows what some > cronjob scripts might expect. Hmmm, let me give constructive > criticism a shot and see how far it goes: humm! you are looking for a small bug (the beast :) this problem also exists w/ du -c... # cp -rp /etc/defaults total # du -c total 69 total 69 total so, your argumentation isn't "viable" (in french, don't know the translation in english, sorry). if you prefer, say "total:" inseatd of just "total" since it's not possible to remote mount something like this. but what about du -c in this case... > Perhaps if it were expected that the "df -c" output were completly > different? Then "total" would be less likely to be counted as some > other filesystem by mistake? Perhaps something along the lines: > > bash-2.0.3# df -c /usr /usr/local > Totals for: /usr /usr/local > 1K-Blocks: 2422598 > Used: 1116313 > Avail: 1306285 > Capacity: 46% > > Dunno how that would go over with the purists, though... after all > 'df' is in one of the holiest of directories... /bin. Cyrille. -- home:mailto:clefevre@no-spam.citeweb.net Supprimer "no-spam." pour me repondre. work:mailto:Cyrille.Lefevre@no-spam.edf.fr Remove "no-spam." to answer me back. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 17:22:18 2000 Delivered-To: freebsd-current@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 5CCB237BAF1 for ; Fri, 7 Jul 2000 17:22:12 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 10317508 invoked from network); 8 Jul 2000 00:22:09 -0000 Received: from r224m65.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.224.65]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Jul 2000 00:22:09 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id CAA34579; Sat, 8 Jul 2000 02:22:09 +0200 (CEST) (envelope-from root) Posted-Date: Sat, 8 Jul 2000 02:22:09 +0200 (CEST) To: Sheldon Hearn Cc: Will Andrews , freebsd-gnats-submit@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does References: <21059.962742881@axl.ops.uunet.co.za> Reply-To: clefevre@citeweb.net X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C From: Cyrille Lefevre Date: 08 Jul 2000 02:22:08 +0200 In-Reply-To: Sheldon Hearn's message of "Tue, 04 Jul 2000 22:34:41 +0200" Message-ID: Lines: 30 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Canyonlands" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sheldon Hearn writes: > On Tue, 04 Jul 2000 15:47:25 -0400, Will Andrews wrote: > > > On Tue, Jul 04, 2000 at 04:06:46PM +0200, Sheldon Hearn wrote: > > > My only objection is that it seems to produce useless values. Can you > > > think of a use for these grand totals? > > > > They are helpful for monitoring total space; I would use them in > > administrative scripts to watch my space. > > Okay, then. Let me be more specific. How is the notion of "total > space" useful? :-) statistics for backup tapes needed. for instance, at work, there is a big restructuration of departements. so, there are 10 gigs (about 300 GB) to move from servers to others. of course, I use some kind of awk scripts to do the same things. but, under FreeBSD, I saw that du has a -c option to do that job. why df couln't have the same option to do the same job ? for every scripts I write, I do it the more portable as possible I can. but if I can optimize the job, I'll do it. another way to say that is : how is it possible you don't like this option to df for any reason, while you have accepted the same option to du ? Cyrille. -- home:mailto:clefevre@no-spam.citeweb.net Supprimer "no-spam." pour me repondre. work:mailto:Cyrille.Lefevre@no-spam.edf.fr Remove "no-spam." to answer me back. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 17:51:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 754E637B50B for ; Fri, 7 Jul 2000 17:51:50 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id RAA65634; Fri, 7 Jul 2000 17:51:36 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.9.3/8.9.3) id RAA02884; Fri, 7 Jul 2000 17:51:15 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 07 Jul 2000 17:51:15 -0700 (PDT) Organization: BSD, Inc. From: John Baldwin To: "Alexander N. Kabaev" Subject: RE: Suspicious warnings in -CURRENT Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 07-Jul-00 Alexander N. Kabaev wrote: > After today's buildworld, I am seeing lots of warning messages from libc > like: > > expr in free(): warning: modified (chunk-) pointer > > Does it happen to anyone else on this list? Yes, I've been getting them in vi all day today. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 18:18:44 2000 Delivered-To: freebsd-current@freebsd.org Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id E6E3E37B540 for ; Fri, 7 Jul 2000 18:18:39 -0700 (PDT) (envelope-from root@gits.dyndns.org) Received: (qmail 10038711 invoked from network); 8 Jul 2000 01:18:37 -0000 Received: from r224m65.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.224.65]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Jul 2000 01:18:37 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id DAA34663; Sat, 8 Jul 2000 03:18:35 +0200 (CEST) (envelope-from root) Posted-Date: Sat, 8 Jul 2000 03:18:35 +0200 (CEST) To: Warner Losh Cc: Robert Watson , John Baldwin , Kenjiro Cho , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: <200007060248.UAA46767@harmony.village.org> Reply-To: clefevre@citeweb.net X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C From: Cyrille Lefevre Date: 08 Jul 2000 03:18:34 +0200 In-Reply-To: Warner Losh's message of "Wed, 05 Jul 2000 20:48:10 -0600" Message-ID: Lines: 28 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Canyonlands" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Warner Losh writes: > In message Robert Watson writes: > : On Wed, 5 Jul 2000, John Baldwin wrote: > : > : > The headers will always be installed in the right place in > : > /usr/include: Makefile's are editable. As far as kernel > : > compiles, symlinks can be created in the work directory as > : > one possible solution. For example, > : > sys/compile/i386/GENERIC/netinet -> ../../../../net/inet. > : > This would most likely result in netinet _not_ being split > : > up. > : > : As much as I'd love a complete cleanup of sys/, this cure seems to be > : worse than the problem. :-) Take this as another vote to leave net/ as > : is, if only to keep the includes in kernel code in sync with includes in > : userland code :-). > > The proposed change also breaks the ability to have /usr/include/* be > symbolic links to your real source tree. I don't understand where is the problem to split net* to net/* ? could you explain ? please. Cyrille. -- home:mailto:clefevre@no-spam.citeweb.net Supprimer "no-spam." pour me repondre. work:mailto:Cyrille.Lefevre@no-spam.edf.fr Remove "no-spam." to answer me back. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 18:26:21 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 C9E1637B52A; Fri, 7 Jul 2000 18:26:17 -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 SAA77627; Fri, 7 Jul 2000 18:26:17 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Fri, 7 Jul 2000 18:26:16 -0700 (PDT) From: Kris Kennaway To: "Alexander N. Kabaev" Cc: freebsd-current@freebsd.org Subject: Re: Suspicious warnings in -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 On Fri, 7 Jul 2000, Alexander N. Kabaev wrote: > After today's buildworld, I am seeing lots of warning messages from libc like: > > expr in free(): warning: modified (chunk-) pointer regexp breakage? There were several commits recently, try rebuilding libc. 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 Fri Jul 7 19:35:24 2000 Delivered-To: freebsd-current@freebsd.org Received: from mimer.webgiro.com (mimer.webgiro.com [212.209.29.5]) by hub.freebsd.org (Postfix) with ESMTP id 5D11737B61F for ; Fri, 7 Jul 2000 19:35:18 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by mimer.webgiro.com (Postfix, from userid 66) id EA7372DC0C; Sat, 8 Jul 2000 04:40:53 +0200 (CEST) Received: by mx.webgiro.com (Postfix, from userid 1001) id D5EFA7817; Sat, 8 Jul 2000 04:34:52 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx.webgiro.com (Postfix) with ESMTP id D143710E17; Sat, 8 Jul 2000 04:34:52 +0200 (CEST) Date: Sat, 8 Jul 2000 04:34:52 +0200 (CEST) From: Andrzej Bialecki To: "Jonathan M. Bresler" Cc: kbyanc@posi.net, freebsd-current@FreeBSD.ORG Subject: Re: Possible bug in netinet6/in6_rmx.c ? In-Reply-To: <20000707234228.2053E37BC20@hub.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 Fri, 7 Jul 2000, Jonathan M. Bresler wrote: > > > > > By the way, while we are talking about sysctl, I don't suppose you would be > > > willing to review/commit PR 15251? It is a fairly straightforward patch that > > > > I see Jonathan Bresler took it (today). > > > > wow dude! put me on the spot or something! > > jmb ^^^ Ok, so it was jhb, not jmb... Just one letter difference ;-) Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 21:49:51 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 BA3AE37B542 for ; Fri, 7 Jul 2000 21:49:47 -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 VAA19326 for ; Fri, 7 Jul 2000 21:49:46 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 07 Jul 2000 21:49:45 -0700 (PDT) Organization: Polstra & Co., Inc. From: John Polstra To: current@freebsd.org Subject: JDK, wine, linuxthreads users: please test new dynamic linker Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am looking for some help from anybody who uses JDK, wine, or linuxthreads. In the past these packages have suffered from occasional random crashes caused by re-entrancy problems in the dynamic linker. I believe I have solved these problems in a commit today: jdp 2000/07/07 21:10:38 PDT Modified files: libexec/rtld-elf rtld.c rtld.h libexec/rtld-elf/alpha lockdflt.c rtld_machdep.h rtld_start.S libexec/rtld-elf/i386 lockdflt.c rtld_machdep.h Removed files: libexec/rtld-elf lockdflt.c [...] Revision Changes Path 1.46 +135 -115 src/libexec/rtld-elf/rtld.c 1.18 +19 -6 src/libexec/rtld-elf/rtld.h 1.5 +113 -44 src/libexec/rtld-elf/alpha/lockdflt.c 1.4 +8 -2 src/libexec/rtld-elf/alpha/rtld_machdep.h 1.4 +51 -4 src/libexec/rtld-elf/alpha/rtld_start.S 1.5 +207 -43 src/libexec/rtld-elf/i386/lockdflt.c 1.4 +23 -2 src/libexec/rtld-elf/i386/rtld_machdep.h I'd appreciate it if you would update to the latest version of "src/libexec/rtld-elf", build it, install it, and exercise some JDK, wine, or linuxthreads applications. Then let me know whether you see any strange problems. Even if you don't see problems I'd like to know. You can install the new dynamic linker without doing a full make world. Just cd to "src/libexec/rtld-elf" and do this: make obj make depend make all make install This will also work on 4-stable systems (using -current's sources for rtld-elf). Later on if you want to revert to the older dynamic linker again, you can find it in "/usr/libexec/ld-elf.so.1.old". Thanks, 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 Fri Jul 7 21:53: 9 2000 Delivered-To: freebsd-current@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 5E49537B542 for ; Fri, 7 Jul 2000 21:53:07 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Received: from ix.netcom.com (sil-wa17-31.ix.netcom.com [207.93.156.31]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id AAA16038 for ; Sat, 8 Jul 2000 00:53:00 -0400 (EDT) Received: (from tomdean@localhost) by ix.netcom.com (8.9.3/8.9.3) id VAA00914; Fri, 7 Jul 2000 21:52:58 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Date: Fri, 7 Jul 2000 21:52:58 -0700 (PDT) Message-Id: <200007080452.VAA00914@ix.netcom.com> X-Authentication-Warning: celebris.tddhome: tomdean set sender to tomdean@ix.netcom.com using -f From: "Thomas D. Dean" To: freebsd-current@FreeBSD.ORG Subject: cvs-crypto unknown References: <200007021621.SAA22483@grimreaper.grondar.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cvsup4.freebsd.org does not know about cvs-crypto. What is the correct collection? tomdean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 21:56:12 2000 Delivered-To: freebsd-current@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 809DE37B8C5 for ; Fri, 7 Jul 2000 21:56:09 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Received: from ix.netcom.com (sil-wa17-31.ix.netcom.com [207.93.156.31]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id AAA05031 for ; Sat, 8 Jul 2000 00:56:07 -0400 (EDT) Received: (from tomdean@localhost) by ix.netcom.com (8.9.3/8.9.3) id VAA00929; Fri, 7 Jul 2000 21:55:49 -0700 (PDT) (envelope-from tomdean@ix.netcom.com) Date: Fri, 7 Jul 2000 21:55:49 -0700 (PDT) Message-Id: <200007080455.VAA00929@ix.netcom.com> X-Authentication-Warning: celebris.tddhome: tomdean set sender to tomdean@ix.netcom.com using -f From: "Thomas D. Dean" To: freebsd-current@FreeBSD.ORG Subject: cvs-crypto unknown References: <200007021621.SAA22483@grimreaper.grondar.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cvsup7.freebsd.org does not know about cvs-crypto. What is the correct collection? tomdean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 21:57: 8 2000 Delivered-To: freebsd-current@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 62C3837B777 for ; Fri, 7 Jul 2000 21:57:03 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id VAA52797; Fri, 7 Jul 2000 21:57:00 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007080457.VAA52797@gndrsh.dnsmgr.net> Subject: Re: cvs-crypto unknown In-Reply-To: <200007080452.VAA00914@ix.netcom.com> from "Thomas D. Dean" at "Jul 7, 2000 09:52:58 pm" To: tomdean@ix.netcom.com (Thomas D. Dean) Date: Fri, 7 Jul 2000 21:56:59 -0700 (PDT) Cc: freebsd-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 > cvsup4.freebsd.org does not know about cvs-crypto. > > What is the correct collection? src-crypto -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 22:10:54 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 D738F37B544 for ; Fri, 7 Jul 2000 22:10:50 -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 WAA19464; Fri, 7 Jul 2000 22:10:49 -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 WAA43635; Fri, 7 Jul 2000 22:10:48 -0700 (PDT) (envelope-from jdp@polstra.com) Date: Fri, 7 Jul 2000 22:10:48 -0700 (PDT) Message-Id: <200007080510.WAA43635@vashon.polstra.com> To: freebsd@gndrsh.dnsmgr.net Subject: Re: cvs-crypto unknown In-Reply-To: <200007080457.VAA52797@gndrsh.dnsmgr.net> References: <200007080457.VAA52797@gndrsh.dnsmgr.net> Organization: Polstra & Co., Seattle, WA Cc: current@freebsd.org, tomdean@ix.netcom.com (Thomas D. Dean) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <200007080457.VAA52797@gndrsh.dnsmgr.net>, Rodney W. Grimes wrote: > > cvsup4.freebsd.org does not know about cvs-crypto. > > > > What is the correct collection? > > src-crypto No, it's src-crypto + src-eBones + src-secure + src-sys-crypto. Or better yet, just use "src-all" in place of all the individual collections. It now includes the crypto stuff too. 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 Fri Jul 7 22:12:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from gndrsh.dnsmgr.net (GndRsh.dnsmgr.net [198.145.92.4]) by hub.freebsd.org (Postfix) with ESMTP id 56E2637B72B for ; Fri, 7 Jul 2000 22:12:06 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.9.3/8.9.3) id WAA52848; Fri, 7 Jul 2000 22:12:04 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <200007080512.WAA52848@gndrsh.dnsmgr.net> Subject: Re: cvs-crypto unknown In-Reply-To: <200007080457.VAA52797@gndrsh.dnsmgr.net> from "Rodney W. Grimes" at "Jul 7, 2000 09:56:59 pm" To: freebsd@gndrsh.dnsmgr.net (Rodney W. Grimes) Date: Fri, 7 Jul 2000 22:12:04 -0700 (PDT) Cc: tomdean@ix.netcom.com (Thomas D. Dean), freebsd-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 > > cvsup4.freebsd.org does not know about cvs-crypto. > > > > What is the correct collection? > > src-crypto Oopsss... never mind. I think this has all been folded into the baseline cvs target. *-crypto is no more. -- Rod Grimes - KD7CAX @ CN85sl - (RWG25) rgrimes@gndrsh.dnsmgr.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 22:51: 5 2000 Delivered-To: freebsd-current@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 09D1D37B7E6 for ; Fri, 7 Jul 2000 22:51:01 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e685ohb19309; Sat, 8 Jul 2000 01:50:43 -0400 (EDT) Date: Sat, 8 Jul 2000 01:50:43 -0400 (EDT) From: Trevor Johnson To: "Rodney W. Grimes" Cc: "Thomas D. Dean" , freebsd-current@FreeBSD.ORG Subject: Re: cvs-crypto unknown In-Reply-To: <200007080512.WAA52848@gndrsh.dnsmgr.net> 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 Rodney W. Grimes wrote: > Oopsss... never mind. I think this has all been folded into > the baseline cvs target. *-crypto is no more. Hi, Rodney. This recent message explains what's happening: > From: John Polstra > Subject: Re: HEADS UP: Crypto changes coming soon > > Oops, Alan Edmonds pointed out a typo in my announcement: > > > src-crypto > > src-eBones > > src-secure > > src-sys-crypto > > > > will remain valid and unchanged, except that they will become > > sub-collections of "src-all" instead of the soon-to-be-defunct > > "cvs-all" collection. > > ^^^^^^^ should say "cvs-crypto" Personally, I use the separate collections because cvsup times out otherwise (I guess my connection is too slow). -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Jul 7 23:42:58 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 4B7D837B6D2 for ; Fri, 7 Jul 2000 23:42:51 -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 IAA10922; Sat, 8 Jul 2000 08:42:45 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Alexander N. Kabaev" Cc: freebsd-current@FreeBSD.ORG Subject: Re: Suspicious warnings in -CURRENT In-reply-to: Your message of "Fri, 07 Jul 2000 19:00:11 EDT." Date: Sat, 08 Jul 2000 08:42:45 +0200 Message-ID: <10920.963038565@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , "Alexander N. Kabaev" writes: >After today's buildworld, I am seeing lots of warning messages from libc like: > >expr in free(): warning: modified (chunk-) pointer > >Does it happen to anyone else on this list? I see it in vi(1). Somebody enable the 'A' option of phkmalloc and examine the core. ln -sf A /etc/malloc.conf -- 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 Sat Jul 8 0:42:21 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 A08DD37B5B8 for ; Sat, 8 Jul 2000 00:42:17 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p47-dn02kiryunisiki.gunma.ocn.ne.jp [211.0.245.112]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id QAA18782; Sat, 8 Jul 2000 16:42:12 +0900 (JST) Message-ID: <3966DB76.311380D2@newsguy.com> Date: Sat, 08 Jul 2000 16:42:46 +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: "Dampure, Pierre Y." Cc: current@FreeBSD.ORG Subject: Re: Boot Oddities References: <39598B27.341B68CC@alveley.org> <3959A580.E6EDE4EC@alveley.org> <395A1A38.94D5880@alveley.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Dampure, Pierre Y." wrote: > > Apologies to all, this was a pilot error. /boot/defaults/loader.conf was > referencing disk1s1a -- it should have been disk2s1a (I forgot the > floppy was included in the unit count). For the record, this _cannot_ be the cause of the problem you had. I'd rather bet the loader binary was above 1023 cylinders, and after playing a while you replaced it with one below that mark. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org _DES: The Book of Bruce has only one sentence in it, and it says "the actual directives of my cult are left as an exercise for the reader. Good luck." jkh: does it really include the 'good luck' part? EE: OK, I made that part up. EE: I figured it should sound a bit more cheery than how Bruce initially dictated it to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 1: 9:23 2000 Delivered-To: freebsd-current@freebsd.org Received: from rye.elite.net (rye.elite.net [205.199.220.6]) by hub.freebsd.org (Postfix) with ESMTP id 2619737BD3E for ; Sat, 8 Jul 2000 01:09:17 -0700 (PDT) (envelope-from nate@elite.net) Received: from almond.elite.net (root@almond.elite.net [205.199.220.5]) by rye.elite.net (8.9.3/8.9.3) with ESMTP id BAA69170; Sat, 8 Jul 2000 01:09:16 -0700 (PDT) Received: (nate@localhost) by almond.elite.net (8.8.3/8.6.12) id BAA08263; Sat, 8 Jul 2000 01:09:15 -0700 (PDT) Date: Sat, 8 Jul 2000 01:09:15 -0700 (PDT) From: Nate Lawson To: Trevor Johnson Cc: current@FreeBSD.ORG Subject: Re: burncd fixate error 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, 7 Jul 2000, Trevor Johnson wrote: > > I'm running 4.0-STABLE and my CDR drive can't write the toc. > > I tried twice and each time I get the following error: > > fixating CD, please wait.. > > burncd: ioctl(CDRIOCCLOSEDISK): Input/output error > > Hi, Nate. I was getting that error too. Unlike you, I have an H-P 8100 > like the ones in the messages you directed us to. I did some testing for > Soren Schmidt and he got everything working to my satisfaction. Not > everything he fixed was specific to the H-P drives. That was around 6 May > and the changes did go into 4.0-STABLE. I need to do a make world but my system and kernel are only about 2 weeks old. I booted into NT on the same box and was able to close the disks using Easy CD creator and the same CDRW drive. Still, I'm interested in solving the "Input/output error" problem. Looking at the code in atapi-cd.c and atapi-all.c, it seems like the queued request is getting an EIO. Judging from the behavior when I tried to close a session that was already finished, I can only guess that what the ata driver is sending my drive is different than its expectation for a close disk command. Perhaps the track (ccb[5] = 0) in acd_close_disk() is incorrect for my drive? It may be non-standard; I'm not an ata expert by any means. It returns an error immediately without spinning up the disk so I assume it's a firmware error. If there are no further suggestions, I'll trace into it with ddb and ATAPI_DEBUG. Second, it seems that the "out of sequence" stuff is still in -current. Is that bound to be removed soon? It is perfectly acceptable to insert media with sessions written a previous time and close the disk without writing another session first. Thanks, -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 1:38:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 8B59B37B797 for ; Sat, 8 Jul 2000 01:38:47 -0700 (PDT) (envelope-from pherman@frenchfries.net) Received: from bagabeedaboo.security.at12.de (dial-194-8-196-247.netcologne.de [194.8.196.247]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id KAA17603; Sat, 8 Jul 2000 10:38:41 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.10.2/8.10.2) with ESMTP id e688cUv00435; Sat, 8 Jul 2000 10:38:30 +0200 (CEST) Date: Sat, 8 Jul 2000 10:38:30 +0200 (CEST) From: Paul Herman To: clefevre@citeweb.net Cc: current@FreeBSD.ORG Subject: Re: bin/19635: add -c for grand total to df(1), like du(1) does 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 8 Jul 2000, Cyrille Lefevre wrote: > Paul Herman writes: > > > Hee, hee. Yes, this is probably no big deal (and not put forth as any > > strong argument for not commiting this) > > humm! you are looking for a small bug (the beast :) > this problem also exists w/ du -c... > > # cp -rp /etc/defaults total > # du -c total > 69 total > 69 total > > so, your argumentation isn't "viable" (in french, don't know the > translation in english, sorry). The argument isn't viable in english either. ;-) You are absolutely right. I never said it was an argument. In fact, I even stated that it wasn't. That was just a side note. Remember, I'm not against your patch -- I'm simply trying to find reasons why this should be commited, which I have yet to find. If someone chooses to commit the '-c' option for 'df' soley for the reason that 'du' command has the same option, I won't complain. I just find the reasoning a bit strange, that's all. I would like to let this thread go. All pros/cons for this matter, if there are any at all, have already been put on the table 2-3 emails ago. -Paul. P.S. If you had a 'df' option that gives me _new_ information, like %frag or something, you'd have my vote. (BTW, if you are taking suggestions, I'd rather have a 'df -p' that paints my house! :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 1:42:12 2000 Delivered-To: freebsd-current@freebsd.org Received: from freebsd.dk (freebsd.dk [212.242.42.178]) by hub.freebsd.org (Postfix) with ESMTP id 7DB2B37B880 for ; Sat, 8 Jul 2000 01:42:05 -0700 (PDT) (envelope-from sos@freebsd.dk) Received: (from sos@localhost) by freebsd.dk (8.9.3/8.9.1) id KAA02465; Sat, 8 Jul 2000 10:41:58 +0200 (CEST) (envelope-from sos) From: Soren Schmidt Message-Id: <200007080841.KAA02465@freebsd.dk> Subject: Re: burncd fixate error In-Reply-To: from Nate Lawson at "Jul 8, 2000 01:09:15 am" To: nate@elite.net (Nate Lawson) Date: Sat, 8 Jul 2000 10:41:58 +0200 (CEST) Cc: trevor@jpj.net (Trevor Johnson), current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It seems Nate Lawson wrote: > Looking at the code in atapi-cd.c and atapi-all.c, it seems like the > queued request is getting an EIO. Judging from the behavior when I tried > to close a session that was already finished, I can only guess that what > the ata driver is sending my drive is different than its expectation for a > close disk command. Perhaps the track (ccb[5] = 0) in acd_close_disk() is > incorrect for my drive? It may be non-standard; I'm not an ata expert by > any means. It returns an error immediately without spinning up the disk > so I assume it's a firmware error. If there are no further suggestions, > I'll trace into it with ddb and ATAPI_DEBUG. I dont have the spec handy, but it could be the ccb[5] = 0 which IIRC means close last open track, maybe some drives needs the real track number here... > Second, it seems that the "out of sequence" stuff is still in -current. > Is that bound to be removed soon? It is perfectly acceptable to insert > media with sessions written a previous time and close the disk without > writing another session first. I have removed all the sequence checks locally, it will go in with the next round of updates... -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 2:40:50 2000 Delivered-To: freebsd-current@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E7B6537B5B3 for ; Sat, 8 Jul 2000 02:40:46 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id LAA64549; Sat, 8 Jul 2000 11:40:28 +0200 (CEST) (envelope-from des@flood.ping.uio.no) To: NAKAJI Hiroyuki Cc: Sheldon Hearn , current@freebsd.org Subject: Re: fetch is strange References: <87n1jxfddo.fsf@nakaji.tutrp.tut.ac.jp> <97684.962788459@axl.ops.uunet.co.za> <87n1jvzye7.fsf@nakaji.tutrp.tut.ac.jp> From: Dag-Erling Smorgrav Date: 08 Jul 2000 11:40:27 +0200 In-Reply-To: NAKAJI Hiroyuki's message of "06 Jul 2000 13:16:32 +0900" Message-ID: Lines: 16 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG NAKAJI Hiroyuki writes: > It seems that fetch(1) can not fetch any file. In this case, the > downloaded(?) file size is zero. Make sure you have revision 1.2 (or newer) of src/usr.bin/fetch/fetch.c: ---------------------------- revision 1.2 date: 2000/06/29 08:39:29; author: des; state: Exp; lines: +4 -2 Don't forget to delete the output file if the request fails. Don't delete the output file if -r was specified. ---------------------------- DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 2:45:22 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.ruhr.de (in-ruhr2.ruhr.de [141.39.224.60]) by hub.freebsd.org (Postfix) with SMTP id 35C0837B8DA for ; Sat, 8 Jul 2000 02:45:19 -0700 (PDT) (envelope-from ue@nathan.ruhr.de) Received: (qmail 14331 invoked by alias); 8 Jul 2000 09:46:54 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.9.3/8.9.3) id LAA02127; Sat, 8 Jul 2000 11:45:08 +0200 (CEST) (envelope-from ue) Date: Sat, 8 Jul 2000 11:45:07 +0200 From: Udo Erdelhoff To: freebsd-current@FreeBSD.ORG Cc: dcs@freebsd.org Subject: Re: Suspicious warnings in -CURRENT Message-ID: <20000708114507.A208@nathan.ruhr.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <10920.963038565@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I've had the warnings, too, always after successful search operations in vi and mutt. cvs co -D '06 Jul 2000 12:00' src/lib/libc/regex/ and rebuild/reinstall of libc fixed it. It seems the bug was introduced in regcomp.c 1.20/1.121 and/or engine.c 1.8. /s/Udo (still trying to find out what broke ppp -auto) -- I'd like to meet the man who invented sex and see what he's working on now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 3: 8:52 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 DDF9037BE8B for ; Sat, 8 Jul 2000 03:08:48 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p13-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.14]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id TAA13595; Sat, 8 Jul 2000 19:06:14 +0900 (JST) Message-ID: <3966FD38.29D6FAB1@newsguy.com> Date: Sat, 08 Jul 2000 19:06:48 +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: Poul-Henning Kamp Cc: "Alexander N. Kabaev" , freebsd-current@FreeBSD.ORG Subject: Re: Suspicious warnings in -CURRENT References: <10920.963038565@critter.freebsd.dk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Poul-Henning Kamp wrote: > > In message , "Alexander N. Kabaev" writes: > >After today's buildworld, I am seeing lots of warning messages from libc like: > > > >expr in free(): warning: modified (chunk-) pointer > > > >Does it happen to anyone else on this list? > > I see it in vi(1). > > Somebody enable the 'A' option of phkmalloc and examine the core. > > ln -sf A /etc/malloc.conf Ok, everyone, my fault. Fixed. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org _DES: The Book of Bruce has only one sentence in it, and it says "the actual directives of my cult are left as an exercise for the reader. Good luck." jkh: does it really include the 'good luck' part? EE: OK, I made that part up. EE: I figured it should sound a bit more cheery than how Bruce initially dictated it to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 7:13:37 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 1D1A437BE3D for ; Sat, 8 Jul 2000 07:13:30 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p60-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.61]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id XAA03922 for ; Sat, 8 Jul 2000 23:13:25 +0900 (JST) Message-ID: <39673725.A0059A9E@newsguy.com> Date: Sat, 08 Jul 2000 23:13:57 +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: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: <20000702114353.C19714@freebie.wbnet> <200007021744.KAA34748@john.baldwin.cx> <20000702135349.F96427@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > > > Sounds good to me actually. Although, should it be ${MACHINE_ARCH}/compile > > instead in keeping with the mentioned goal of keeping all MD stuff under > > ${MACHINE_ARCH}? > > I would prefer /sys/compile/ as it makes it easier to make a > symlink to another place. Unless of course we get /usr/obj working for > kernel compiles.... Huh? All my kernels created with buildkernel are compiled in /usr/obj. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org _DES: The Book of Bruce has only one sentence in it, and it says "the actual directives of my cult are left as an exercise for the reader. Good luck." jkh: does it really include the 'good luck' part? EE: OK, I made that part up. EE: I figured it should sound a bit more cheery than how Bruce initially dictated it to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 7:32:13 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 E2C3937B606; Sat, 8 Jul 2000 07:31:56 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p60-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.61]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id XAA08867; Sat, 8 Jul 2000 23:31:55 +0900 (JST) Message-ID: <39673B7B.F4DEF75B@newsguy.com> Date: Sat, 08 Jul 2000 23:32:27 +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: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy References: <200007050704.AAA42641@john.baldwin.cx> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This must pass through -arch before any implementation. Remember, not every committer reads current. John Baldwin wrote: > > sys/ > ${MACHINE}/ - stay mostly the same, the directories under here > mirror the sys/ directories. E.g. MD bootstrap > code would go in the boot/ subdir > boot/ - formerly sys/boot/${MACHINE} > boot/ - just MI boot code now. Depending on portability > of ARC, possibly move boot/arc under > sys/alpha/boot Don't touch boot. Nothing in the bootstrap is used by the kernel, and there's just a few kernel files included by the bootstrap (wrongly, IMHO). It's made by buildworld instead of buildkernel. Ideally, it should be taken out of sys/ altogether. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org _DES: The Book of Bruce has only one sentence in it, and it says "the actual directives of my cult are left as an exercise for the reader. Good luck." jkh: does it really include the 'good luck' part? EE: OK, I made that part up. EE: I figured it should sound a bit more cheery than how Bruce initially dictated it to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 10: 5:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from server.baldwin.cx (server.geekhouse.net [64.81.6.52]) by hub.freebsd.org (Postfix) with ESMTP id B8AF337B5B7 for ; Sat, 8 Jul 2000 10:05:17 -0700 (PDT) (envelope-from john@baldwin.cx) Received: from john.baldwin.cx (root@john.baldwin.cx [192.168.1.18]) by server.baldwin.cx (8.9.3/8.9.3) with ESMTP id KAA92291; Sat, 8 Jul 2000 10:05:16 -0700 (PDT) (envelope-from john@baldwin.cx) Received: (from john@localhost) by john.baldwin.cx (8.9.3/8.9.3) id KAA51476; Sat, 8 Jul 2000 10:06:46 -0700 (PDT) (envelope-from john) Message-Id: <200007081706.KAA51476@john.baldwin.cx> X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <39673B7B.F4DEF75B@newsguy.com> Date: Sat, 08 Jul 2000 10:06:45 -0700 (PDT) From: John Baldwin To: "Daniel C. Sobral" Subject: Re: /sys hierarchy Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 08-Jul-00 Daniel C. Sobral wrote: > This must pass through -arch before any implementation. Remember, not > every committer reads current. The kernel hackers do since they are running current. :) > John Baldwin wrote: >> >> sys/ >> ${MACHINE}/ - stay mostly the same, the directories under here >> mirror the sys/ directories. E.g. MD bootstrap >> code would go in the boot/ subdir >> boot/ - formerly sys/boot/${MACHINE} >> boot/ - just MI boot code now. Depending on portability >> of ARC, possibly move boot/arc under >> sys/alpha/boot > > Don't touch boot. Nothing in the bootstrap is used by the kernel, and > there's just a few kernel files included by the bootstrap (wrongly, > IMHO). It's made by buildworld instead of buildkernel. Ideally, it > should be taken out of sys/ altogether. I disagree. The bootstrap is not used from userland, but is what loads the kernel. The kernel uses it to get started in other words. You don't type /boot/loader after the system is loaded, for example. > -- > Daniel C. Sobral (8-DCS) > dcs@newsguy.com > dcs@freebsd.org > capo@the.great.underground.bsdconpiracy.org -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 14:52: 3 2000 Delivered-To: freebsd-current@freebsd.org Received: from incandescent.firedrake.org (incandescent.firedrake.org [195.157.96.1]) by hub.freebsd.org (Postfix) with ESMTP id E372437B63C for ; Sat, 8 Jul 2000 14:52:00 -0700 (PDT) (envelope-from float@firedrake.org) Received: from float by incandescent.firedrake.org with local (Exim 2.05 #1 (Debian)) id 13B2Vq-00079l-00; Sat, 8 Jul 2000 22:51:50 +0100 Date: Sat, 8 Jul 2000 22:51:50 +0100 To: "Thomas D. Dean" Cc: freebsd-current@FreeBSD.ORG Subject: Re: cvs-crypto unknown Message-ID: <20000708225150.B27397@firedrake.org> References: <200007021621.SAA22483@grimreaper.grondar.za> <200007080455.VAA00929@ix.netcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007080455.VAA00929@ix.netcom.com>; from tomdean@ix.netcom.com on Fri, Jul 07, 2000 at 09:55:49PM -0700 From: void Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jul 07, 2000 at 09:55:49PM -0700, Thomas D. Dean wrote: > cvsup7.freebsd.org does not know about cvs-crypto. > > What is the correct collection? Cvs-crypto has been merged into src-all, due to the loosening of U.S. crypto policy. I believe someone sent a heads-up to this list a few days ago. -- Ben 220 go.ahead.make.my.day ESMTP Postfix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 16:46:11 2000 Delivered-To: freebsd-current@freebsd.org Received: from inu.net (downtown.inu.net [208.129.164.2]) by hub.freebsd.org (Postfix) with ESMTP id 05C8437C2B1; Sat, 8 Jul 2000 16:45:53 -0700 (PDT) (envelope-from robert@superjake.net) Received: from outoftown [208.129.164.6] by inu.net (SMTPD32-5.05) id AD2CFBB00E0; Sat, 08 Jul 2000 18:45:48 -0500 Message-ID: <002401bfe936$a1e7ebe0$06a481d0@inu.net> From: "Robert Small" To: , Subject: SCSI Question Date: Sat, 8 Jul 2000 18:45:44 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0021_01BFE90C.B8F7F340" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0021_01BFE90C.B8F7F340 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Damon Hammis wrote: > The jumpers are set wrong on the card. I had the exact same problem = with > an aha-1542 and aha-1540 card recently. The docs on the jumpers that = you > can get on Adaptec's site are kind of cryptic, but the card will work = once > you get the jumpers placed correctly. > > Currently I have mine running at irq 9, drq 5 and my jumpers are setup > like this: > > J5 pin 8 jumpered pin 9 the jumper is on one pin > J9 pins 2, 6, and 9 are jumpered. > > I have that configuration running on two systems now working great. = Let > me know how it goes for ya. > > --Damon > > On Fri, 7 Jul 2000, Robert Small wrote: > > > I installed an Adaptec AHA-1542 controller in my system tonight, and > > hooked up a Sony SDT-5000 tape drive. > > > > When I try to boot into FreeBSD (5.0-20000511-CURRENT FreeBSD > > 5.0-20000511-CURRENT #4: Thu Jul 6 20:31:41 CDT 2000) I receive: > > > > Waiting 15 seconds for SCSI devices to settle down > > (approximately 30-45 seconds later) > > (Probe0:aha0:0:0:0) CCB 0xc782c508 > > (Probe0:aha0:0:0:0) CCB 0xc782c508 > > aha0: aha_cmd: Timeout waiting for adapter idle > > ahainitmboxes: Initialization command failed > > aha0 no longer in timeout > > (Probe6:aha0:0:6:0) CCB 0xc782c508 > > (Probe6:aha0:0:6:0) CCB 0xc782c508 > > aha0: aha_cmd: Timeout waiting for adapter idle > > ahainitmboxes: Initialization command failed > > aha0 no longer in timeout > > > > And it keeps repeating. I had to remove the card to boot into = FreeBSD. > > The card recognizes the tape drive. > > > > Any ideas? > > > > Robert > > > > > > -------------------------------------------------------------------- > > Does killing time damage eternity? > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > Ok after further investigation, I can get the system to recognize the = card, aha0 at port-0x130-0x133 irq 9 drq 5 on isa0 aha0: AHA-1542CF FW Rev. F.0 (ID=3D45) SCSI Host Adapter, SCSI ID 7, 16 = CCBs but when it does, I get all of these errors Waiting 15 seconds for SCSI devices to settle down (approximately 30-45 seconds later) (Probe0:aha0:0:0:0) CCB 0xc782c508 (Probe0:aha0:0:0:0) CCB 0xc782c508 aha0: aha_cmd: Timeout waiting for adapter idle ahainitmboxes: Initialization command failed aha0 no longer in timeout (Probe6:aha0:0:6:0) CCB 0xc782c508 (Probe6:aha0:0:6:0) CCB 0xc782c508 aha0: aha_cmd: Timeout waiting for adapter idle ahainitmboxes: Initialization command failed aha0 no longer in timeout and after 30-45 minutes the system will finally get finished probing and = give me a login prompt. So it's not an IRQ problem, in fact, the only way I can make the system boot-up quickly is to make it share an IRQ. On boot-up, it recognizes = and lists the tape drive, but when it comes to probing, it's no joy. Any ideas/suggestions/hints? ------=_NextPart_000_0021_01BFE90C.B8F7F340 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Damon Hammis wrote:

> The = jumpers are set=20 wrong on the card.  I had the exact same problem with
> an = aha-1542=20 and aha-1540 card recently.  The docs on the jumpers that = you
> can=20 get on Adaptec's site are kind of cryptic, but the card will work = once
>=20 you get the jumpers placed correctly.
>
> Currently I have = mine=20 running at irq 9, drq 5 and my jumpers are setup
> like=20 this:
>
> J5 pin 8 jumpered pin 9 the jumper is on one = pin
>=20 J9 pins 2, 6, and 9 are jumpered.
>
> I have that = configuration=20 running on two systems now working great.  Let
> me know how = it goes=20 for ya.
>
> --Damon
>
> On Fri, 7 Jul 2000, = Robert Small=20 wrote:
>
> > I installed an Adaptec AHA-1542 controller = in my=20 system tonight, and
> > hooked up a Sony SDT-5000 tape = drive.
>=20 >
> > When I try to boot into FreeBSD (5.0-20000511-CURRENT=20 FreeBSD
> > 5.0-20000511-CURRENT #4: Thu Jul 6 20:31:41 CDT = 2000) I=20 receive:
> >
> > Waiting 15 seconds for SCSI devices = to settle=20 down
> > (approximately 30-45 seconds later)
> >=20 (Probe0:aha0:0:0:0) CCB 0xc782c508
> > (Probe0:aha0:0:0:0) CCB=20 0xc782c508
> > aha0: aha_cmd: Timeout waiting for adapter = idle
>=20 > ahainitmboxes: Initialization command failed
> > aha0 no = longer in=20 timeout
> > (Probe6:aha0:0:6:0) CCB 0xc782c508
> >=20 (Probe6:aha0:0:6:0) CCB 0xc782c508
> > aha0: aha_cmd: Timeout = waiting=20 for adapter idle
> > ahainitmboxes: Initialization command=20 failed
> > aha0 no longer in timeout
> >
> > = And it=20 keeps repeating.  I had to remove the card to boot into = FreeBSD.
>=20 > The card recognizes the tape drive.
> >
> > Any=20 ideas?
> >
> > Robert
> >
> = >
> >=20 --------------------------------------------------------------------
&= gt;=20 > Does killing time damage eternity?
> >
> = >
>=20 >
> > To Unsubscribe: send mail to majordomo@FreeBSD.org
> = > with=20 "unsubscribe freebsd-questions" in the body of the message
>=20 >

Ok after further investigation, I can get the system to = recognize=20 the card,

aha0 at port-0x130-0x133 irq 9 drq 5 on isa0
aha0:=20 AHA-1542CF FW Rev. F.0 (ID=3D45) SCSI Host Adapter, SCSI ID 7, 16 = CCBs

but=20 when it does, I get all of these errors

 Waiting 15 seconds = for SCSI=20 devices to settle down
 (approximately 30-45 seconds=20 later)
 (Probe0:aha0:0:0:0) CCB = 0xc782c508
 (Probe0:aha0:0:0:0)=20 CCB 0xc782c508
 aha0: aha_cmd: Timeout waiting for adapter=20 idle
 ahainitmboxes: Initialization command failed
 aha0 = no=20 longer in timeout
 (Probe6:aha0:0:6:0) CCB=20 0xc782c508
 (Probe6:aha0:0:6:0) CCB 0xc782c508
 aha0: = aha_cmd:=20 Timeout waiting for adapter idle
 ahainitmboxes: Initialization = command=20 failed
 aha0 no longer in timeout

and after 30-45 minutes = the=20 system will finally get finished probing and give
me a login=20 prompt.

So it's not an IRQ problem, in fact, the only way I can = make the=20 system
boot-up quickly is to make it share an IRQ.  On boot-up, = it=20 recognizes and
lists the tape drive, but when it comes to probing, = it's no=20 joy.

Any ideas/suggestions/hints?

------=_NextPart_000_0021_01BFE90C.B8F7F340-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 16:48:30 2000 Delivered-To: freebsd-current@freebsd.org Received: from cliffie.read.tasc.com (cliffie.read.tasc.com [147.81.255.35]) by hub.freebsd.org (Postfix) with ESMTP id E564237BA3F; Sat, 8 Jul 2000 16:48:23 -0700 (PDT) (envelope-from ANTIGEN_NTREMA53@tasc.com) Received: from ntrema53.read.tasc.com (ntrema53.read.tasc.com [147.81.245.153]) by cliffie.read.tasc.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id TAA09587; Sat, 8 Jul 2000 19:47:54 -0400 (EDT) Received: by ntrema53.read.tasc.com with Internet Mail Service (5.5.2650.21) id ; Sat, 8 Jul 2000 19:48:23 -0400 Message-ID: From: ANTIGEN_NTREMA53 To: "'freebsd-questions@FreeBSD.ORG'" , "'freebsd-current@FreeBSD.ORG'" Subject: Antigen found WScript/Kak.worm virus Date: Sat, 8 Jul 2000 19:48:17 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Antigen for Exchange found Unknown infected with WScript/Kak.worm virus. The file is currently Deleted. The message, "SCSI Question", was sent from Robert Small and was discovered in IMC Queues\Inbound located at TASC/TASC/NTREMA53. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 16:48:53 2000 Delivered-To: freebsd-current@freebsd.org Received: from amail.mot.chalmers.se (amail.mot.chalmers.se [129.16.27.17]) by hub.freebsd.org (Postfix) with ESMTP id 16FF537BA00; Sat, 8 Jul 2000 16:48:48 -0700 (PDT) (envelope-from Antigen@mot.chalmers.se) Received: by amail.mot.chalmers.se with Internet Mail Service (5.5.2650.21) id <3LB392CA>; Sun, 9 Jul 2000 01:47:15 +0200 Message-ID: <9B06CB528285D31192F400A0C9EC1914604EB7@amail.mot.chalmers.se> From: Antigen To: "'freebsd-questions@freebsd.org'" , "'freebsd-current@freebsd.org'" Subject: Antigen found JS/Kak.Worm virus Date: Sun, 9 Jul 2000 01:47:07 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Antigen for Exchange found Unknown infected with JS/Kak.Worm virus. The file is currently Deleted. The message, "SCSI Question", was sent from Robert Small and was discovered in IMC Queues\Inbound located at Chalmers/MOT/AMAIL. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 17:36:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from guru.mired.org (zoom0-088.telepath.com [216.14.0.88]) by hub.freebsd.org (Postfix) with SMTP id B2EB737BA9D for ; Sat, 8 Jul 2000 17:36:26 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 15317 invoked by uid 100); 9 Jul 2000 00:35:48 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14695.51428.314772.426883@guru.mired.org> Date: Sat, 8 Jul 2000 19:35:48 -0500 (CDT) To: current@FreeBSD.org Cc: cvs-all@FreeBSD.ORG Subject: etc/rc.d & things... In-Reply-To: References: X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > By all means, use start/stop args, but hard link the .sh files into seperate > directories or something so that the order can be tweaked.. If all you want is to make sure that shutdown happens in the reverse order of startup, that can be done by reversing the list in rc.shutdown. But how about going a step further, and starting towards a user-friendly configuration process? Instead of being globbed at init time, etc/rc.d is a repository for things that take start/stop arguments. They are symlinked to /etc/init.d with numeric prefixes to control order at initialization time. Likewise, they can be symlinked to /etc/down.d (or shutdown.d) with numeric prefixes to control order at shutdown time. Note that the directories full of symlinks are in /etc, not in /usr/X11R6/etc, etc. The rc.d's in those are also treated as repositories, so you can symlink to files in those asd well. These should save a bit of time at boot; no need to fool with lists of directories, etc. - just one directory. The real work will be adding a one-line description near the start of the file: # Init: 300. Shutdown: -1. Description: Standard smtp (mail) daemon. (indicating that it should be installed as /etc/init.d/300sendmail.sh, and no shutdown installation is necessary). Later, we can add a tool that globs the etc/rc.d directories for files with those lines, and provides a nice visual "system process configuration" tool, allowing you to click on these things to move them back and forth. Some rules regarding the shutdown/startup priorites might be needed for ports. Given some prodding, I might even be talked into taking a crack at the tool (an X tool, maybe) before there's a commitment to supporting this structure. To: Mike Meyer Cc: current@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: etc/rc.d & things... In-Reply-To: <14695.51428.314772.426883@guru.mired.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 Sat, 8 Jul 2000, Mike Meyer wrote: > > By all means, use start/stop args, but hard link the .sh files into seperate > > directories or something so that the order can be tweaked.. > > If all you want is to make sure that shutdown happens in the reverse > order of startup, that can be done by reversing the list in > rc.shutdown. But how about going a step further, and starting towards > a user-friendly configuration process? > > Instead of being globbed at init time, etc/rc.d is a repository for > things that take start/stop arguments. They are symlinked to > /etc/init.d with numeric prefixes to control order at initialization > time. Likewise, they can be symlinked to /etc/down.d (or shutdown.d) > with numeric prefixes to control order at shutdown time. > How about rather then separate directories, you prefix the symlink names with 'S' for startup scripts and 'K' (for "kill") for shutdown scripts. Then, you rename rc.d to rc3.d... Ducks and runs, Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 18:40:51 2000 Delivered-To: freebsd-current@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 39EB537BDEA for ; Sat, 8 Jul 2000 18:40:48 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id SAA26775; Sat, 8 Jul 2000 18:40:28 -0700 (PDT) (envelope-from obrien) Date: Sat, 8 Jul 2000 18:40:28 -0700 From: "David O'Brien" To: Peter Wemm Cc: current@FreeBSD.ORG Subject: Re: HEADS UP: cvs commit: src/lib/libftpio Makefile (fwd) Message-ID: <20000708184028.C26711@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200007070105.SAA03414@netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200007070105.SAA03414@netplex.com.au>; from peter@netplex.com.au on Thu, Jul 06, 2000 at 06:05:50PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jul 06, 2000 at 06:05:50PM -0700, Peter Wemm wrote: > This is *not* the same as the a.out behavior which searched directories to > find the largest number. ELF uses the symlinks and no searching, which is > why ld and ld-elf.so is faster when locating directories and does not need > ldconfig or the ld.so.cache. Correct me if I am wrong, ld-elf.so does still need ldconfig. And ld-elf.so does not use the symlink (if it did compat libs would not work). -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 19:47:58 2000 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 6E07C37B99B; Sat, 8 Jul 2000 19:47:56 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id WAA48374; Sat, 8 Jul 2000 22:47:54 -0400 (EDT) (envelope-from wollman) Date: Sat, 8 Jul 2000 22:47:54 -0400 (EDT) From: Garrett Wollman Message-Id: <200007090247.WAA48374@khavrinen.lcs.mit.edu> To: "Daniel C. Sobral" Cc: John Baldwin , freebsd-current@FreeBSD.ORG Subject: Re: /sys hierarchy In-Reply-To: <39673B7B.F4DEF75B@newsguy.com> References: <200007050704.AAA42641@john.baldwin.cx> <39673B7B.F4DEF75B@newsguy.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > This must pass through -arch before any implementation. Remember, not > every committer reads current. Also remember, not every committer reads arch. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 20: 2:21 2000 Delivered-To: freebsd-current@freebsd.org Received: from ns1.hutchtel.net (ns1.hutchtel.net [206.9.112.100]) by hub.freebsd.org (Postfix) with ESMTP id 4FAE437B517; Sat, 8 Jul 2000 20:02:12 -0700 (PDT) (envelope-from jpaetzel@hutchtel.net) Received: from josh (hutch-621.hutchtel.net [206.10.68.149]) by ns1.hutchtel.net (8.9.1/8.9.0) with SMTP id WAA11813; Sat, 8 Jul 2000 22:02:05 -0500 (CDT) Message-ID: <00b001b42883$21414b00$33cefea9@josh> From: "Josh Paetzel" To: "Robert Small" , , References: <002401bfe936$a1e7ebe0$06a481d0@inu.net> Subject: Re: SCSI Question Date: Sat, 13 Jan 1990 22:02:28 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00AD_01B42850.D5711A20" 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 This is a multi-part message in MIME format. ------=_NextPart_000_00AD_01B42850.D5711A20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ----- Original Message -----=20 From: Robert Small=20 To: freebsd-questions@FreeBSD.ORG ; freebsd-current@FreeBSD.ORG=20 Sent: Saturday, July 08, 2000 5:45 PM Subject: SCSI Question Damon Hammis wrote: > The jumpers are set wrong on the card. I had the exact same problem = with > an aha-1542 and aha-1540 card recently. The docs on the jumpers = that you > can get on Adaptec's site are kind of cryptic, but the card will = work once > you get the jumpers placed correctly. > ------=_NextPart_000_00AD_01B42850.D5711A20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
----- Original Message -----
From:=20 Robert=20 Small
To: freebsd-questions@FreeBSD.ORG = ; freebsd-current@FreeBSD.ORG =
Sent: Saturday, July 08, 2000 = 5:45=20 PM
Subject: SCSI Question

Damon Hammis wrote:

> The = jumpers are=20 set wrong on the card.  I had the exact same problem with
> = an=20 aha-1542 and aha-1540 card recently.  The docs on the jumpers = that=20 you
> can get on Adaptec's site are kind of cryptic, but the = card will=20 work once
> you get the jumpers placed = correctly.
>
 
------=_NextPart_000_00AD_01B42850.D5711A20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 20: 4:34 2000 Delivered-To: freebsd-current@freebsd.org Received: from amail.mot.chalmers.se (amail.mot.chalmers.se [129.16.27.17]) by hub.freebsd.org (Postfix) with ESMTP id E9A6437C04F; Sat, 8 Jul 2000 20:04:27 -0700 (PDT) (envelope-from Antigen@mot.chalmers.se) Received: by amail.mot.chalmers.se with Internet Mail Service (5.5.2650.21) id <3LB392DD>; Sun, 9 Jul 2000 05:02:56 +0200 Message-ID: <9B06CB528285D31192F400A0C9EC1914604EBA@amail.mot.chalmers.se> From: Antigen To: "'robert@superjake.net'" , "'freebsd-questions@FreeBSD.ORG'" , "'freebsd-current@FreeBSD.ORG'" Subject: Antigen found JS/Kak.Worm virus Date: Sun, 9 Jul 2000 05:02:52 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Antigen for Exchange found Unknown infected with JS/Kak.Worm virus. The file is currently Deleted. The message, "Re: SCSI Question", was sent from Josh Paetzel and was discovered in IMC Queues\Inbound located at Chalmers/MOT/AMAIL. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 20: 5:14 2000 Delivered-To: freebsd-current@freebsd.org Received: from cliffie.read.tasc.com (cliffie.read.tasc.com [147.81.255.35]) by hub.freebsd.org (Postfix) with ESMTP id 8F31F37BF44; Sat, 8 Jul 2000 20:05:08 -0700 (PDT) (envelope-from ANTIGEN_NTREMA53@tasc.com) Received: from ntrema53.read.tasc.com (ntrema53.read.tasc.com [147.81.245.153]) by cliffie.read.tasc.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id XAA10770; Sat, 8 Jul 2000 23:04:06 -0400 (EDT) Received: by ntrema53.read.tasc.com with Internet Mail Service (5.5.2650.21) id ; Sat, 8 Jul 2000 23:04:35 -0400 Message-ID: From: ANTIGEN_NTREMA53 To: "'robert@superjake.net'" , "'freebsd-questions@FreeBSD.ORG'" , "'freebsd-current@FreeBSD.ORG'" Subject: Antigen found WScript/Kak.worm virus Date: Sat, 8 Jul 2000 23:04:26 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Antigen for Exchange found Unknown infected with WScript/Kak.worm virus. The file is currently Deleted. The message, "Re: SCSI Question", was sent from Josh Paetzel and was discovered in IMC Queues\Inbound located at TASC/TASC/NTREMA53. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 22:22:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 1879137B6EB; Sat, 8 Jul 2000 22:22:27 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id XAA12359; Sat, 8 Jul 2000 23:22:26 -0600 (MDT) (envelope-from ken) Date: Sat, 8 Jul 2000 23:22:26 -0600 From: "Kenneth D. Merry" To: net@FreeBSD.ORG Subject: new zero copy sockets and NFS patches Message-ID: <20000708232226.A12332@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ -arch and -current BCC'ed for wider coverage, please direct followups to -net and/or me ] I have put a new copy of the zero copy sockets and NFS patches, against -current as of early July 8th, 2000, here: http://people.FreeBSD.ORG/~ken/zero_copy/ Feedback would be very welcome, we haven't gotten much response on this yet. Besides being generated against a newer version of -current, the following things have changed in the new patches posted above: - There was a potential panic caused by a bug in the driver side of the header splitting code. The bug only popped up with non-split packets that were long enough to fill up a mbuf. This generally meant IP fragments with a non-zero fragment offset, usually generated by NFS reads. Essentially the length of the initial receive buffer in the mbuf chain was overstated by two bytes, which caused the next mbuf pointer in the next contiguous mbuf to get partially overwritten. That could cause a panic in some situations. Thanks to Drew Gallatin for tracking this one down. - We now do header splitting on IP fragments with a fragment offset greater than 0. Thanks to Justin Gibbs for the idea. - The Tigon driver now loads and unloads cleanly. Thanks to Drew Gallatin for getting this working. - Outgoing IP fragments are now generated in page-multiple chunks if the outgoing interface's MTU is greater than a page in size. This helps receive-side bandwidth NFS significantly, since page flipping techniques can be used. Thanks to Drew Gallatin for this performance enhancement. Also, there are some new benchmark results in the benchmarks section of the web page -- Drew Gallatin has achieved 986Mbps TCP throughput with netperf, and 100MB/sec throughput over NFS. See the web page for a more detailed explanation of the hardware, conditions, etc. For those of you who missed the first message about this code (that went out to -net, -arch and -current), here's a quick list of what is included in the code: - Two sets of zero copy send code, written by Drew Gallatin and Robert Picco . - Zero copy receive code, written by Drew Gallatin. - Zero copy NFS code, written by Drew Gallatin. - Header splitting firmware for Alteon's Tigon II boards (written by me), based on version 12.4.11 of their firmware. This is used in combination with the zero copy receive code to guarantee that the payload of TCP or UDP packet is placed into a page-aligned buffer. - Alteon firmware debugging ioctls and supporting routines for the Tigon driver (also written by me). This will help anyone who is doing firmware development under FreeBSD for the Tigon boards. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 23:16:13 2000 Delivered-To: freebsd-current@freebsd.org Received: from gateway.posi.net (c1096725-a.smateo1.sfba.home.com [24.20.139.104]) by hub.freebsd.org (Postfix) with ESMTP id 102AF37B549 for ; Sat, 8 Jul 2000 23:15:52 -0700 (PDT) (envelope-from kbyanc@posi.net) Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.9.3/8.9.3) with ESMTP id XAA29925; Sat, 8 Jul 2000 23:20:07 -0700 (PDT) (envelope-from kbyanc@posi.net) Date: Sat, 8 Jul 2000 23:20:07 -0700 (PDT) From: Kelly Yancey To: freebsd-current@freebsd.org Cc: sef@kithrup.com, davidn@blaze.net.au Subject: teaching libutil about home directories 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 PR 19755 seeks to teach nologin(8) to look for .nologin files in a user's home directory. However, I feel that such knowledge is better obtained via the nologin capability in login.conf. Basically, file and program capabilities should perform tilde expansion. Libutil already does tilde-expansion for path capabilities, although the implemention would certainly be different for files/programs. The problem is that the libutil interface does not differentiate between strings, files, and programs. User-land utilities call login_getcapstr() to get capabilitiy values for any of these types. What would be needed is a separate interface, login_getcapfile, specifically for files/programs. Unfortunately, this would then require modifying all user-land utilities to use the new interface. Is this acceptable? Is so, I'll have patches together for review shortly. Kelly -- Kelly Yancey - kbyanc@posi.net - Belmont, CA System Administrator, eGroups.com http://www.egroups.com/ Maintainer, BSD Driver Database http://www.posi.net/freebsd/drivers/ Coordinator, Team FreeBSD http://www.posi.net/freebsd/Team-FreeBSD/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Jul 8 23:17:10 2000 Delivered-To: freebsd-current@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 1C0CD37C153; Sat, 8 Jul 2000 23:17:02 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.9.3/8.9.3) with ESMTP id XAA04560; Sat, 8 Jul 2000 23:17:00 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200007090617.XAA04560@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: obrien@FreeBSD.ORG Cc: current@FreeBSD.ORG Subject: Re: HEADS UP: cvs commit: src/lib/libftpio Makefile (fwd) In-Reply-To: Message from "David O'Brien" of "Sat, 08 Jul 2000 18:40:28 PDT." <20000708184028.C26711@dragon.nuxi.com> Date: Sat, 08 Jul 2000 23:17:00 -0700 From: Peter Wemm Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "David O'Brien" wrote: > On Thu, Jul 06, 2000 at 06:05:50PM -0700, Peter Wemm wrote: > > This is *not* the same as the a.out behavior which searched directories to > > find the largest number. ELF uses the symlinks and no searching, which is > > why ld and ld-elf.so is faster when locating directories and does not need > > ldconfig or the ld.so.cache. > > Correct me if I am wrong, ld-elf.so does still need ldconfig. And > ld-elf.so does not use the symlink (if it did compat libs would not > work). The ELF ldconfig does nothing except set the default search path for finding libraries: peter@t8000[12:54am]~-183> hd /var/run/ld-elf.so.hints 00000000 45 68 6e 74 01 00 00 00 80 00 00 00 37 00 00 00 |Ehnt........7...| 00000010 00 00 00 00 36 00 00 00 00 00 00 00 00 00 00 00 |....6...........| 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000080 2f 75 73 72 2f 6c 69 62 3a 2f 75 73 72 2f 6c 69 |/usr/lib:/usr/li| 00000090 62 2f 63 6f 6d 70 61 74 3a 2f 75 73 72 2f 58 31 |b/compat:/usr/X1| 000000a0 31 52 36 2f 6c 69 62 3a 2f 75 73 72 2f 6c 6f 63 |1R6/lib:/usr/loc| 000000b0 61 6c 2f 6c 69 62 00 |al/lib.| ld(1) resolves the symlinks. ld-elf.so.1 searches for the full filename in the directory path from ldconfig -elf. objdump --all-headers /usr/bin/vi: ... Dynamic Section: NEEDED libncurses.so.5 NEEDED libc.so.4 .. All ld-elf.so.1 has to do is look for the first one of: /usr/lib/libc.so.4 /usr/lib/compat/libc.so.4 /usr/X11R6/lib/libc.so.4 /usr/local/lib/libc.so.4 This is just done with a series of open(2) calls and is very cheap. The first one it can open it uses. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message