ext2: add support for extent_map library
[linux-2.6-block.git] / fs / ext2 / ext2.h
1 #include <linux/fs.h>
2 #include <linux/ext2_fs.h>
3 #include <linux/extent_map.h>
4
5 /*
6  * ext2 mount options
7  */
8 struct ext2_mount_options {
9         unsigned long s_mount_opt;
10         uid_t s_resuid;
11         gid_t s_resgid;
12 };
13
14 /*
15  * second extended file system inode data in memory
16  */
17 struct ext2_inode_info {
18         __le32  i_data[15];
19         __u32   i_flags;
20         __u32   i_faddr;
21         __u8    i_frag_no;
22         __u8    i_frag_size;
23         __u16   i_state;
24         __u32   i_file_acl;
25         __u32   i_dir_acl;
26         __u32   i_dtime;
27
28         /*
29          * i_block_group is the number of the block group which contains
30          * this file's inode.  Constant across the lifetime of the inode,
31          * it is ued for making block allocation decisions - we try to
32          * place a file's data blocks near its inode block, and new inodes
33          * near to their parent directory's inode.
34          */
35         __u32   i_block_group;
36
37         /* block reservation info */
38         struct ext2_block_alloc_info *i_block_alloc_info;
39
40         __u32   i_dir_start_lookup;
41 #ifdef CONFIG_EXT2_FS_XATTR
42         /*
43          * Extended attributes can be read independently of the main file
44          * data. Taking i_mutex even when reading would cause contention
45          * between readers of EAs and writers of regular file data, so
46          * instead we synchronize on xattr_sem when reading or changing
47          * EAs.
48          */
49         struct rw_semaphore xattr_sem;
50 #endif
51 #ifdef CONFIG_EXT2_FS_POSIX_ACL
52         struct posix_acl        *i_acl;
53         struct posix_acl        *i_default_acl;
54 #endif
55         rwlock_t i_meta_lock;
56
57         /*
58          * truncate_mutex is for serialising ext2_truncate() against
59          * ext2_getblock().  It also protects the internals of the inode's
60          * reservation data structures: ext2_reserve_window and
61          * ext2_reserve_window_node.
62          */
63         struct mutex truncate_mutex;
64         struct inode    vfs_inode;
65         struct list_head i_orphan;      /* unlinked but open inodes */
66
67         struct extent_map_tree extent_tree;
68 };
69
70 /*
71  * Inode dynamic state flags
72  */
73 #define EXT2_STATE_NEW                  0x00000001 /* inode is newly created */
74
75
76 /*
77  * Function prototypes
78  */
79
80 /*
81  * Ok, these declarations are also in <linux/kernel.h> but none of the
82  * ext2 source programs needs to include it so they are duplicated here.
83  */
84
85 static inline struct ext2_inode_info *EXT2_I(struct inode *inode)
86 {
87         return container_of(inode, struct ext2_inode_info, vfs_inode);
88 }
89
90 /* balloc.c */
91 extern int ext2_bg_has_super(struct super_block *sb, int group);
92 extern unsigned long ext2_bg_num_gdb(struct super_block *sb, int group);
93 extern ext2_fsblk_t ext2_new_block(struct inode *, unsigned long, int *);
94 extern ext2_fsblk_t ext2_new_blocks(struct inode *, unsigned long,
95                                 unsigned long *, int *);
96 extern void ext2_free_blocks (struct inode *, unsigned long,
97                               unsigned long);
98 extern unsigned long ext2_count_free_blocks (struct super_block *);
99 extern unsigned long ext2_count_dirs (struct super_block *);
100 extern void ext2_check_blocks_bitmap (struct super_block *);
101 extern struct ext2_group_desc * ext2_get_group_desc(struct super_block * sb,
102                                                     unsigned int block_group,
103                                                     struct buffer_head ** bh);
104 extern void ext2_discard_reservation (struct inode *);
105 extern int ext2_should_retry_alloc(struct super_block *sb, int *retries);
106 extern void ext2_init_block_alloc_info(struct inode *);
107 extern void ext2_rsv_window_add(struct super_block *sb, struct ext2_reserve_window_node *rsv);
108
109 /* dir.c */
110 extern int ext2_add_link (struct dentry *, struct inode *);
111 extern ino_t ext2_inode_by_name(struct inode *, struct qstr *);
112 extern int ext2_make_empty(struct inode *, struct inode *);
113 extern struct ext2_dir_entry_2 * ext2_find_entry (struct inode *,struct qstr *, struct page **);
114 extern int ext2_delete_entry (struct ext2_dir_entry_2 *, struct page *);
115 extern int ext2_empty_dir (struct inode *);
116 extern struct ext2_dir_entry_2 * ext2_dotdot (struct inode *, struct page **);
117 extern void ext2_set_link(struct inode *, struct ext2_dir_entry_2 *, struct page *, struct inode *);
118
119 /* fsync.c */
120 extern int ext2_sync_file (struct file *, struct dentry *, int);
121
122 /* ialloc.c */
123 extern struct inode * ext2_new_inode (struct inode *, int);
124 extern void ext2_free_inode (struct inode *);
125 extern unsigned long ext2_count_free_inodes (struct super_block *);
126 extern void ext2_check_inodes_bitmap (struct super_block *);
127 extern unsigned long ext2_count_free (struct buffer_head *, unsigned);
128
129 /* inode.c */
130 extern struct inode *ext2_iget (struct super_block *, unsigned long);
131 extern int ext2_write_inode (struct inode *, int);
132 extern void ext2_delete_inode (struct inode *);
133 extern int ext2_sync_inode (struct inode *);
134 extern int ext2_get_block(struct inode *, sector_t, struct buffer_head *, int);
135 extern void ext2_truncate (struct inode *);
136 extern int ext2_setattr (struct dentry *, struct iattr *);
137 extern void ext2_set_inode_flags(struct inode *inode);
138 extern void ext2_get_inode_flags(struct ext2_inode_info *);
139 extern int ext2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
140                        u64 start, u64 len);
141 int __ext2_write_begin(struct file *file, struct address_space *mapping,
142                 loff_t pos, unsigned len, unsigned flags,
143                 struct page **pagep, void **fsdata);
144
145 /* ioctl.c */
146 extern long ext2_ioctl(struct file *, unsigned int, unsigned long);
147 extern long ext2_compat_ioctl(struct file *, unsigned int, unsigned long);
148
149 /* namei.c */
150 struct dentry *ext2_get_parent(struct dentry *child);
151
152 /* super.c */
153 extern void ext2_error (struct super_block *, const char *, const char *, ...)
154         __attribute__ ((format (printf, 3, 4)));
155 extern void ext2_warning (struct super_block *, const char *, const char *, ...)
156         __attribute__ ((format (printf, 3, 4)));
157 extern void ext2_update_dynamic_rev (struct super_block *sb);
158 extern void ext2_write_super (struct super_block *);
159
160 /*
161  * Inodes and files operations
162  */
163
164 /* dir.c */
165 extern const struct file_operations ext2_dir_operations;
166
167 /* file.c */
168 extern const struct inode_operations ext2_file_inode_operations;
169 extern const struct file_operations ext2_file_operations;
170 extern const struct file_operations ext2_xip_file_operations;
171
172 /* inode.c */
173 extern const struct address_space_operations ext2_aops;
174 extern const struct address_space_operations ext2_aops_xip;
175 extern const struct address_space_operations ext2_nobh_aops;
176
177 /* namei.c */
178 extern const struct inode_operations ext2_dir_inode_operations;
179 extern const struct inode_operations ext2_special_inode_operations;
180
181 /* symlink.c */
182 extern const struct inode_operations ext2_fast_symlink_inode_operations;
183 extern const struct inode_operations ext2_symlink_inode_operations;
184
185 static inline ext2_fsblk_t
186 ext2_group_first_block_no(struct super_block *sb, unsigned long group_no)
187 {
188         return group_no * (ext2_fsblk_t)EXT2_BLOCKS_PER_GROUP(sb) +
189                 le32_to_cpu(EXT2_SB(sb)->s_es->s_first_data_block);
190 }