summaryrefslogtreecommitdiffstats
path: root/sys/ufs/ufs/inode.h
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1995-11-05 23:36:07 +0000
committerdyson <dyson@FreeBSD.org>1995-11-05 23:36:07 +0000
commitaa3705d78b7fc12ce3cf9e9a7437407154f241c8 (patch)
tree094e249a07c170c776bf0f48af3af60a7a2e1f6e /sys/ufs/ufs/inode.h
parent65a271ba6d03e08c6a9486e645d658f5a04f03a6 (diff)
downloadFreeBSD-src-aa3705d78b7fc12ce3cf9e9a7437407154f241c8.zip
FreeBSD-src-aa3705d78b7fc12ce3cf9e9a7437407154f241c8.tar.gz
Changes to existing files for ext2fs support. The UFS mods need rework
in the future as they are a bit crufty -- but at least the stuff is in the tree now.
Diffstat (limited to 'sys/ufs/ufs/inode.h')
-rw-r--r--sys/ufs/ufs/inode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/ufs/inode.h b/sys/ufs/ufs/inode.h
index 00105ea..7ff725b 100644
--- a/sys/ufs/ufs/inode.h
+++ b/sys/ufs/ufs/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. */
OpenPOWER on IntegriCloud