From: Eric Biggers Date: Tue, 18 Dec 2012 16:54:43 +0000 (-0600) Subject: mount_image.c: Minor cleanups X-Git-Tag: v1.2.1~30 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=c0f8b57abbe88037a167e3919dfa1e48162fdb05 mount_image.c: Minor cleanups --- diff --git a/src/mount_image.c b/src/mount_image.c index e361ddb8..6a38dc33 100644 --- a/src/mount_image.c +++ b/src/mount_image.c @@ -1107,7 +1107,8 @@ static int unmount_progress_func(enum wimlib_progress_msg msg, if (mq_send(wimfs_get_context()->daemon_to_unmount_mq, (void*)&msg, sizeof(msg), 1)) { - ERROR_WITH_ERRNO("Failed to send status to unmount process"); + ERROR_WITH_ERRNO("Failed to send progress information " + "to unmount process"); } } return 0; @@ -1240,7 +1241,8 @@ out_crashed: static int daemon_timed_out_cb(struct msg_handler_context *handler_ctx) { - DEBUG("Timed out"); + ERROR("Timed out waiting for unmount request! " + "Changes to the mounted WIM will not be committed."); return WIMLIB_ERR_TIMEOUT; } @@ -1455,25 +1457,19 @@ static int wimfs_chmod(const char *path, mode_t mask) /* Called when the filesystem is unmounted. */ static void wimfs_destroy(void *p) { - struct wimfs_context *wimfs_ctx; - - wimfs_ctx = wimfs_get_context(); - - if (open_message_queues(wimfs_ctx, true)) - return; - - struct msg_handler_context handler_ctx = { - .timeout_seconds = 5, - .daemon = { - .wimfs_ctx = wimfs_ctx, - }, - }; - - message_loop(wimfs_ctx->unmount_to_daemon_mq, - &daemon_msg_handler_callbacks, - &handler_ctx); - - close_message_queues(wimfs_ctx); + struct wimfs_context *wimfs_ctx = wimfs_get_context(); + if (open_message_queues(wimfs_ctx, true) == 0) { + struct msg_handler_context handler_ctx = { + .timeout_seconds = 5, + .daemon = { + .wimfs_ctx = wimfs_ctx, + }, + }; + message_loop(wimfs_ctx->unmount_to_daemon_mq, + &daemon_msg_handler_callbacks, + &handler_ctx); + close_message_queues(wimfs_ctx); + } } #if 0