summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/blockdev-util.c2
-rw-r--r--src/shared/blockdev-util.h1
-rw-r--r--src/udev/udevd.c39
3 files changed, 7 insertions, 35 deletions
diff --git a/src/shared/blockdev-util.c b/src/shared/blockdev-util.c
index 7ffb619ac6..87c19d7086 100644
--- a/src/shared/blockdev-util.c
+++ b/src/shared/blockdev-util.c
@@ -509,7 +509,7 @@ int block_device_resize_partition(
return RET_NERRNO(ioctl(fd, BLKPG, &ba));
}
-static int partition_enumerator_new(sd_device *dev, sd_device_enumerator **ret) {
+int partition_enumerator_new(sd_device *dev, sd_device_enumerator **ret) {
_cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
const char *s;
int r;
diff --git a/src/shared/blockdev-util.h b/src/shared/blockdev-util.h
index fb041bf619..8df76ff30e 100644
--- a/src/shared/blockdev-util.h
+++ b/src/shared/blockdev-util.h
@@ -36,5 +36,6 @@ int path_get_whole_disk(const char *path, bool backing, dev_t *ret);
int block_device_add_partition(int fd, const char *name, int nr, uint64_t start, uint64_t size);
int block_device_remove_partition(int fd, const char *name, int nr);
int block_device_resize_partition(int fd, int nr, uint64_t start, uint64_t size);
+int partition_enumerator_new(sd_device *dev, sd_device_enumerator **ret);
int block_device_remove_all_partitions(sd_device *dev, int fd);
int block_device_has_partitions(sd_device *dev);
diff --git a/src/udev/udevd.c b/src/udev/udevd.c
index b179dfac37..c034e6a3cf 100644
--- a/src/udev/udevd.c
+++ b/src/udev/udevd.c
@@ -28,6 +28,7 @@
#include "sd-event.h"
#include "alloc-util.h"
+#include "blockdev-util.h"
#include "cgroup-setup.h"
#include "cgroup-util.h"
#include "cpu-set-util.h"
@@ -1399,7 +1400,7 @@ static int synthesize_change(sd_device *dev) {
streq_ptr(devtype, "disk") &&
!startswith(sysname, "dm-")) {
_cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
- bool part_table_read = false, has_partitions = false;
+ bool part_table_read = false;
sd_device *d;
int fd;
@@ -1418,50 +1419,20 @@ static int synthesize_change(sd_device *dev) {
}
/* search for partitions */
- r = sd_device_enumerator_new(&e);
+ r = partition_enumerator_new(dev, &e);
if (r < 0)
return r;
- r = sd_device_enumerator_allow_uninitialized(e);
- if (r < 0)
- return r;
-
- r = sd_device_enumerator_add_match_parent(e, dev);
- if (r < 0)
- return r;
-
- r = sd_device_enumerator_add_match_subsystem(e, "block", true);
- if (r < 0)
- return r;
-
- FOREACH_DEVICE(e, d) {
- const char *t;
-
- if (sd_device_get_devtype(d, &t) < 0 || !streq(t, "partition"))
- continue;
-
- has_partitions = true;
- break;
- }
-
/* We have partitions and re-read the table, the kernel already sent out a "change"
* event for the disk, and "remove/add" for all partitions. */
- if (part_table_read && has_partitions)
+ if (part_table_read && sd_device_enumerator_get_device_first(e))
return 0;
/* We have partitions but re-reading the partition table did not work, synthesize
* "change" for the disk and all partitions. */
(void) synthesize_change_one(dev, dev);
-
- FOREACH_DEVICE(e, d) {
- const char *t;
-
- if (sd_device_get_devtype(d, &t) < 0 || !streq(t, "partition"))
- continue;
-
+ FOREACH_DEVICE(e, d)
(void) synthesize_change_one(dev, d);
- }
-
} else
(void) synthesize_change_one(dev, dev);