Re: [osol-code] timeout and mutexes

2007-05-28 Thread Oliver Yang
Garrett D'Amore wrote: Oliver Yang wrote: Garrett D'Amore wrote: Thomas De Schampheleire wrote: Hi, The timeout(9F) manpage says: "The function called by timeout() must adhere to the same restrictions as a driver soft interrupt handler. The function called by timeout() is run in

Re: [osol-code] timeout and mutexes

2007-05-28 Thread Garrett D'Amore
Oliver Yang wrote: Garrett D'Amore wrote: Thomas De Schampheleire wrote: Hi, The timeout(9F) manpage says: "The function called by timeout() must adhere to the same restrictions as a driver soft interrupt handler. The function called by timeout() is run in interrupt context a

Re: [osol-code] timeout and mutexes

2007-05-28 Thread Oliver Yang
Garrett D'Amore wrote: Thomas De Schampheleire wrote: Hi, The timeout(9F) manpage says: "The function called by timeout() must adhere to the same restrictions as a driver soft interrupt handler. The function called by timeout() is run in interrupt context and must not sleep or

[osol-code] Re: Re: s390x update

2007-05-28 Thread Neale Ferguson
I got the ramdisk stuff working. My latest problem is that the load of misc/strplumb is failing and I can't work out what's wrong (no dependencies and, apparently, no unresolved addresses). One area that will require major work (but is working thanks to low activity) is the allocation of page

Re: [osol-code] timeout and mutexes

2007-05-28 Thread Garrett D'Amore
Thomas De Schampheleire wrote: Hi, The timeout(9F) manpage says: "The function called by timeout() must adhere to the same restrictions as a driver soft interrupt handler. The function called by timeout() is run in interrupt context and must not sleep or call other functions th

[osol-code] "no dump device " in panic message

2007-05-28 Thread liujun
the message below: .. panic:page fault uptime:17m42s [b]cannot dump , no dump device defind[/b] Automatic reboot in 15 seconds .. I want to save the dump and how can I do? I have added "set kmem_flags=0xf" in etc/system file accord to mdb describe Tanks!!! This message posted from

Re: [osol-code] timeout and mutexes

2007-05-28 Thread Casper . Dik
>Hi, > >The timeout(9F) manpage says: > >"The function called by timeout() must adhere to the same > restrictions as a driver soft interrupt handler. > > The function called by timeout() is run in interrupt context > and must not sleep or call other functions that might sleep." > >

[osol-code] timeout and mutexes

2007-05-28 Thread Thomas De Schampheleire
Hi, The timeout(9F) manpage says: "The function called by timeout() must adhere to the same restrictions as a driver soft interrupt handler. The function called by timeout() is run in interrupt context and must not sleep or call other functions that might sleep." Does this mean