Skip to content

Commit f890739

Browse files
committed
Merge tag 'ext4_for_linus-6.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
Pull ext4 fixes from Ted Ts'o: - Fix an inconsistency in structure size on 32-bit platforms caused by padding differences for the new EXT4_IOC_[GS]ET_TUNE_SB_PARAM ioctls - Fix a buffer leak on the error path when dropping the refcount an xattr value stored in an inode - Fix missing locking on the error path for the file defragmentation ioctl leading to a BUG * tag 'ext4_for_linus-6.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4: ext4: fix iloc.bh leak in ext4_xattr_inode_update_ref ext4: add missing down_write_data_sem in mext_move_extent(). ext4: fix ext4_tune_sb_params padding
2 parents e90b81e + d250bdf commit f890739

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

fs/ext4/move_extent.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,11 @@ static int mext_move_extent(struct mext_data *mext, u64 *m_len)
393393

394394
repair_branches:
395395
ret2 = 0;
396+
ext4_double_down_write_data_sem(orig_inode, donor_inode);
396397
r_len = ext4_swap_extents(handle, donor_inode, orig_inode,
397398
mext->donor_lblk, orig_map->m_lblk,
398399
*m_len, 0, &ret2);
400+
ext4_double_up_write_data_sem(orig_inode, donor_inode);
399401
if (ret2 || r_len != *m_len) {
400402
ext4_error_inode_block(orig_inode, (sector_t)(orig_map->m_lblk),
401403
EIO, "Unable to copy data block, data will be lost!");

fs/ext4/xattr.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,6 +1037,7 @@ static int ext4_xattr_inode_update_ref(handle_t *handle, struct inode *ea_inode,
10371037
ext4_error_inode(ea_inode, __func__, __LINE__, 0,
10381038
"EA inode %lu ref wraparound: ref_count=%lld ref_change=%d",
10391039
ea_inode->i_ino, ref_count, ref_change);
1040+
brelse(iloc.bh);
10401041
ret = -EFSCORRUPTED;
10411042
goto out;
10421043
}

include/uapi/linux/ext4.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ struct ext4_tune_sb_params {
139139
__u32 clear_feature_incompat_mask;
140140
__u32 clear_feature_ro_compat_mask;
141141
__u8 mount_opts[64];
142-
__u8 pad[64];
142+
__u8 pad[68];
143143
};
144144

145145
#define EXT4_TUNE_FL_ERRORS_BEHAVIOR 0x00000001

0 commit comments

Comments
 (0)