linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Marco Stornelli <marco.stornelli@gmail.com>
Cc: Linux FS Devel <linux-fsdevel@vger.kernel.org>,
	Guenter Roeck <linux@roeck-us.net>,
	Luca Tettamanti <kronos.it@gmail.com>,
	reiserfs-devel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 03/21] reiserfs: drop vmtruncate
Date: Mon, 3 Sep 2012 15:34:09 +0200	[thread overview]
Message-ID: <20120903133409.GH21109@quack.suse.cz> (raw)
In-Reply-To: <5040C195.9050303@gmail.com>

On Fri 31-08-12 15:52:21, Marco Stornelli wrote:
> Removed vmtruncate.
  Looks good. You can add:
Reviewed-by: Jan Kara <jack@suse.cz>

							Honza

> 
> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
> ---
>  fs/reiserfs/file.c     |    3 +--
>  fs/reiserfs/inode.c    |   15 +++++++++++----
>  fs/reiserfs/reiserfs.h |    1 +
>  3 files changed, 13 insertions(+), 6 deletions(-)
> 
> diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c
> index 8375c92..50302d6 100644
> --- a/fs/reiserfs/file.c
> +++ b/fs/reiserfs/file.c
> @@ -126,7 +126,7 @@ static int reiserfs_file_open(struct inode *inode, struct file *file)
>  	return err;
>  }
>  
> -static void reiserfs_vfs_truncate_file(struct inode *inode)
> +void reiserfs_vfs_truncate_file(struct inode *inode)
>  {
>  	mutex_lock(&(REISERFS_I(inode)->tailpack));
>  	reiserfs_truncate_file(inode, 1);
> @@ -312,7 +312,6 @@ const struct file_operations reiserfs_file_operations = {
>  };
>  
>  const struct inode_operations reiserfs_file_inode_operations = {
> -	.truncate = reiserfs_vfs_truncate_file,
>  	.setattr = reiserfs_setattr,
>  	.setxattr = reiserfs_setxattr,
>  	.getxattr = reiserfs_getxattr,
> diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c
> index 855da58..03430b6 100644
> --- a/fs/reiserfs/inode.c
> +++ b/fs/reiserfs/inode.c
> @@ -3078,8 +3078,10 @@ static ssize_t reiserfs_direct_IO(int rw, struct kiocb *iocb,
>  		loff_t isize = i_size_read(inode);
>  		loff_t end = offset + iov_length(iov, nr_segs);
>  
> -		if (end > isize)
> -			vmtruncate(inode, isize);
> +		if ((end > isize) && inode_newsize_ok(inode, isize) == 0) {
> +			truncate_setsize(inode, isize);
> +			reiserfs_vfs_truncate_file(inode);
> +		}
>  	}
>  
>  	return ret;
> @@ -3192,8 +3194,13 @@ int reiserfs_setattr(struct dentry *dentry, struct iattr *attr)
>  	 */
>  	reiserfs_write_unlock_once(inode->i_sb, depth);
>  	if ((attr->ia_valid & ATTR_SIZE) &&
> -	    attr->ia_size != i_size_read(inode))
> -		error = vmtruncate(inode, attr->ia_size);
> +	    attr->ia_size != i_size_read(inode)) {
> +		error = inode_newsize_ok(inode, attr->ia_size);
> +		if (!error) {
> +			truncate_setsize(inode, attr->ia_size);
> +			reiserfs_vfs_truncate_file(inode);
> +		}
> +	}
>  
>  	if (!error) {
>  		setattr_copy(inode, attr);
> diff --git a/fs/reiserfs/reiserfs.h b/fs/reiserfs/reiserfs.h
> index 33215f5..157e474 100644
> --- a/fs/reiserfs/reiserfs.h
> +++ b/fs/reiserfs/reiserfs.h
> @@ -2455,6 +2455,7 @@ struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
>  								    *,
>  								    int count);
>  int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *);
> +void reiserfs_vfs_truncate_file(struct inode *inode);
>  int reiserfs_commit_page(struct inode *inode, struct page *page,
>  			 unsigned from, unsigned to);
>  void reiserfs_flush_old_commits(struct super_block *);
> -- 
> 1.7.3.4
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

  reply	other threads:[~2012-09-03 13:34 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-31 13:52 [PATCH 03/21] reiserfs: drop vmtruncate Marco Stornelli
2012-09-03 13:34 ` Jan Kara [this message]
2012-10-20 12:17 Marco Stornelli
2012-11-03  9:23 Marco Stornelli
2012-12-15 10:47 Marco Stornelli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120903133409.GH21109@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=kronos.it@gmail.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=marco.stornelli@gmail.com \
    --cc=reiserfs-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).