Re: RTLD_GLOBAL/RTLD_LOCAL dlopen mode flags

1999-11-02 Thread Max Khon

hi, there!

On Mon, 1 Nov 1999, John Polstra wrote:

> > Are there any plans to implement RTLD_GLOBAL/RTLD_LOCAL mode flags for
> > dlopen?
> 
> RTLD_GLOBAL has been supported in -current since around the
> beginning of September.

great. I think that manpage should be brought up to date
with -current dlopen impl. (it says nothing about RTLD_GLOBAL)
 
> What is RTLD_LOCAL, and which OS supports it?  I've never heard of
> that one.

The default behavior is RTLD_LOCAL but nevertheless Solaris and Linux
define it as
#define RTLD_LOCAL 0x
for Unix98 conformance

/fjoe



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Hiding dynamic IPs

1999-11-02 Thread Graham Wheeler

Hi all

I have a program which requires static IP addresses for various reasons. It
could be changed to handle dynamic IPs but this would be a fairly significant
undertaking and would probably be quite kludgy, involving the generation of
scripts that have to be run every time the link goes up and down, etc.

Anyway, I want to use it now over a PPP link with dynamic address allocation.
I'm trying to figure out a good way to do this. I reckon that it should be
possible by using some kind of local tunnel that has a fixed IP on one end that
the program can talk to, that will in turn talk to the PPP link.

I tried creating an additional tun device and ifconfigging it with the two 
addresses, but it doesn't seem to work at all (if I ping either address I get
no response, nor do I see any Ipkts or Opkts in the netstat -in output).

Is there some other way of doing this? Ideally I want to avoid ipfw tricks,
as ipfw is being used for other purposes on this host and I would like to
keep the problems separate.

TIA
gram
 -- 
Dr Graham WheelerE-mail: [EMAIL PROTECTED]
Cequrux Technologies Phone:  +27(21)423-6065/6/7
Firewalls/Virtual Private Networks   Fax:+27(21)24-3656
Data/Network Security SpecialistsWWW:http://www.cequrux.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Ping - sized tests with 0% and 100% packet loss! Any ideas?

1999-11-02 Thread Josef Karthauser

On Mon, Nov 01, 1999 at 06:24:18PM -0800, Tamiji Homma wrote:
> > Happens to me to on -current, but not -stable. With -current's
> > ping on stable it doesn't happen, and with -stable's ping on
> > -current it still happens. Therefore it must be a kernel bug.
> 
> Can you recompile ping without -O (or -O0)?
> 
> Tammy

Yep!  That fixes it.

Joe
-- 
Josef KarthauserFreeBSD: How many times have you booted today?
Technical Manager   Viagra for your server (http://www.uk.freebsd.org)
Pavilion Internet plc.  [[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: NASM programs for freebsd

1999-11-02 Thread Oren Sarig

Well, there are a few catches here.

1) You might have compiled things wrong. Try compiling it this way:
nasm -f elf -o test.o test.asm
ld -o test test.o
You can also link a gcc .o file in here

2) FreeBSD uses protected mode. DOS originally didn't, so it has backwards
compatability, but fbsd doesn't. This means you can't use BIOS and DOS
interrupts (int xx). A possible solution is to link your program to libc
and use printf functions and the like from your asm progs, though I assume
this is not what you want.

Another possible solution is to use [org 100] in the beginning of your
programs, compile them with:
nasm -f bin -o test.com test.asm
and use a DOS emulator to run the program. Or maybe just get DOS :)

--
Oren Sarig
[EMAIL PROTECTED]

At 18:41 31/10/99 -0500, Isaac Flemming wrote:
>
> Hello all,
>
> I am currently enrolled in college course that requires us to use the
>Netwide Assembler (NASM). This creates a small problem for me, because I
>do not have a DOS box in my room, and do not know how to get NASM to work
>the way I expect it to under FreeBSD.
>
> I noticed that NASM is located in the ports collection so I compiled it
>and have used it to assemble the .asm assembly code I used for DOS in
>class. The assembler does not give me any errors, but I cannot seem to get
>the programs to execute. In my most recent attempt I compiled the .asm
>into aoutb format and tried to link it into a .c program which calls it.
>The gcc c compiler gave me errors at this point, and I am now at a
>compleat loss. I have looked around FreeBSD-questions, and hackers
>archives for several hours but cannot seem to find anything that helps me. 
>Is there any one out there that knows how to get NASM to make a file I can
>execute, or link into a c program!? Even a simple "hello world" example
>may help. 
>
> Thanks a bunch in advance
> Isaac D. Flemming
>
>---

