mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 17:32:43 +00:00
A fix to a debug test from Kirk.
This commit is contained in:
parent
fa294d55ea
commit
b8cf4de4c8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36404
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user