9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: forsyth@caldo.demon.co.uk
To: 9fans@cse.psu.edu
Subject: Re: [9fans] u9fs
Date: Tue, 19 Mar 2002 16:39:40 +0000	[thread overview]
Message-ID: <20020319164238.31D4719A29@mail.cse.psu.edu> (raw)

[-- Attachment #1: Type: text/plain, Size: 841 bytes --]

it's quite likely slower than need be
because of the wretched TCP_NODELAY
(or whatever it is on your system) not being
set by default.
set it on so as not to delay and it's typically much faster.

term% diff /sys/src/cmd/unix/u9fs/u9fs.c .
33a34
> #	include	<netinet/tcp.h>
1247a1249
> #ifdef SO_KEEPALIVE
1248a1251,1254
> #endif
> #ifdef TCP_NODELAY
> 	setsockopt(0, IPPROTO_TCP, TCP_NODELAY, (char*)&on, sizeof(on));
> #endif

i also ifdef'd SO_KEEPALIVE because some systems haven't got it.

i changed the old (2nd edition) version of u9fs to
emulate file server permissions and permission checking
more precisely, which is to say that it must have been
missing something, but i haven't had the need for that
this time.  you might find you need to adjust it though.
i haven't got that source or i'd hand it on.


[-- Attachment #2: Type: message/rfc822, Size: 2126 bytes --]

To: 9fans@cse.psu.edu
Subject: Re: [9fans] u9fs
Date: Tue, 19 Mar 2002 11:15:48 -0500
Message-ID: <20020319111548.A54414@honk.eecs.harvard.edu>

On Tue, Mar 19, 2002 at 11:07:44AM -0500, Dharani Vilwanathan wrote:

> Can I safely assume that if I run u9fs on a linux box, it is as good as a
> plan 9 file server with which Plan 9 terminals can be connected?

No, it is substantially slower in my experience.
It serves a different purpose, namely accessing
Unix boxes.  That said, I have used it as a
replacement in a pinch.

             reply	other threads:[~2002-03-19 16:39 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-19 16:39 forsyth [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-03-30 11:36 arisawa
2008-03-30 12:25 ` arisawa
2003-10-09 14:24 [9fans] U9FS Lucio De Re
2003-02-18 16:38 [9fans] u9fs Ronald G. Minnich
2003-02-18 16:42 ` Russ Cox
2003-02-18 17:12   ` Ronald G. Minnich
2003-02-18 17:18     ` Russ Cox
2003-02-18 16:49 ` nigel
2003-01-28 15:50 Russ Cox
2003-01-31 15:35 ` Axel Belinfante
2003-01-31 16:07   ` Nigel Roles
2003-01-31 16:39     ` Russ Cox
2003-01-31 18:23       ` Axel Belinfante
2003-01-31 18:45         ` Russ Cox
2003-01-31 22:54           ` Axel Belinfante
2002-12-09  8:09 Russ Cox
2002-12-09  7:51 YAMANASHI Takeshi
2002-12-05 17:49 David Swasey
2002-05-05 23:24 [9fans] Bug report Russ Cox
2002-05-05 23:33 ` arisawa
2002-05-05 23:39   ` [9fans] u9fs arisawa
2002-03-24  6:42 Russ Cox
2002-03-23 18:45 nigel
2002-03-23 18:12 Russ Cox
2002-03-24  5:44 ` Martin C.Atkins
2002-03-26 10:45 ` Christopher Nielsen
2002-03-23 10:43 nigel
2002-03-22 13:42 Jean Mehat
2002-03-21 16:19 Russ Cox
2002-03-23  0:40 ` Christopher Nielsen
2002-03-20 22:00 forsyth
2002-03-20 19:31 Russ Cox
2002-03-20 19:31 markp
2002-03-20 19:05 Russ Cox
2002-03-20 19:42 ` skipt
2002-03-21 11:02 ` Peter Canning
2002-03-20 18:40 markp
2002-03-20  9:27 Fco.J.Ballesteros
2002-03-20  7:10 Geoff Collyer
2002-03-20  7:23 ` Lucio De Re
2002-03-20  8:10 ` Dean Prichard
2002-03-20  7:01 forsyth
2002-03-20  5:15 Russ Cox
2002-03-19 22:33 Russ Cox
2002-03-19 17:19 Russ Cox
2002-03-19 16:18 anothy
2002-03-19 16:46 ` Dharani Vilwanathan
2002-03-19 22:00   ` Dharani Vilwanathan
2002-03-19 14:03 [9fans] long long warning nigel
2002-03-19 16:07 ` [9fans] u9fs Dharani Vilwanathan
2002-03-19 16:15   ` William Josephson
2002-03-20  4:46   ` Steve Kotsopoulos
2001-01-07  6:08 rob pike
2001-01-07  5:54 rob pike
2001-01-07  6:00 ` Boyd Roberts
2000-07-07 16:16 ianb
2000-07-07 14:46 Ish Rattan
2000-07-07 15:26 ` Steve Kotsopoulos
1999-04-23 11:05 [9fans] U9FS 
1999-04-22 16:31 Russ
1999-04-22  8:32 
1999-03-18 11:30 Jean
1999-03-17 23:47 Ed
1999-03-17 19:48 Markus
1999-03-17 19:16 Scott
1999-03-17 16:26 
1999-03-17 15:07 

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020319164238.31D4719A29@mail.cse.psu.edu \
    --to=forsyth@caldo.demon.co.uk \
    --cc=9fans@cse.psu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).