diff options
author | Franck Bui <fbui@suse.com> | 2016-12-02 18:40:10 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-02 18:40:10 +0100 |
commit | 3099caf2b5bb9498b1d0227c40926435ca81f26f (patch) | |
tree | 862b3360c230936affb3d4f5c40f64d2f72329e4 /src/journal | |
parent | b200489b2b0ebb45be80fc8168be1f0587ae2bcc (diff) |
journal: make sure to initially populate the space info cache (#4807)
Make sure to populate the cache in cache_space_refresh() at least once
otherwise it's possible that the system boots fast enough (and the journal
flush service is finished) before the invalidate cache timeout (30 us) has
expired.
Fixes: #4790
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journald-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index 28487a9451..5c6941ebd6 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -144,7 +144,7 @@ static int cache_space_refresh(Server *s, JournalStorage *storage) { ts = now(CLOCK_MONOTONIC); - if (space->timestamp + RECHECK_SPACE_USEC > ts) + if (space->timestamp != 0 && space->timestamp + RECHECK_SPACE_USEC > ts) return 0; r = determine_path_usage(s, storage->path, &vfs_used, &vfs_avail); |