summaryrefslogtreecommitdiff
path: root/libdiskfs/fsys-getroot.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-07-18 22:48:30 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-07-18 22:48:30 +0000
commitca4ab079a490e3192f068502fba77d9d600bc1d7 (patch)
tree5c6fe7cb96cc9a305b13ad11c7650e643200e301 /libdiskfs/fsys-getroot.c
parentfa15e701fdcc4784ec37cd0a83e0458792189867 (diff)
Formerly fsys-getroot.c.~13~
Diffstat (limited to 'libdiskfs/fsys-getroot.c')
-rw-r--r--libdiskfs/fsys-getroot.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/libdiskfs/fsys-getroot.c b/libdiskfs/fsys-getroot.c
index cce1dda5..7f339cf1 100644
--- a/libdiskfs/fsys-getroot.c
+++ b/libdiskfs/fsys-getroot.c
@@ -66,13 +66,17 @@ diskfs_S_fsys_getroot (fsys_t controlport,
if (childcontrol == MACH_PORT_NULL)
{
- if (error = diskfs_start_translator (diskfs_root_node,
- diskfs_dotdot_file))
+ if (error = diskfs_start_translator (diskfs_root_node, _diskfs_dotdot_file))
{
mutex_unlock (&diskfs_root_node->lock);
return error;
}
+ childcontrol = diskfs_root_node->translator.control;
}
+
+ mach_port_mod_refs (mach_task_self (), childcontrol,
+ MACH_PORT_RIGHT_SEND, 1);
+
mutex_unlock (&diskfs_root_node->lock);
error = fsys_getroot (childcontrol, uids, nuids, gids, ngids,
@@ -81,13 +85,15 @@ diskfs_S_fsys_getroot (fsys_t controlport,
{
/* The server has died; unrecord the translator port
and repeat the check. */
- mach_port_deallocate (mach_task_self (), childcontrol);
mutex_lock (&diskfs_root_node->lock);
- diskfs_root_node->translator.control = MACH_PORT_NULL;
+ if (diskfs_root_node->translator.control == childcontrol)
+ fshelp_translator_drop (&diskfs_root_node->translator);
+ mach_port_deallocate (mach_task_self (), childcontrol);
+ error = 0;
goto repeat_transcheck;
}
- if (!error && returned_port != MACH_PORT_NULL)
+ if (!error && *returned_port != MACH_PORT_NULL)
*returned_port_poly = MACH_MSG_TYPE_MOVE_SEND;
else
*returned_port_poly = MACH_MSG_TYPE_COPY_SEND;
@@ -124,7 +130,7 @@ diskfs_S_fsys_getroot (fsys_t controlport,
else
{
*retry = FS_RETRY_REAUTH;
- *returned_port = diskfs_dotdot_file;
+ *returned_port = _diskfs_dotdot_file;
*returned_port_poly = MACH_MSG_TYPE_COPY_SEND;
strcpy (retryname, pathbuf);
return 0;
@@ -170,11 +176,9 @@ diskfs_S_fsys_getroot (fsys_t controlport,
flags &= ~OPENONLY_STATE_MODES;
- /* XXX Shouldn't use _diskfs_dotdot_file here; that should be an arg. */
*returned_port = (ports_get_right
(diskfs_make_protid
- (diskfs_make_peropen (diskfs_root_node, flags,
- _diskfs_dotdot_file),
+ (diskfs_make_peropen (diskfs_root_node, flags, _diskfs_dotdot_file),
uids, nuids, gids, ngids)));
*returned_port_poly = MACH_MSG_TYPE_MAKE_SEND;