Merge pull request #27968 from poettering/may-gc-tweaks

pid1: some minor GC logic tweaks
This commit is contained in:
Lennart Poettering
2023-06-08 14:54:09 +02:00
committed by GitHub
5 changed files with 20 additions and 1 deletions

View File

@@ -3319,6 +3319,8 @@ static int on_cgroup_oom_event(sd_event_source *s, void *userdata) {
}
(void) unit_check_oom(u);
unit_add_to_gc_queue(u);
return 0;
}

View File

@@ -241,6 +241,9 @@ void bus_job_send_change_signal(Job *j) {
if (j->in_dbus_queue) {
LIST_REMOVE(dbus_queue, j->manager->dbus_job_queue, j);
j->in_dbus_queue = false;
/* The job might be good to be GC once its pending signals have been sent */
job_add_to_gc_queue(j);
}
r = bus_foreach_bus(j->manager, j->bus_track, j->sent_dbus_new_signal ? send_changed_signal : send_new_signal, j);

View File

@@ -1648,6 +1648,9 @@ void bus_unit_send_change_signal(Unit *u) {
if (u->in_dbus_queue) {
LIST_REMOVE(dbus_queue, u->manager->dbus_unit_queue, u);
u->in_dbus_queue = false;
/* The unit might be good to be GC once its pending signals have been sent */
unit_add_to_gc_queue(u);
}
if (!u->id)

View File

@@ -1444,6 +1444,10 @@ bool job_may_gc(Job *j) {
if (!UNIT_VTABLE(j->unit)->gc_jobs)
return false;
/* Make sure to send out pending D-Bus events before we unload the unit */
if (j->in_dbus_queue)
return false;
if (sd_bus_track_count(j->bus_track) > 0)
return false;

View File

@@ -441,7 +441,14 @@ bool unit_may_gc(Unit *u) {
if (u->perpetual)
return false;
if (u->in_cgroup_empty_queue)
/* if we saw a cgroup empty event for this unit, stay around until we processed it so that we remove
* the empty cgroup if possible. Similar, process any pending OOM events if they are already queued
* before we release the unit. */
if (u->in_cgroup_empty_queue || u->in_cgroup_oom_queue)
return false;
/* Make sure to send out D-Bus events before we unload the unit */
if (u->in_dbus_queue)
return false;
if (sd_bus_track_count(u->bus_track) > 0)