>Isaac D. Flemming
>Senior Computer Science Major
>Mount Vernon Nazarene College
>
>Email: [EMAIL PROTECTED]
>Phone: (740) 397-6862 x7604
>
>
>
>
>To Unsubscribe: send mail to [EMAIL PROTECTED]
>with "unsubscribe freebsd-questions" in the body of the message
>



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: FreeBSD at IETF (was: Re: IETF gettogether)

1999-11-02 Thread Graham Wheeler

On Tue, 02 Nov 1999, Robert Watson wrote:
> On Thu, 21 Oct 1999, Robert Watson wrote:
> 
> > How about Wednesday for dinner (1730-1930 EST)  before the open plenary? 
> 
> Anyhow, for anyone interested--we'll be holding a FreeBSD-oriented dinner
> at November IETF in Washington, DC, and the details are above :-).

Okay, and presumably the meeting time then is 1730EST?

g
-- 
Dr Graham WheelerE-mail: [EMAIL PROTECTED]
Cequrux Technologies Phone:  +27(21)423-6065/6/7
Firewalls/Virtual Private Networks   Fax:+27(21)24-3656
Data/Network Security SpecialistsWWW:http://www.cequrux.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: FreeBSD at IETF (was: Re: IETF gettogether)

1999-11-02 Thread Jonathan M. Bresler


> How about Wednesday for dinner (1730-1930 EST)  before the open
plenary?

where would we be getting together?


jmb


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



wfd0: i/o error, status=51 , error=40

1999-11-02 Thread Gustavo Vieira Goncalves Coelho Rios

That is the message i get at the console when i try to write some thing
in my IDE ZIP drive!
Have anyone already faced such a problem ?
Does any one here know how to fix it ?


The message appears at my console forever, and the only thing i can do
is to power-off the system by hand, even a "halt" or a "reboot" does not
work. Other commands like "sync", "df" , etc don't work too.

Oh yeah! my System is 3.3Stable!


Any tip ?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: wfd0: i/o error, status=51 , error=40

1999-11-02 Thread Chris D. Faulhaber

On Tue, 2 Nov 1999, Gustavo Vieira Goncalves Coelho Rios wrote:

> That is the message i get at the console when i try to write some thing
> in my IDE ZIP drive!
> Have anyone already faced such a problem ?
> Does any one here know how to fix it ?
> 

Could you provide the relevant part of dmesg WRT to the Zip drive model
number.  This sounds like what happens when the wfd driver does not
properly recognize the Zip drive inquiry string and does not set maxblks
to 64 (see PR kern/12095).

-
Chris D. Faulhaber <[EMAIL PROTECTED]>  |  All the true gurus I've met never
System/Network Administrator,|  claimed they were one, and always
Reality Check Information, Inc.  |  pointed to someone better.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Vinum or CCD? (was: CCD questions)

1999-11-02 Thread Matthew Dillon


:>
:> Because Vinum is being maintained, and because Vinum will allow you to
:> stripe your disks instead of simple concatenate them, which will probably
:> result in better I/O rates.
:
:In fact, CCD will stripe for you as well.  In such configurations,
:there isn't much difference between CCD and Vinum performance.  That
:changes a lot when you get to mirroring.
:
:Greg

Well, I actually fixed the biggest performance issue with CCD's mirroring
code.  But what it does not do is figure out whether part of a mirror is
bad or not.  Anyone doing mirroring should definitely use vinum.

-Matt
Matthew Dillon 
<[EMAIL PROTECTED]>


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Vinum or CCD? (was: CCD questions)

1999-11-02 Thread Jim Carroll

> :> Because Vinum is being maintained, and because Vinum will allow you to
> :> stripe your disks instead of simple concatenate them, which will probably
> :> result in better I/O rates.

 Can someone provide a URL for Vinum.  I have been following this thread for
 awhile, and would like to see more information.
 
 Thanks
 
---
Jim C., President   | C A R R O L L - N E T, Inc.
201-488-1332| New Jersey's Premier Internet Service Provider
www.carroll.com |


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Vinum or CCD? (was: CCD questions)

1999-11-02 Thread David Scheidt

On Tue, 2 Nov 1999, Jim Carroll wrote:

> > :> Because Vinum is being maintained, and because Vinum will allow you to
> > :> stripe your disks instead of simple concatenate them, which will probably
> > :> result in better I/O rates.
> 
>  Can someone provide a URL for Vinum.  I have been following this thread for
>  awhile, and would like to see more information.

