summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-10-11 19:01:02 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-10-11 19:01:02 +0000
commit98936db7451b56c5085f2eef070127984577faae (patch)
tree00e8510c6e3840712ee5f564d3ec660a5d4f7df0
parent2ea40a9c69b4cbdf81299a02f4a9f27d4b56dc74 (diff)
Formerly fsck.h.~3~
-rw-r--r--ufs-fsck/fsck.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ufs-fsck/fsck.h b/ufs-fsck/fsck.h
index b7749330..3ca8d80e 100644
--- a/ufs-fsck/fsck.h
+++ b/ufs-fsck/fsck.h
@@ -37,6 +37,9 @@ enum inodetype *inodestate;
/* Number of links claimed by each inode (set by pass 1) */
nlink_t *linkcount;
+/* Number of links found to each inode (set by pass 2) */
+nlink_t *linkfound;
+
/* DT_foo type of each inode (set by pass 1) */
char *typemap;
@@ -50,6 +53,7 @@ struct dirinfo
ino_t i_number; /* inode entry of this dir */
ino_t i_parent; /* inode entry of parent */
ino_t i_dotdot; /* inode number of `..' */
+ ino_t i_dot; /* inode number of `.' */
ino_t i_isize; /* size of inode */
u_int i_numblks; /* size of block array in bytes */
daddr_t i_blks[0]; /* array of inode block addresses */