diff options
Diffstat (limited to 'sys/miscfs/umapfs/umap_subr.c')
-rw-r--r-- | sys/miscfs/umapfs/umap_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/miscfs/umapfs/umap_subr.c b/sys/miscfs/umapfs/umap_subr.c index a04b132..9b9806e 100644 --- a/sys/miscfs/umapfs/umap_subr.c +++ b/sys/miscfs/umapfs/umap_subr.c @@ -157,7 +157,7 @@ umap_node_find(mp, targetvp) */ hd = UMAP_NHASH(targetvp); loop: - for (a = hd->lh_first; a != 0; a = a->umap_hash.le_next) { + LIST_FOREACH(a, hd, umap_hash) { if (a->umap_lowervp == targetvp && a->umap_vnode->v_mount == mp) { vp = UMAPTOV(a); |