diff --git a/sys/fs/cd9660/cd9660_node.h b/sys/fs/cd9660/cd9660_node.h index b207f7614e9..a362dc1d514 100644 --- a/sys/fs/cd9660/cd9660_node.h +++ b/sys/fs/cd9660/cd9660_node.h @@ -57,7 +57,6 @@ typedef struct { struct iso_node { - struct iso_node *i_next, **i_prev; /* hash chain */ struct vnode *i_vnode; /* vnode associated with this inode */ u_long i_flag; /* see below */ ino_t i_number; /* the identity of the inode */ diff --git a/sys/fs/udf/udf.h b/sys/fs/udf/udf.h index 348c2c91208..a43f0cd6890 100644 --- a/sys/fs/udf/udf.h +++ b/sys/fs/udf/udf.h @@ -29,7 +29,6 @@ #define UDF_HASHTBLSIZE 100 struct udf_node { - LIST_ENTRY(udf_node) le; struct vnode *i_vnode; struct udf_mnt *udfmp; ino_t hash_id; diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index 53d781d35fc..9ba55462ee5 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -61,7 +61,6 @@ * active, and is put back when the file is no longer being used. */ struct inode { - LIST_ENTRY(inode) i_hash;/* Hash chain. */ struct vnode *i_vnode;/* Vnode associated with this inode. */ struct vnode *i_devvp;/* Vnode for block I/O. */ u_int32_t i_flag; /* flags, see below */ diff --git a/sys/gnu/fs/ext2fs/inode.h b/sys/gnu/fs/ext2fs/inode.h index 53d781d35fc..9ba55462ee5 100644 --- a/sys/gnu/fs/ext2fs/inode.h +++ b/sys/gnu/fs/ext2fs/inode.h @@ -61,7 +61,6 @@ * active, and is put back when the file is no longer being used. */ struct inode { - LIST_ENTRY(inode) i_hash;/* Hash chain. */ struct vnode *i_vnode;/* Vnode associated with this inode. */ struct vnode *i_devvp;/* Vnode for block I/O. */ u_int32_t i_flag; /* flags, see below */ diff --git a/sys/isofs/cd9660/cd9660_node.h b/sys/isofs/cd9660/cd9660_node.h index b207f7614e9..a362dc1d514 100644 --- a/sys/isofs/cd9660/cd9660_node.h +++ b/sys/isofs/cd9660/cd9660_node.h @@ -57,7 +57,6 @@ typedef struct { struct iso_node { - struct iso_node *i_next, **i_prev; /* hash chain */ struct vnode *i_vnode; /* vnode associated with this inode */ u_long i_flag; /* see below */ ino_t i_number; /* the identity of the inode */