summaryrefslogtreecommitdiff
path: root/sys/nfs/nfs_vfsops.c
diff options
context:
space:
mode:
authorTor Egge <tegge@FreeBSD.org>1998-03-14 03:25:18 +0000
committerTor Egge <tegge@FreeBSD.org>1998-03-14 03:25:18 +0000
commit8bd965cce459bb519ac1e4fa6c57b28832e1579f (patch)
tree4942eec1bb85afedea0b7ec7856f2acf51fc81ea /sys/nfs/nfs_vfsops.c
parentc555a715f5146f7851665b4bb28bcfb5591a0e20 (diff)
Notes
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
-rw-r--r--sys/nfs/nfs_vfsops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c
index 9ad89ebdecfd..b301b243efa2 100644
--- a/sys/nfs/nfs_vfsops.c
+++ b/sys/nfs/nfs_vfsops.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95
- * $Id: nfs_vfsops.c,v 1.54 1998/02/09 06:10:39 eivind Exp $
+ * $Id: nfs_vfsops.c,v 1.55 1998/03/01 22:46:30 msmith Exp $
*/
#include <sys/param.h>
@@ -399,8 +399,8 @@ nfs_mountroot(mp)
* XXX time must be non-zero when we init the interface or else
* the arp code will wedge...
*/
- if (time.tv_sec == 0)
- time.tv_sec = 1;
+ while (time.tv_sec == 0)
+ tsleep(&time, PZERO+8, "arpkludge", 10);
if (nfs_diskless_valid==1)
nfs_convert_diskless();