]> git.ipfire.org Git - thirdparty/systemd.git/commit
core: GC redundant device jobs from the run queue
authorLennart Poettering <lennart@poettering.net>
Tue, 15 Nov 2016 18:32:50 +0000 (19:32 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 16 Nov 2016 14:03:26 +0000 (15:03 +0100)
commitc5a97ed132b400ad82f7939d55fe1027a2b13f6e
tree924df71be2f04a66a30faccc54354d34c94f42ff
parent1a465207ab0a0b6756ab0d9305102d9159955a14
core: GC redundant device jobs from the run queue

In contrast to all other unit types device units when queued just track
external state, they cannot effect state changes on their own. Hence unless a
client or other job waits for them there's no reason to keep them in the job
queue. This adds a concept of GC'ing jobs of this type as soon as no client or
other job waits for them anymore.

To ensure this works correctly we need to track which clients actually
reference a job (i.e. which ones enqueued it). Unfortunately that's pretty
nasty to do for direct connections, as sd_bus_track doesn't work for
them. For now, work around this, by simply remembering in a boolean that a job
was requested by a direct connection, and reset it when we notice the direct
connection is gone. This means the GC logic works fine, except that jobs are
not immediately removed when direct connections disconnect.

In the longer term, a rework of the bus logic should fix this properly. For now
this should be good enough, as GC works for fine all cases except this one, and
thus is a clear improvement over the previous behaviour.

Fixes: #1921
src/core/dbus-job.c
src/core/dbus-job.h
src/core/dbus-unit.c
src/core/device.c
src/core/job.c
src/core/job.h
src/core/manager.c
src/core/manager.h
src/core/unit.c
src/core/unit.h
src/shared/bus-unit-util.c