| To: | linux-kernel@xxxxxxxxxxxxxxx, linux-fsdevel@xxxxxxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 23/25] XFS: call attr_kill_to_mode from xfs_vn_setattr |
| From: | Jeff Layton <jlayton@xxxxxxxxxx> |
| Date: | Tue, 24 Jul 2007 13:22:34 -0400 |
| Cc: | xfs@xxxxxxxxxxx |
| Sender: | xfs-bounce@xxxxxxxxxxx |
..and only save off ia_valid after it returns
Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx>
---
fs/xfs/linux-2.6/xfs_iops.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c
index 0b5fa12..67fba53 100644
--- a/fs/xfs/linux-2.6/xfs_iops.c
+++ b/fs/xfs/linux-2.6/xfs_iops.c
@@ -651,12 +651,15 @@ xfs_vn_setattr(
struct iattr *attr)
{
struct inode *inode = dentry->d_inode;
- unsigned int ia_valid = attr->ia_valid;
+ unsigned int ia_valid;
bhv_vnode_t *vp = vn_from_inode(inode);
bhv_vattr_t vattr = { 0 };
int flags = 0;
int error;
+ attr_kill_to_mode(inode, attr);
+ ia_valid = attr->ia_valid;
+
if (ia_valid & ATTR_UID) {
vattr.va_mask |= XFS_AT_UID;
vattr.va_uid = attr->ia_uid;
--
1.5.2.2
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 23/25] XFS: call attr_kill_to_mode from xfs_vn_setattr, Jeff Layton |
|---|---|
| Next by Date: | [PATCH 00/25] move handling of setuid/gid bits from VFS into individual setattr functions, Jeff Layton |
| Previous by Thread: | [PATCH 23/25] XFS: call attr_kill_to_mode from xfs_vn_setattr, Jeff Layton |
| Next by Thread: | [PATCH 00/25] move handling of setuid/gid bits from VFS into individual setattr functions, Jeff Layton |
| Indexes: | [Date] [Thread] [Top] [All Lists] |