aboutsummaryrefslogtreecommitdiff
path: root/rumpdisk
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-11 16:27:43 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-11 16:29:45 +0200
commit9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3 (patch)
treeda5c163f6e6240d9400aa36fcdf38226e5e5e023 /rumpdisk
parentc654480ef67c15b2cd9e774afa65f53b32693b40 (diff)
downloadhurd-9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3.tar.gz
hurd-9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3.tar.bz2
hurd-9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3.zip
libmachdev: Fix startup_dosync
We do not actually want to shut everything down. For instance, we still have to be able to start the acpi translator to perform the actual shutdown. What we however have to do is syncing the disks.
Diffstat (limited to 'rumpdisk')
-rw-r--r--rumpdisk/block-rump.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/rumpdisk/block-rump.c b/rumpdisk/block-rump.c
index 7f77fc81..80cdc350 100644
--- a/rumpdisk/block-rump.c
+++ b/rumpdisk/block-rump.c
@@ -195,19 +195,12 @@ rumpdisk_device_dealloc (void *d)
}
static void
-rumpdisk_device_shutdown (mach_port_t dosync_handle)
+rumpdisk_device_sync (void)
{
- struct block_data *bd = block_head;
-
if (disabled)
return;
- while (bd)
- {
- rumpdisk_device_close((void *)bd);
- bd = bd->next;
- }
- rump_sys_reboot (0, NULL);
+ rump_sys_sync ();
}
static io_return_t
@@ -419,7 +412,7 @@ static struct machdev_device_emulation_ops rump_block_emulation_ops = {
NULL,
NULL,
NULL,
- rumpdisk_device_shutdown
+ rumpdisk_device_sync
};
void