diff options
author | dillon <dillon@FreeBSD.org> | 2001-10-23 01:21:29 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-10-23 01:21:29 +0000 |
commit | 45a6fabe87ae3342c49f2e351d044e60daf8dfb3 (patch) | |
tree | 6c2bc2719e857145710103bb0268efdc6adaad5c /sys/nfsclient | |
parent | ceeb7e9e8ead9a5f69302ca1bcb726654c49b035 (diff) | |
download | FreeBSD-src-45a6fabe87ae3342c49f2e351d044e60daf8dfb3.zip FreeBSD-src-45a6fabe87ae3342c49f2e351d044e60daf8dfb3.tar.gz |
Change the vnode list under the mount point from a LIST to a TAILQ
in preparation for an implementation of limiting code for kern.maxvnodes.
MFC after: 3 days
Diffstat (limited to 'sys/nfsclient')
-rw-r--r-- | sys/nfsclient/nfs_subs.c | 4 | ||||
-rw-r--r-- | sys/nfsclient/nfs_vfsops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c index 4b427b5..e20f11f 100644 --- a/sys/nfsclient/nfs_subs.c +++ b/sys/nfsclient/nfs_subs.c @@ -788,10 +788,10 @@ nfs_clearcommit(struct mount *mp) s = splbio(); mtx_lock(&mntvnode_mtx); loop: - for (vp = LIST_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) { + for (vp = TAILQ_FIRST(&mp->mnt_nvnodelist); vp; vp = nvp) { if (vp->v_mount != mp) /* Paranoia */ goto loop; - nvp = LIST_NEXT(vp, v_mntvnodes); + nvp = TAILQ_NEXT(vp, v_nmntvnodes); for (bp = TAILQ_FIRST(&vp->v_dirtyblkhd); bp; bp = nbp) { nbp = TAILQ_NEXT(bp, b_vnbufs); if (BUF_REFCNT(bp) == 0 && diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 670a5aa..e80adad 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -968,7 +968,7 @@ nfs_sync(struct mount *mp, int waitfor, struct ucred *cred, struct thread *td) */ mtx_lock(&mntvnode_mtx); loop: - for (vp = LIST_FIRST(&mp->mnt_vnodelist); + for (vp = TAILQ_FIRST(&mp->mnt_nvnodelist); vp != NULL; vp = vnp) { /* @@ -977,7 +977,7 @@ loop: */ if (vp->v_mount != mp) goto loop; - vnp = LIST_NEXT(vp, v_mntvnodes); + vnp = TAILQ_NEXT(vp, v_nmntvnodes); mtx_unlock(&mntvnode_mtx); mtx_lock(&vp->v_interlock); if (VOP_ISLOCKED(vp, NULL) || TAILQ_EMPTY(&vp->v_dirtyblkhd) || |