summaryrefslogtreecommitdiff
path: root/block.c
diff options
context:
space:
mode:
Diffstat (limited to 'block.c')
-rw-r--r--block.c43
1 files changed, 13 insertions, 30 deletions
diff --git a/block.c b/block.c
index 9e530f1..f743e75 100644
--- a/block.c
+++ b/block.c
@@ -1202,47 +1202,30 @@ static int umount_device(char *path, int type, bool all)
static int mount_action(char *action, char *device, int type)
{
- struct device *the_dev, *dev;
char path[32];
if (!action || !device)
return -1;
-
- if (config_load(NULL))
- return -1;
- cache_load(0);
-
- the_dev = find_block_device(NULL, NULL, device);
+ snprintf(path, sizeof(path), "/dev/%s", device);
if (!strcmp(action, "remove")) {
if (type == TYPE_HOTPLUG)
blockd_notify(device, NULL, NULL);
- if (!the_dev || !the_dev->m || the_dev->m->type != TYPE_MOUNT) {
- snprintf(path, sizeof(path), "/dev/%s", device);
- umount_device(path, type, true);
- } else
- vlist_for_element_to_last_reverse(&devices, the_dev, dev, node)
- if (dev->m && dev->m->type == TYPE_MOUNT)
- umount_device(dev->pr->dev, type, true);
+ umount_device(path, type, true);
+
return 0;
- } else if (!strcmp(action, "add")) {
- if (!the_dev)
- return -1;
- if (the_dev->m && the_dev->m->type == TYPE_MOUNT) {
- vlist_for_first_to_element(&devices, the_dev, dev, node) {
- if (dev->m && dev->m->type == TYPE_MOUNT) {
- int err = mount_device(dev, type);
- if (err)
- return err;
- }
- }
- return 0;
- } else
- return mount_device(the_dev, type);
+ } else if (strcmp(action, "add")) {
+ ULOG_ERR("Unkown action %s\n", action);
+
+ return -1;
}
- ULOG_ERR("Unkown action %s\n", action);
- return -1;
+
+ if (config_load(NULL))
+ return -1;
+ cache_load(0);
+
+ return mount_device(find_block_device(NULL, NULL, path), type);
}
static int main_hotplug(int argc, char **argv)