]> git.itanic.dy.fi Git - linux-stable/commitdiff
NFSv4: Ensure that we pass the correct dentry to nfs4_intent_set_file
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Mon, 27 Aug 2007 15:33:00 +0000 (11:33 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Sat, 1 Sep 2007 14:14:38 +0000 (10:14 -0400)
This patch fixes an Oops that was reported by Gabriel Barazer.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4proc.c

index 036d8625b4f9fb16eed87edc8c765954c54c30d8..4b90e17555a99fa35bf7a607a532510992e256d7 100644 (file)
@@ -1434,7 +1434,7 @@ nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
        }
        res = d_add_unique(dentry, igrab(state->inode));
        if (res != NULL)
-               dentry = res;
+               path.dentry = res;
        nfs4_intent_set_file(nd, &path, state);
        return res;
 }