Skip to content

Commit

Permalink
procfs: drop vmtruncate
Browse files Browse the repository at this point in the history
Removed vmtruncate

Signed-off-by: Marco Stornelli <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Marco Stornelli authored and Al Viro committed Dec 20, 2012
1 parent cfac4b4 commit 46f6955
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.
7 changes: 0 additions & 7 deletions fs/proc/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -542,13 +542,6 @@ int proc_setattr(struct dentry *dentry, struct iattr *attr)
if (error)
return error;

if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
error = vmtruncate(inode, attr->ia_size);
if (error)
return error;
}

setattr_copy(inode, attr);
mark_inode_dirty(inode);
return 0;
Expand Down
9 changes: 1 addition & 8 deletions fs/proc/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,9 @@ static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
if (error)
return error;

if ((iattr->ia_valid & ATTR_SIZE) &&
iattr->ia_size != i_size_read(inode)) {
error = vmtruncate(inode, iattr->ia_size);
if (error)
return error;
}

setattr_copy(inode, iattr);
mark_inode_dirty(inode);

de->uid = inode->i_uid;
de->gid = inode->i_gid;
de->mode = inode->i_mode;
Expand Down
7 changes: 0 additions & 7 deletions fs/proc/proc_sysctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,13 +736,6 @@ static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr)
if (error)
return error;

if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
error = vmtruncate(inode, attr->ia_size);
if (error)
return error;
}

setattr_copy(inode, attr);
mark_inode_dirty(inode);
return 0;
Expand Down

0 comments on commit 46f6955

Please sign in to comment.