diff options
author | Joel Becker <joel.becker@oracle.com> | 2008-11-13 17:49:14 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:36:53 -0500 |
commit | 68f64d471be38631d7196b938d9809802dd467fa (patch) | |
tree | b94f14b3a8b093dc52f2b034e7666b14c536f0d6 /fs/ocfs2/suballoc.h | |
parent | 57e3e7971136003c96766346049aa73b82cab079 (diff) |
ocfs2: Wrap group descriptor reads in a dedicated function.
We have a clean call for validating group descriptors, but every place
that wants the always does a read_block()+validate() call pair. Create
a toplevel ocfs2_read_group_descriptor() that does the right
thing. This allows us to leverage the single call point later for
fancier handling. We also add validation of gd->bg_generation against
the superblock and gd->bg_blkno against the block we thought we read.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/suballoc.h')
-rw-r--r-- | fs/ocfs2/suballoc.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/fs/ocfs2/suballoc.h b/fs/ocfs2/suballoc.h index 7adfcc478bdb..43de4fd826d3 100644 --- a/fs/ocfs2/suballoc.h +++ b/fs/ocfs2/suballoc.h | |||
@@ -164,23 +164,24 @@ void ocfs2_free_ac_resource(struct ocfs2_alloc_context *ac); | |||
164 | * and return that block offset. */ | 164 | * and return that block offset. */ |
165 | u64 ocfs2_which_cluster_group(struct inode *inode, u32 cluster); | 165 | u64 ocfs2_which_cluster_group(struct inode *inode, u32 cluster); |
166 | 166 | ||
167 | /* somewhat more expensive than our other checks, so use sparingly. */ | ||
168 | /* | 167 | /* |
169 | * By default, ocfs2_validate_group_descriptor() calls ocfs2_error() when it | 168 | * By default, ocfs2_validate_group_descriptor() calls ocfs2_error() when it |
170 | * finds a problem. A caller that wants to check a group descriptor | 169 | * finds a problem. A caller that wants to check a group descriptor |
171 | * without going readonly passes a nonzero clean_error. This is only | 170 | * without going readonly passes a nonzero clean_error. This is only |
172 | * resize, really. | 171 | * resize, really. Everyone else should be using |
172 | * ocfs2_read_group_descriptor(). | ||
173 | */ | 173 | */ |
174 | int ocfs2_validate_group_descriptor(struct super_block *sb, | 174 | int ocfs2_validate_group_descriptor(struct super_block *sb, |
175 | struct ocfs2_dinode *di, | 175 | struct ocfs2_dinode *di, |
176 | struct ocfs2_group_desc *gd, | 176 | struct buffer_head *bh, |
177 | int clean_error); | 177 | int clean_error); |
178 | static inline int ocfs2_check_group_descriptor(struct super_block *sb, | 178 | /* |
179 | struct ocfs2_dinode *di, | 179 | * Read a group descriptor block into *bh. If *bh is NULL, a bh will be |
180 | struct ocfs2_group_desc *gd) | 180 | * allocated. This is a cached read. The descriptor will be validated with |
181 | { | 181 | * ocfs2_validate_group_descriptor(). |
182 | return ocfs2_validate_group_descriptor(sb, di, gd, 0); | 182 | */ |
183 | } | 183 | int ocfs2_read_group_descriptor(struct inode *inode, struct ocfs2_dinode *di, |
184 | u64 gd_blkno, struct buffer_head **bh); | ||
184 | 185 | ||
185 | int ocfs2_lock_allocators(struct inode *inode, struct ocfs2_extent_tree *et, | 186 | int ocfs2_lock_allocators(struct inode *inode, struct ocfs2_extent_tree *et, |
186 | u32 clusters_to_add, u32 extents_to_split, | 187 | u32 clusters_to_add, u32 extents_to_split, |