diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-11-25 14:21:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-25 14:21:36 +0100 |
commit | 766d74fd8b39c307fbab6e90fa8fb0294aebe001 (patch) | |
tree | 706317339c86ac28ceaaf48da73ef55673ff5748 /src | |
parent | Check inode number to see if we are in init namespace (#35306) (diff) | |
parent | TEST-17: add reproducer for issue #35329 (diff) | |
download | systemd-766d74fd8b39c307fbab6e90fa8fb0294aebe001.tar.xz systemd-766d74fd8b39c307fbab6e90fa8fb0294aebe001.zip |
core/device: ignore ID_PROCESSING udev property on enumerate (#35332)
Fixes #35329.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/device.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/device.c b/src/core/device.c index 03a730f624..a8921e91c3 100644 --- a/src/core/device.c +++ b/src/core/device.c @@ -1048,9 +1048,6 @@ static void device_enumerate(Manager *m) { _cleanup_set_free_ Set *ready_units = NULL, *not_ready_units = NULL; Device *d; - if (device_is_processed(dev) <= 0) - continue; - if (device_setup_units(m, dev, &ready_units, ¬_ready_units) < 0) continue; |