summaryrefslogtreecommitdiffstats
path: root/sys/gnu/fs/ext2fs/ext2_mount.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/gnu/fs/ext2fs/ext2_mount.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/gnu/fs/ext2fs/ext2_mount.h')
-rw-r--r--sys/gnu/fs/ext2fs/ext2_mount.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/gnu/fs/ext2fs/ext2_mount.h b/sys/gnu/fs/ext2fs/ext2_mount.h
index 02fdff2..e085b8b 100644
--- a/sys/gnu/fs/ext2fs/ext2_mount.h
+++ b/sys/gnu/fs/ext2fs/ext2_mount.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ufsmount.h 8.2 (Berkeley) 1/12/94
- * $Id: ufsmount.h,v 1.2 1994/08/02 07:55:04 davidg Exp $
+ * $Id: ufsmount.h,v 1.3 1994/08/21 07:16:18 paul Exp $
*/
#ifndef _UFS_UFS_UFSMOUNT_H_
@@ -54,9 +54,12 @@ struct ufsmount {
union { /* pointer to superblock */
struct lfs *lfs; /* LFS */
struct fs *fs; /* FFS */
+ struct ext2_sb_info *e2fs; /* EXT2FS */
} ufsmount_u;
#define um_fs ufsmount_u.fs
#define um_lfs ufsmount_u.lfs
+#define um_e2fs ufsmount_u.e2fs
+#define um_e2fsb ufsmount_u.e2fs->s_es
struct vnode *um_quotas[MAXQUOTAS]; /* pointer to quota files */
struct ucred *um_cred[MAXQUOTAS]; /* quota file access cred */
u_long um_nindir; /* indirect ptrs per block */
OpenPOWER on IntegriCloud