@@ -667,10 +667,6 @@ static ssize_t ocfs2_direct_IO(int rw,
if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
return 0;
- /* Fallback to buffered I/O if we are appending. */
- if (i_size_read(inode) <= offset)
- return 0;
-
if (rw == WRITE) {
loff_t final_size = offset + count;
/*
@@ -2193,17 +2193,6 @@ static int ocfs2_prepare_inode_for_write(struct file *file,
}
/*
- * Allowing concurrent direct writes means
- * i_size changes wouldn't be synchronized, so
- * one node could wind up truncating another
- * nodes writes.
- */
- if (end > i_size_read(inode)) {
- *direct_io = 0;
- break;
- }
-
- /*
* We don't fill holes during direct io, so
* check for them here. If any are found, the
* caller will have to retake some cluster
After enable block allocation in direct-io write now, we don't fallback to buffer I/O write in append write sitiaion any more. If the O_DIRECT flag is taken, we use direct-io. Signed-off-by: Weiwei Wang <wangww631@huawei.com> --- fs/ocfs2/aops.c | 4 ---- fs/ocfs2/file.c | 11 ----------- 2 files changed, 15 deletions(-)