diff options
author | Joel Becker <joel.becker@oracle.com> | 2009-02-13 03:34:15 -0800 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2009-09-04 16:08:09 -0700 |
commit | cbee7e1a6a1a2a3d6eda1f76ffc38a3ed3eeb6cc (patch) | |
tree | 438ac4917675c27ecd3dce694ae3affd7ebf6c91 /fs/ocfs2/alloc.h | |
parent | cc79d8c19e9d39446525a1026f1a21761f5d3cd2 (diff) | |
download | kernel_samsung_aries-cbee7e1a6a1a2a3d6eda1f76ffc38a3ed3eeb6cc.zip kernel_samsung_aries-cbee7e1a6a1a2a3d6eda1f76ffc38a3ed3eeb6cc.tar.gz kernel_samsung_aries-cbee7e1a6a1a2a3d6eda1f76ffc38a3ed3eeb6cc.tar.bz2 |
ocfs2: ocfs2_add_clusters_in_btree() no longer needs struct inode.
One more function that doesn't need a struct inode to pass to its
children.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.h')
-rw-r--r-- | fs/ocfs2/alloc.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ocfs2/alloc.h b/fs/ocfs2/alloc.h index 99accd3..d1d196e 100644 --- a/fs/ocfs2/alloc.h +++ b/fs/ocfs2/alloc.h @@ -103,13 +103,11 @@ enum ocfs2_alloc_restarted { RESTART_TRANS, RESTART_META }; -int ocfs2_add_clusters_in_btree(struct ocfs2_super *osb, - struct inode *inode, +int ocfs2_add_clusters_in_btree(handle_t *handle, + struct ocfs2_extent_tree *et, u32 *logical_offset, u32 clusters_to_add, int mark_unwritten, - struct ocfs2_extent_tree *et, - handle_t *handle, struct ocfs2_alloc_context *data_ac, struct ocfs2_alloc_context *meta_ac, enum ocfs2_alloc_restarted *reason_ret); |