diff options
author | Joel Becker <joel.becker@oracle.com> | 2009-02-13 06:54:22 -0500 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2009-09-04 19:08:13 -0400 |
commit | 5e404e9ed1b05cafb044bd46792e50197df805ed (patch) | |
tree | e3146e03f8a0fc12307db0cbea900728a36ffaac /fs/ocfs2/alloc.h | |
parent | a1cf076ba93f9fdf3eb4195f9f43d1e7cb7550f2 (diff) |
ocfs2: Pass ocfs2_caching_info into ocfs_init_*_extent_tree().
With this commit, extent tree operations are divorced from inodes and
rely on ocfs2_caching_info. Phew!
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.h')
-rw-r--r-- | fs/ocfs2/alloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ocfs2/alloc.h b/fs/ocfs2/alloc.h index abc66ce9d418..bcf6aa42ae53 100644 --- a/fs/ocfs2/alloc.h +++ b/fs/ocfs2/alloc.h | |||
@@ -68,17 +68,17 @@ struct ocfs2_extent_tree { | |||
68 | * specified object buffer. | 68 | * specified object buffer. |
69 | */ | 69 | */ |
70 | void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et, | 70 | void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et, |
71 | struct inode *inode, | 71 | struct ocfs2_caching_info *ci, |
72 | struct buffer_head *bh); | 72 | struct buffer_head *bh); |
73 | void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et, | 73 | void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et, |
74 | struct inode *inode, | 74 | struct ocfs2_caching_info *ci, |
75 | struct buffer_head *bh); | 75 | struct buffer_head *bh); |
76 | struct ocfs2_xattr_value_buf; | 76 | struct ocfs2_xattr_value_buf; |
77 | void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et, | 77 | void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et, |
78 | struct inode *inode, | 78 | struct ocfs2_caching_info *ci, |
79 | struct ocfs2_xattr_value_buf *vb); | 79 | struct ocfs2_xattr_value_buf *vb); |
80 | void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et, | 80 | void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et, |
81 | struct inode *inode, | 81 | struct ocfs2_caching_info *ci, |
82 | struct buffer_head *bh); | 82 | struct buffer_head *bh); |
83 | 83 | ||
84 | /* | 84 | /* |