Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit deee9369 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFSv4: Ensure that we pass the correct dentry to nfs4_intent_set_file



This patch fixes an Oops that was reported by Gabriel Barazer.

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 65bbf6bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1434,7 +1434,7 @@ nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
	}
	}
	res = d_add_unique(dentry, igrab(state->inode));
	res = d_add_unique(dentry, igrab(state->inode));
	if (res != NULL)
	if (res != NULL)
		dentry = res;
		path.dentry = res;
	nfs4_intent_set_file(nd, &path, state);
	nfs4_intent_set_file(nd, &path, state);
	return res;
	return res;
}
}