summaryrefslogtreecommitdiffstats
path: root/include/linux/efs_fs_i.h
diff options
context:
space:
mode:
authorMike Shaver <shaver@ingenia.com>1997-09-16 20:51:16 +0000
committerMike Shaver <shaver@ingenia.com>1997-09-16 20:51:16 +0000
commit07e8059de69d387ee281ed8b8d66b66810244b50 (patch)
tree9123ada8119208544537a8019c2197dc4d80b81c /include/linux/efs_fs_i.h
parent4344cfb77cdc787c82a7076a50172240f82d6d38 (diff)
namei.c: - Support symlinks correctly.
inode.c: - Formatting, minor change to start supporting indirect extents. dir.c: - Prevent access to an indirect directory from hosing the system. *.h: - Add forgotten include files.
Diffstat (limited to 'include/linux/efs_fs_i.h')
-rw-r--r--include/linux/efs_fs_i.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/efs_fs_i.h b/include/linux/efs_fs_i.h
new file mode 100644
index 000000000..5e6441df7
--- /dev/null
+++ b/include/linux/efs_fs_i.h
@@ -0,0 +1,27 @@
+/*
+ * linux/include/linux/efs_fs_i.h
+ *
+ * Copyright (C) 1997
+ * Mike Shaver (shaver@neon.ingenia.ca)
+ *
+ * Based on work Copyright (C) 1995, 1996 Christian Vogelgsang.
+ *
+ * $Id$
+ */
+
+#ifndef __LINUX_EFS_FS_I_H
+#define __LINUX_EFS_FS_I_H
+
+#include <linux/efs_fs.h>
+
+/* private Inode part */
+struct efs_inode_info {
+ __u32 extblk;
+
+ __u16 tot;
+ __u16 cur;
+
+ union efs_extent extents[EFS_MAX_EXTENTS];
+};
+
+#endif /* __LINUX_EFS_FS_I_H */