summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-12-08 09:33:37 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-12-08 09:33:37 +0000
commit51fdd92000b2c50f1e5eec294b1e87b12402eb75 (patch)
treeff8be6efe4c4f611331bc2865b32f35bca4a05a6
parentb50a2f847c3774e57655066faf51e2d21448f0a0 (diff)
nfs_reqq is operated at softnet other places and thus softclock is not high enough; tedu@ ok
-rw-r--r--sys/nfs/nfs_socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c
index a7dbeb2e10b..e2798cdf0ba 100644
--- a/sys/nfs/nfs_socket.c
+++ b/sys/nfs/nfs_socket.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_socket.c,v 1.34 2003/07/10 22:53:19 tedu Exp $ */
+/* $OpenBSD: nfs_socket.c,v 1.35 2003/12/08 09:33:36 mickey Exp $ */
/* $NetBSD: nfs_socket.c,v 1.27 1996/04/15 20:20:00 thorpej Exp $ */
/*
@@ -907,7 +907,7 @@ tryagain:
* Chain request into list of outstanding requests. Be sure
* to put it LAST so timer finds oldest requests first.
*/
- s = splsoftclock();
+ s = splsoftnet();
TAILQ_INSERT_TAIL(&nfs_reqq, rep, r_chain);
/* Get send time for nqnfs */
@@ -949,7 +949,7 @@ tryagain:
/*
* RPC done, unlink the request.
*/
- s = splsoftclock();
+ s = splsoftnet();
TAILQ_REMOVE(&nfs_reqq, rep, r_chain);
splx(s);