Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165071
b: refs/heads/master
c: 4619c73
h: refs/heads/master
i:
  165069: 20fea77
  165067: 2d700bf
  165063: 3361650
  165055: f507255
v: v3
  • Loading branch information
Joel Becker committed Sep 4, 2009
1 parent 1fe9a2e commit ff75919
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6641b0ce3274d979338cb67b2f562189dcbc1c28
refs/heads/master: 4619c73e7c9bd10bac6b60925fa28d5a2eeaf6ed
20 changes: 10 additions & 10 deletions trunk/fs/ocfs2/alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
* - When we've adjusted the last extent record in the left path leaf and the
* 1st extent record in the right path leaf during cross extent block merge.
*/
static void ocfs2_complete_edge_insert(struct inode *inode, handle_t *handle,
static void ocfs2_complete_edge_insert(handle_t *handle,
struct ocfs2_path *left_path,
struct ocfs2_path *right_path,
int subtree_index)
Expand Down Expand Up @@ -2161,8 +2161,8 @@ static int ocfs2_rotate_subtree_right(struct inode *inode,
goto out;
}

ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
subtree_index);
ocfs2_complete_edge_insert(handle, left_path, right_path,
subtree_index);

out:
return ret;
Expand Down Expand Up @@ -2772,7 +2772,7 @@ static int ocfs2_rotate_subtree_left(struct inode *inode, handle_t *handle,

*deleted = 1;
} else
ocfs2_complete_edge_insert(inode, handle, left_path, right_path,
ocfs2_complete_edge_insert(handle, left_path, right_path,
subtree_index);

out:
Expand Down Expand Up @@ -3430,8 +3430,8 @@ static int ocfs2_merge_rec_right(struct inode *inode,
if (ret)
mlog_errno(ret);

ocfs2_complete_edge_insert(inode, handle, left_path,
right_path, subtree_index);
ocfs2_complete_edge_insert(handle, left_path, right_path,
subtree_index);
}
out:
if (right_path)
Expand Down Expand Up @@ -3629,7 +3629,7 @@ static int ocfs2_merge_rec_left(struct inode *inode,
ocfs2_mv_path(right_path, left_path);
left_path = NULL;
} else
ocfs2_complete_edge_insert(inode, handle, left_path,
ocfs2_complete_edge_insert(handle, left_path,
right_path, subtree_index);
}
out:
Expand Down Expand Up @@ -4195,8 +4195,8 @@ static int ocfs2_insert_path(struct inode *inode,
*/
subtree_index = ocfs2_find_subtree_root(inode, left_path,
right_path);
ocfs2_complete_edge_insert(inode, handle, left_path,
right_path, subtree_index);
ocfs2_complete_edge_insert(handle, left_path, right_path,
subtree_index);
}

ret = 0;
Expand Down Expand Up @@ -5397,7 +5397,7 @@ static int ocfs2_truncate_rec(struct inode *inode, handle_t *handle,
int subtree_index;

subtree_index = ocfs2_find_subtree_root(inode, left_path, path);
ocfs2_complete_edge_insert(inode, handle, left_path, path,
ocfs2_complete_edge_insert(handle, left_path, path,
subtree_index);
}

Expand Down

0 comments on commit ff75919

Please sign in to comment.