Why don't you start with the vinum man pages, in sections 4 and 8 of manual?
They are quite helpful, and point you to http://www.lemis.com/vinum.html, as
well.

David Scheidt



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



aio Functions

1999-11-02 Thread Ricardo Bernardini

Hello list!

I'm starting with aio functions (aio_read, aio_return, etc.), I've made them 
work with disk file I/O, now I'm trying with TCP sockets not with the same 
success. Does anyone know if it is posible to do what I'm trying? Or where 
to find more info about this function group? I'just read the man pages about 
them.

Thanks.
Ricardo

PD: I've made to this list 'cause somebody told me I could find an answer 
here. If this is not the subject of the list please let me know.

__
Get Your Private, Free Email at http://www.hotmail.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: VTun...

1999-11-02 Thread Luigi Rizzo

> > I notice that you support traffic shaping.  I was wondering 
> > if you plan to 
> > offer support for slower than 8KBytes / sec (64Kbits/s).  

if you are on FreeBSD you can as well use dummynet for traffic
shaping.

cheers
luigi



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: IDA driver issues upon installation. Probing devices hangs

1999-11-02 Thread Jan Østerskov

On Tue, 02 Nov 1999, Mike Smith wrote:
> None of the interested developers have access to one of these machines 
> anymore; it's quite possible that things have been changed or broken
> to some degree of late.
> 
> > I am trying to install the stable snapshot from 10301999 on a compaq
> > proliant 4500 with a smart array controller.  I recompile the installation
> 
> -- 
> \\ Give a man a fish, and you feed him for a day. \\  Mike Smith
> \\ Tell him he should learn how to fish himself,  \\  [EMAIL PROTECTED]
> \\ and he'll hate you for a lifetime. \\  [EMAIL PROTECTED]
> 

I also have a problem with the probing of devices.
When ida0 is in the kernel it can't probe any IDE devices (read CD's)
A month ago - Current was able to do so 
I have adressed this problem befor but the only answer i got was
to disable the wdc controller. I did, but it is hardly the solution
in the long run ??

Can anyone help ??


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: FreeBSD at IETF (was: Re: IETF gettogether)

1999-11-02 Thread Robert Watson

On Tue, 2 Nov 1999, Jonathan M. Bresler wrote:

> 
> > How about Wednesday for dinner (1730-1930 EST)  before the open
> plenary?
> 
> where would we be getting together?

As I mention in my email, probably initially in the lobby, and then moving
on to some local restaurant.  If we get a number of people in advance, we
can even make a reservation, although I'm tempted not to do that as it's
nicer to have an open arrangement.

  Robert N M Watson 

[EMAIL PROTECTED]  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 [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: FreeBSD at IETF (was: Re: IETF gettogether)

1999-11-02 Thread Robert Watson

On Tue, 2 Nov 1999, Graham Wheeler wrote:

> On Tue, 02 Nov 1999, Robert Watson wrote:
> > On Thu, 21 Oct 1999, Robert Watson wrote:
> > 
> > > How about Wednesday for dinner (1730-1930 EST)  before the open plenary? 
> > 
> > Anyhow, for anyone interested--we'll be holding a FreeBSD-oriented dinner
> > at November IETF in Washington, DC, and the details are above :-).
> 
> Okay, and presumably the meeting time then is 1730EST?

Yes--the Lobby at 1730EST (5:30pm) -- we'll sit around for five minutes to
make sure we have everyone who's interested, and then head somewhere.

I hope to be at the secure syslog BOF just before then, and walk on over.
I plan not to get caught in any conversations at the end of the meeting
:-).  To make it blatently obvious who I am, I should probably where a TIS
or DNSsec tshirt or something.  Of course, if there's a DNSsec-related
meeting that day, everyone will be wearing their DNSsec t-shirts..

  Robert N M Watson 

[EMAIL PROTECTED]  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 [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



FreeBSD at IETF (was: Re: IETF gettogether)

1999-11-02 Thread Robert Watson

On Thu, 21 Oct 1999, Robert Watson wrote:

> How about Wednesday for dinner (1730-1930 EST)  before the open plenary? 

Since no one has objected to this time, I thought I'd repost and notify
those interested that I think the Wednesday dinner sounds like a good time
to do it.  Offhand, I forget the restaurants around that area of DC, but
there's quite a few if I recall.  Unfortunately that would be rush hour,
so we probably wouldn't want to drive anywhere.

Since this is the same hotel as the last DC IETF, I seem to recall that
the lobby was of a decent size, and probably wouldn't be a bad place to
meet--perhaps right by the front doors to one side?  Maybe Jonathan can
recycle a FreeBSDCon FreeBSD sign and wave it to attract attention? :-)

