chiark / gitweb /
udev: path_id - add scm support
authorSebastian Ott <sebott@linux.vnet.ibm.com>
Tue, 9 Oct 2012 13:57:54 +0000 (15:57 +0200)
committerKay Sievers <kay@vrfy.org>
Thu, 11 Oct 2012 20:26:54 +0000 (22:26 +0200)
Add support for scm block devices. Introduced here:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=f30664e2

Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
src/udev/udev-builtin-path_id.c

index 720f616da5b28b1e26ee1112f93b95a5e1fe8524..6a78a476acfaadc3db6c8e7951f5a89ef2f850b5 100644 (file)
@@ -484,6 +484,9 @@ static int builtin_path_id(struct udev_device *dev, int argc, char *argv[], bool
                 } else if (strcmp(subsys, "virtio") == 0) {
                         path_prepend(&path, "virtio-pci-%s", udev_device_get_sysname(parent));
                         parent = skip_subsystem(parent, "virtio");
+                } else if (strcmp(subsys, "scm") == 0) {
+                        path_prepend(&path, "scm-%s", udev_device_get_sysname(parent));
+                        parent = skip_subsystem(parent, "scm");
                 }
 
                 parent = udev_device_get_parent(parent);