summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-26 23:49:25 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-26 23:49:25 +0000
commitba9eec6a751feaacd0092edaa652f25de96f4a87 (patch)
tree34710b8a31d4047f993a2393a5032b259502c837 /libdiskfs
parenteafa1766d15db82b0fecee887e5ff1c937528cc0 (diff)
(diskfs_shutdown): Ignore harmless errors from fsys_goaway.
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/shutdown.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libdiskfs/shutdown.c b/libdiskfs/shutdown.c
index 7427bbe4..23f48127 100644
--- a/libdiskfs/shutdown.c
+++ b/libdiskfs/shutdown.c
@@ -47,6 +47,10 @@ diskfs_shutdown (int flags)
else
error = 0;
mutex_lock (&np->lock);
+
+ if (error == MIG_SERVER_DIED || error == MACH_SEND_INVALID_DEST)
+ error = 0;
+
return error;
}