summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Shaver <shaver@ingenia.com>1998-06-29 18:32:48 +0000
committerMike Shaver <shaver@ingenia.com>1998-06-29 18:32:48 +0000
commitaf2f803c8b2d469fe38e4a7ce952658dfcb6681a (patch)
tree68f5a30a6a0e5c65dfbbe963a3b20bb971f809d1
parent457ef3f12aedfa9ff62358be844f54f42cf4a131 (diff)
forgot to commit some headers for EFS structure changes
-rw-r--r--include/linux/efs_fs.h4
-rw-r--r--include/linux/efs_fs_i.h11
2 files changed, 6 insertions, 9 deletions
diff --git a/include/linux/efs_fs.h b/include/linux/efs_fs.h
index 0fb716d91..b3f04b809 100644
--- a/include/linux/efs_fs.h
+++ b/include/linux/efs_fs.h
@@ -6,7 +6,7 @@
*
* Based on work Copyright (C) 1995, 1996 Christian Vogelgsang.
*
- * $Id: efs_fs.h,v 1.1 1997/09/16 20:51:18 shaver Exp $
+ * $Id: efs_fs.h,v 1.2 1998/05/23 17:11:25 shaver Exp $
*/
#ifndef __LINUX_EFS_FS_H
@@ -87,7 +87,7 @@ union efs_extent {
__u32 ex_magic:4, /* must be zero */
ex_bn:24;
__u32 ex_length:8,
- ex_offset;
+ ex_offset:24;
} ex_ex;
__u32 ex_bytes[2];
};
diff --git a/include/linux/efs_fs_i.h b/include/linux/efs_fs_i.h
index 5e6441df7..784b89201 100644
--- a/include/linux/efs_fs_i.h
+++ b/include/linux/efs_fs_i.h
@@ -6,7 +6,7 @@
*
* Based on work Copyright (C) 1995, 1996 Christian Vogelgsang.
*
- * $Id$
+ * $Id: efs_fs_i.h,v 1.1 1997/09/16 20:51:18 shaver Exp $
*/
#ifndef __LINUX_EFS_FS_I_H
@@ -16,12 +16,9 @@
/* private Inode part */
struct efs_inode_info {
- __u32 extblk;
-
- __u16 tot;
- __u16 cur;
-
- union efs_extent extents[EFS_MAX_EXTENTS];
+ __u16 efs_total;
+ __u16 efs_current;
+ union efs_extent *efs_extents;
};
#endif /* __LINUX_EFS_FS_I_H */