..and only set old_ia_valid after it returns

Signed-off-by: Jeff Layton <[EMAIL PROTECTED]>
---
 fs/ramfs/file-nommu.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/fs/ramfs/file-nommu.c b/fs/ramfs/file-nommu.c
index cad2b7a..c354883 100644
--- a/fs/ramfs/file-nommu.c
+++ b/fs/ramfs/file-nommu.c
@@ -192,9 +192,12 @@ static int ramfs_nommu_resize(struct inode *inode, loff_t 
newsize, loff_t size)
 static int ramfs_nommu_setattr(struct dentry *dentry, struct iattr *ia)
 {
        struct inode *inode = dentry->d_inode;
-       unsigned int old_ia_valid = ia->ia_valid;
+       unsigned int old_ia_valid;
        int ret = 0;
 
+       attr_kill_to_mode(inode, ia);
+       old_ia_valid = ia->ia_valid;
+
        /* POSIX UID/GID verification for setting inode attributes */
        ret = inode_change_ok(inode, ia);
        if (ret)
-- 
1.5.2.2

-
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to