X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fdevice.c;h=5c18d996eaf76f53630a6c6f8ba9d19be62114a0;hb=06d4c99ab3d479c1a7c087a87e82fe01626128f6;hp=0ddd3b3d09734f7e7fe5dd668b01fd68993e8a6a;hpb=18f593360bfbce6ab5f74d06a97238ff7171df79;p=elogind.git diff --git a/src/device.c b/src/device.c index 0ddd3b3d0..5c18d996e 100644 --- a/src/device.c +++ b/src/device.c @@ -69,12 +69,6 @@ static void device_init(Unit *u) { * happen for the other units since their operations time out * anyway. */ d->meta.job_timeout = DEFAULT_TIMEOUT_USEC; - - /* We enable recursive stopping by default for all - devices. This enables the user to use Requires= to make a - service go a way when a device goes away, and Wants= - otherwise. */ - d->meta.recursive_stop = true; } static void device_done(Unit *u) { @@ -407,6 +401,39 @@ static Unit *device_following(Unit *u) { return UNIT(first); } +static int device_following_set(Unit *u, Set **_s) { + Device *d = DEVICE(u); + Device *other; + Set *s; + int r; + + assert(d); + assert(_s); + + if (!d->same_sysfs_prev && !d->same_sysfs_next) { + *_s = NULL; + return 0; + } + + if (!(s = set_new(NULL, NULL))) + return -ENOMEM; + + for (other = d->same_sysfs_next; other; other = other->same_sysfs_next) + if ((r = set_put(s, other)) < 0) + goto fail; + + for (other = d->same_sysfs_prev; other; other = other->same_sysfs_prev) + if ((r = set_put(s, other)) < 0) + goto fail; + + *_s = s; + return 1; + +fail: + set_free(s); + return r; +} + static void device_shutdown(Manager *m) { assert(m); @@ -535,7 +562,6 @@ DEFINE_STRING_TABLE_LOOKUP(device_state, DeviceState); const UnitVTable device_vtable = { .suffix = ".device", - .no_requires = true, .no_instances = true, .no_snapshots = true, .no_isolate = true, @@ -556,6 +582,7 @@ const UnitVTable device_vtable = { .bus_invalidating_properties = bus_device_invalidating_properties, .following = device_following, + .following_set = device_following_set, .enumerate = device_enumerate, .shutdown = device_shutdown