diff options
author | Mike Shaver <shaver@ingenia.com> | 1997-09-16 20:51:16 +0000 |
---|---|---|
committer | Mike Shaver <shaver@ingenia.com> | 1997-09-16 20:51:16 +0000 |
commit | 07e8059de69d387ee281ed8b8d66b66810244b50 (patch) | |
tree | 9123ada8119208544537a8019c2197dc4d80b81c /include/linux/efs_fs_i.h | |
parent | 4344cfb77cdc787c82a7076a50172240f82d6d38 (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.h | 27 |
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 */ |