summaryrefslogtreecommitdiff
path: root/sys/src
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-03-01 18:56:45 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2015-03-01 18:56:45 +0100
commitfc1ff7705b339d480f15fa934c7df215158c1901 (patch)
tree5786b966f426c3f37578c216fc4109e65947221b /sys/src
parent3f869a689403c385ca761be5535a5de2db054db4 (diff)
devmnt: remove unused mntstats fields from Mntrpc
Diffstat (limited to 'sys/src')
-rw-r--r--sys/src/9/port/devmnt.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/src/9/port/devmnt.c b/sys/src/9/port/devmnt.c
index 5ed55b3fb..6e220f70a 100644
--- a/sys/src/9/port/devmnt.c
+++ b/sys/src/9/port/devmnt.c
@@ -29,9 +29,6 @@ struct Mntrpc
uchar* rpc; /* I/O Data buffer */
uint rpclen; /* len of buffer */
Block* b; /* reply blocks */
- uvlong stime; /* start time for mnt statistics */
- ulong reqlen; /* request length for mnt statistics */
- ulong replen; /* reply length for mnt statistics */
Mntrpc* flushed; /* message this one flushes */
char done; /* Rpc completed */
};
@@ -808,8 +805,6 @@ mountio(Mnt *m, Mntrpc *r)
if(devtab[m->c->type]->write(m->c, r->rpc, n, 0) != n)
error(Emountrpc);
- r->stime = fastticks(nil);
- r->reqlen = n;
/* Gate readers onto the mount point one at a time */
for(;;) {