Эх сурвалжийг харах

ext4: disable COLLAPSE_RANGE for bigalloc

Once COLLAPSE RANGE is be disable for ext4 with bigalloc feature till finding
root-cause of problem. It will be enable with fixing that regression of
xfstest(generic 075 and 091) again.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Reviewed-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Namjae Jeon 11 жил өмнө
parent
commit
0a04b24853

+ 3 - 0
fs/ext4/extents.c

@@ -5406,6 +5406,9 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len)
 	if (!S_ISREG(inode->i_mode))
 	if (!S_ISREG(inode->i_mode))
 		return -EINVAL;
 		return -EINVAL;
 
 
+	if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1)
+		return -EOPNOTSUPP;
+
 	trace_ext4_collapse_range(inode, offset, len);
 	trace_ext4_collapse_range(inode, offset, len);
 
 
 	punch_start = offset >> EXT4_BLOCK_SIZE_BITS(sb);
 	punch_start = offset >> EXT4_BLOCK_SIZE_BITS(sb);