]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
cifs: don't update uniqueid in cifs_fattr_to_inode
authorJeff Layton <jlayton@redhat.com>
Mon, 17 May 2010 11:18:57 +0000 (07:18 -0400)
committerSteve French <sfrench@us.ibm.com>
Mon, 17 May 2010 20:57:27 +0000 (20:57 +0000)
We use this value to find an inode within the hash bucket, so we can't
change this without re-hashing the inode. For now, treat this value
as immutable.

Eventually, we should probably use an inode number change on a path
based operation to indicate that the lookup cache is invalid, but that's
a bit more code to deal with.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/inode.c

index 8e05e8a0ff8b686cbe1026f652ec38d676fe1aa4..b0ff2529cb9606cddf5b2f5eb04feb81b3661118 100644 (file)
@@ -137,7 +137,6 @@ cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)
                inode->i_mode = fattr->cf_mode;
 
        cifs_i->cifsAttrs = fattr->cf_cifsattrs;
-       cifs_i->uniqueid = fattr->cf_uniqueid;
 
        if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
                cifs_i->time = 0;