From d9915117c9f65ed3d321259b3ce26b8e1f25fd4f Mon Sep 17 00:00:00 2001 From: Mohan Srinivasan Date: Fri, 9 Mar 2007 04:07:54 +0000 Subject: [PATCH] Back out a chance to nfs_timer() that inadvertantly crept in the last checkin :( --- sys/nfsclient/nfs_socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/nfsclient/nfs_socket.c b/sys/nfsclient/nfs_socket.c index a28d837f0850..60360509caf8 100644 --- a/sys/nfsclient/nfs_socket.c +++ b/sys/nfsclient/nfs_socket.c @@ -1412,7 +1412,7 @@ nfs_timer(void *arg) } if (rep->r_rtt >= 0) { rep->r_rtt++; - if ((nmp->nm_flag & NFSMNT_DUMBTIMR) || (nmp->nm_sotype == SOCK_STREAM)) + if (nmp->nm_flag & NFSMNT_DUMBTIMR) timeo = nmp->nm_timeo; else timeo = nfs_estimate_rto(nmp, rep->r_procnum);