On Sat, Sep 17, 2011 at 05:32:57PM +0400, Dmitry Monakhov wrote: > This patch cleanup code a bit, actual logic not changed > - Move current block pointer to migrate_structure, let's all > walk info will be in one structure. > - Get rid of usless null ind-block ptr checks, caller already > does that check. > > Signed-off-by: Dmitry Monakhov <dmonakhov@xxxxxxxxxx> Applied, with one fixup: > @@ -211,17 +184,15 @@ static int update_tind_extent_range(handle_t *handle, struct inode *inode, > i_data = (__le32 *)bh->b_data; > for (i = 0; i < max_entries; i++) { > if (i_data[i]) { > - retval = update_dind_extent_range(handle, inode, > - le32_to_cpu(i_data[i]), > - &blk_count, lb); > + retval = update_ind_extent_range(handle, inode, > + le32_to_cpu(i_data[i]), lb); Surely this should remain a call to update_dind_extent_range(); I assume it was a cut-and-paste editing error. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html