Re: [9fans] Blocks in C

2009-09-18 Thread Charles Forsyth
i mentioned that the pool library can act as a big kernel lock a few weeks ago. i don't know if anyone has thoughts on how to deal with this. it isn't really a `big kernel lock' in the linux sense. the big kernel lock was the device by which operating systems written with only a uniprocessor

Re: [9fans] Blocks in C

2009-09-18 Thread erik quanstrom
it isn't really a `big kernel lock' in the linux sense. you're right, technically it is a very different problem. the effects seem similar. the lock is just in the block allocator rather than the syscall interface. if you're doing a lot of i/o in a standard kernel, there's a lot of block

[9fans] nvram vs. emulators

2009-09-18 Thread erik quanstrom
it's probablly worth mentioning that if you have nvram in an emulator, your secstore password is available in the clear to whomever can read your emulator's emulated disk. - erik

Re: [9fans] Netbooting from Qemu

2009-09-18 Thread Jerome Ibanes
As it appears, the (net)boot configuration, meaning the 'plan9.ini' located in /cfg/pxe/, where '' is the netbooted host ethernet address, was missing nvram parameters, preventing the cpu kernel (9pccpu) to proceed with the boot sequence. If this parameter (nvram or nvr)

Re: [9fans] Netbooting from Qemu

2009-09-18 Thread erik quanstrom
I assume (perhaps incorrectly) that the netbooted host can not use a nvram store located on kfs. Please share with the list if you are aware, or use a different method to store your nvram data, either in virtualized machines or physical hardware. Preferably without the use of disk/floppy

Re: [9fans] Blocks in C

2009-09-18 Thread erik quanstrom
On Fri Sep 18 11:52:23 EDT 2009, driv...@0xabadba.be wrote: Is there some method of lock profiling on plan9? For example when I do work on freebsd and say remove a giant lock from the keyboard subsystem; I run the lock profiler before and after the change to see how long the system

Re: [9fans] Netbooting from Qemu

2009-09-18 Thread Steve Simon
I would have thought a small USB stick would be the way to go, My latest motherboard even had one USB port inside the case for just this kind of thing. -Steve

Re: [9fans] Netbooting from Qemu

2009-09-18 Thread Tim Newsham
store located on kfs. Please share with the list if you are aware, or use a different method to store your nvram data, either in virtualized machines or physical hardware. Preferably without the use of disk/floppy storage. If its an emulated environment, just put it on an emulated disk. Its

Re: [9fans] 9 Games of Go

2009-09-18 Thread Akshat Kumar
I've made updates to gofs[1], documented in NOTES. Goban[2] is a graphical interface to gofs, for playing the game of Go with a partner, or just by oneself. The original goban was written by Gorka, and I've made quite a few changes to it, to be able to play from gofs. Usage: Simply running

Re: [9fans] 9 Games of Go

2009-09-18 Thread Akshat Kumar
Quick update: -r flag has been added to goban, to simply watch ongoing games. Further updates will probably go in a man page that I haven't yet created. Just so I don't spam 9fans. Best, ak