From mboxrd@z Thu Jan 1 00:00:00 1970 From: arisawa@ar.aichi-u.ac.jp To: 9fans@cse.psu.edu MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20001228141011.C30D7199FF@mail.cse.psu.edu> Subject: [9fans] /bin/import Date: Thu, 28 Dec 2000 23:03:02 -0500 Topicbox-Message-UUID: 3e1447b2-eac9-11e9-9e20-41e7f4b1d025 Hello Manual says: SYNOPSIS import [ -abcC ] [ -f ] system file [ mountpoint ] that is, `import' allows C option. On the other hand, we will find in /sys/src/cmd/import.c: void main(int argc, char **argv) { char *mntpt; int fd, mntflags; mntflags = MREPL; ARGBEGIN{ case 'a': mntflags = MAFTER; break; case 'b': mntflags = MBEFORE; break; case 'c': mntflags |= MCREATE; break; case 'f': fflag = 1; break; default: usage(); }ARGEND; Is the absence of C option in the source is a simple bug? By the way, it is required as much as 60 sec to connect to my host `ar' from my home plan9 terminal via ISDN line. It seems IL does not reach `ar'. Therefore I am using TCP. term% import tcp!ar /n/kfs /n/ar The connection time is same when I put `f' option to `import' On the other hand, cpu command term% cpu -h tcp!ar -a netkey responds without any delay. Are there any reasons `import' requires much connection time? Kenji Arisawa E-mail: arisawa@aichi-u.ac.jp