Home
last modified time | relevance | path

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

/systemd-251/src/journal/
Djournald-gperf.gperf32 Journal.SystemMaxUse, config_parse_iec_uint64, 0, offsetof(Server, system_storage.metrics.max…
33 Journal.SystemMaxFileSize, config_parse_iec_uint64, 0, offsetof(Server, system_storage.metrics.max…
34 Journal.SystemKeepFree, config_parse_iec_uint64, 0, offsetof(Server, system_storage.metrics.kee…
35 Journal.SystemMaxFiles, config_parse_uint64, 0, offsetof(Server, system_storage.metrics.n_m…
Djournald-server.c181 return s->system_journal ? &s->system_storage : &s->runtime_storage; in server_current_storage()
343 (void) mkdir_parents(s->system_storage.path, 0755); in system_journal_open()
345 (void) mkdir(s->system_storage.path, 0755); in system_journal_open()
347 fn = strjoina(s->system_storage.path, "/system.journal"); in system_journal_open()
348 …r = open_journal(s, true, fn, O_RDWR|O_CREAT, s->seal, &s->system_storage.metrics, &s->system_jour… in system_journal_open()
351 (void) cache_space_refresh(s, &s->system_storage); in system_journal_open()
352 patch_min_use(&s->system_storage); in system_journal_open()
448 if (asprintf(&p, "%s/user-" UID_FMT ".journal", s->system_storage.path, uid) < 0) { in find_journal()
459 r = open_journal(s, true, p, O_RDWR|O_CREAT, s->seal, &s->system_storage.metrics, &f); in find_journal()
542 d = opendir(s->system_storage.path); in vacuum_offline_user_journals()
[all …]
Djournald-server.h106 JournalStorage system_storage; member