linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 09/22] bfs: drop vmtruncate
@ 2012-10-06  8:22 Marco Stornelli
  2012-10-13 16:20 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Marco Stornelli @ 2012-10-06  8:22 UTC (permalink / raw)
  To: Al Viro; +Cc: Tigran A. Aivazian, linux-kernel, Linux FS Devel

Removed vmtruncate.

Signed-off-by: Marco Stornelli <marco.stornelli@gmail.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

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

* Re: [PATCH 09/22] bfs: drop vmtruncate
  2012-10-06  8:22 [PATCH 09/22] bfs: drop vmtruncate Marco Stornelli
@ 2012-10-13 16:20 ` Christoph Hellwig
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2012-10-13 16:20 UTC (permalink / raw)
  To: Marco Stornelli; +Cc: Al Viro, Tigran A. Aivazian, linux-kernel, Linux FS Devel

> @@ -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.

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

end of thread, other threads:[~2012-10-13 16:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-06  8:22 [PATCH 09/22] bfs: drop vmtruncate Marco Stornelli
2012-10-13 16:20 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).