[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <506FEA53.2090305@gmail.com>
Date: Sat, 06 Oct 2012 10:22:43 +0200
From: Marco Stornelli <marco.stornelli@...il.com>
To: Al Viro <viro@...IV.linux.org.uk>
CC: "Tigran A. Aivazian" <tigran@...azian.fsnet.co.uk>,
linux-kernel@...r.kernel.org,
Linux FS Devel <linux-fsdevel@...r.kernel.org>
Subject: [PATCH 09/22] bfs: drop vmtruncate
Removed vmtruncate.
Signed-off-by: Marco Stornelli <marco.stornelli@...il.com>
---
fs/bfs/file.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/fs/bfs/file.c b/fs/bfs/file.c
index f20e8a7..4967258 100644
--- a/fs/bfs/file.c
+++ b/fs/bfs/file.c
@@ -171,8 +171,9 @@ static int bfs_write_begin(struct file *file, struct address_space *mapping,
bfs_get_block);
if (unlikely(ret)) {
loff_t isize = mapping->host->i_size;
- if (pos + len > isize)
- vmtruncate(mapping->host, isize);
+ if ((pos + len > isize) &&
+ inode_newsize_ok(mapping->host, isize) == 0)
+ truncate_setsize(mapping->host, isize);
}
return ret;
--
1.7.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists