Remove inode fields previously used for private inode hash tables.

This commit is contained in:
phk 2005-03-16 08:09:52 +00:00
parent 072f3fe39d
commit 54f4952c9c
5 changed files with 0 additions and 5 deletions

View File

@ -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 */

View File

@ -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;

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */