summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-12-25 01:23:25 +0000
committerdillon <dillon@FreeBSD.org>2001-12-25 01:23:25 +0000
commit91aada8d5feb4ccebe48ea3ab211000016c9aeaf (patch)
tree1757acbcdef1229f1bf0fbfcaf3e4926d1448a89
parent39b93da10a3731b4cbc361775f3af082bfd9036d (diff)
downloadFreeBSD-src-91aada8d5feb4ccebe48ea3ab211000016c9aeaf.zip
FreeBSD-src-91aada8d5feb4ccebe48ea3ab211000016c9aeaf.tar.gz
Fix type-o in previous commit (tsleep was using wrong rendezvous point)
-rw-r--r--sys/kern/vfs_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 7ccad17..ec81a69 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -622,7 +622,7 @@ vnlru_proc(void)
printf("vnlru process messages stopped.\n");
#endif
vnlru_nowhere++;
- tsleep(vnlru_proc, PPAUSE, "vlrup", hz * 3);
+ tsleep(vnlruproc, PPAUSE, "vlrup", hz * 3);
}
}
splx(s);
OpenPOWER on IntegriCloud