Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97162
b: refs/heads/master
c: 9d8df6a
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed May 21, 2008
1 parent 8d86d6b commit b3a5998
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: f6c2fb5ccff51e19850b1aca024a3b20b16a81e9
refs/heads/master: 9d8df6aa9b1ca74127b11537d91de492dbea666a
4 changes: 2 additions & 2 deletions trunk/fs/ocfs2/alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2788,7 +2788,7 @@ static int ocfs2_merge_rec_right(struct inode *inode,
BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
left_rec = &el->l_recs[index];

if (index == le16_to_cpu(el->l_next_free_rec - 1) &&
if (index == le16_to_cpu(el->l_next_free_rec) - 1 &&
le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) {
/* we meet with a cross extent block merge. */
ret = ocfs2_get_right_path(inode, left_path, &right_path);
Expand All @@ -2802,7 +2802,7 @@ static int ocfs2_merge_rec_right(struct inode *inode,
BUG_ON(next_free <= 0);
right_rec = &right_el->l_recs[0];
if (ocfs2_is_empty_extent(right_rec)) {
BUG_ON(le16_to_cpu(next_free) <= 1);
BUG_ON(next_free <= 1);
right_rec = &right_el->l_recs[1];
}

Expand Down

0 comments on commit b3a5998

Please sign in to comment.