Anyhow, for anyone interested--we'll be holding a FreeBSD-oriented dinner
at November IETF in Washington, DC, and the details are above :-).

  Robert N M Watson 

[EMAIL PROTECTED]  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 [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



vn question

1999-11-02 Thread M. Warner Losh

Is the vn device able to read 4.3G files and treat them like a disk?  I
know we use it for building floppies and the like, but a 4.3G disk image
from an unnamed laptop is what I have a need to access...  Will it read the
mbr and give me the slices that were there when I had the bits on a disk
rather than a file residing in the file system?

Thanks much...

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: wfd0: i/o error, status=51 , error=40

1999-11-02 Thread Gustavo V G C Rios

"Chris D. Faulhaber" wrote:
> 
> On Tue, 2 Nov 1999, Gustavo Vieira Goncalves Coelho Rios wrote:
> 
> > That is the message i get at the console when i try to write some thing
> > in my IDE ZIP drive!
> > Have anyone already faced such a problem ?
> > Does any one here know how to fix it ?
> >
> 
> Could you provide the relevant part of dmesg WRT to the Zip drive model
> number.  This sounds like what happens when the wfd driver does not
> properly recognize the Zip drive inquiry string and does not set maxblks
> to 64 (see PR kern/12095).
> 
> -
> Chris D. Faulhaber <[EMAIL PROTECTED]>  |  All the true gurus I've met never
> System/Network Administrator,|  claimed they were one, and always
> Reality Check Information, Inc.  |  pointed to someone better.


This is what i get from dmesg output: (only relevant part)
...
wdc1 at 0x170-0x177 irq 15 on isa
wdc1: unit 0 (atapi): ,
removable, intr, iordis
wfd0: medium type unknown (no disk)
ppc0 at 0x378 irq 7 flags 0x40 on isa
...



Oops, I think i have problems here!



-- 
Message of the day:

The trouble with doing something right the first time is that nobody
appreciates how difficult it was.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: wfd0: i/o error, status=51 , error=40

1999-11-02 Thread Chris D. Faulhaber

On Tue, 2 Nov 1999, Gustavo V G C Rios wrote:

> "Chris D. Faulhaber" wrote:
> > 
> > On Tue, 2 Nov 1999, Gustavo Vieira Goncalves Coelho Rios wrote:
> > 
> > > That is the message i get at the console when i try to write some thing
> > > in my IDE ZIP drive!
> > > Have anyone already faced such a problem ?
> > > Does any one here know how to fix it ?
> > >
> > 
> > Could you provide the relevant part of dmesg WRT to the Zip drive model
> > number.  This sounds like what happens when the wfd driver does not
> > properly recognize the Zip drive inquiry string and does not set maxblks
> > to 64 (see PR kern/12095).
> > 
> > -
> > Chris D. Faulhaber <[EMAIL PROTECTED]>  |  All the true gurus I've met never
> > System/Network Administrator,|  claimed they were one, and always
> > Reality Check Information, Inc.  |  pointed to someone better.
> 
> 
> This is what i get from dmesg output: (only relevant part)
> ...
> wdc1 at 0x170-0x177 irq 15 on isa
> wdc1: unit 0 (atapi): ,
> removable, intr, iordis
> wfd0: medium type unknown (no disk)
> ppc0 at 0x378 irq 7 flags 0x40 on isa
> ...
> 

That's the same as my problem drive.  Apply the patch in the PR for the
driver to limit maxblks properly by using a strncmp vs. strcmp.

-
Chris D. Faulhaber <[EMAIL PROTECTED]>  |  All the true gurus I've met never
System/Network Administrator,|  claimed they were one, and always
Reality Check Information, Inc.  |  pointed to someone better.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



kernel config not remembered in 3.2-RELEASE

1999-11-02 Thread Guy Middleton

I just installed 3.2-RELEASE on a new machine, and discovered that the
kernel config modifications (made with 'boot -c' at boot time) are not
remembered.  Has the mechanism for saving them changed?  They used to be
stored in /kernel.config, but that file appears not to be used now.

 -Guy Middleton


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



RE: FreeBSD reboots

1999-11-02 Thread Charles Randall

From: Julian Elischer [mailto:[EMAIL PROTECTED]]
>I have a patch to fix the fin-wait-2 problem.. 

Any reason this could't be applied to -stable with a corresponding sysctl
variable?

Charles


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Netgear FA410 pccard ethernet?

1999-11-02 Thread Xuan Chen

Mine is Netgear FA310tx. It was "detected", but under the name of the
network card from another vendor---En Lite...or something similar. But,
did not work at all. Any idea?

Thanks.
-chen

On Mon, 1 Nov 1999, Guy Middleton wrote:

> Does anybody have a Netgear FA410 pccard ethernet adapter working with
> FreeBSD?  I'm using version 3.2, installed from the distribution CD.
> 
>  -Guy Middleton
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-hackers" in the body of the message
> 



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Netgear FA410 pccard ethernet?

1999-11-02 Thread Gert-Jan Vons

At 13:58 1999-11-02 -0800, you wrote:

>Mine is Netgear FA310tx. It was "detected", but under the name of the
>network card from another vendor---En Lite...or something similar. But,
>did not work at all. Any idea?

My Netgear FA310TX (Lite-On chipset) is detected as

   pn0: <82c169 PNIC 10/100BaseTX> rev 0x20 int a irq 15 on pci0.9.0
   pn0: Ethernet address: 00:a0:cc:53:1a:e6
   pn0: autoneg complete, link status good (full-duplex, 100Mbps)

under fbsd3.3, and works like a charm...

 Gert-Jan



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Granularity of disk I/O

1999-11-02 Thread Zhihui Zhang


It is said that the granularity of disk I/O is a sector. I read a little
bit of the source code isa/wd.c, which I think is the driver of IDE disks. 
I find out that the disk can perform multi-block I/O sometimes.  Does this
mean the granularity of disk I/O can be multi-sector?  If the disk can
perform DMA, what is the usual DMA size?  Is the granularity the DMA size
in this case?

If a buffer cache is larger than one sector, it should be split into
sectors before I/O.  If an I/O on a buffer fails, can we tell which sector
within that buffer fails?

I am confused with these things and it is probably that my questions are
confusing too. 

Any help or hints are appreciated.

-Zhihui



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Granularity of disk I/O

1999-11-02 Thread Greg Lehey

On Tuesday,  2 November 1999 at 17:10:41 -0500, Zhihui Zhang wrote:
>
> It is said that the granularity of disk I/O is a sector. I read a little
> bit of the source code isa/wd.c, which I think is the driver of IDE disks.
> I find out that the disk can perform multi-block I/O sometimes.  Does this
> mean the granularity of disk I/O can be multi-sector?

I think you're getting bogged down in terminology.  I understand
"granularity" to imply the steps in which a quantity can be increased.
In this case, a disk transfer is a whole number of sectors between 1
and 256 (though there's an artificial limit which makes it difficult
to transfer more than 60 at a time).  Using my definition, it would be
correct to say that the granularity is 1 sector.

> If the disk can perform DMA, what is the usual DMA size?

It's normally the size of the transfer, but in the case of IDE drives
it can be limited to a maximum value by the the disk flags.

> If a buffer cache is larger than one sector, it should be split into
> sectors before I/O.

No, that would give lousy performance.  Buffer cache is also allocated
in blocks corresponding to the transfer size.

> If an I/O on a buffer fails, can we tell which sector within that
> buffer fails?

I don't think we do that.  The way to recover would be to retry the
I/O a sector at a time.  That way, you waste time in the exceptional
case only.

Greg
--
Finger [EMAIL PROTECTED] for PGP public key
See complete headers for address and phone numbers


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



RE: FreeBSD reboots

1999-11-02 Thread Julian Elischer

because it breaks teh standard and teh networking guru's don't like it.

Basically in the face of broken clients, (read PCs) the TCP protocol
can gather an unacceptable collection of fin-wait-2 sessions. THis is in
the way the protocol was designed. To reduce it we revert to fin-wait-1
and resent the fin. which results in either a FIN or a RST from th eother
end if it's still alive. This gets rid of some of the sessions. but it is
admittedly a hack.

On Tue, 2 Nov 1999, Charles Randall wrote:

> From: Julian Elischer [mailto:[EMAIL PROTECTED]]
> >I have a patch to fix the fin-wait-2 problem.. 
> 
> Any reason this could't be applied to -stable with a corresponding sysctl
> variable?
> 
> Charles
> 
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-net" in the body of the message
> 



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: kernel config not remembered in 3.2-RELEASE

1999-11-02 Thread Wes Peters

Guy Middleton wrote:
> 
> I just installed 3.2-RELEASE on a new machine, and discovered that the
> kernel config modifications (made with 'boot -c' at boot time) are not
> remembered.  Has the mechanism for saving them changed?  They used to be
> stored in /kernel.config, but that file appears not to be used now.

Nope, it just got inadvertantly broken in 3.2-R.  Depending on your band-
width, either CVSup or a 3.3 CD set will help squash this bug.  ;^)

