[PATCH] ocfs2: le*_add_cpu conversion
replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
parent
1044e401af
commit
0dd3256e04
|
@ -390,9 +390,8 @@ static int __ocfs2_delete_entry(handle_t *handle, struct inode *dir,
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
if (pde)
|
if (pde)
|
||||||
pde->rec_len =
|
le16_add_cpu(&pde->rec_len,
|
||||||
cpu_to_le16(le16_to_cpu(pde->rec_len) +
|
le16_to_cpu(de->rec_len));
|
||||||
le16_to_cpu(de->rec_len));
|
|
||||||
else
|
else
|
||||||
de->inode = 0;
|
de->inode = 0;
|
||||||
dir->i_version++;
|
dir->i_version++;
|
||||||
|
|
|
@ -585,8 +585,7 @@ int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
|
||||||
while(bits_wanted--)
|
while(bits_wanted--)
|
||||||
ocfs2_set_bit(start++, bitmap);
|
ocfs2_set_bit(start++, bitmap);
|
||||||
|
|
||||||
alloc->id1.bitmap1.i_used = cpu_to_le32(*num_bits +
|
le32_add_cpu(&alloc->id1.bitmap1.i_used, *num_bits);
|
||||||
le32_to_cpu(alloc->id1.bitmap1.i_used));
|
|
||||||
|
|
||||||
status = ocfs2_journal_dirty(handle, osb->local_alloc_bh);
|
status = ocfs2_journal_dirty(handle, osb->local_alloc_bh);
|
||||||
if (status < 0) {
|
if (status < 0) {
|
||||||
|
|
Loading…
Reference in New Issue