diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-10-11 19:01:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-10-11 19:01:02 +0000 |
commit | 2b72c279aaa10cbbe66e0c1f4e05a1137ad71896 (patch) | |
tree | 4c572662ad09513288cafb4d1085bc5ab97edda0 /ufs-fsck/fsck.h | |
parent | 5d81dbc3de5c001cc4bc10c3ca14cbce860d02bf (diff) | |
download | hurd-2b72c279aaa10cbbe66e0c1f4e05a1137ad71896.tar.gz hurd-2b72c279aaa10cbbe66e0c1f4e05a1137ad71896.tar.bz2 hurd-2b72c279aaa10cbbe66e0c1f4e05a1137ad71896.zip |
Formerly fsck.h.~3~
Diffstat (limited to 'ufs-fsck/fsck.h')
-rw-r--r-- | ufs-fsck/fsck.h | 4 |
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 */ |