diff options
Diffstat (limited to 'libnetfs/io-reauthenticate.c')
-rw-r--r-- | libnetfs/io-reauthenticate.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libnetfs/io-reauthenticate.c b/libnetfs/io-reauthenticate.c index 91928130..8ff4182b 100644 --- a/libnetfs/io-reauthenticate.c +++ b/libnetfs/io-reauthenticate.c @@ -31,8 +31,18 @@ netfs_S_io_reauthenticate (struct protid *user, mach_port_t rend_port) if (!user) return EOPNOTSUPP; + /* This routine must carefully ignore EINTR because we + are a simpleroutine, so callers won't know to restart. */ + pthread_mutex_lock (&user->po->np->lock); - newpi = netfs_make_protid (user->po, 0); + do + newpi = netfs_make_protid (user->po, 0); + while (! newpi && errno == EINTR); + if (! newpi) + { + pthread_mutex_unlock (&user->po->np->lock); + return errno; + } newright = ports_get_send_right (newpi); assert (newright != MACH_PORT_NULL); |