From 54f4952c9c859fbc7e95fab6c6a3f9642827f9e0 Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 16 Mar 2005 08:09:52 +0000 Subject: [PATCH] Remove inode fields previously used for private inode hash tables. --- sys/fs/cd9660/cd9660_node.h | 1 - sys/fs/udf/udf.h | 1 - sys/gnu/ext2fs/inode.h | 1 - sys/gnu/fs/ext2fs/inode.h | 1 - sys/isofs/cd9660/cd9660_node.h | 1 - 5 files changed, 5 deletions(-) diff --git a/sys/fs/cd9660/cd9660_node.h b/sys/fs/cd9660/cd9660_node.h index b207f7614e90..a362dc1d5148 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 348c2c912081..a43f0cd68901 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 53d781d35fc4..9ba55462ee5d 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 53d781d35fc4..9ba55462ee5d 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 b207f7614e90..a362dc1d5148 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 */