diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-19 14:46:45 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-19 14:46:45 +0000 |
commit | e07f8448e8302bc12a15f5339806aeda44830d6c (patch) | |
tree | ef75588da3494e8972383dc5d61cf3768308c8af /sys/nfs/nfs_subs.c | |
parent | e597d17a58cadd3c3ef1cf84746578b165d0eeaa (diff) |
Replace the nfskevq_lock lockmgr lock with rwlock.
Replace nfs_kqinit() wich just calls lockinit with
RWLOCK_INITALIZER. Assorted cleanup.
ok tedu@
"reads good" art@
Diffstat (limited to 'sys/nfs/nfs_subs.c')
-rw-r--r-- | sys/nfs/nfs_subs.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/nfs/nfs_subs.c b/sys/nfs/nfs_subs.c index 7585b97a8da..ae497c69a62 100644 --- a/sys/nfs/nfs_subs.c +++ b/sys/nfs/nfs_subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_subs.c,v 1.60 2007/04/13 10:01:35 thib Exp $ */ +/* $OpenBSD: nfs_subs.c,v 1.61 2007/04/19 14:46:44 thib Exp $ */ /* $NetBSD: nfs_subs.c,v 1.27.4.3 1996/07/08 20:34:24 jtc Exp $ */ /* @@ -1070,10 +1070,6 @@ nfs_init() timeout_set(&nfs_timer_to, nfs_timer, &nfs_timer_to); nfs_timer(&nfs_timer_to); - -#ifdef NFSCLIENT - nfs_kqinit(); -#endif } #ifdef NFSCLIENT |