From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Stornelli Subject: [PATCH 07/21] adfs: drop vmtruncate Date: Fri, 31 Aug 2012 15:54:52 +0200 Message-ID: <5040C22C.1030508@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Guenter Roeck , Luca Tettamanti , linux-kernel@vger.kernel.org To: Linux FS Devel Return-path: Received: from mail-bk0-f46.google.com ([209.85.214.46]:34998 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752066Ab2HaOB3 (ORCPT ); Fri, 31 Aug 2012 10:01:29 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Removed vmtruncate. Signed-off-by: Marco Stornelli --- fs/adfs/inode.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/adfs/inode.c b/fs/adfs/inode.c index 1dab6a1..5d2a0e0 100644 --- a/fs/adfs/inode.c +++ b/fs/adfs/inode.c @@ -57,8 +57,9 @@ static int adfs_write_begin(struct file *file, struct address_space *mapping, &ADFS_I(mapping->host)->mmu_private); 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