svn commit: r270894 - stable/10/sys/fs/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Sun Aug 31 21:43:29 UTC 2014
Author: trasz
Date: Sun Aug 31 21:43:28 2014
New Revision: 270894
URL: http://svnweb.freebsd.org/changeset/base/270894
Log:
MFC r270207:
Rework ".." lookup; previous one failed to properly busy the mountpoint.
Reviewed by: kib@
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/sys/fs/autofs/autofs_vnops.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/fs/autofs/autofs_vnops.c
==============================================================================
--- stable/10/sys/fs/autofs/autofs_vnops.c Sun Aug 31 21:38:03 2014 (r270893)
+++ stable/10/sys/fs/autofs/autofs_vnops.c Sun Aug 31 21:43:28 2014 (r270894)
@@ -198,6 +198,15 @@ mounted:
}
static int
+autofs_vget_callback(struct mount *mp, void *arg, int lkflags __unused,
+ struct vnode **vpp)
+{
+
+
+ return (autofs_node_vn(arg, mp, vpp));
+}
+
+static int
autofs_lookup(struct vop_lookup_args *ap)
{
struct vnode *dvp, *newvp, **vpp;
@@ -217,24 +226,19 @@ autofs_lookup(struct vop_lookup_args *ap
if (cnp->cn_flags & ISDOTDOT) {
KASSERT(anp->an_parent != NULL, ("NULL parent"));
/*
- * Note that in this case, dvp is the child vnode, and we are
- * looking up the parent vnode - exactly reverse from normal
- * operation. To preserve lock order, we unlock the child
- * (dvp), obtain the lock on parent (*vpp) in autofs_node_vn(),
- * then relock the child. We use vhold()/vdrop() to prevent
- * dvp from being freed in the meantime.
+ * Note that in this case, dvp is the child vnode, and we
+ * are looking up the parent vnode - exactly reverse from
+ * normal operation. Unlocking dvp requires some rather
+ * tricky unlock/relock dance to prevent mp from being freed;
+ * use vn_vget_ino_gen() which takes care of all that.
*/
- lock_flags = VOP_ISLOCKED(dvp);
- vhold(dvp);
- VOP_UNLOCK(dvp, 0);
- error = autofs_node_vn(anp->an_parent, mp, vpp);
+ error = vn_vget_ino_gen(dvp, autofs_vget_callback,
+ anp->an_parent, 0, vpp);
if (error != 0) {
- AUTOFS_WARN("autofs_node_vn() failed with error %d",
+ AUTOFS_WARN("vn_vget_ino_gen() failed with error %d",
error);
+ return (error);
}
- vn_lock(dvp, lock_flags | LK_RETRY);
- vdrop(dvp);
-
return (error);
}
More information about the svn-src-stable
mailing list