A fix to a debug test from Kirk.

This commit is contained in:
Julian Elischer 1998-05-27 03:32:23 +00:00
parent fa294d55ea
commit b8cf4de4c8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36404
3 changed files with 12 additions and 3 deletions

View File

@ -54,7 +54,7 @@
* SUCH DAMAGE.
*
* @(#)ffs_softdep.c 9.23 (McKusick) 2/20/98
* $Id:$
* $Id: ffs_softdep.c,v 1.6 1998/05/19 23:07:22 julian Exp $
*/
/*
@ -2692,6 +2692,9 @@ scan_page(bp)
break;
if (dp->d_ino == 0)
continue;
if (dp->d_name[0] == '.' && (dp->d_namlen == 1 ||
(dp->d_namlen == 2 && dp->d_name[1] == '.')))
continue;
if (inodedep_lookup(fs, dp->d_ino, 0, &inodedep) == 0)
continue;
if (inodedep->id_state & NEWINODE)

View File

@ -54,7 +54,7 @@
* SUCH DAMAGE.
*
* @(#)ffs_softdep.c 9.23 (McKusick) 2/20/98
* $Id:$
* $Id: ffs_softdep.c,v 1.6 1998/05/19 23:07:22 julian Exp $
*/
/*
@ -2692,6 +2692,9 @@ scan_page(bp)
break;
if (dp->d_ino == 0)
continue;
if (dp->d_name[0] == '.' && (dp->d_namlen == 1 ||
(dp->d_namlen == 2 && dp->d_name[1] == '.')))
continue;
if (inodedep_lookup(fs, dp->d_ino, 0, &inodedep) == 0)
continue;
if (inodedep->id_state & NEWINODE)

View File

@ -54,7 +54,7 @@
* SUCH DAMAGE.
*
* @(#)ffs_softdep.c 9.23 (McKusick) 2/20/98
* $Id:$
* $Id: ffs_softdep.c,v 1.6 1998/05/19 23:07:22 julian Exp $
*/
/*
@ -2692,6 +2692,9 @@ scan_page(bp)
break;
if (dp->d_ino == 0)
continue;
if (dp->d_name[0] == '.' && (dp->d_namlen == 1 ||
(dp->d_namlen == 2 && dp->d_name[1] == '.')))
continue;
if (inodedep_lookup(fs, dp->d_ino, 0, &inodedep) == 0)
continue;
if (inodedep->id_state & NEWINODE)