Lines Matching refs:rootfnp
2059 fnnode_t *fnp, *rootfnp, *nfnp; in unmount_autofs() local
2066 rootfnp = vntofn(rootvp); in unmount_autofs()
2067 rw_enter(&rootfnp->fn_rwlock, RW_WRITER); in unmount_autofs()
2068 for (fnp = rootfnp->fn_dirents; fnp != NULL; fnp = nfnp) { in unmount_autofs()
2073 auto_disconnect(rootfnp, fnp); in unmount_autofs()
2077 rw_exit(&rootfnp->fn_rwlock); in unmount_autofs()
2280 unmount_subtree(fnnode_t *rootfnp, boolean_t force) in unmount_subtree() argument
2290 ASSERT(fntovn(rootfnp)->v_type != VLNK); in unmount_subtree()
2291 AUTOFS_DPRINT((10, "unmount_subtree: root=%p (%s)\n", (void *)rootfnp, in unmount_subtree()
2292 rootfnp->fn_name)); in unmount_subtree()
2299 currfnp = lastfnp = rootfnp; in unmount_subtree()
2303 while (currfnp != rootfnp || rootfnp->fn_unmount_ref_time < timestamp) { in unmount_subtree()