Re: [9fans] ape/socket again non-blocking command succeeds but still blocks

2011-01-11 Thread Fernan Bolando
On Tue, Jan 11, 2011 at 3:45 PM, Federico G. Benavento wrote: > it's not fcnlt's fault, ape replaces your sockfd with a pipe > when you do listen(), you could call fcntl again after the > listen() call... > > all this is usually combined with select() which in turns does > more magic behind the sc

Re: [9fans] ape/socket again non-blocking command succeeds but still blocks

2011-01-11 Thread Fernan Bolando
On Tue, Jan 11, 2011 at 4:06 PM, Fernan Bolando wrote: > On Tue, Jan 11, 2011 at 3:45 PM, Federico G. Benavento > wrote: >> it's not fcnlt's fault, ape replaces your sockfd with a pipe >> when you do listen(), you could call fcntl again after the >> listen() call... >> >> all this is usually comb

Re: [9fans] Plan9 from scratch

2011-01-11 Thread Peter Penzin
Is it possible to take a look at what you did? I can't be considered expert, just interested and may be I can try to contribute. Cheers -Peter 2011/1/10 Artem Novikov : > I want to build Plan9 from scratch under Windows/*NIX. > I built working (seems :) toolchain (yacc, 8a, 8c, 8l) under Windows

Re: [9fans] ape/socket again non-blocking command succeeds but still blocks

2011-01-11 Thread Federico G. Benavento
fcntl() didn't fail, it has to do with listen()'s implementation which creates a pipe, dups and forks... but the new fd doesn't have O_NONBLOCK set. check /sys/src/ape/lib/bsd/listen.c and yes it's an incompatibility On Tue, Jan 11, 2011 at 5:18 AM, Fernan Bolando wrote: > On Tue, Jan 11, 2011

Re: [9fans] Plan9 from scratch

2011-01-11 Thread Artem Novikov
On 11 янв, 02:01, nicklafo...@gmail.com (Nick LaForge) wrote: > I'm curious: do you plan on executing the output of 8c and 8l in an > environment as strange as one the you are building in?  You could try > building only programs and then try executing those, i.e., by using > one of > > http://www.c

Re: [9fans] fs performance

2011-01-11 Thread hiro
Sorry, I wanted to say half a ms. I also see 100us on another pc.

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread erik quanstrom
On Tue Jan 11 02:55:42 EST 2011, skip.tavakkol...@gmail.com wrote: > hell-o.go is like hello.go but uses println. 8.hell-o works properly > on a plan9 cpu. but it faults when running on 9vx. i built vx32 -- > including 9vx -- on a linux/x86-64 from sources in the last couple of > days. > > % 8.hel

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Devon H. O'Dell
2011/1/11 erik quanstrom : > On Tue Jan 11 02:55:42 EST 2011, skip.tavakkol...@gmail.com wrote: >> hell-o.go is like hello.go but uses println. 8.hell-o works properly >> on a plan9 cpu. but it faults when running on 9vx. i built vx32 -- >> including 9vx -- on a linux/x86-64 from sources in the las

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread ron minnich
can you do a ratrace for me? ron

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Charles Forsyth
i suspect go is using segment register(s) to implement extern register, and that isn't expected (or perhaps even supported) by 9vx. just a guess.

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Pavel Zholkover
I'm typing from my phone so I don't have go sources in front of me, but 0xdfffefc0 looks like the address I used for per thread G and M structs - just bellow struct Tos. Andrey and I also tried running on a 32-bit 9vx with the same effect. Is 9vx using a different memory layout than Plan 9? On T

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread ron minnich
On Tue, Jan 11, 2011 at 9:03 AM, Charles Forsyth wrote: > i suspect go is using segment register(s) to implement extern register, > and that isn't expected (or perhaps even supported) by 9vx. > just a guess. > > I did not realize this was currently supported by Plan 9 ... maybe I didn't get the m

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Anthony Martin
Pavel Zholkover once said: > I'm typing from my phone so I don't have go sources in front of me, > but 0xdfffefc0 looks like the address I used for per thread G and M > structs - just bellow struct Tos. > > Andrey and I also tried running on a 32-bit 9vx with the same effect. > > Is 9vx using a

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Anthony Martin
Anthony Martin once said: > The Tos structure is bigger on 64-bit 9vx so the references > to GS will need a different offset. You'll have to change > both src/8l/pass.c:/^patch and the runtime. I forgot to mention that on 9vx, USTKTOP is at 0x1000. Anthony

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Pavel Zholkover
I did the runtime port a few month ago, now waiting for http://codereview.appspot.com/3816043/ to get reviewed and committed... there are still a bunch of things missing like linking with symbols, os.ForkExec and environment variables at early runtime. time package is also not ready, so I can't ru

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread ron minnich
On Tue, Jan 11, 2011 at 10:55 AM, Anthony Martin wrote: > Pavel Zholkover once said: >> I'm typing from my phone so I don't have go sources in front of me, >> but 0xdfffefc0 looks like the address I used for per thread G and M >> structs - just bellow struct Tos. >> >> Andrey and I also tried run

Re: [9fans] plan9 go output faults on 9vx but ok on cpu

2011-01-11 Thread Charles Forsyth
>I did not realize this was currently supported by Plan 9 ... maybe I >didn't get the memo? go's 8c/8l convert extern register to references off a segment register, although the implementation of extern register isn't general enough for plan 9 kernel use; it's just enough for go. it sounds as tho