diff options
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
| -rw-r--r-- | fs/xfs/xfs_ioctl.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index d99a9051890..76f3ca5cfc3 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -559,23 +559,23 @@ xfs_attrmulti_by_handle(  					ops[i].am_flags);  			break;  		case ATTR_OP_SET: -			ops[i].am_error = mnt_want_write(parfilp->f_path.mnt); +			ops[i].am_error = mnt_want_write_file(parfilp);  			if (ops[i].am_error)  				break;  			ops[i].am_error = xfs_attrmulti_attr_set(  					dentry->d_inode, attr_name,  					ops[i].am_attrvalue, ops[i].am_length,  					ops[i].am_flags); -			mnt_drop_write(parfilp->f_path.mnt); +			mnt_drop_write_file(parfilp);  			break;  		case ATTR_OP_REMOVE: -			ops[i].am_error = mnt_want_write(parfilp->f_path.mnt); +			ops[i].am_error = mnt_want_write_file(parfilp);  			if (ops[i].am_error)  				break;  			ops[i].am_error = xfs_attrmulti_attr_remove(  					dentry->d_inode, attr_name,  					ops[i].am_flags); -			mnt_drop_write(parfilp->f_path.mnt); +			mnt_drop_write_file(parfilp);  			break;  		default:  			ops[i].am_error = EINVAL;  | 
