Re: HIFN/7955 Soekris 1401 openssl problem

2004-07-16 Thread Mike Tancsa
On Sat, 17 Jul 2004 01:39:57 +0200 (CEST), in sentex.lists.freebsd.hackers you wrote: >The problem is, nothing else seems to use it. Ive been trying with >sendmail/ssl and with apache/ssl. The card uses /dev/crypto, which exists, >and I can make openssl load the cryptodev engine. But even a comman

Re: indent bugfix / added features

2004-07-16 Thread Brian Fundakowski Feldman
On Mon, Jun 14, 2004 at 08:05:34AM -0500, Chip Norkus wrote: > > Followup: > > I was off most of the weekend, but I did find one bug and have > corrected it. The new patch can be found at > http://telekinesis.org/indent/indent.patch. I whipped up a simple > script to test it over /usr/src a

Re: crash via vm_page_sleep_if_busy() and contigmalloc

2004-07-16 Thread Brian Fundakowski Feldman
On Fri, Jul 16, 2004 at 08:32:05PM -0400, Brian Fundakowski Feldman wrote: > Anyone VM-y enough to be up to the task: please take a look at this > current vm_contig.c code and the crash that I have. > > This crash is not common -- this is the first time I've seen it -- > but the problem certainly

Re: FreeBSD Custom Kernel

2004-07-16 Thread Jiafu He
bsd hack <[EMAIL PROTECTED]> wrote: Hi All, I have a few basic questions regarding building a custom Kernel: (1) Once I configure, make and make install the custom kernel... it will get written to /boot/kernel. Now I have already made a backup of the working kernel. what I need to know is when

crash via vm_page_sleep_if_busy() and contigmalloc

2004-07-16 Thread Brian Fundakowski Feldman
Anyone VM-y enough to be up to the task: please take a look at this current vm_contig.c code and the crash that I have. This crash is not common -- this is the first time I've seen it -- but the problem certainly doesn't seem unique. What seems to happen is that vm_page_sleep_if_busy() is called

HIFN/7955 Soekris 1401 openssl problem

2004-07-16 Thread Cor Bosman
Hi all, the last few days ive been trying to get a Soekris 1401 crypto accelerator card to work on FreeBSD 4.10. It's based on a HIFN 7955 chipset. The kernel recognises it, and I can see ssh uses it by checking with hifnstats. If i login through serial console and scp a file, the stats increase.

Re: Reboots after ''OR AL,1 MOV CR0, EAX'' on some computers.

2004-07-16 Thread john
Ha... I thought this email was spam, with a subject resembling ORAL MOVIES !! -john >From : breath <[EMAIL PROTECTED]> To : [EMAIL PROTECTED] Subject : Reboots after "OR AL,1 MOV CR0, EAX" on some computers. Date : Fri, 16 Jul 2004 00:34:46

FreeBSD Custom Kernel

2004-07-16 Thread bsd hack
Hi All, I have a few basic questions regarding building a custom Kernel: (1) Once I configure, make and make install the custom kernel... it will get written to /boot/kernel. Now I have already made a backup of the working kernel. what I need to know is when I get the boot loader menu(wh

Re: RFC: "-exit" option for find(1)

2004-07-16 Thread Peter Pentchev
On Fri, Jul 16, 2004 at 05:28:57PM +0300, Peter Pentchev wrote: > On Fri, Jul 16, 2004 at 11:58:07AM +0400, Denis Antrushin wrote: > > Alfred Perlstein wrote: > > >I'm up too late, this doesn't work because find returns > > >success whenever it successfully runs thought everything. > > > > > >Perha

Reboots after "OR AL,1 MOV CR0, EAX" on some computers.

2004-07-16 Thread breath
Hi. I need some help. I think you'll be interested. I develop a little OS that will boot from floppy. It's still under construction and has about five thousand lines of assembly source now. I use Bochs emulator to debug it and after that I test it on my real computer. I have all working correctly o

Re: RFC: "-exit" option for find(1)

2004-07-16 Thread Peter Pentchev
On Fri, Jul 16, 2004 at 11:58:07AM +0400, Denis Antrushin wrote: > Alfred Perlstein wrote: > >I'm up too late, this doesn't work because find returns > >success whenever it successfully runs thought everything. > > > >Perhaps the primary change to just "-exit" which would > >make find exit successf

Communication driver framework?

2004-07-16 Thread Sifalakis, Manolis
Hello all, I am new to the list as well as "under the FreeBSD-hood" and this is my first posting so pls forgive me if this has been asked 1000 times before (I did not manage to find it in the archive). We re planning to implement a programmable router framework for FreeBSD, and basically we nee

Re: RFC: "-exit" option for find(1)

2004-07-16 Thread Denis Antrushin
Alfred Perlstein wrote: I'm up too late, this doesn't work because find returns success whenever it successfully runs thought everything. Perhaps the primary change to just "-exit" which would make find exit successfully, and if the primary is never encountered (ie. our find logic never hits it) fi

Re: RFC: "-exit" option for find(1)

2004-07-16 Thread Alfred Perlstein
I'm up too late, this doesn't work because find returns success whenever it successfully runs thought everything. Perhaps the primary change to just "-exit" which would make find exit successfully, and if the primary is never encountered (ie. our find logic never hits it) find would exit with a no

RFC: "-exit" option for find(1)

2004-07-16 Thread Alfred Perlstein
This adds a primary to find(1) "-exit ", it will cause find to exit(2) with the as the exit status. Useful for finding the first instance of something: find . -type f -newer ../src.tar.gz -exit 0 && echo hi this will make find abort with a zero exit status early upon finding a file newer than .