-- 
"Where am I, and what am I doing in this handbasket?"

Wes Peters Softweyr LLC
[EMAIL PROTECTED]   http://softweyr.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Netgear FA410 pccard ethernet?

1999-11-02 Thread Wes Peters

Xuan Chen wrote:
> 
> On Mon, 1 Nov 1999, Guy Middleton wrote:
> 
> > Does anybody have a Netgear FA410 pccard ethernet adapter working with
> > FreeBSD?  I'm using version 3.2, installed from the distribution CD.
> 
> Mine is Netgear FA310tx. It was "detected", but under the name of the
> network card from another vendor---En Lite...or something similar. But,
> did not work at all. Any idea?

Note Guy is asking about a pccard, i.e. PCMCIA adapter and everyone is
answering with hints about a PCI card.

The NetGear FA310TX uses a LiteOn PNIC chip, so you will need to have the pn
device configured in your kernel in order to use it.

As far as the FA410 goes, you might try some permutation of "ed".  Their 
datasheet on the website is singularly unhelpful:

http://www.netgearinc.com/products/ds_fa410tx/index.shtml

-- 
"Where am I, and what am I doing in this handbasket?"

Wes Peters Softweyr LLC
[EMAIL PROTECTED]   http://softweyr.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Vinum or CCD? (was: CCD questions)

