Re: cvs commit: src/usr.bin/ftp Makefile cmds.c cmdtab.c complet

2001-12-14 Thread Ruslan Ermilov
On Thu, Dec 13, 2001 at 09:13:19PM -0500, Mike Heffner wrote: On 14-Dec-2001 Mike Heffner wrote: | | Differences/Losses: | | *) FTP_PASSIVE_MODE vs. FTP_MODE s/FTP_MODE/FTPMODE As a followup clarification, ftp(1) will attempt to use passive mode by default, and fall back to

Solved (Re: -current vs. -stable network performance)

2001-12-14 Thread Luigi Rizzo
In case you are interested, I found why CURRENT performed so badly. It turns out that CURRENT still does not have the fix to M_LEADINGSPACE that permits writing into non-shared mbufs. This caused the header of forwarded packets to be pulled up in a separate buffer, and triggered a known (to me

Re: dhclient

2001-12-14 Thread Robert Watson
On Thu, 13 Dec 2001, Edwin Culp wrote: Is anyone using dhclient successfully with Current of the last week or so? I don't use it all the time but I have been trying for the last couple of days without success. It accesses the server and changes the interface ip to 0.0.0.0 netmask

Re: Solved (Re: -current vs. -stable network performance)

2001-12-14 Thread Peter Wemm
Luigi Rizzo wrote: [..] The change below has been committed to STABLE 7 weeks ago, but did not go into CURRENT because there was some disagreement on the semantics of M_LEADINGSPACE. However I would strongly vote for committing this change to CURRENT as well, given the huge performance

Re: Solved (Re: -current vs. -stable network performance)

2001-12-14 Thread Terry Lambert
Peter Wemm wrote: Luigi Rizzo wrote: [..] The change below has been committed to STABLE 7 weeks ago, but did not go into CURRENT because there was some disagreement on the semantics of M_LEADINGSPACE. However I would strongly vote for committing this change to CURRENT as well, given

Re: Solved (Re: -current vs. -stable network performance)

2001-12-14 Thread Luigi Rizzo
On Fri, Dec 14, 2001 at 02:34:36AM -0800, Peter Wemm wrote: Luigi Rizzo wrote: [..] The change below has been committed to STABLE 7 weeks ago, but did not go into CURRENT because there was some disagreement on the ... Incidently, this is a poster-child example of why fixes are not to go to

Re: change to ZALLOC(9) man page

2001-12-14 Thread Ian Dowse
In message [EMAIL PROTECTED], Ju lian Elischer writes: By my reading of the code I would like to make the following changes to the documentation for the zone(9) man page; Yes! Please do. I must have read that page about 10 times and been annoyed at its misleading information, but I never got

HEADS UP: smbfs userland imported

2001-12-14 Thread Sheldon Hearn
Hi folks, I've just imported the userland components of smbfs into HEAD. I don't think anyone's going to have problems with this, because I tested the import quite carefully. But please report problems ASAP. I'll try to check mail periodically over the week-end. Ciao, Sheldon. To

Re: sound/pci/ich drvr hang on Dell OptiPlex 150

2001-12-14 Thread Stijn Hoop
Hi, On Fri, Dec 14, 2001 at 12:15:54PM +0530, Bruce Montague wrote: Two solid problems occur with the sound/pci/ich driver for the ICH2 (Intel 82801BA I/O Controller Hub) on Dell Optiplex 150 PCs. One problem (a fatal hang) occurs under 4.4-RELEASE, 4.4-STABLE, and 5.0-CURRENT (as of

Merry Christmas

2001-12-14 Thread Santa
Title: Untitled Document

Re: Solved (Re: -current vs. -stable network performance)

2001-12-14 Thread David Malone
On Fri, Dec 14, 2001 at 03:16:57AM -0800, Luigi Rizzo wrote: How about fixing it for real as described in the commit message? The real fix, for me, is the one-line change to M_LEADINGSPACE. The one described in the commit message was just Bosko's point of view, with which I and many others

Re: dhclient

2001-12-14 Thread Edwin Culp
Robert, I got it working by adding a dhclient configuration file rather than using the empty file that I have always used. I'm not sure why but it works:-) I'll break out ethereal a little later and see if I can figure it out. Thanks, ed Quoting Robert Watson [EMAIL PROTECTED]: On Thu,

My naive addendum to Matt's recommended dev/test env

2001-12-14 Thread Peter Dufault
I've been off FreeBSD for a while. I've decided to follow Matt Dillon's recommendations for setting up an NFS development system from -stable to -current. Here are my notes for the naive on doing this. This is all obvious, if you're new or out of it this will save you a few hours getting up to

endless loop with gettimeofday in mozilla

2001-12-14 Thread Steven G. Kargl
I suspect that this a mozilla problem, but I only recently have run into this. Rebuilt world and kernel from -current sources from Dec 13 16:15 PDT. If I open the mail/news component of mozilla, and try to change the view to only unread messages X11 freezes. Switching to a vty and running

Re: HEADS UP: smbfs userland imported

2001-12-14 Thread Sheldon Hearn
On Fri, 14 Dec 2001 14:22:00 +0200, Sheldon Hearn wrote: I've just imported the userland components of smbfs into HEAD. I don't think anyone's going to have problems with this, because I tested the import quite carefully. But please report problems ASAP. I'll try to check mail

ibcs

2001-12-14 Thread Brian K. White
is anyone using ibcs on current ? Brian K. White -- [EMAIL PROTECTED] -- http://www.aljex.com/bkw/ +[+++[-]-]+..+.+++.-.[+---]++. filePro BBx Linux SCO Prosper/FACTS AutoCAD #callahans Satriani To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe

Re: HEADS UP: smbfs userland imported

2001-12-14 Thread Julian Elischer
excuse the ignorance.. doe sthis REPLACE the kernel smbfs, or extend it? On Sat, 15 Dec 2001, Sheldon Hearn wrote: On Fri, 14 Dec 2001 14:22:00 +0200, Sheldon Hearn wrote: I've just imported the userland components of smbfs into HEAD. I don't think anyone's going to have problems

mountd(8) leaving filesystems exported

2001-12-14 Thread Ian Dowse
There are quite a few assumptions in mountd(8) about the layout of the per-filesystem mount(2) `data' struct, which make the code quite ugly. It uses a union to ensure that it supplies a large enough structure to mount(2), but regardless of the filesystem type, it always initialises the UFS

Re: endless loop with gettimeofday in mozilla

2001-12-14 Thread Bernd Walter
On Fri, Dec 14, 2001 at 12:40:21PM -0800, Steven G. Kargl wrote: I suspect that this a mozilla problem, but I only recently have run into this. Rebuilt world and kernel from -current sources from Dec 13 16:15 PDT. If I open the mail/news component of mozilla, and try to change the view to

Re: mountd(8) leaving filesystems exported

2001-12-14 Thread Terry Lambert
Ian Dowse wrote: There are quite a few assumptions in mountd(8) about the layout of the per-filesystem mount(2) `data' struct, which make the code quite ugly. It uses a union to ensure that it supplies a large enough structure to mount(2), but regardless of the filesystem type, it always