77 lines
2.9 KiB
Diff
77 lines
2.9 KiB
Diff
From b9dd7ee5f4d0f6d51899d7e14ac7ef2fd2840b8f Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Tue, 9 Oct 2018 17:37:57 +0200
|
|
Subject: [PATCH] core: bring manager_startup() and manager_reload() more
|
|
inline
|
|
|
|
Both functions do partly the same, let's make sure they do it in the
|
|
same order, and that we don't miss some calls.
|
|
|
|
This makes a number of changes:
|
|
|
|
1. Moves exec_runtime_vacuum() two calls down in manager_startup(). This
|
|
should not have any effect but makes manager_startup() more like
|
|
manager_reload().
|
|
|
|
2. Calls manager_recheck_journal(), manager_recheck_dbus(),
|
|
manager_enqueue_sync_bus_names() in manager_startup() too. This is a
|
|
good idea since during reeexec we pass through manager_startup() and
|
|
hence can't assume dbus and journald weren't up yet, hence let's
|
|
check if they are ready to be connected to.
|
|
|
|
3. Include manager_enumerate_perpetual() in manager_reload(), too. This
|
|
is not strictly necessary, since these units are included in the
|
|
serialization anyway, but it's still a nice thing, in particular as
|
|
theoretically the deserialization could fail.
|
|
|
|
(cherry picked from commit 3ad2afb6a204513c7834c64ab864e40169874390)
|
|
|
|
Resolves: #2059633
|
|
---
|
|
src/core/manager.c | 14 +++++++++++---
|
|
1 file changed, 11 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/core/manager.c b/src/core/manager.c
|
|
index e083596e58..4a9f9bfcf9 100644
|
|
--- a/src/core/manager.c
|
|
+++ b/src/core/manager.c
|
|
@@ -1665,12 +1665,12 @@ int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
|
|
/* Release any dynamic users no longer referenced */
|
|
dynamic_user_vacuum(m, true);
|
|
|
|
- exec_runtime_vacuum(m);
|
|
-
|
|
/* Release any references to UIDs/GIDs no longer referenced, and destroy any IPC owned by them */
|
|
manager_vacuum_uid_refs(m);
|
|
manager_vacuum_gid_refs(m);
|
|
|
|
+ exec_runtime_vacuum(m);
|
|
+
|
|
if (serialization) {
|
|
assert(m->n_reloading > 0);
|
|
m->n_reloading--;
|
|
@@ -1681,6 +1681,13 @@ int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
|
|
m->send_reloading_done = true;
|
|
}
|
|
|
|
+ /* It might be safe to log to the journal now and connect to dbus */
|
|
+ manager_recheck_journal(m);
|
|
+ manager_recheck_dbus(m);
|
|
+
|
|
+ /* Sync current state of bus names with our set of listening units */
|
|
+ (void) manager_enqueue_sync_bus_names(m);
|
|
+
|
|
/* Let's finally catch up with any changes that took place while we were reloading/reexecing */
|
|
manager_catchup(m);
|
|
|
|
@@ -3505,7 +3512,8 @@ int manager_reload(Manager *m) {
|
|
lookup_paths_reduce(&m->lookup_paths);
|
|
manager_build_unit_path_cache(m);
|
|
|
|
- /* First, enumerate what we can from all config files */
|
|
+ /* First, enumerate what we can from kernel and suchlike */
|
|
+ manager_enumerate_perpetual(m);
|
|
manager_enumerate(m);
|
|
|
|
/* Second, deserialize our stored data */
|