summaryrefslogtreecommitdiff
path: root/src/machine/machined.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-02-15 13:15:45 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-02-15 14:09:40 +0100
commit554ce41f619f0a03b5fc777af4b923ff68fe13d4 (patch)
tree5f73d4a26216f57a44db0dcce9c26190a9d0d7d5 /src/machine/machined.c
parent5c093a23688ff4d98657da44c25848392a0caf69 (diff)
downloadsystemd-554ce41f619f0a03b5fc777af4b923ff68fe13d4.tar.gz
machined: change check_gc to may_gc everywheregc-cleanup
Diffstat (limited to 'src/machine/machined.c')
-rw-r--r--src/machine/machined.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machined.c b/src/machine/machined.c
index 34b2024043..9fb67882e1 100644
--- a/src/machine/machined.c
+++ b/src/machine/machined.c
@@ -292,14 +292,14 @@ void manager_gc(Manager *m, bool drop_not_started) {
machine->in_gc_queue = false;
/* First, if we are not closing yet, initiate stopping */
- if (!machine_check_gc(machine, drop_not_started) &&
+ if (machine_may_gc(machine, drop_not_started) &&
machine_get_state(machine) != MACHINE_CLOSING)
machine_stop(machine);
/* Now, the stop probably made this referenced
* again, but if it didn't, then it's time to let it
* go entirely. */
- if (!machine_check_gc(machine, drop_not_started)) {
+ if (machine_may_gc(machine, drop_not_started)) {
machine_finalize(machine);
machine_free(machine);
}