public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/3] ext4: disable COLLAPSE_RANGE for bigalloc
@ 2014-04-16 22:30 Namjae Jeon
  2014-04-17 11:15 ` Lukáš Czerner
  0 siblings, 1 reply; 3+ messages in thread
From: Namjae Jeon @ 2014-04-16 22:30 UTC (permalink / raw)
  To: Theodore Ts'o; +Cc: linux-ext4, Lukáš Czerner

From: Namjae Jeon <namjae.jeon@samsung.com>

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>
---
 fs/ext4/extents.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index a64242f..8d45ef8 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -5461,6 +5461,11 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len)
 		goto out_mutex;
 	}
 
+	if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) {
+		ret = -EOPNOTSUPP;
+		goto out_mutex;
+	}
+
 	truncate_pagecache_range(inode, ioffset, -1);
 
 	/* Wait for existing dio to complete */
-- 
1.7.11-rc0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-17 11:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16 22:30 [PATCH 3/3] ext4: disable COLLAPSE_RANGE for bigalloc Namjae Jeon
2014-04-17 11:15 ` Lukáš Czerner
2014-04-17 11:27   ` Namjae Jeon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox