diff options
Diffstat (limited to 'sys/miscfs/devfs/devfs_vfsops.c')
-rw-r--r-- | sys/miscfs/devfs/devfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/devfs/devfs_vfsops.c b/sys/miscfs/devfs/devfs_vfsops.c index f275170..0229dd0 100644 --- a/sys/miscfs/devfs/devfs_vfsops.c +++ b/sys/miscfs/devfs/devfs_vfsops.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_vfsops.c,v 1.32 1998/09/07 13:17:00 bde Exp $ + * $Id: devfs_vfsops.c,v 1.33 1998/09/08 16:59:37 bde Exp $ * */ @@ -282,7 +282,7 @@ loop: nvp = vp->v_mntvnodes.le_next; if (VOP_ISLOCKED(vp)) continue; - if ( vp->v_dirtyblkhd.lh_first == NULL) + if (TAILQ_EMPTY(&vp->v_dirtyblkhd)) continue; if (vp->v_type == VBLK) { if (vget(vp, LK_EXCLUSIVE, p)) |