diff options
author | Christian Hesse <mail@eworm.de> | 2014-06-10 15:51:15 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-06-15 09:30:02 -0400 |
commit | 4fb073f4e8147c02d71a510ca8c14b62e80024a7 (patch) | |
tree | 10103fca094e9c02cceb8fc7726cc2aff5a06f22 /src | |
parent | 5e3ab83ab3c47ae1132b48d45d12352f943b1427 (diff) |
udev: really exclude device-mapper from block device ownership event locking
Arguments were wrong order, no?
This fixes commits:
e918a1b5a94f270186dca59156354acd2a596494
3d06f4183470d42361303086ed9dedd29c0ffc1b
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/udev/udevd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 4e5d5df6b6..499dc6729d 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -304,7 +304,7 @@ static void worker_new(struct event *event) * <kabi_> IMHO this sounds like a good plan for this moment */ if (streq_ptr("block", udev_device_get_subsystem(dev)) && - !startswith("dm-", udev_device_get_sysname(dev))) { + !startswith(udev_device_get_sysname(dev), "dm-")) { struct udev_device *d = dev; if (streq_ptr("partition", udev_device_get_devtype(d))) @@ -741,7 +741,7 @@ static int synthesize_change(struct udev_device *dev) { if (streq_ptr("block", udev_device_get_subsystem(dev)) && streq_ptr("disk", udev_device_get_devtype(dev)) && - !startswith("dm-", udev_device_get_sysname(dev))) { + !startswith(udev_device_get_sysname(dev), "dm-")) { bool part_table_read = false; bool has_partitions = false; int fd; |