diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-20 18:14:31 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-20 18:14:31 -0800 | 
| commit | 1f0377ff088ed2971c57debc9b0c3b846ec431fd (patch) | |
| tree | cd53c8981269e57e38e4285abd71cc990e1cfc67 /fs/ntfs/file.c | |
| parent | 54d46ea993744c5408e39ce0cb4851e13cbea716 (diff) | |
| parent | b729d75d19777a5dd34672020516eada43ff026f (diff) | |
| download | olio-linux-3.10-1f0377ff088ed2971c57debc9b0c3b846ec431fd.tar.xz olio-linux-3.10-1f0377ff088ed2971c57debc9b0c3b846ec431fd.zip  | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull VFS update from Al Viro:
 "fscache fixes, ESTALE patchset, vmtruncate removal series, assorted
  misc stuff."
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (79 commits)
  vfs: make lremovexattr retry once on ESTALE error
  vfs: make removexattr retry once on ESTALE
  vfs: make llistxattr retry once on ESTALE error
  vfs: make listxattr retry once on ESTALE error
  vfs: make lgetxattr retry once on ESTALE
  vfs: make getxattr retry once on an ESTALE error
  vfs: allow lsetxattr() to retry once on ESTALE errors
  vfs: allow setxattr to retry once on ESTALE errors
  vfs: allow utimensat() calls to retry once on an ESTALE error
  vfs: fix user_statfs to retry once on ESTALE errors
  vfs: make fchownat retry once on ESTALE errors
  vfs: make fchmodat retry once on ESTALE errors
  vfs: have chroot retry once on ESTALE error
  vfs: have chdir retry lookup and call once on ESTALE error
  vfs: have faccessat retry once on an ESTALE error
  vfs: have do_sys_truncate retry once on an ESTALE error
  vfs: fix renameat to retry on ESTALE errors
  vfs: make do_unlinkat retry once on ESTALE errors
  vfs: make do_rmdir retry once on ESTALE errors
  vfs: add a flags argument to user_path_parent
  ...
Diffstat (limited to 'fs/ntfs/file.c')
| -rw-r--r-- | fs/ntfs/file.c | 16 | 
1 files changed, 13 insertions, 3 deletions
diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c index 1ecf46448f8..5b2d4f0853a 100644 --- a/fs/ntfs/file.c +++ b/fs/ntfs/file.c @@ -1762,6 +1762,16 @@ err_out:  	return err;  } +static void ntfs_write_failed(struct address_space *mapping, loff_t to) +{ +	struct inode *inode = mapping->host; + +	if (to > inode->i_size) { +		truncate_pagecache(inode, to, inode->i_size); +		ntfs_truncate_vfs(inode); +	} +} +  /**   * ntfs_file_buffered_write -   * @@ -2022,8 +2032,9 @@ static ssize_t ntfs_file_buffered_write(struct kiocb *iocb,  				 * allocated space, which is not a disaster.  				 */  				i_size = i_size_read(vi); -				if (pos + bytes > i_size) -					vmtruncate(vi, i_size); +				if (pos + bytes > i_size) { +					ntfs_write_failed(mapping, pos + bytes); +				}  				break;  			}  		} @@ -2227,7 +2238,6 @@ const struct file_operations ntfs_file_ops = {  const struct inode_operations ntfs_file_inode_ops = {  #ifdef NTFS_RW -	.truncate	= ntfs_truncate_vfs,  	.setattr	= ntfs_setattr,  #endif /* NTFS_RW */  };  |