1999-11-02 Thread Wes Peters

Jim Carroll wrote:
> 
> > :> Because Vinum is being maintained, and because Vinum will allow you to
> > :> stripe your disks instead of simple concatenate them, which will probably
> > :> result in better I/O rates.
> 
>  Can someone provide a URL for Vinum.  I have been following this thread for
>  awhile, and would like to see more information.

vinum(8) on your nearest FreeBSD system?

-- 
"Where am I, and what am I doing in this handbasket?"

Wes Peters Softweyr LLC
[EMAIL PROTECTED]   http://softweyr.com/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: gas pseudo-ops

1999-11-02 Thread John Polstra

In article <[EMAIL PROTECTED]>,
Stephane E. Potvin <[EMAIL PROTECTED]> wrote:
> Does anyone have any idea where I could find some documentation about
> the following gas pseudo-ops?
>   .type ,@object

There is a type associated with symbol in the object files.  It can be
function (obvious), object (data), or other/unknown.  This pseudo-op
sets the type of a given symbol.

>   .previous

The assembler maintains a stack of sections.  Each time you change
to a new section, it pushes the previous one onto the stack.  The
".previous" pseudo-op pops the stack and changes back to the previous
section.

John
-- 
  John Polstra   [EMAIL PROTECTED]
  John D. Polstra & Co., Inc.Seattle, Washington USA
  "No matter how cynical I get, I just can't keep up."-- Nora Ephron


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: Netgear FA410 pccard ethernet?

1999-11-02 Thread Xuan Chen

Thanks a lot for you all! I got it work now.

Cheers,
-chen

On Tue, 2 Nov 1999, Wes Peters wrote:

> Xuan Chen wrote:
> > 
> > On Mon, 1 Nov 1999, Guy Middleton wrote:
> > 
> > > Does anybody have a Netgear FA410 pccard ethernet adapter working with
> > > FreeBSD?  I'm using version 3.2, installed from the distribution CD.
> > 
> > Mine is Netgear FA310tx. It was "detected", but under the name of the
> > network card from another vendor---En Lite...or something similar. But,
> > did not work at all. Any idea?
> 
> Note Guy is asking about a pccard, i.e. PCMCIA adapter and everyone is
> answering with hints about a PCI card.
> 
> The NetGear FA310TX uses a LiteOn PNIC chip, so you will need to have the pn
> device configured in your kernel in order to use it.
> 
> As far as the FA410 goes, you might try some permutation of "ed".  Their 
> datasheet on the website is singularly unhelpful:
> 
>   http://www.netgearinc.com/products/ds_fa410tx/index.shtml
> 
> -- 
> "Where am I, and what am I doing in this handbasket?"
> 
> Wes Peters Softweyr LLC
> [EMAIL PROTECTED]   http://softweyr.com/
> 



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message