diff options
author | Tao Ma <tao.ma@oracle.com> | 2008-08-18 05:38:45 -0400 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-10-13 16:57:59 -0400 |
commit | 0eb8d47e69a2211a36643b180f1843ef45f6017d (patch) | |
tree | 745a063238cbcf6af84644bd51d4bfcd592e06a1 /fs/ocfs2/alloc.h | |
parent | e7d4cb6bc19658646357eeff134645cd9bc3479f (diff) |
ocfs2: Make high level btree extend code generic
Factor out the non-inode specifics of ocfs2_do_extend_allocation() into a more generic
function, ocfs2_do_cluster_allocation(). ocfs2_do_extend_allocation calls
ocfs2_do_cluster_allocation() now, but the latter can be used for other
btree types as well.
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/alloc.h')
-rw-r--r-- | fs/ocfs2/alloc.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fs/ocfs2/alloc.h b/fs/ocfs2/alloc.h index 473c8bcc62fb..5e090c5d8498 100644 --- a/fs/ocfs2/alloc.h +++ b/fs/ocfs2/alloc.h | |||
@@ -41,6 +41,23 @@ int ocfs2_insert_extent(struct ocfs2_super *osb, | |||
41 | u8 flags, | 41 | u8 flags, |
42 | struct ocfs2_alloc_context *meta_ac, | 42 | struct ocfs2_alloc_context *meta_ac, |
43 | enum ocfs2_extent_tree_type et_type); | 43 | enum ocfs2_extent_tree_type et_type); |
44 | enum ocfs2_alloc_restarted { | ||
45 | RESTART_NONE = 0, | ||
46 | RESTART_TRANS, | ||
47 | RESTART_META | ||
48 | }; | ||
49 | int ocfs2_add_clusters_in_btree(struct ocfs2_super *osb, | ||
50 | struct inode *inode, | ||
51 | u32 *logical_offset, | ||
52 | u32 clusters_to_add, | ||
53 | int mark_unwritten, | ||
54 | struct buffer_head *root_bh, | ||
55 | struct ocfs2_extent_list *root_el, | ||
56 | handle_t *handle, | ||
57 | struct ocfs2_alloc_context *data_ac, | ||
58 | struct ocfs2_alloc_context *meta_ac, | ||
59 | enum ocfs2_alloc_restarted *reason_ret, | ||
60 | enum ocfs2_extent_tree_type type); | ||
44 | struct ocfs2_cached_dealloc_ctxt; | 61 | struct ocfs2_cached_dealloc_ctxt; |
45 | int ocfs2_mark_extent_written(struct inode *inode, struct buffer_head *root_bh, | 62 | int ocfs2_mark_extent_written(struct inode *inode, struct buffer_head *root_bh, |
46 | handle_t *handle, u32 cpos, u32 len, u32 phys, | 63 | handle_t *handle, u32 cpos, u32 len, u32 phys, |