LSI-MegaRAID 150-4 BTX Halted on 5.4, 5.5, 6.1

2006-08-21 Thread Carroll Kong
I am trying to install FreeBSD on a new Intel Server SE7230NH1-E using a PCI-X riser card on the Intel S1475 chassis, pentium D 3.2 gig dual core proc 940. Whenever I try to install using the CDROM for 5.4, 5.5, and 6.1... BTX halts immediately. The second I remove the card, the system boots up f

Re: Relative paths [was: Path transformation]

2006-08-21 Thread mal content
On 21/08/06, Peter Jeremy <[EMAIL PROTECTED]> wrote: On Mon, 2006-Aug-21 16:05:33 +0100, mal content wrote: >I have another favour to ask: Is there a function that can >take two absolute paths and generate a relative path, from >source to destination? I don't think there's any such function. My

Re: global date via module howto

2006-08-21 Thread John-Mark Gurney
Warner Losh wrote this message on Sun, Aug 20, 2006 at 22:01 -0600: > In message: <[EMAIL PROTECTED]> > Roman Kurakin <[EMAIL PROTECTED]> writes: > : I have the following problem: > : module A > : int x; > : > : module B > : extern int x; > : > : Module A is loaded, mo

Re: global data via module howto

2006-08-21 Thread Roman Kurakin
M. Warner Losh: In message: <[EMAIL PROTECTED]> Roman Kurakin <[EMAIL PROTECTED]> writes: : M. Warner Losh wrote: : > In message: <44E87CChttp://comp.krovatka.ru/[EMAIL PROTECTED]> : > Roman Kurakin <[EMAIL PROTECTED]> writes: : > : I have the following problem: : > :

Re: Aqcuiring full path to running process from outside the kernel

2006-08-21 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Dag-Erling Smørgrav <[EMAIL PROTECTED]> typed: > Mike Meyer <[EMAIL PROTECTED]> writes: > > However, you can also make a best effort. Check argv[0] to see if you > > have an absolute path. If not, do what the shell would do to find the > > executable - look for it on $PATH.

Re: Relative paths [was: Path transformation]

2006-08-21 Thread Peter Jeremy
On Mon, 2006-Aug-21 16:05:33 +0100, mal content wrote: >I have another favour to ask: Is there a function that can >take two absolute paths and generate a relative path, from >source to destination? I don't think there's any such function. My suggestion is to roll your own, based on realpath(3) b

Re: PCI express support?

2006-08-21 Thread Julian Elischer
David Gilbert wrote: I got a PCI express version of the Intel gigabit adaptor to try. Heh. Comes with a big-ass heatsink on the card. I found that a bit amusing. But it doesn't probe up. Is this because PCI Express is not supported (1x in this case --- the little slot), or because I need to

Re: [SoC] Jail Resource Limits

2006-08-21 Thread Chris Jones
On 21-Aug-06, at 9:37 AM, Remko Lodder wrote: Before my little question, i would like to take the opportunity to thank you for the hardwork, this is a much requested feature and will greatly appriciated by the crowd :-) Cheers for that!. Thanks! I do some web hosting with jails on the side, a

Re: 6-STABLE snapshot (background fsck) lock-up

2006-08-21 Thread Kostik Belousov
On Mon, Aug 21, 2006 at 12:27:53PM -0400, John Baldwin wrote: > On Thursday 17 August 2006 08:30, Eric Anderson wrote: > > On 08/17/06 07:25, Kostik Belousov wrote: > > > On Thu, Aug 17, 2006 at 07:08:31AM -0500, Eric Anderson wrote: > > >> I've seen this several times now, but this time I got a du

Re: 6-STABLE snapshot (background fsck) lock-up

2006-08-21 Thread John Baldwin
On Thursday 17 August 2006 08:30, Eric Anderson wrote: > On 08/17/06 07:25, Kostik Belousov wrote: > > On Thu, Aug 17, 2006 at 07:08:31AM -0500, Eric Anderson wrote: > >> I've seen this several times now, but this time I got a dump. > >> Basically, the system comes up after unclean shutdown, throw

Re: struct dirent question

2006-08-21 Thread John Baldwin
On Wednesday 16 August 2006 14:48, Eric Anderson wrote: > On 08/16/06 13:45, Garance A Drosihn wrote: > > At 11:31 AM -0500 8/16/06, Eric Anderson wrote: > >> My point was, that either path you take (if BSD_VISIBLE is > >> defined or not), you end up with d_name having a size of > >> 255 + 1, so wh

Re: global data via module howto

2006-08-21 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Roman Kurakin <[EMAIL PROTECTED]> writes: : M. Warner Losh wrote: : > In message: <[EMAIL PROTECTED]> : > Roman Kurakin <[EMAIL PROTECTED]> writes: : > : I have the following problem: : > : module A : > : int x; : > : : > : module B :

Re: style(9)-like guide for man pages

2006-08-21 Thread Max Laier
On Monday 21 August 2006 18:26, Kostik Belousov wrote: > is there style(9)-like guide for writing FreeBSD man pages ? "man mdoc" aka GROFF_MDOC(7) is the closest one I can think of. -- /"\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #6777

style(9)-like guide for man pages

2006-08-21 Thread Kostik Belousov
Hi, is there style(9)-like guide for writing FreeBSD man pages ? pgpXwd2S3ln20.pgp Description: PGP signature

Relative paths [was: Path transformation]

2006-08-21 Thread mal content
Thanks to all who helped point me towards realpath(). I have another favour to ask: Is there a function that can take two absolute paths and generate a relative path, from source to destination? /usr/bin/false /bin Becomes: ../../bin /bin /usr/bin/false Becomes: ../usr/bin/false thanks, M

[SoC] Jail Resource Limits

2006-08-21 Thread Chris Jones
Hi, folks: I've completed the Summer of Code work on the jail resource limits (http://wikitest.freebsd.org/JailResourceLimits); jails can now have soft-ish limits placed on their memory and CPU usage. Briefly, when a jail uses more memory than its limit, pages are clawed back by a new ker

Re: global data via module howto

2006-08-21 Thread Roman Kurakin
M. Warner Losh wrote: In message: <[EMAIL PROTECTED]> Roman Kurakin <[EMAIL PROTECTED]> writes: : I have the following problem: : module A : int x; : : module B : extern int x; : : Module A is loaded, module B can't be loaded cause of unknow 'x'. : What should I do

Re: Aqcuiring full path to running process from outside the kernel

2006-08-21 Thread Dag-Erling Smørgrav
Mike Meyer <[EMAIL PROTECTED]> writes: > However, you can also make a best effort. Check argv[0] to see if you > have an absolute path. If not, do what the shell would do to find the > executable - look for it on $PATH. Once you've found it, call > realpath(3) to canonicalize the path. You got it