summaryrefslogtreecommitdiff
path: root/src/core/load-dropin.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-06-02 14:55:12 +0200
committerLennart Poettering <lennart@poettering.net>2020-06-02 19:32:20 +0200
commit4f9ff96a55187927a4164a19df580329f4c6522b (patch)
treec3e1face3267f1d965bc4328f4a1a9c1b2427aee /src/core/load-dropin.c
parent5aca2e6733d35534f82359e5720b3dea1d1332e5 (diff)
downloadsystemd-4f9ff96a55187927a4164a19df580329f4c6522b.tar.gz
conf-parser: return mtime in config_parse() and friends
This is a follow-up for 9f83091e3cceb646a66fa9df89de6d9a77c21d86. Instead of reading the mtime off the configuration files after reading, let's do so before reading, but with the fd we read the data from. This is not only cleaner (as it allows us to save one stat()), but also has the benefit that we'll detect changes that happen while we read the files. This also reworks unit file drop-ins to use the common code for determining drop-in mtime, instead of reading system clock for that.
Diffstat (limited to 'src/core/load-dropin.c')
-rw-r--r--src/core/load-dropin.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/load-dropin.c b/src/core/load-dropin.c
index f61e9da6f2..0da3eafb12 100644
--- a/src/core/load-dropin.c
+++ b/src/core/load-dropin.c
@@ -114,12 +114,13 @@ int unit_load_dropin(Unit *u) {
}
STRV_FOREACH(f, u->dropin_paths)
- (void) config_parse(u->id, *f, NULL,
- UNIT_VTABLE(u)->sections,
- config_item_perf_lookup, load_fragment_gperf_lookup,
- 0, u);
-
- u->dropin_mtime = now(CLOCK_REALTIME);
+ (void) config_parse(
+ u->id, *f, NULL,
+ UNIT_VTABLE(u)->sections,
+ config_item_perf_lookup, load_fragment_gperf_lookup,
+ 0,
+ u,
+ &u->dropin_mtime);
return 0;
}