9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] 9vx il has slight speed advantage
@ 2008-12-23  5:32 erik quanstrom
  2008-12-23 14:43 ` Devon H. O'Dell
  2008-12-23 17:55 ` Russ Cox
  0 siblings, 2 replies; 8+ messages in thread
From: erik quanstrom @ 2008-12-23  5:32 UTC (permalink / raw)
  To: 9fans

first from il
; time cat gs>/dev/null
0.00u 0.00s 9.70r 	 cat gs

next via tcp
; time cat /386/bin/gs>/dev/null
0.00u 0.00s 40.27r 	 cat /386/bin/gs

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23  5:32 [9fans] 9vx il has slight speed advantage erik quanstrom
@ 2008-12-23 14:43 ` Devon H. O'Dell
  2008-12-23 16:32   ` erik quanstrom
  2008-12-23 16:33   ` erik quanstrom
  2008-12-23 17:55 ` Russ Cox
  1 sibling, 2 replies; 8+ messages in thread
From: Devon H. O'Dell @ 2008-12-23 14:43 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

2008/12/23 erik quanstrom <quanstro@quanstro.net>:
> first from il
> ; time cat gs>/dev/null
> 0.00u 0.00s 9.70r        cat gs
>
> next via tcp
> ; time cat /386/bin/gs>/dev/null
> 0.00u 0.00s 40.27r       cat /386/bin/gs

I wonder if this is because of the timer in 9vx being less granular
and causing the TCP timer processes to fire late -- thus having to
deal with retransmits?

--dho

> - erik
>
>



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23 14:43 ` Devon H. O'Dell
@ 2008-12-23 16:32   ` erik quanstrom
  2008-12-23 16:33   ` erik quanstrom
  1 sibling, 0 replies; 8+ messages in thread
From: erik quanstrom @ 2008-12-23 16:32 UTC (permalink / raw)
  To: 9fans

> 2008/12/23 erik quanstrom <quanstro@quanstro.net>:
> > first from il
> > ; time cat gs>/dev/null
> > 0.00u 0.00s 9.70r        cat gs
> >
> > next via tcp
> > ; time cat /386/bin/gs>/dev/null
> > 0.00u 0.00s 40.27r       cat /386/bin/gs
>
> I wonder if this is because of the timer in 9vx being less granular
> and causing the TCP timer processes to fire late -- thus having to
> deal with retransmits?

msec timing isn't good enough?  i really doubt it.

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23 14:43 ` Devon H. O'Dell
  2008-12-23 16:32   ` erik quanstrom
@ 2008-12-23 16:33   ` erik quanstrom
  1 sibling, 0 replies; 8+ messages in thread
From: erik quanstrom @ 2008-12-23 16:33 UTC (permalink / raw)
  To: 9fans

> 2008/12/23 erik quanstrom <quanstro@quanstro.net>:
> > first from il
> > ; time cat gs>/dev/null
> > 0.00u 0.00s 9.70r        cat gs
> >
> > next via tcp
> > ; time cat /386/bin/gs>/dev/null
> > 0.00u 0.00s 40.27r       cat /386/bin/gs
>
> I wonder if this is because of the timer in 9vx being less granular
> and causing the TCP timer processes to fire late -- thus having to
> deal with retransmits?

il is using the same timer.

- erik



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23  5:32 [9fans] 9vx il has slight speed advantage erik quanstrom
  2008-12-23 14:43 ` Devon H. O'Dell
@ 2008-12-23 17:55 ` Russ Cox
  2008-12-23 18:09   ` erik quanstrom
  1 sibling, 1 reply; 8+ messages in thread
From: Russ Cox @ 2008-12-23 17:55 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Mon, Dec 22, 2008 at 9:32 PM, erik quanstrom <quanstro@quanstro.net> wrote:
> first from il
> ; time cat gs>/dev/null
> 0.00u 0.00s 9.70r        cat gs
>
> next via tcp
> ; time cat /386/bin/gs>/dev/null
> 0.00u 0.00s 40.27r       cat /386/bin/gs

what about the host tcp?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23 17:55 ` Russ Cox
@ 2008-12-23 18:09   ` erik quanstrom
  2008-12-23 22:10     ` andrey mirtchovski
  0 siblings, 1 reply; 8+ messages in thread
From: erik quanstrom @ 2008-12-23 18:09 UTC (permalink / raw)
  To: 9fans

> On Mon, Dec 22, 2008 at 9:32 PM, erik quanstrom <quanstro@quanstro.net> wrote:
>> first from il
>> ; time cat gs>/dev/null
>> 0.00u 0.00s 9.70r        cat gs
>>
>> next via tcp
>> ; time cat /386/bin/gs>/dev/null
>> 0.00u 0.00s 40.27r       cat /386/bin/gs
>
> what about the host tcp?

ftp is the easiest test i have.  i hope this is
close enough for a useful comparison.

ftp> get gs /tmp/gs
local: /tmp/gs remote: gs
200 Data port is tcp!192.168.0.4!53473
150 Opening data connection for /386/bin/gs (tcp!192.168.0.4!53473)
226 Transfer complete
13275174 bytes received in 1.24 secs (1e+04 Kbytes/sec)

- erik




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23 18:09   ` erik quanstrom
@ 2008-12-23 22:10     ` andrey mirtchovski
  2008-12-24  1:41       ` erik quanstrom
  0 siblings, 1 reply; 8+ messages in thread
From: andrey mirtchovski @ 2008-12-23 22:10 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

i have a slightly unrelated question: what do you get if you use 'fcp'
instead of 'cp' for the same file over tcp and il?

thanks



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] 9vx il has slight speed advantage
  2008-12-23 22:10     ` andrey mirtchovski
@ 2008-12-24  1:41       ` erik quanstrom
  0 siblings, 0 replies; 8+ messages in thread
From: erik quanstrom @ 2008-12-24  1:41 UTC (permalink / raw)
  To: 9fans

> i have a slightly unrelated question: what do you get if you use 'fcp'
> instead of 'cp' for the same file over tcp and il?
>
> thanks

great question.  unfortunately a power problem has reconfigured
my network for me and i can't generate comparable numbers just
yet.

- erik




^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-12-24  1:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-23  5:32 [9fans] 9vx il has slight speed advantage erik quanstrom
2008-12-23 14:43 ` Devon H. O'Dell
2008-12-23 16:32   ` erik quanstrom
2008-12-23 16:33   ` erik quanstrom
2008-12-23 17:55 ` Russ Cox
2008-12-23 18:09   ` erik quanstrom
2008-12-23 22:10     ` andrey mirtchovski
2008-12-24  1:41       ` erik quanstrom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).