Commit ba39ebb6 authored by Wei Yongjun's avatar Wei Yongjun Committed by Theodore Ts'o

ext4: convert to use leXX_add_cpu()

Convert cpu_to_leXX(leXX_to_cpu(E1) + E2) to use leXX_add_cpu().

dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent 6d1ab10e
...@@ -1177,7 +1177,7 @@ static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode, ...@@ -1177,7 +1177,7 @@ static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block), le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
ext4_idx_pblock(EXT_FIRST_INDEX(neh))); ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
neh->eh_depth = cpu_to_le16(le16_to_cpu(neh->eh_depth) + 1); le16_add_cpu(&neh->eh_depth, 1);
ext4_mark_inode_dirty(handle, inode); ext4_mark_inode_dirty(handle, inode);
out: out:
brelse(bh); brelse(bh);
......
...@@ -570,9 +570,8 @@ mext_calc_swap_extents(struct ext4_extent *tmp_dext, ...@@ -570,9 +570,8 @@ mext_calc_swap_extents(struct ext4_extent *tmp_dext,
diff = donor_off - le32_to_cpu(tmp_dext->ee_block); diff = donor_off - le32_to_cpu(tmp_dext->ee_block);
ext4_ext_store_pblock(tmp_dext, ext4_ext_pblock(tmp_dext) + diff); ext4_ext_store_pblock(tmp_dext, ext4_ext_pblock(tmp_dext) + diff);
tmp_dext->ee_block = le32_add_cpu(&tmp_dext->ee_block, diff);
cpu_to_le32(le32_to_cpu(tmp_dext->ee_block) + diff); le16_add_cpu(&tmp_dext->ee_len, -diff);
tmp_dext->ee_len = cpu_to_le16(le16_to_cpu(tmp_dext->ee_len) - diff);
if (max_count < ext4_ext_get_actual_len(tmp_dext)) if (max_count < ext4_ext_get_actual_len(tmp_dext))
tmp_dext->ee_len = cpu_to_le16(max_count); tmp_dext->ee_len = cpu_to_le16(max_count);
......
...@@ -431,7 +431,7 @@ static void __save_error_info(struct super_block *sb, const char *func, ...@@ -431,7 +431,7 @@ static void __save_error_info(struct super_block *sb, const char *func,
*/ */
if (!es->s_error_count) if (!es->s_error_count)
mod_timer(&EXT4_SB(sb)->s_err_report, jiffies + 24*60*60*HZ); mod_timer(&EXT4_SB(sb)->s_err_report, jiffies + 24*60*60*HZ);
es->s_error_count = cpu_to_le32(le32_to_cpu(es->s_error_count) + 1); le32_add_cpu(&es->s_error_count, 1);
} }
static void save_error_info(struct super_block *sb, const char *func, static void save_error_info(struct super_block *sb, const char *func,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment