[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20121013162040.GE19899@infradead.org>
Date: Sat, 13 Oct 2012 12:20:40 -0400
From: Christoph Hellwig <hch@...radead.org>
To: Marco Stornelli <marco.stornelli@...il.com>
Cc: Al Viro <viro@...IV.linux.org.uk>,
"Tigran A. Aivazian" <tigran@...azian.fsnet.co.uk>,
linux-kernel@...r.kernel.org,
Linux FS Devel <linux-fsdevel@...r.kernel.org>
Subject: Re: [PATCH 09/22] bfs: drop vmtruncate
> @@ -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);
No need for the inode_newsize_ok in the write failure handling.
--
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