The patch titled ocfs2: le*_add_cpu conversion has been removed from the -mm tree. Its filename was ocfs2-le_add_cpu-conversion.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: ocfs2: le*_add_cpu conversion From: Marcin Slusarz <marcin.slusarz@xxxxxxxxx> 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@xxxxxxxxx> Cc: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Cc: Kurt Hackel <kurt.hackel@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ocfs2/dir.c | 5 ++--- fs/ocfs2/localalloc.c | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff -puN fs/ocfs2/dir.c~ocfs2-le_add_cpu-conversion fs/ocfs2/dir.c --- a/fs/ocfs2/dir.c~ocfs2-le_add_cpu-conversion +++ a/fs/ocfs2/dir.c @@ -390,9 +390,8 @@ static int __ocfs2_delete_entry(handle_t goto bail; } if (pde) - pde->rec_len = - cpu_to_le16(le16_to_cpu(pde->rec_len) + - le16_to_cpu(de->rec_len)); + le16_add_cpu(&pde->rec_len, + le16_to_cpu(de->rec_len)); else de->inode = 0; dir->i_version++; diff -puN fs/ocfs2/localalloc.c~ocfs2-le_add_cpu-conversion fs/ocfs2/localalloc.c --- a/fs/ocfs2/localalloc.c~ocfs2-le_add_cpu-conversion +++ a/fs/ocfs2/localalloc.c @@ -585,8 +585,7 @@ int ocfs2_claim_local_alloc_bits(struct while(bits_wanted--) ocfs2_set_bit(start++, bitmap); - alloc->id1.bitmap1.i_used = cpu_to_le32(*num_bits + - le32_to_cpu(alloc->id1.bitmap1.i_used)); + le32_add_cpu(&alloc->id1.bitmap1.i_used, *num_bits); status = ocfs2_journal_dirty(handle, osb->local_alloc_bh); if (status < 0) { _ Patches currently in -mm which might be from marcin.slusarz@xxxxxxxxx are origin.patch git-gfs2-nmw.patch git-ieee1394.patch git-jfs.patch qla3xxx-convert-byte-order-of-constant-instead-of-variable.patch ntfs-le_add_cpu-conversion.patch git-ocfs2.patch scsi-le_add_cpu-conversion.patch ipw2200-le_add_cpu-conversion.patch ext2-le_add_cpu-conversion.patch ext2-convert-byte-order-of-constant-instead-of-variable.patch ext3-convert-byte-order-of-constant-instead-of-variable.patch ufs-e_add_cpu-conversion.patch reiserfs-le_add_cpu-conversion.patch ext4-le_add_cpu-conversion.patch ext4-convert-byte-order-of-constant-instead-of-variable.patch affs-be_add_cpu-conversion.patch hfs-hfsplus-be_add_cpu-conversion.patch quota-le_add_cpu-conversion.patch sysv-e_add_cpu-conversion.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html