diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2012-10-09 15:57:54 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-10-11 22:26:54 +0200 |
commit | 4ecc131848c942196fe11f46468574da5cff19f4 (patch) | |
tree | 4f6ff558b2d3ddb4dc27df36d078031033ab0165 /src | |
parent | cfbc22abd0525570a6e58968d518ea9a7d0403ba (diff) |
udev: path_id - add scm support
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/udev/udev-builtin-path_id.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/udev/udev-builtin-path_id.c b/src/udev/udev-builtin-path_id.c index 720f616da5..6a78a476ac 100644 --- a/src/udev/udev-builtin-path_id.c +++ b/src/udev/udev-builtin-path_id.c @@ -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); |