Home
last modified time | relevance | path

Searched refs:runtime_storage (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/journal/ !
Djournald-gperf.gperf36 Journal.RuntimeMaxUse, config_parse_iec_uint64, 0, offsetof(Server, runtime_storage.metrics.ma…
37 Journal.RuntimeMaxFileSize, config_parse_iec_uint64, 0, offsetof(Server, runtime_storage.metrics.ma…
38 Journal.RuntimeKeepFree, config_parse_iec_uint64, 0, offsetof(Server, runtime_storage.metrics.ke…
39 Journal.RuntimeMaxFiles, config_parse_uint64, 0, offsetof(Server, runtime_storage.metrics.n_…
Djournald-server.c181 return s->system_journal ? &s->system_storage : &s->runtime_storage; in server_current_storage()
373 fn = strjoina(s->runtime_storage.path, "/system.journal"); in system_journal_open()
381 … r = open_journal(s, false, fn, O_RDWR, false, &s->runtime_storage.metrics, &s->runtime_journal); in system_journal_open()
393 (void) mkdir_parents(s->runtime_storage.path, 0755); in system_journal_open()
394 (void) mkdir(s->runtime_storage.path, 0750); in system_journal_open()
396 …r = open_journal(s, true, fn, O_RDWR|O_CREAT, false, &s->runtime_storage.metrics, &s->runtime_jour… in system_journal_open()
403 (void) cache_space_refresh(s, &s->runtime_storage); in system_journal_open()
404 patch_min_use(&s->runtime_storage); in system_journal_open()
726 do_vacuum(s, &s->runtime_storage, verbose); in server_vacuum()
1239 (void) rm_rf(s->runtime_storage.path, REMOVE_ROOT); in server_flush_to_var()
[all …]
Djournald-server.h105 JournalStorage runtime_storage; member