diff options
| author | John Dyson <dyson@FreeBSD.org> | 1995-11-05 23:36:07 +0000 |
|---|---|---|
| committer | John Dyson <dyson@FreeBSD.org> | 1995-11-05 23:36:07 +0000 |
| commit | bacc8b1678bdc0ede76261f3dcca1da3fee14336 (patch) | |
| tree | 094e249a07c170c776bf0f48af3af60a7a2e1f6e /sys/gnu/ext2fs/inode.h | |
| parent | c33a4405f7457413ce5aba276d3b3326140dd251 (diff) | |
Notes
Diffstat (limited to 'sys/gnu/ext2fs/inode.h')
| -rw-r--r-- | sys/gnu/ext2fs/inode.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h index 00105ea3635df..7ff725b335cfd 100644 --- a/sys/gnu/ext2fs/inode.h +++ b/sys/gnu/ext2fs/inode.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)inode.h 8.4 (Berkeley) 1/21/94 - * $Id: inode.h,v 1.5 1995/04/24 05:13:11 dyson Exp $ + * $Id: inode.h,v 1.6 1995/05/30 08:15:30 rgrimes Exp $ */ #ifndef _UFS_UFS_INODE_H_ @@ -74,9 +74,11 @@ struct inode { union { /* Associated filesystem. */ struct fs *fs; /* FFS */ struct lfs *lfs; /* LFS */ + struct ext2_sb_info *e2fs; /* EXT2FS */ } inode_u; #define i_fs inode_u.fs #define i_lfs inode_u.lfs +#define i_e2fs inode_u.e2fs struct dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */ u_quad_t i_modrev; /* Revision level for lease. */ struct lockf *i_lockf; /* Head of byte-level lock list. */ |
