]> git.ozlabs.org Git - petitboot/commitdiff
discover: Consolidate device path, name and ID.
authorJeremy Kerr <jk@ozlabs.org>
Wed, 18 Sep 2013 03:49:14 +0000 (11:49 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Thu, 19 Sep 2013 05:12:40 +0000 (13:12 +0800)
This change cleans up our usage of device path, names and IDs.

Device ID is the kernel name for the device. We also expose this through
lookup_by_name.

Device path is the path to the dev node (ie, always starts with /dev/),
and is only used for mounting.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
discover/device-handler.c
discover/device-handler.h
discover/udev.c

index 11fb115293fcd44076ac30cee7e695a4d7dc7e49..7a84302b71314104b74309c3167abe5314d017b2 100644 (file)
@@ -86,11 +86,6 @@ struct discover_boot_option *discover_boot_option_create(
        return opt;
 }
 
        return opt;
 }
 
-static int device_match_path(struct discover_device *dev, const char *path)
-{
-       return dev->device_path && !strcmp(dev->device_path, path);
-}
-
 static int device_match_uuid(struct discover_device *dev, const char *uuid)
 {
        return dev->uuid && !strcmp(dev->uuid, uuid);
 static int device_match_uuid(struct discover_device *dev, const char *uuid)
 {
        return dev->uuid && !strcmp(dev->uuid, uuid);
@@ -130,26 +125,10 @@ static struct discover_device *device_lookup(
 struct discover_device *device_lookup_by_name(struct device_handler *handler,
                const char *name)
 {
 struct discover_device *device_lookup_by_name(struct device_handler *handler,
                const char *name)
 {
-       struct discover_device *dev;
-       char *path;
-
-       if (strncmp(name, "/dev/", strlen("/dev/")))
-               path = talloc_asprintf(NULL, "/dev/%s", name);
-       else
-               path = talloc_strdup(NULL, name);
-
-       dev = device_lookup_by_path(handler, path);
+       if (!strncmp(name, "/dev/", strlen("/dev/")))
+               name += strlen("/dev/");
 
 
-       talloc_free(path);
-
-       return dev;
-}
-
-struct discover_device *device_lookup_by_path(
-               struct device_handler *device_handler,
-               const char *path)
-{
-       return device_lookup(device_handler, device_match_path, path);
+       return device_lookup_by_id(handler, name);
 }
 
 struct discover_device *device_lookup_by_uuid(
 }
 
 struct discover_device *device_lookup_by_uuid(
@@ -331,7 +310,7 @@ static struct discover_device *discover_device_create(
                struct event *event)
 {
        struct discover_device *dev;
                struct event *event)
 {
        struct discover_device *dev;
-       const char *devname;
+       const char *devnode;
 
        dev = find_device(handler, event->device);
        if (dev)
 
        dev = find_device(handler, event->device);
        if (dev)
@@ -341,9 +320,9 @@ static struct discover_device *discover_device_create(
        dev->device = talloc_zero(dev, struct device);
        list_init(&dev->boot_options);
 
        dev->device = talloc_zero(dev, struct device);
        list_init(&dev->boot_options);
 
-       devname = event_get_param(ctx->event, "DEVNAME");
-       if (devname)
-               dev->device_path = talloc_strdup(dev, devname);
+       devnode = event_get_param(ctx->event, "node");
+       if (devnode)
+               dev->device_path = talloc_strdup(dev, devnode);
 
        dev->device->id = talloc_strdup(dev, event->device);
        dev->device->type = event_device_type(dev->device, event);
 
        dev->device->id = talloc_strdup(dev, event->device);
        dev->device->type = event_device_type(dev->device, event);
index 0cd9c595fb535058e21da4a90fa4906de26fe7b8..e71212ceb69be512874d3c958eb42488a4a1aa95 100644 (file)
@@ -78,8 +78,6 @@ int device_handler_event(struct device_handler *handler, struct event *event);
 
 struct discover_device *device_lookup_by_name(struct device_handler *handler,
                const char *name);
 
 struct discover_device *device_lookup_by_name(struct device_handler *handler,
                const char *name);
-struct discover_device *device_lookup_by_path(struct device_handler *handler,
-               const char *path);
 struct discover_device *device_lookup_by_uuid(struct device_handler *handler,
                const char *uuid);
 struct discover_device *device_lookup_by_label(struct device_handler *handler,
 struct discover_device *device_lookup_by_uuid(struct device_handler *handler,
                const char *uuid);
 struct discover_device *device_lookup_by_label(struct device_handler *handler,
index d13ced7a22d175cf9684511d41e7ba52289d6020..f9eb26d078213a9a323d74ff4e7447ca652a75bf 100644 (file)
@@ -125,7 +125,8 @@ static int udev_handle_dev_action(struct udev_device *dev, const char *action)
 
        event->n_params = 0;
        event->params = NULL;
 
        event->n_params = 0;
        event->params = NULL;
-       event_set_param(event, "DEVNAME", devnode);
+       event_set_param(event, "path", devpath);
+       event_set_param(event, "node", devnode);
        event_set_param(event, "type", devtype);
 
        udev_setup_event_params(dev, event);
        event_set_param(event, "type", devtype);
 
        udev_setup_event_params(dev, event);