diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-02-04 12:37:48 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-02-04 12:37:48 +0000 |
| commit | ef9e85abba5ce45c8b3fc840db320edb1abe0160 (patch) | |
| tree | d2e5cb8e29ccaff027535056d821dbd338e6781e /sys/miscfs | |
| parent | a7ecc804fb2f1388eede0fbe42d2e59340b5b344 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs')
| -rw-r--r-- | sys/miscfs/union/union_subr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/miscfs/union/union_subr.c b/sys/miscfs/union/union_subr.c index 9d342819fc4f..71eae9cade52 100644 --- a/sys/miscfs/union/union_subr.c +++ b/sys/miscfs/union/union_subr.c @@ -397,8 +397,7 @@ loop: while (union_list_lock(hash)) continue; - for (un = unhead[hash].lh_first; un != 0; - un = un->un_cache.le_next) { + LIST_FOREACH(un, &unhead[hash], un_cache) { if ((un->un_lowervp == lowervp || un->un_lowervp == NULLVP) && (un->un_uppervp == uppervp || |
