diff options
Diffstat (limited to 'fs/hpfs/inode.c')
| -rw-r--r-- | fs/hpfs/inode.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/hpfs/inode.c b/fs/hpfs/inode.c index 82208cc28ebd..e50e92a42432 100644 --- a/fs/hpfs/inode.c +++ b/fs/hpfs/inode.c @@ -257,7 +257,7 @@ void hpfs_write_inode_nolock(struct inode *i)  	brelse(bh);  } -int hpfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry, +int hpfs_setattr(struct mnt_idmap *idmap, struct dentry *dentry,  		 struct iattr *attr)  {  	struct inode *inode = d_inode(dentry); @@ -275,7 +275,7 @@ int hpfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,  	if ((attr->ia_valid & ATTR_SIZE) && attr->ia_size > inode->i_size)  		goto out_unlock; -	error = setattr_prepare(&init_user_ns, dentry, attr); +	error = setattr_prepare(&nop_mnt_idmap, dentry, attr);  	if (error)  		goto out_unlock; @@ -289,7 +289,7 @@ int hpfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,  		hpfs_truncate(inode);  	} -	setattr_copy(&init_user_ns, inode, attr); +	setattr_copy(&nop_mnt_idmap, inode, attr);  	hpfs_write_inode(inode);  |