diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-09 08:06:57 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:40 -0500 |
commit | 2a79f17e4a641a2f463cb512cb0ec349844a147b (patch) | |
tree | 8801127310d0a3492941bb284e83393844a19685 /fs/xfs | |
parent | 8c9379e972e984d11c2b99121847ba9fa7a0c56c (diff) |
vfs: mnt_drop_write_file()
new helper (wrapper around mnt_drop_write()) to be used in pair with
mnt_want_write_file().
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_ioctl.c | 4 | ||||
-rw-r--r-- | fs/xfs/xfs_ioctl32.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index b436e17c753e..76f3ca5cfc36 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c | |||
@@ -566,7 +566,7 @@ xfs_attrmulti_by_handle( | |||
566 | dentry->d_inode, attr_name, | 566 | dentry->d_inode, attr_name, |
567 | ops[i].am_attrvalue, ops[i].am_length, | 567 | ops[i].am_attrvalue, ops[i].am_length, |
568 | ops[i].am_flags); | 568 | ops[i].am_flags); |
569 | mnt_drop_write(parfilp->f_path.mnt); | 569 | mnt_drop_write_file(parfilp); |
570 | break; | 570 | break; |
571 | case ATTR_OP_REMOVE: | 571 | case ATTR_OP_REMOVE: |
572 | ops[i].am_error = mnt_want_write_file(parfilp); | 572 | ops[i].am_error = mnt_want_write_file(parfilp); |
@@ -575,7 +575,7 @@ xfs_attrmulti_by_handle( | |||
575 | ops[i].am_error = xfs_attrmulti_attr_remove( | 575 | ops[i].am_error = xfs_attrmulti_attr_remove( |
576 | dentry->d_inode, attr_name, | 576 | dentry->d_inode, attr_name, |
577 | ops[i].am_flags); | 577 | ops[i].am_flags); |
578 | mnt_drop_write(parfilp->f_path.mnt); | 578 | mnt_drop_write_file(parfilp); |
579 | break; | 579 | break; |
580 | default: | 580 | default: |
581 | ops[i].am_error = EINVAL; | 581 | ops[i].am_error = EINVAL; |
diff --git a/fs/xfs/xfs_ioctl32.c b/fs/xfs/xfs_ioctl32.c index dd4ba1d4c582..f9ccb7b7c043 100644 --- a/fs/xfs/xfs_ioctl32.c +++ b/fs/xfs/xfs_ioctl32.c | |||
@@ -461,7 +461,7 @@ xfs_compat_attrmulti_by_handle( | |||
461 | dentry->d_inode, attr_name, | 461 | dentry->d_inode, attr_name, |
462 | compat_ptr(ops[i].am_attrvalue), | 462 | compat_ptr(ops[i].am_attrvalue), |
463 | ops[i].am_length, ops[i].am_flags); | 463 | ops[i].am_length, ops[i].am_flags); |
464 | mnt_drop_write(parfilp->f_path.mnt); | 464 | mnt_drop_write_file(parfilp); |
465 | break; | 465 | break; |
466 | case ATTR_OP_REMOVE: | 466 | case ATTR_OP_REMOVE: |
467 | ops[i].am_error = mnt_want_write_file(parfilp); | 467 | ops[i].am_error = mnt_want_write_file(parfilp); |
@@ -470,7 +470,7 @@ xfs_compat_attrmulti_by_handle( | |||
470 | ops[i].am_error = xfs_attrmulti_attr_remove( | 470 | ops[i].am_error = xfs_attrmulti_attr_remove( |
471 | dentry->d_inode, attr_name, | 471 | dentry->d_inode, attr_name, |
472 | ops[i].am_flags); | 472 | ops[i].am_flags); |
473 | mnt_drop_write(parfilp->f_path.mnt); | 473 | mnt_drop_write_file(parfilp); |
474 | break; | 474 | break; |
475 | default: | 475 | default: |
476 | ops[i].am_error = EINVAL; | 476 | ops[i].am_error = EINVAL; |