diff options
| author | Kirk McKusick <mckusick@FreeBSD.org> | 2001-03-07 07:09:55 +0000 |
|---|---|---|
| committer | Kirk McKusick <mckusick@FreeBSD.org> | 2001-03-07 07:09:55 +0000 |
| commit | 589c7af992aa64e44f84294e694b5a75c1a4c7c3 (patch) | |
| tree | 4b2833f726260890ce9515c1858aef72391f169c /sys/gnu | |
| parent | 393d77ffad6c43dd11ab5bfcd90264bcb4df57e4 (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/ext2fs/inode.h | 2 | ||||
| -rw-r--r-- | sys/gnu/fs/ext2fs/inode.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index 79e79b1ae0820..3e7c67da8415e 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -67,6 +67,7 @@ typedef long ufs_lbn_t; */ struct inode { LIST_ENTRY(inode) i_hash;/* Hash chain. */ + TAILQ_ENTRY(inode) i_nextsnap; /* snapshot file list */ 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 */ @@ -83,7 +84,6 @@ struct inode { struct dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */ u_quad_t i_modrev; /* Revision level for NFS lease. */ struct lockf *i_lockf;/* Head of byte-level lock list. */ - struct inode *i_copyonwrite; /* copy-on-write list */ /* * Side effects; used during directory lookup. */ diff --git a/sys/gnu/fs/ext2fs/inode.h b/sys/gnu/fs/ext2fs/inode.h index 79e79b1ae0820..3e7c67da8415e 100644 --- a/sys/gnu/fs/ext2fs/inode.h +++ b/sys/gnu/fs/ext2fs/inode.h @@ -67,6 +67,7 @@ typedef long ufs_lbn_t; */ struct inode { LIST_ENTRY(inode) i_hash;/* Hash chain. */ + TAILQ_ENTRY(inode) i_nextsnap; /* snapshot file list */ 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 */ @@ -83,7 +84,6 @@ struct inode { struct dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */ u_quad_t i_modrev; /* Revision level for NFS lease. */ struct lockf *i_lockf;/* Head of byte-level lock list. */ - struct inode *i_copyonwrite; /* copy-on-write list */ /* * Side effects; used during directory lookup. */ |
