mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-20 02:59:08 +07:00
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>
This commit is contained in:
parent
5e3ab83ab3
commit
4fb073f4e8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user